blob: 1af1ea88e8a8f447f2a9b6c7f16b438e838af263 [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050040#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040041#include "ctree.h"
42#include "disk-io.h"
43#include "transaction.h"
44#include "btrfs_inode.h"
45#include "ioctl.h"
46#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040047#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040048#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040049#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040050#include "tree-log.h"
Chris Masonc8b97812008-10-29 14:49:59 -040051#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050052#include "locking.h"
Chris Mason39279cc2007-06-12 06:35:45 -040053
54struct btrfs_iget_args {
55 u64 ino;
56 struct btrfs_root *root;
57};
58
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070059static const struct inode_operations btrfs_dir_inode_operations;
60static const struct inode_operations btrfs_symlink_inode_operations;
61static const struct inode_operations btrfs_dir_ro_inode_operations;
62static const struct inode_operations btrfs_special_inode_operations;
63static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070064static const struct address_space_operations btrfs_aops;
65static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070066static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050067static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040068
69static struct kmem_cache *btrfs_inode_cachep;
70struct kmem_cache *btrfs_trans_handle_cachep;
71struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040072struct kmem_cache *btrfs_path_cachep;
73
74#define S_SHIFT 12
75static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
76 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
77 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
78 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
79 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
80 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
81 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
82 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
83};
84
Josef Bacik7b128762008-07-24 12:17:14 -040085static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040086static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050087static noinline int cow_file_range(struct inode *inode,
88 struct page *locked_page,
89 u64 start, u64 end, int *page_started,
90 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040091
Yan, Zhengf34f57a2009-11-12 09:35:27 +000092static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
93 struct inode *inode, struct inode *dir)
Jim Owens0279b4c2009-02-04 09:29:13 -050094{
95 int err;
96
Yan, Zhengf34f57a2009-11-12 09:35:27 +000097 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -050098 if (!err)
Yan, Zhengf34f57a2009-11-12 09:35:27 +000099 err = btrfs_xattr_security_init(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500100 return err;
101}
102
Chris Masond352ac62008-09-29 15:18:18 -0400103/*
Chris Masonc8b97812008-10-29 14:49:59 -0400104 * this does all the hard work for inserting an inline extent into
105 * the btree. The caller should have done a btrfs_drop_extents so that
106 * no overlapping inline items exist in the btree
107 */
Chris Masond3977122009-01-05 21:25:51 -0500108static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400109 struct btrfs_root *root, struct inode *inode,
110 u64 start, size_t size, size_t compressed_size,
111 struct page **compressed_pages)
112{
113 struct btrfs_key key;
114 struct btrfs_path *path;
115 struct extent_buffer *leaf;
116 struct page *page = NULL;
117 char *kaddr;
118 unsigned long ptr;
119 struct btrfs_file_extent_item *ei;
120 int err = 0;
121 int ret;
122 size_t cur_size = size;
123 size_t datasize;
124 unsigned long offset;
125 int use_compress = 0;
126
127 if (compressed_size && compressed_pages) {
128 use_compress = 1;
129 cur_size = compressed_size;
130 }
131
Chris Masond3977122009-01-05 21:25:51 -0500132 path = btrfs_alloc_path();
133 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400134 return -ENOMEM;
135
Chris Masonb9473432009-03-13 11:00:37 -0400136 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400137 btrfs_set_trans_block_group(trans, inode);
138
139 key.objectid = inode->i_ino;
140 key.offset = start;
141 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400142 datasize = btrfs_file_extent_calc_inline_size(cur_size);
143
144 inode_add_bytes(inode, size);
145 ret = btrfs_insert_empty_item(trans, root, path, &key,
146 datasize);
147 BUG_ON(ret);
148 if (ret) {
149 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400150 goto fail;
151 }
152 leaf = path->nodes[0];
153 ei = btrfs_item_ptr(leaf, path->slots[0],
154 struct btrfs_file_extent_item);
155 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
156 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
157 btrfs_set_file_extent_encryption(leaf, ei, 0);
158 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
159 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
160 ptr = btrfs_file_extent_inline_start(ei);
161
162 if (use_compress) {
163 struct page *cpage;
164 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500165 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400166 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500167 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400168 PAGE_CACHE_SIZE);
169
Chris Masonb9473432009-03-13 11:00:37 -0400170 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400171 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400172 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400173
174 i++;
175 ptr += cur_size;
176 compressed_size -= cur_size;
177 }
178 btrfs_set_file_extent_compression(leaf, ei,
179 BTRFS_COMPRESS_ZLIB);
180 } else {
181 page = find_get_page(inode->i_mapping,
182 start >> PAGE_CACHE_SHIFT);
183 btrfs_set_file_extent_compression(leaf, ei, 0);
184 kaddr = kmap_atomic(page, KM_USER0);
185 offset = start & (PAGE_CACHE_SIZE - 1);
186 write_extent_buffer(leaf, kaddr + offset, ptr, size);
187 kunmap_atomic(kaddr, KM_USER0);
188 page_cache_release(page);
189 }
190 btrfs_mark_buffer_dirty(leaf);
191 btrfs_free_path(path);
192
Yan, Zhengc2167752009-11-12 09:34:21 +0000193 /*
194 * we're an inline extent, so nobody can
195 * extend the file past i_size without locking
196 * a page we already have locked.
197 *
198 * We must do any isize and inode updates
199 * before we unlock the pages. Otherwise we
200 * could end up racing with unlink.
201 */
Chris Masonc8b97812008-10-29 14:49:59 -0400202 BTRFS_I(inode)->disk_i_size = inode->i_size;
203 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000204
Chris Masonc8b97812008-10-29 14:49:59 -0400205 return 0;
206fail:
207 btrfs_free_path(path);
208 return err;
209}
210
211
212/*
213 * conditionally insert an inline extent into the file. This
214 * does the checks required to make sure the data is small enough
215 * to fit as an inline extent.
216 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400217static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400218 struct btrfs_root *root,
219 struct inode *inode, u64 start, u64 end,
220 size_t compressed_size,
221 struct page **compressed_pages)
222{
223 u64 isize = i_size_read(inode);
224 u64 actual_end = min(end + 1, isize);
225 u64 inline_len = actual_end - start;
226 u64 aligned_end = (end + root->sectorsize - 1) &
227 ~((u64)root->sectorsize - 1);
228 u64 hint_byte;
229 u64 data_len = inline_len;
230 int ret;
231
232 if (compressed_size)
233 data_len = compressed_size;
234
235 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400236 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400237 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
238 (!compressed_size &&
239 (actual_end & (root->sectorsize - 1)) == 0) ||
240 end + 1 < isize ||
241 data_len > root->fs_info->max_inline) {
242 return 1;
243 }
244
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000245 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400246 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400247 BUG_ON(ret);
248
249 if (isize > actual_end)
250 inline_len = min_t(u64, isize, actual_end);
251 ret = insert_inline_extent(trans, root, inode, start,
252 inline_len, compressed_size,
253 compressed_pages);
254 BUG_ON(ret);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400255 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400256 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400257 return 0;
258}
259
Chris Mason771ed682008-11-06 22:02:51 -0500260struct async_extent {
261 u64 start;
262 u64 ram_size;
263 u64 compressed_size;
264 struct page **pages;
265 unsigned long nr_pages;
266 struct list_head list;
267};
268
269struct async_cow {
270 struct inode *inode;
271 struct btrfs_root *root;
272 struct page *locked_page;
273 u64 start;
274 u64 end;
275 struct list_head extents;
276 struct btrfs_work work;
277};
278
279static noinline int add_async_extent(struct async_cow *cow,
280 u64 start, u64 ram_size,
281 u64 compressed_size,
282 struct page **pages,
283 unsigned long nr_pages)
284{
285 struct async_extent *async_extent;
286
287 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
288 async_extent->start = start;
289 async_extent->ram_size = ram_size;
290 async_extent->compressed_size = compressed_size;
291 async_extent->pages = pages;
292 async_extent->nr_pages = nr_pages;
293 list_add_tail(&async_extent->list, &cow->extents);
294 return 0;
295}
296
Chris Masonc8b97812008-10-29 14:49:59 -0400297/*
Chris Mason771ed682008-11-06 22:02:51 -0500298 * we create compressed extents in two phases. The first
299 * phase compresses a range of pages that have already been
300 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400301 *
Chris Mason771ed682008-11-06 22:02:51 -0500302 * This is done inside an ordered work queue, and the compression
303 * is spread across many cpus. The actual IO submission is step
304 * two, and the ordered work queue takes care of making sure that
305 * happens in the same order things were put onto the queue by
306 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400307 *
Chris Mason771ed682008-11-06 22:02:51 -0500308 * If this code finds it can't get good compression, it puts an
309 * entry onto the work queue to write the uncompressed bytes. This
310 * makes sure that both compressed inodes and uncompressed inodes
311 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400312 */
Chris Mason771ed682008-11-06 22:02:51 -0500313static noinline int compress_file_range(struct inode *inode,
314 struct page *locked_page,
315 u64 start, u64 end,
316 struct async_cow *async_cow,
317 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400318{
319 struct btrfs_root *root = BTRFS_I(inode)->root;
320 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400321 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -0400322 u64 orig_start;
323 u64 disk_num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400324 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400325 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500326 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400327 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400328 struct page **pages = NULL;
329 unsigned long nr_pages;
330 unsigned long nr_pages_ret = 0;
331 unsigned long total_compressed = 0;
332 unsigned long total_in = 0;
333 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500334 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400335 int i;
336 int will_compress;
Chris Masonb888db22007-08-27 16:49:44 -0400337
Chris Masonc8b97812008-10-29 14:49:59 -0400338 orig_start = start;
Chris Masonbe20aa92007-12-17 20:14:01 -0500339
Chris Mason42dc7ba2008-12-15 11:44:56 -0500340 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400341again:
342 will_compress = 0;
343 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
344 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
345
Chris Masonf03d9301f2009-02-04 09:31:06 -0500346 /*
347 * we don't want to send crud past the end of i_size through
348 * compression, that's just a waste of CPU time. So, if the
349 * end of the file is before the start of our current
350 * requested range of bytes, we bail out to the uncompressed
351 * cleanup code that can deal with all of this.
352 *
353 * It isn't really the fastest way to fix things, but this is a
354 * very uncommon corner.
355 */
356 if (actual_end <= start)
357 goto cleanup_and_bail_uncompressed;
358
Chris Masonc8b97812008-10-29 14:49:59 -0400359 total_compressed = actual_end - start;
360
361 /* we want to make sure that amount of ram required to uncompress
362 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500363 * of a compressed extent to 128k. This is a crucial number
364 * because it also controls how easily we can spread reads across
365 * cpus for decompression.
366 *
367 * We also want to make sure the amount of IO required to do
368 * a random read is reasonably small, so we limit the size of
369 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400370 */
371 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400372 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500373 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400374 disk_num_bytes = num_bytes;
375 total_in = 0;
376 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400377
Chris Mason771ed682008-11-06 22:02:51 -0500378 /*
379 * we do compression for mount -o compress and when the
380 * inode has not been flagged as nocompress. This flag can
381 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400382 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200383 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500384 (btrfs_test_opt(root, COMPRESS) ||
385 (BTRFS_I(inode)->force_compress))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400386 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400387 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400388
Chris Masonc8b97812008-10-29 14:49:59 -0400389 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
390 total_compressed, pages,
391 nr_pages, &nr_pages_ret,
392 &total_in,
393 &total_compressed,
394 max_compressed);
395
396 if (!ret) {
397 unsigned long offset = total_compressed &
398 (PAGE_CACHE_SIZE - 1);
399 struct page *page = pages[nr_pages_ret - 1];
400 char *kaddr;
401
402 /* zero the tail end of the last page, we might be
403 * sending it down to disk
404 */
405 if (offset) {
406 kaddr = kmap_atomic(page, KM_USER0);
407 memset(kaddr + offset, 0,
408 PAGE_CACHE_SIZE - offset);
409 kunmap_atomic(kaddr, KM_USER0);
410 }
411 will_compress = 1;
412 }
413 }
414 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500415 trans = btrfs_join_transaction(root, 1);
416 BUG_ON(!trans);
417 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400418 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500419
Chris Masonc8b97812008-10-29 14:49:59 -0400420 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500421 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400422 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500423 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400424 */
425 ret = cow_file_range_inline(trans, root, inode,
426 start, end, 0, NULL);
427 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500428 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400429 ret = cow_file_range_inline(trans, root, inode,
430 start, end,
431 total_compressed, pages);
432 }
433 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500434 /*
435 * inline extent creation worked, we don't need
436 * to create any more async work items. Unlock
437 * and free up our temp pages.
438 */
Chris Masonc8b97812008-10-29 14:49:59 -0400439 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400440 &BTRFS_I(inode)->io_tree,
441 start, end, NULL,
442 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400443 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400444 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000445
446 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400447 goto free_pages_out;
448 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000449 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400450 }
451
452 if (will_compress) {
453 /*
454 * we aren't doing an inline extent round the compressed size
455 * up to a block size boundary so the allocator does sane
456 * things
457 */
458 total_compressed = (total_compressed + blocksize - 1) &
459 ~(blocksize - 1);
460
461 /*
462 * one last check to make sure the compression is really a
463 * win, compare the page count read with the blocks on disk
464 */
465 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
466 ~(PAGE_CACHE_SIZE - 1);
467 if (total_compressed >= total_in) {
468 will_compress = 0;
469 } else {
470 disk_num_bytes = total_compressed;
471 num_bytes = total_in;
472 }
473 }
474 if (!will_compress && pages) {
475 /*
476 * the compression code ran but failed to make things smaller,
477 * free any pages it allocated and our page pointer array
478 */
479 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400480 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400481 page_cache_release(pages[i]);
482 }
483 kfree(pages);
484 pages = NULL;
485 total_compressed = 0;
486 nr_pages_ret = 0;
487
488 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500489 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
490 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500491 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500492 }
Chris Masonc8b97812008-10-29 14:49:59 -0400493 }
Chris Mason771ed682008-11-06 22:02:51 -0500494 if (will_compress) {
495 *num_added += 1;
496
497 /* the async work queues will take care of doing actual
498 * allocation on disk for these compressed pages,
499 * and will submit them to the elevator.
500 */
501 add_async_extent(async_cow, start, num_bytes,
502 total_compressed, pages, nr_pages_ret);
503
Chris Mason42dc7ba2008-12-15 11:44:56 -0500504 if (start + num_bytes < end && start + num_bytes < actual_end) {
Chris Mason771ed682008-11-06 22:02:51 -0500505 start += num_bytes;
506 pages = NULL;
507 cond_resched();
508 goto again;
509 }
510 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500511cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500512 /*
513 * No compression, but we still need to write the pages in
514 * the file we've been given so far. redirty the locked
515 * page if it corresponds to our extent and set things up
516 * for the async work queue to run cow_file_range to do
517 * the normal delalloc dance
518 */
519 if (page_offset(locked_page) >= start &&
520 page_offset(locked_page) <= end) {
521 __set_page_dirty_nobuffers(locked_page);
522 /* unlocked later on in the async handlers */
523 }
524 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
525 *num_added += 1;
526 }
527
528out:
529 return 0;
530
531free_pages_out:
532 for (i = 0; i < nr_pages_ret; i++) {
533 WARN_ON(pages[i]->mapping);
534 page_cache_release(pages[i]);
535 }
Chris Masond3977122009-01-05 21:25:51 -0500536 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500537
538 goto out;
539}
540
541/*
542 * phase two of compressed writeback. This is the ordered portion
543 * of the code, which only gets called in the order the work was
544 * queued. We walk all the async extents created by compress_file_range
545 * and send them down to the disk.
546 */
547static noinline int submit_compressed_extents(struct inode *inode,
548 struct async_cow *async_cow)
549{
550 struct async_extent *async_extent;
551 u64 alloc_hint = 0;
552 struct btrfs_trans_handle *trans;
553 struct btrfs_key ins;
554 struct extent_map *em;
555 struct btrfs_root *root = BTRFS_I(inode)->root;
556 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
557 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500558 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500559
560 if (list_empty(&async_cow->extents))
561 return 0;
562
Chris Mason771ed682008-11-06 22:02:51 -0500563
Chris Masond3977122009-01-05 21:25:51 -0500564 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500565 async_extent = list_entry(async_cow->extents.next,
566 struct async_extent, list);
567 list_del(&async_extent->list);
568
569 io_tree = &BTRFS_I(inode)->io_tree;
570
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500571retry:
Chris Mason771ed682008-11-06 22:02:51 -0500572 /* did the compression code fall back to uncompressed IO? */
573 if (!async_extent->pages) {
574 int page_started = 0;
575 unsigned long nr_written = 0;
576
577 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000578 async_extent->start +
579 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500580
581 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500582 ret = cow_file_range(inode, async_cow->locked_page,
583 async_extent->start,
584 async_extent->start +
585 async_extent->ram_size - 1,
586 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500587
588 /*
589 * if page_started, cow_file_range inserted an
590 * inline extent and took care of all the unlocking
591 * and IO for us. Otherwise, we need to submit
592 * all those pages down to the drive.
593 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500594 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500595 extent_write_locked_range(io_tree,
596 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500597 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500598 async_extent->ram_size - 1,
599 btrfs_get_extent,
600 WB_SYNC_ALL);
601 kfree(async_extent);
602 cond_resched();
603 continue;
604 }
605
606 lock_extent(io_tree, async_extent->start,
607 async_extent->start + async_extent->ram_size - 1,
608 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500609
Yan, Zhengc2167752009-11-12 09:34:21 +0000610 trans = btrfs_join_transaction(root, 1);
Chris Mason771ed682008-11-06 22:02:51 -0500611 ret = btrfs_reserve_extent(trans, root,
612 async_extent->compressed_size,
613 async_extent->compressed_size,
614 0, alloc_hint,
615 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000616 btrfs_end_transaction(trans, root);
617
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500618 if (ret) {
619 int i;
620 for (i = 0; i < async_extent->nr_pages; i++) {
621 WARN_ON(async_extent->pages[i]->mapping);
622 page_cache_release(async_extent->pages[i]);
623 }
624 kfree(async_extent->pages);
625 async_extent->nr_pages = 0;
626 async_extent->pages = NULL;
627 unlock_extent(io_tree, async_extent->start,
628 async_extent->start +
629 async_extent->ram_size - 1, GFP_NOFS);
630 goto retry;
631 }
632
Yan, Zhengc2167752009-11-12 09:34:21 +0000633 /*
634 * here we're doing allocation and writeback of the
635 * compressed pages
636 */
637 btrfs_drop_extent_cache(inode, async_extent->start,
638 async_extent->start +
639 async_extent->ram_size - 1, 0);
640
Chris Mason771ed682008-11-06 22:02:51 -0500641 em = alloc_extent_map(GFP_NOFS);
642 em->start = async_extent->start;
643 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500644 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500645
646 em->block_start = ins.objectid;
647 em->block_len = ins.offset;
648 em->bdev = root->fs_info->fs_devices->latest_bdev;
649 set_bit(EXTENT_FLAG_PINNED, &em->flags);
650 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
651
Chris Masond3977122009-01-05 21:25:51 -0500652 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400653 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500654 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400655 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500656 if (ret != -EEXIST) {
657 free_extent_map(em);
658 break;
659 }
660 btrfs_drop_extent_cache(inode, async_extent->start,
661 async_extent->start +
662 async_extent->ram_size - 1, 0);
663 }
664
665 ret = btrfs_add_ordered_extent(inode, async_extent->start,
666 ins.objectid,
667 async_extent->ram_size,
668 ins.offset,
669 BTRFS_ORDERED_COMPRESSED);
670 BUG_ON(ret);
671
Chris Mason771ed682008-11-06 22:02:51 -0500672 /*
673 * clear dirty, set writeback and unlock the pages.
674 */
675 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400676 &BTRFS_I(inode)->io_tree,
677 async_extent->start,
678 async_extent->start +
679 async_extent->ram_size - 1,
680 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
681 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400682 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400683 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500684
685 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500686 async_extent->start,
687 async_extent->ram_size,
688 ins.objectid,
689 ins.offset, async_extent->pages,
690 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500691
692 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500693 alloc_hint = ins.objectid + ins.offset;
694 kfree(async_extent);
695 cond_resched();
696 }
697
Chris Mason771ed682008-11-06 22:02:51 -0500698 return 0;
699}
700
Josef Bacik4b46fce2010-05-23 11:00:55 -0400701static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
702 u64 num_bytes)
703{
704 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
705 struct extent_map *em;
706 u64 alloc_hint = 0;
707
708 read_lock(&em_tree->lock);
709 em = search_extent_mapping(em_tree, start, num_bytes);
710 if (em) {
711 /*
712 * if block start isn't an actual block number then find the
713 * first block in this inode and use that as a hint. If that
714 * block is also bogus then just don't worry about it.
715 */
716 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
717 free_extent_map(em);
718 em = search_extent_mapping(em_tree, 0, 0);
719 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
720 alloc_hint = em->block_start;
721 if (em)
722 free_extent_map(em);
723 } else {
724 alloc_hint = em->block_start;
725 free_extent_map(em);
726 }
727 }
728 read_unlock(&em_tree->lock);
729
730 return alloc_hint;
731}
732
Chris Mason771ed682008-11-06 22:02:51 -0500733/*
734 * when extent_io.c finds a delayed allocation range in the file,
735 * the call backs end up in this code. The basic idea is to
736 * allocate extents on disk for the range, and create ordered data structs
737 * in ram to track those extents.
738 *
739 * locked_page is the page that writepage had locked already. We use
740 * it to make sure we don't do extra locks or unlocks.
741 *
742 * *page_started is set to one if we unlock locked_page and do everything
743 * required to start IO on it. It may be clean and already done with
744 * IO when we return.
745 */
746static noinline int cow_file_range(struct inode *inode,
747 struct page *locked_page,
748 u64 start, u64 end, int *page_started,
749 unsigned long *nr_written,
750 int unlock)
751{
752 struct btrfs_root *root = BTRFS_I(inode)->root;
753 struct btrfs_trans_handle *trans;
754 u64 alloc_hint = 0;
755 u64 num_bytes;
756 unsigned long ram_size;
757 u64 disk_num_bytes;
758 u64 cur_alloc_size;
759 u64 blocksize = root->sectorsize;
760 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500761 u64 isize = i_size_read(inode);
Chris Mason771ed682008-11-06 22:02:51 -0500762 struct btrfs_key ins;
763 struct extent_map *em;
764 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
765 int ret = 0;
766
767 trans = btrfs_join_transaction(root, 1);
768 BUG_ON(!trans);
769 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400770 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500771
Chris Mason42dc7ba2008-12-15 11:44:56 -0500772 actual_end = min_t(u64, isize, end + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500773
774 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
775 num_bytes = max(blocksize, num_bytes);
776 disk_num_bytes = num_bytes;
777 ret = 0;
778
779 if (start == 0) {
780 /* lets try to make an inline extent */
781 ret = cow_file_range_inline(trans, root, inode,
782 start, end, 0, NULL);
783 if (ret == 0) {
784 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400785 &BTRFS_I(inode)->io_tree,
786 start, end, NULL,
787 EXTENT_CLEAR_UNLOCK_PAGE |
788 EXTENT_CLEAR_UNLOCK |
789 EXTENT_CLEAR_DELALLOC |
790 EXTENT_CLEAR_DIRTY |
791 EXTENT_SET_WRITEBACK |
792 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000793
Chris Mason771ed682008-11-06 22:02:51 -0500794 *nr_written = *nr_written +
795 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
796 *page_started = 1;
797 ret = 0;
798 goto out;
799 }
800 }
Chris Masonc8b97812008-10-29 14:49:59 -0400801
802 BUG_ON(disk_num_bytes >
803 btrfs_super_total_bytes(&root->fs_info->super_copy));
804
Josef Bacik4b46fce2010-05-23 11:00:55 -0400805 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400806 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400807
Chris Masond3977122009-01-05 21:25:51 -0500808 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400809 unsigned long op;
810
Josef Bacik287a0ab2010-03-19 18:07:23 +0000811 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400812 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500813 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400814 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500815 BUG_ON(ret);
816
Chris Masone6dcd2d2008-07-17 12:53:50 -0400817 em = alloc_extent_map(GFP_NOFS);
818 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500819 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500820 ram_size = ins.offset;
821 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400822
Chris Masone6dcd2d2008-07-17 12:53:50 -0400823 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400824 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400825 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400826 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400827
Chris Masond3977122009-01-05 21:25:51 -0500828 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400829 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400830 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400831 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400832 if (ret != -EEXIST) {
833 free_extent_map(em);
834 break;
835 }
836 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400837 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400838 }
839
Chris Mason98d20f62008-04-14 09:46:10 -0400840 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400841 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500842 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400843 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400844
Yan Zheng17d217f2008-12-12 10:03:38 -0500845 if (root->root_key.objectid ==
846 BTRFS_DATA_RELOC_TREE_OBJECTID) {
847 ret = btrfs_reloc_clone_csums(inode, start,
848 cur_alloc_size);
849 BUG_ON(ret);
850 }
851
Chris Masond3977122009-01-05 21:25:51 -0500852 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400853 break;
Chris Masond3977122009-01-05 21:25:51 -0500854
Chris Masonc8b97812008-10-29 14:49:59 -0400855 /* we're not doing compressed IO, don't unlock the first
856 * page (which the caller expects to stay locked), don't
857 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400858 *
859 * Do set the Private2 bit so we know this page was properly
860 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400861 */
Chris Masona791e352009-10-08 11:27:10 -0400862 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
863 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
864 EXTENT_SET_PRIVATE2;
865
Chris Masonc8b97812008-10-29 14:49:59 -0400866 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
867 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400868 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400869 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500870 num_bytes -= cur_alloc_size;
871 alloc_hint = ins.objectid + ins.offset;
872 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400873 }
Chris Masonb888db22007-08-27 16:49:44 -0400874out:
Chris Mason771ed682008-11-06 22:02:51 -0500875 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400876 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400877
Chris Masonbe20aa92007-12-17 20:14:01 -0500878 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500879}
Chris Masonc8b97812008-10-29 14:49:59 -0400880
Chris Mason771ed682008-11-06 22:02:51 -0500881/*
882 * work queue call back to started compression on a file and pages
883 */
884static noinline void async_cow_start(struct btrfs_work *work)
885{
886 struct async_cow *async_cow;
887 int num_added = 0;
888 async_cow = container_of(work, struct async_cow, work);
889
890 compress_file_range(async_cow->inode, async_cow->locked_page,
891 async_cow->start, async_cow->end, async_cow,
892 &num_added);
893 if (num_added == 0)
894 async_cow->inode = NULL;
895}
896
897/*
898 * work queue call back to submit previously compressed pages
899 */
900static noinline void async_cow_submit(struct btrfs_work *work)
901{
902 struct async_cow *async_cow;
903 struct btrfs_root *root;
904 unsigned long nr_pages;
905
906 async_cow = container_of(work, struct async_cow, work);
907
908 root = async_cow->root;
909 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
910 PAGE_CACHE_SHIFT;
911
912 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
913
914 if (atomic_read(&root->fs_info->async_delalloc_pages) <
915 5 * 1042 * 1024 &&
916 waitqueue_active(&root->fs_info->async_submit_wait))
917 wake_up(&root->fs_info->async_submit_wait);
918
Chris Masond3977122009-01-05 21:25:51 -0500919 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500920 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500921}
Chris Masonc8b97812008-10-29 14:49:59 -0400922
Chris Mason771ed682008-11-06 22:02:51 -0500923static noinline void async_cow_free(struct btrfs_work *work)
924{
925 struct async_cow *async_cow;
926 async_cow = container_of(work, struct async_cow, work);
927 kfree(async_cow);
928}
929
930static int cow_file_range_async(struct inode *inode, struct page *locked_page,
931 u64 start, u64 end, int *page_started,
932 unsigned long *nr_written)
933{
934 struct async_cow *async_cow;
935 struct btrfs_root *root = BTRFS_I(inode)->root;
936 unsigned long nr_pages;
937 u64 cur_end;
938 int limit = 10 * 1024 * 1042;
939
Chris Masona3429ab2009-10-08 12:30:20 -0400940 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
941 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500942 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500943 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
944 async_cow->inode = inode;
945 async_cow->root = root;
946 async_cow->locked_page = locked_page;
947 async_cow->start = start;
948
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200949 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500950 cur_end = end;
951 else
952 cur_end = min(end, start + 512 * 1024 - 1);
953
954 async_cow->end = cur_end;
955 INIT_LIST_HEAD(&async_cow->extents);
956
957 async_cow->work.func = async_cow_start;
958 async_cow->work.ordered_func = async_cow_submit;
959 async_cow->work.ordered_free = async_cow_free;
960 async_cow->work.flags = 0;
961
Chris Mason771ed682008-11-06 22:02:51 -0500962 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
963 PAGE_CACHE_SHIFT;
964 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
965
966 btrfs_queue_worker(&root->fs_info->delalloc_workers,
967 &async_cow->work);
968
969 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
970 wait_event(root->fs_info->async_submit_wait,
971 (atomic_read(&root->fs_info->async_delalloc_pages) <
972 limit));
973 }
974
Chris Masond3977122009-01-05 21:25:51 -0500975 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500976 atomic_read(&root->fs_info->async_delalloc_pages)) {
977 wait_event(root->fs_info->async_submit_wait,
978 (atomic_read(&root->fs_info->async_delalloc_pages) ==
979 0));
980 }
981
982 *nr_written += nr_pages;
983 start = cur_end + 1;
984 }
985 *page_started = 1;
986 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500987}
988
Chris Masond3977122009-01-05 21:25:51 -0500989static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500990 u64 bytenr, u64 num_bytes)
991{
992 int ret;
993 struct btrfs_ordered_sum *sums;
994 LIST_HEAD(list);
995
Yan Zheng07d400a2009-01-06 11:42:00 -0500996 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
997 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500998 if (ret == 0 && list_empty(&list))
999 return 0;
1000
1001 while (!list_empty(&list)) {
1002 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1003 list_del(&sums->list);
1004 kfree(sums);
1005 }
1006 return 1;
1007}
1008
Chris Masond352ac62008-09-29 15:18:18 -04001009/*
1010 * when nowcow writeback call back. This checks for snapshots or COW copies
1011 * of the extents that exist in the file, and COWs the file as required.
1012 *
1013 * If no cow copies or snapshots exist, we write directly to the existing
1014 * blocks on disk
1015 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001016static noinline int run_delalloc_nocow(struct inode *inode,
1017 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001018 u64 start, u64 end, int *page_started, int force,
1019 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001020{
Chris Masonbe20aa92007-12-17 20:14:01 -05001021 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001022 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001023 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001024 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001025 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001026 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001027 u64 cow_start;
1028 u64 cur_offset;
1029 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001030 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001031 u64 disk_bytenr;
1032 u64 num_bytes;
1033 int extent_type;
1034 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001035 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001036 int nocow;
1037 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -05001038
1039 path = btrfs_alloc_path();
1040 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001041 trans = btrfs_join_transaction(root, 1);
1042 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -05001043
Yan Zheng80ff3852008-10-30 14:20:02 -04001044 cow_start = (u64)-1;
1045 cur_offset = start;
1046 while (1) {
1047 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1048 cur_offset, 0);
1049 BUG_ON(ret < 0);
1050 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1051 leaf = path->nodes[0];
1052 btrfs_item_key_to_cpu(leaf, &found_key,
1053 path->slots[0] - 1);
1054 if (found_key.objectid == inode->i_ino &&
1055 found_key.type == BTRFS_EXTENT_DATA_KEY)
1056 path->slots[0]--;
1057 }
1058 check_prev = 0;
1059next_slot:
1060 leaf = path->nodes[0];
1061 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1062 ret = btrfs_next_leaf(root, path);
1063 if (ret < 0)
1064 BUG_ON(1);
1065 if (ret > 0)
1066 break;
1067 leaf = path->nodes[0];
1068 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001069
Yan Zheng80ff3852008-10-30 14:20:02 -04001070 nocow = 0;
1071 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001072 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001073 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001074
Yan Zheng80ff3852008-10-30 14:20:02 -04001075 if (found_key.objectid > inode->i_ino ||
1076 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1077 found_key.offset > end)
1078 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001079
Yan Zheng80ff3852008-10-30 14:20:02 -04001080 if (found_key.offset > cur_offset) {
1081 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001082 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001083 goto out_check;
1084 }
Chris Masonc31f8832008-01-08 15:46:31 -05001085
Yan Zheng80ff3852008-10-30 14:20:02 -04001086 fi = btrfs_item_ptr(leaf, path->slots[0],
1087 struct btrfs_file_extent_item);
1088 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001089
Yan Zhengd899e052008-10-30 14:25:28 -04001090 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1091 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001092 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001093 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001094 extent_end = found_key.offset +
1095 btrfs_file_extent_num_bytes(leaf, fi);
1096 if (extent_end <= start) {
1097 path->slots[0]++;
1098 goto next_slot;
1099 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001100 if (disk_bytenr == 0)
1101 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001102 if (btrfs_file_extent_compression(leaf, fi) ||
1103 btrfs_file_extent_encryption(leaf, fi) ||
1104 btrfs_file_extent_other_encoding(leaf, fi))
1105 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001106 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1107 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001108 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001109 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001110 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001111 found_key.offset -
1112 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001113 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001114 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001115 disk_bytenr += cur_offset - found_key.offset;
1116 num_bytes = min(end + 1, extent_end) - cur_offset;
1117 /*
1118 * force cow if csum exists in the range.
1119 * this ensure that csum for a given extent are
1120 * either valid or do not exist.
1121 */
1122 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1123 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001124 nocow = 1;
1125 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1126 extent_end = found_key.offset +
1127 btrfs_file_extent_inline_len(leaf, fi);
1128 extent_end = ALIGN(extent_end, root->sectorsize);
1129 } else {
1130 BUG_ON(1);
1131 }
1132out_check:
1133 if (extent_end <= start) {
1134 path->slots[0]++;
1135 goto next_slot;
1136 }
1137 if (!nocow) {
1138 if (cow_start == (u64)-1)
1139 cow_start = cur_offset;
1140 cur_offset = extent_end;
1141 if (cur_offset > end)
1142 break;
1143 path->slots[0]++;
1144 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001145 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001146
Yan Zheng7ea394f2008-08-05 13:05:02 -04001147 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001148 if (cow_start != (u64)-1) {
1149 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001150 found_key.offset - 1, page_started,
1151 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001152 BUG_ON(ret);
1153 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001154 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001155
Yan Zhengd899e052008-10-30 14:25:28 -04001156 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1157 struct extent_map *em;
1158 struct extent_map_tree *em_tree;
1159 em_tree = &BTRFS_I(inode)->extent_tree;
1160 em = alloc_extent_map(GFP_NOFS);
1161 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001162 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001163 em->len = num_bytes;
1164 em->block_len = num_bytes;
1165 em->block_start = disk_bytenr;
1166 em->bdev = root->fs_info->fs_devices->latest_bdev;
1167 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1168 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001169 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001170 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001171 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001172 if (ret != -EEXIST) {
1173 free_extent_map(em);
1174 break;
1175 }
1176 btrfs_drop_extent_cache(inode, em->start,
1177 em->start + em->len - 1, 0);
1178 }
1179 type = BTRFS_ORDERED_PREALLOC;
1180 } else {
1181 type = BTRFS_ORDERED_NOCOW;
1182 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001183
1184 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001185 num_bytes, num_bytes, type);
1186 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001187
Yan, Zhengefa56462010-05-16 10:49:59 -04001188 if (root->root_key.objectid ==
1189 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1190 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1191 num_bytes);
1192 BUG_ON(ret);
1193 }
1194
Yan Zhengd899e052008-10-30 14:25:28 -04001195 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001196 cur_offset, cur_offset + num_bytes - 1,
1197 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1198 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1199 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001200 cur_offset = extent_end;
1201 if (cur_offset > end)
1202 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001203 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001204 btrfs_release_path(root, path);
1205
1206 if (cur_offset <= end && cow_start == (u64)-1)
1207 cow_start = cur_offset;
1208 if (cow_start != (u64)-1) {
1209 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001210 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001211 BUG_ON(ret);
1212 }
1213
1214 ret = btrfs_end_transaction(trans, root);
1215 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001216 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001217 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001218}
1219
Chris Masond352ac62008-09-29 15:18:18 -04001220/*
1221 * extent_io.c call back to do delayed allocation processing
1222 */
Chris Masonc8b97812008-10-29 14:49:59 -04001223static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001224 u64 start, u64 end, int *page_started,
1225 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001226{
Chris Masonbe20aa92007-12-17 20:14:01 -05001227 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001228 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001229
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001230 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001231 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001232 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001233 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001234 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001235 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001236 else if (!btrfs_test_opt(root, COMPRESS) &&
1237 !(BTRFS_I(inode)->force_compress))
Chris Mason7f366cf2009-03-12 20:12:45 -04001238 ret = cow_file_range(inode, locked_page, start, end,
1239 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001240 else
Chris Mason771ed682008-11-06 22:02:51 -05001241 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001242 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001243 return ret;
1244}
1245
Josef Bacik9ed74f22009-09-11 16:12:44 -04001246static int btrfs_split_extent_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001247 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001248{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001249 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001250 if (!(orig->state & EXTENT_DELALLOC))
1251 return 0;
1252
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001253 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001254 return 0;
1255}
1256
1257/*
1258 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1259 * extents so we can keep track of new extents that are just merged onto old
1260 * extents, such as when we are doing sequential writes, so we can properly
1261 * account for the metadata space we'll need.
1262 */
1263static int btrfs_merge_extent_hook(struct inode *inode,
1264 struct extent_state *new,
1265 struct extent_state *other)
1266{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001267 /* not delalloc, ignore it */
1268 if (!(other->state & EXTENT_DELALLOC))
1269 return 0;
1270
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001271 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001272 return 0;
1273}
1274
Chris Masond352ac62008-09-29 15:18:18 -04001275/*
1276 * extent_io.c set_bit_hook, used to track delayed allocation
1277 * bytes in this file, and to maintain the list of inodes that
1278 * have pending delalloc work to be done.
1279 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001280static int btrfs_set_bit_hook(struct inode *inode,
1281 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001282{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001283
Chris Mason75eff682008-12-15 15:54:40 -05001284 /*
1285 * set_bit and clear bit hooks normally require _irqsave/restore
1286 * but in this case, we are only testeing for the DELALLOC
1287 * bit, which is only set or cleared with irqs on
1288 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001289 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001290 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001291 u64 len = state->end + 1 - state->start;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001292
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001293 if (*bits & EXTENT_FIRST_DELALLOC)
1294 *bits &= ~EXTENT_FIRST_DELALLOC;
1295 else
1296 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001297
Chris Mason75eff682008-12-15 15:54:40 -05001298 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001299 BTRFS_I(inode)->delalloc_bytes += len;
1300 root->fs_info->delalloc_bytes += len;
Chris Masonea8c2812008-08-04 23:17:27 -04001301 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1302 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1303 &root->fs_info->delalloc_inodes);
1304 }
Chris Mason75eff682008-12-15 15:54:40 -05001305 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001306 }
1307 return 0;
1308}
1309
Chris Masond352ac62008-09-29 15:18:18 -04001310/*
1311 * extent_io.c clear_bit_hook, see set_bit_hook for why
1312 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001313static int btrfs_clear_bit_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001314 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001315{
Chris Mason75eff682008-12-15 15:54:40 -05001316 /*
1317 * set_bit and clear bit hooks normally require _irqsave/restore
1318 * but in this case, we are only testeing for the DELALLOC
1319 * bit, which is only set or cleared with irqs on
1320 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001321 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001322 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001323 u64 len = state->end + 1 - state->start;
Chris Masonbcbfce82008-04-22 13:26:47 -04001324
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001325 if (*bits & EXTENT_FIRST_DELALLOC)
1326 *bits &= ~EXTENT_FIRST_DELALLOC;
1327 else if (!(*bits & EXTENT_DO_ACCOUNTING))
1328 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
1329
1330 if (*bits & EXTENT_DO_ACCOUNTING)
1331 btrfs_delalloc_release_metadata(inode, len);
1332
1333 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID)
1334 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001335
Chris Mason75eff682008-12-15 15:54:40 -05001336 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001337 root->fs_info->delalloc_bytes -= len;
1338 BTRFS_I(inode)->delalloc_bytes -= len;
1339
Chris Masonea8c2812008-08-04 23:17:27 -04001340 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1341 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1342 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1343 }
Chris Mason75eff682008-12-15 15:54:40 -05001344 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001345 }
1346 return 0;
1347}
1348
Chris Masond352ac62008-09-29 15:18:18 -04001349/*
1350 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1351 * we don't create bios that span stripes or chunks
1352 */
Chris Mason239b14b2008-03-24 15:02:07 -04001353int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001354 size_t size, struct bio *bio,
1355 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001356{
1357 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1358 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001359 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001360 u64 length = 0;
1361 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001362 int ret;
1363
Chris Mason771ed682008-11-06 22:02:51 -05001364 if (bio_flags & EXTENT_BIO_COMPRESSED)
1365 return 0;
1366
Chris Masonf2d8d742008-04-21 10:03:05 -04001367 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001368 map_tree = &root->fs_info->mapping_tree;
1369 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001370 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001371 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001372
Chris Masond3977122009-01-05 21:25:51 -05001373 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001374 return 1;
Chris Mason239b14b2008-03-24 15:02:07 -04001375 return 0;
1376}
1377
Chris Masond352ac62008-09-29 15:18:18 -04001378/*
1379 * in order to insert checksums into the metadata in large chunks,
1380 * we wait until bio submission time. All the pages in the bio are
1381 * checksummed and sums are attached onto the ordered extent record.
1382 *
1383 * At IO completion time the cums attached on the ordered extent record
1384 * are inserted into the btree
1385 */
Chris Masond3977122009-01-05 21:25:51 -05001386static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1387 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001388 unsigned long bio_flags,
1389 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001390{
Chris Mason065631f2008-02-20 12:07:25 -05001391 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001392 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001393
Chris Masond20f7042008-12-08 16:58:54 -05001394 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001395 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001396 return 0;
1397}
Chris Masone0156402008-04-16 11:15:20 -04001398
Chris Mason4a69a412008-11-06 22:03:00 -05001399/*
1400 * in order to insert checksums into the metadata in large chunks,
1401 * we wait until bio submission time. All the pages in the bio are
1402 * checksummed and sums are attached onto the ordered extent record.
1403 *
1404 * At IO completion time the cums attached on the ordered extent record
1405 * are inserted into the btree
1406 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001407static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001408 int mirror_num, unsigned long bio_flags,
1409 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001410{
1411 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001412 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001413}
1414
Chris Masond352ac62008-09-29 15:18:18 -04001415/*
Chris Masoncad321a2008-12-17 14:51:42 -05001416 * extent_io.c submission hook. This does the right thing for csum calculation
1417 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001418 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001419static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001420 int mirror_num, unsigned long bio_flags,
1421 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001422{
1423 struct btrfs_root *root = BTRFS_I(inode)->root;
1424 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001425 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001426
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001427 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001428
Chris Masone6dcd2d2008-07-17 12:53:50 -04001429 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1430 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001431
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001432 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001433 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001434 return btrfs_submit_compressed_read(inode, bio,
1435 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001436 } else if (!skip_sum)
1437 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001438 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001439 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001440 /* csum items have already been cloned */
1441 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1442 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001443 /* we're doing a write, do the async checksumming */
1444 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001445 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001446 bio_flags, bio_offset,
1447 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001448 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001449 }
1450
Chris Mason0b86a832008-03-24 15:01:56 -04001451mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001452 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001453}
Chris Mason6885f302008-02-20 16:11:05 -05001454
Chris Masond352ac62008-09-29 15:18:18 -04001455/*
1456 * given a list of ordered sums record them in the inode. This happens
1457 * at IO completion time based on sums calculated at bio submission time.
1458 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001459static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001460 struct inode *inode, u64 file_offset,
1461 struct list_head *list)
1462{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001463 struct btrfs_ordered_sum *sum;
1464
1465 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001466
1467 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001468 btrfs_csum_file_blocks(trans,
1469 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001470 }
1471 return 0;
1472}
1473
Josef Bacik2ac55d42010-02-03 19:33:23 +00001474int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1475 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001476{
Chris Masond3977122009-01-05 21:25:51 -05001477 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001478 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001479 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001480 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001481}
1482
Chris Masond352ac62008-09-29 15:18:18 -04001483/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001484struct btrfs_writepage_fixup {
1485 struct page *page;
1486 struct btrfs_work work;
1487};
1488
Christoph Hellwigb2950862008-12-02 09:54:17 -05001489static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001490{
1491 struct btrfs_writepage_fixup *fixup;
1492 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001493 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001494 struct page *page;
1495 struct inode *inode;
1496 u64 page_start;
1497 u64 page_end;
1498
1499 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1500 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001501again:
Chris Mason247e7432008-07-17 12:53:51 -04001502 lock_page(page);
1503 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1504 ClearPageChecked(page);
1505 goto out_page;
1506 }
1507
1508 inode = page->mapping->host;
1509 page_start = page_offset(page);
1510 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1511
Josef Bacik2ac55d42010-02-03 19:33:23 +00001512 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1513 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001514
1515 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001516 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001517 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001518
1519 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1520 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001521 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1522 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001523 unlock_page(page);
1524 btrfs_start_ordered_extent(inode, ordered, 1);
1525 goto again;
1526 }
Chris Mason247e7432008-07-17 12:53:51 -04001527
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001528 BUG();
Josef Bacik2ac55d42010-02-03 19:33:23 +00001529 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001530 ClearPageChecked(page);
1531out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001532 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1533 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001534out_page:
1535 unlock_page(page);
1536 page_cache_release(page);
1537}
1538
1539/*
1540 * There are a few paths in the higher layers of the kernel that directly
1541 * set the page dirty bit without asking the filesystem if it is a
1542 * good idea. This causes problems because we want to make sure COW
1543 * properly happens and the data=ordered rules are followed.
1544 *
Chris Masonc8b97812008-10-29 14:49:59 -04001545 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001546 * hasn't been properly setup for IO. We kick off an async process
1547 * to fix it up. The async helper will wait for ordered extents, set
1548 * the delalloc bit and make it safe to write the page.
1549 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001550static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001551{
1552 struct inode *inode = page->mapping->host;
1553 struct btrfs_writepage_fixup *fixup;
1554 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001555
Chris Mason8b62b722009-09-02 16:53:46 -04001556 /* this page is properly in the ordered list */
1557 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001558 return 0;
1559
1560 if (PageChecked(page))
1561 return -EAGAIN;
1562
1563 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1564 if (!fixup)
1565 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001566
Chris Mason247e7432008-07-17 12:53:51 -04001567 SetPageChecked(page);
1568 page_cache_get(page);
1569 fixup->work.func = btrfs_writepage_fixup_worker;
1570 fixup->page = page;
1571 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1572 return -EAGAIN;
1573}
1574
Yan Zhengd899e052008-10-30 14:25:28 -04001575static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1576 struct inode *inode, u64 file_pos,
1577 u64 disk_bytenr, u64 disk_num_bytes,
1578 u64 num_bytes, u64 ram_bytes,
1579 u8 compression, u8 encryption,
1580 u16 other_encoding, int extent_type)
1581{
1582 struct btrfs_root *root = BTRFS_I(inode)->root;
1583 struct btrfs_file_extent_item *fi;
1584 struct btrfs_path *path;
1585 struct extent_buffer *leaf;
1586 struct btrfs_key ins;
1587 u64 hint;
1588 int ret;
1589
1590 path = btrfs_alloc_path();
1591 BUG_ON(!path);
1592
Chris Masonb9473432009-03-13 11:00:37 -04001593 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001594
1595 /*
1596 * we may be replacing one extent in the tree with another.
1597 * The new extent is pinned in the extent map, and we don't want
1598 * to drop it from the cache until it is completely in the btree.
1599 *
1600 * So, tell btrfs_drop_extents to leave this extent in the cache.
1601 * the caller is expected to unpin it and allow it to be merged
1602 * with the others.
1603 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001604 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1605 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001606 BUG_ON(ret);
1607
1608 ins.objectid = inode->i_ino;
1609 ins.offset = file_pos;
1610 ins.type = BTRFS_EXTENT_DATA_KEY;
1611 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1612 BUG_ON(ret);
1613 leaf = path->nodes[0];
1614 fi = btrfs_item_ptr(leaf, path->slots[0],
1615 struct btrfs_file_extent_item);
1616 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1617 btrfs_set_file_extent_type(leaf, fi, extent_type);
1618 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1619 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1620 btrfs_set_file_extent_offset(leaf, fi, 0);
1621 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1622 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1623 btrfs_set_file_extent_compression(leaf, fi, compression);
1624 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1625 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001626
1627 btrfs_unlock_up_safe(path, 1);
1628 btrfs_set_lock_blocking(leaf);
1629
Yan Zhengd899e052008-10-30 14:25:28 -04001630 btrfs_mark_buffer_dirty(leaf);
1631
1632 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001633
1634 ins.objectid = disk_bytenr;
1635 ins.offset = disk_num_bytes;
1636 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001637 ret = btrfs_alloc_reserved_file_extent(trans, root,
1638 root->root_key.objectid,
1639 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001640 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001641 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001642
Yan Zhengd899e052008-10-30 14:25:28 -04001643 return 0;
1644}
1645
Chris Mason5d13a982009-03-13 11:41:46 -04001646/*
1647 * helper function for btrfs_finish_ordered_io, this
1648 * just reads in some of the csum leaves to prime them into ram
1649 * before we start the transaction. It limits the amount of btree
1650 * reads required while inside the transaction.
1651 */
Chris Masond352ac62008-09-29 15:18:18 -04001652/* as ordered data IO finishes, this gets called so we can finish
1653 * an ordered extent if the range of bytes in the file it covers are
1654 * fully written.
1655 */
Chris Mason211f90e2008-07-18 11:56:15 -04001656static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001657{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001658 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001659 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001660 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001661 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001662 struct extent_state *cached_state = NULL;
Yan Zhengd899e052008-10-30 14:25:28 -04001663 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001664 int ret;
1665
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001666 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1667 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001668 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001669 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001670 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001671
Yan, Zhengc2167752009-11-12 09:34:21 +00001672 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1673 BUG_ON(!list_empty(&ordered_extent->list));
1674 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1675 if (!ret) {
1676 trans = btrfs_join_transaction(root, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001677 btrfs_set_trans_block_group(trans, inode);
1678 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001679 ret = btrfs_update_inode(trans, root, inode);
1680 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001681 }
1682 goto out;
1683 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001684
Josef Bacik2ac55d42010-02-03 19:33:23 +00001685 lock_extent_bits(io_tree, ordered_extent->file_offset,
1686 ordered_extent->file_offset + ordered_extent->len - 1,
1687 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001688
Yan, Zhengc2167752009-11-12 09:34:21 +00001689 trans = btrfs_join_transaction(root, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001690 btrfs_set_trans_block_group(trans, inode);
1691 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001692
Chris Masonc8b97812008-10-29 14:49:59 -04001693 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001694 compressed = 1;
1695 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1696 BUG_ON(compressed);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001697 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001698 ordered_extent->file_offset,
1699 ordered_extent->file_offset +
1700 ordered_extent->len);
1701 BUG_ON(ret);
1702 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001703 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001704 ret = insert_reserved_file_extent(trans, inode,
1705 ordered_extent->file_offset,
1706 ordered_extent->start,
1707 ordered_extent->disk_len,
1708 ordered_extent->len,
1709 ordered_extent->len,
1710 compressed, 0, 0,
1711 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001712 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1713 ordered_extent->file_offset,
1714 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001715 BUG_ON(ret);
1716 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001717 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1718 ordered_extent->file_offset +
1719 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1720
Chris Masone6dcd2d2008-07-17 12:53:50 -04001721 add_pending_csums(trans, inode, ordered_extent->file_offset,
1722 &ordered_extent->list);
1723
Yan, Zhengc2167752009-11-12 09:34:21 +00001724 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1725 ret = btrfs_update_inode(trans, root, inode);
1726 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001727out:
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001728 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
1729 if (trans)
1730 btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001731 /* once for us */
1732 btrfs_put_ordered_extent(ordered_extent);
1733 /* once for the tree */
1734 btrfs_put_ordered_extent(ordered_extent);
1735
Chris Masone6dcd2d2008-07-17 12:53:50 -04001736 return 0;
1737}
1738
Christoph Hellwigb2950862008-12-02 09:54:17 -05001739static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001740 struct extent_state *state, int uptodate)
1741{
Chris Mason8b62b722009-09-02 16:53:46 -04001742 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001743 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1744}
1745
Chris Masond352ac62008-09-29 15:18:18 -04001746/*
1747 * When IO fails, either with EIO or csum verification fails, we
1748 * try other mirrors that might have a good copy of the data. This
1749 * io_failure_record is used to record state as we go through all the
1750 * mirrors. If another mirror has good data, the page is set up to date
1751 * and things continue. If a good mirror can't be found, the original
1752 * bio end_io callback is called to indicate things have failed.
1753 */
Chris Mason7e383262008-04-09 16:28:12 -04001754struct io_failure_record {
1755 struct page *page;
1756 u64 start;
1757 u64 len;
1758 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001759 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001760 int last_mirror;
1761};
1762
Christoph Hellwigb2950862008-12-02 09:54:17 -05001763static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001764 struct page *page, u64 start, u64 end,
1765 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001766{
1767 struct io_failure_record *failrec = NULL;
1768 u64 private;
1769 struct extent_map *em;
1770 struct inode *inode = page->mapping->host;
1771 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001772 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001773 struct bio *bio;
1774 int num_copies;
1775 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001776 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001777 u64 logical;
1778
1779 ret = get_state_private(failure_tree, start, &private);
1780 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001781 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1782 if (!failrec)
1783 return -ENOMEM;
1784 failrec->start = start;
1785 failrec->len = end - start + 1;
1786 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001787 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001788
Chris Mason890871b2009-09-02 16:24:52 -04001789 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001790 em = lookup_extent_mapping(em_tree, start, failrec->len);
1791 if (em->start > start || em->start + em->len < start) {
1792 free_extent_map(em);
1793 em = NULL;
1794 }
Chris Mason890871b2009-09-02 16:24:52 -04001795 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001796
1797 if (!em || IS_ERR(em)) {
1798 kfree(failrec);
1799 return -EIO;
1800 }
1801 logical = start - em->start;
1802 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001803 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1804 logical = em->block_start;
1805 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1806 }
Chris Mason7e383262008-04-09 16:28:12 -04001807 failrec->logical = logical;
1808 free_extent_map(em);
1809 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1810 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001811 set_state_private(failure_tree, start,
1812 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001813 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001814 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001815 }
1816 num_copies = btrfs_num_copies(
1817 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1818 failrec->logical, failrec->len);
1819 failrec->last_mirror++;
1820 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001821 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001822 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1823 failrec->start,
1824 EXTENT_LOCKED);
1825 if (state && state->start != failrec->start)
1826 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001827 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001828 }
1829 if (!state || failrec->last_mirror > num_copies) {
1830 set_state_private(failure_tree, failrec->start, 0);
1831 clear_extent_bits(failure_tree, failrec->start,
1832 failrec->start + failrec->len - 1,
1833 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1834 kfree(failrec);
1835 return -EIO;
1836 }
1837 bio = bio_alloc(GFP_NOFS, 1);
1838 bio->bi_private = state;
1839 bio->bi_end_io = failed_bio->bi_end_io;
1840 bio->bi_sector = failrec->logical >> 9;
1841 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001842 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001843
Chris Mason7e383262008-04-09 16:28:12 -04001844 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001845 if (failed_bio->bi_rw & REQ_WRITE)
Chris Mason1259ab72008-05-12 13:39:03 -04001846 rw = WRITE;
1847 else
1848 rw = READ;
1849
1850 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001851 failrec->last_mirror,
Chris Masoneaf25d92010-05-25 09:48:28 -04001852 failrec->bio_flags, 0);
Chris Mason1259ab72008-05-12 13:39:03 -04001853 return 0;
1854}
1855
Chris Masond352ac62008-09-29 15:18:18 -04001856/*
1857 * each time an IO finishes, we do a fast check in the IO failure tree
1858 * to see if we need to process or clean up an io_failure_record
1859 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001860static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001861{
1862 u64 private;
1863 u64 private_failure;
1864 struct io_failure_record *failure;
1865 int ret;
1866
1867 private = 0;
1868 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1869 (u64)-1, 1, EXTENT_DIRTY)) {
1870 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1871 start, &private_failure);
1872 if (ret == 0) {
1873 failure = (struct io_failure_record *)(unsigned long)
1874 private_failure;
1875 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1876 failure->start, 0);
1877 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1878 failure->start,
1879 failure->start + failure->len - 1,
1880 EXTENT_DIRTY | EXTENT_LOCKED,
1881 GFP_NOFS);
1882 kfree(failure);
1883 }
1884 }
Chris Mason7e383262008-04-09 16:28:12 -04001885 return 0;
1886}
1887
Chris Masond352ac62008-09-29 15:18:18 -04001888/*
1889 * when reads are done, we need to check csums to verify the data is correct
1890 * if there's a match, we allow the bio to finish. If not, we go through
1891 * the io_failure_record routines to find good copies
1892 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001893static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001894 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001895{
Chris Mason35ebb932007-10-30 16:56:53 -04001896 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001897 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001898 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001899 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001900 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001901 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001902 struct btrfs_root *root = BTRFS_I(inode)->root;
1903 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001904
Chris Masond20f7042008-12-08 16:58:54 -05001905 if (PageChecked(page)) {
1906 ClearPageChecked(page);
1907 goto good;
1908 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001909
1910 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001911 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001912
Yan Zheng17d217f2008-12-12 10:03:38 -05001913 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001914 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001915 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1916 GFP_NOFS);
1917 return 0;
1918 }
1919
Yanc2e639f2008-02-04 08:57:25 -05001920 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001921 private = state->private;
1922 ret = 0;
1923 } else {
1924 ret = get_state_private(io_tree, start, &private);
1925 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001926 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001927 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001928 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001929
Chris Masonff79f812007-10-15 16:22:25 -04001930 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1931 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001932 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001933 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001934
Chris Mason9ab86c82009-01-07 09:48:51 -05001935 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001936good:
Chris Mason7e383262008-04-09 16:28:12 -04001937 /* if the io failure tree for this inode is non-empty,
1938 * check to see if we've recovered from a failed IO
1939 */
Chris Mason1259ab72008-05-12 13:39:03 -04001940 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001941 return 0;
1942
1943zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001944 if (printk_ratelimit()) {
1945 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1946 "private %llu\n", page->mapping->host->i_ino,
1947 (unsigned long long)start, csum,
1948 (unsigned long long)private);
1949 }
Chris Masondb945352007-10-15 16:15:53 -04001950 memset(kaddr + offset, 1, end - start + 1);
1951 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001952 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001953 if (private == 0)
1954 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001955 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001956}
Chris Masonb888db22007-08-27 16:49:44 -04001957
Yan, Zheng24bbcf042009-11-12 09:36:34 +00001958struct delayed_iput {
1959 struct list_head list;
1960 struct inode *inode;
1961};
1962
1963void btrfs_add_delayed_iput(struct inode *inode)
1964{
1965 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
1966 struct delayed_iput *delayed;
1967
1968 if (atomic_add_unless(&inode->i_count, -1, 1))
1969 return;
1970
1971 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
1972 delayed->inode = inode;
1973
1974 spin_lock(&fs_info->delayed_iput_lock);
1975 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
1976 spin_unlock(&fs_info->delayed_iput_lock);
1977}
1978
1979void btrfs_run_delayed_iputs(struct btrfs_root *root)
1980{
1981 LIST_HEAD(list);
1982 struct btrfs_fs_info *fs_info = root->fs_info;
1983 struct delayed_iput *delayed;
1984 int empty;
1985
1986 spin_lock(&fs_info->delayed_iput_lock);
1987 empty = list_empty(&fs_info->delayed_iputs);
1988 spin_unlock(&fs_info->delayed_iput_lock);
1989 if (empty)
1990 return;
1991
1992 down_read(&root->fs_info->cleanup_work_sem);
1993 spin_lock(&fs_info->delayed_iput_lock);
1994 list_splice_init(&fs_info->delayed_iputs, &list);
1995 spin_unlock(&fs_info->delayed_iput_lock);
1996
1997 while (!list_empty(&list)) {
1998 delayed = list_entry(list.next, struct delayed_iput, list);
1999 list_del(&delayed->list);
2000 iput(delayed->inode);
2001 kfree(delayed);
2002 }
2003 up_read(&root->fs_info->cleanup_work_sem);
2004}
2005
Josef Bacik7b128762008-07-24 12:17:14 -04002006/*
Yan, Zhengd68fc572010-05-16 10:49:58 -04002007 * calculate extra metadata reservation when snapshotting a subvolume
2008 * contains orphan files.
2009 */
2010void btrfs_orphan_pre_snapshot(struct btrfs_trans_handle *trans,
2011 struct btrfs_pending_snapshot *pending,
2012 u64 *bytes_to_reserve)
2013{
2014 struct btrfs_root *root;
2015 struct btrfs_block_rsv *block_rsv;
2016 u64 num_bytes;
2017 int index;
2018
2019 root = pending->root;
2020 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2021 return;
2022
2023 block_rsv = root->orphan_block_rsv;
2024
2025 /* orphan block reservation for the snapshot */
2026 num_bytes = block_rsv->size;
2027
2028 /*
2029 * after the snapshot is created, COWing tree blocks may use more
2030 * space than it frees. So we should make sure there is enough
2031 * reserved space.
2032 */
2033 index = trans->transid & 0x1;
2034 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2035 num_bytes += block_rsv->size -
2036 (block_rsv->reserved + block_rsv->freed[index]);
2037 }
2038
2039 *bytes_to_reserve += num_bytes;
2040}
2041
2042void btrfs_orphan_post_snapshot(struct btrfs_trans_handle *trans,
2043 struct btrfs_pending_snapshot *pending)
2044{
2045 struct btrfs_root *root = pending->root;
2046 struct btrfs_root *snap = pending->snap;
2047 struct btrfs_block_rsv *block_rsv;
2048 u64 num_bytes;
2049 int index;
2050 int ret;
2051
2052 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2053 return;
2054
2055 /* refill source subvolume's orphan block reservation */
2056 block_rsv = root->orphan_block_rsv;
2057 index = trans->transid & 0x1;
2058 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2059 num_bytes = block_rsv->size -
2060 (block_rsv->reserved + block_rsv->freed[index]);
2061 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2062 root->orphan_block_rsv,
2063 num_bytes);
2064 BUG_ON(ret);
2065 }
2066
2067 /* setup orphan block reservation for the snapshot */
2068 block_rsv = btrfs_alloc_block_rsv(snap);
2069 BUG_ON(!block_rsv);
2070
2071 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2072 snap->orphan_block_rsv = block_rsv;
2073
2074 num_bytes = root->orphan_block_rsv->size;
2075 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2076 block_rsv, num_bytes);
2077 BUG_ON(ret);
2078
2079#if 0
2080 /* insert orphan item for the snapshot */
2081 WARN_ON(!root->orphan_item_inserted);
2082 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2083 snap->root_key.objectid);
2084 BUG_ON(ret);
2085 snap->orphan_item_inserted = 1;
2086#endif
2087}
2088
2089enum btrfs_orphan_cleanup_state {
2090 ORPHAN_CLEANUP_STARTED = 1,
2091 ORPHAN_CLEANUP_DONE = 2,
2092};
2093
2094/*
2095 * This is called in transaction commmit time. If there are no orphan
2096 * files in the subvolume, it removes orphan item and frees block_rsv
2097 * structure.
2098 */
2099void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2100 struct btrfs_root *root)
2101{
2102 int ret;
2103
2104 if (!list_empty(&root->orphan_list) ||
2105 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2106 return;
2107
2108 if (root->orphan_item_inserted &&
2109 btrfs_root_refs(&root->root_item) > 0) {
2110 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2111 root->root_key.objectid);
2112 BUG_ON(ret);
2113 root->orphan_item_inserted = 0;
2114 }
2115
2116 if (root->orphan_block_rsv) {
2117 WARN_ON(root->orphan_block_rsv->size > 0);
2118 btrfs_free_block_rsv(root, root->orphan_block_rsv);
2119 root->orphan_block_rsv = NULL;
2120 }
2121}
2122
2123/*
Josef Bacik7b128762008-07-24 12:17:14 -04002124 * This creates an orphan entry for the given inode in case something goes
2125 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002126 *
2127 * NOTE: caller of this function should reserve 5 units of metadata for
2128 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002129 */
2130int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2131{
2132 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002133 struct btrfs_block_rsv *block_rsv = NULL;
2134 int reserve = 0;
2135 int insert = 0;
2136 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002137
Yan, Zhengd68fc572010-05-16 10:49:58 -04002138 if (!root->orphan_block_rsv) {
2139 block_rsv = btrfs_alloc_block_rsv(root);
2140 BUG_ON(!block_rsv);
Josef Bacik7b128762008-07-24 12:17:14 -04002141 }
2142
Yan, Zhengd68fc572010-05-16 10:49:58 -04002143 spin_lock(&root->orphan_lock);
2144 if (!root->orphan_block_rsv) {
2145 root->orphan_block_rsv = block_rsv;
2146 } else if (block_rsv) {
2147 btrfs_free_block_rsv(root, block_rsv);
2148 block_rsv = NULL;
2149 }
Josef Bacik7b128762008-07-24 12:17:14 -04002150
Yan, Zhengd68fc572010-05-16 10:49:58 -04002151 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2152 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2153#if 0
2154 /*
2155 * For proper ENOSPC handling, we should do orphan
2156 * cleanup when mounting. But this introduces backward
2157 * compatibility issue.
2158 */
2159 if (!xchg(&root->orphan_item_inserted, 1))
2160 insert = 2;
2161 else
2162 insert = 1;
2163#endif
2164 insert = 1;
2165 } else {
2166 WARN_ON(!BTRFS_I(inode)->orphan_meta_reserved);
2167 }
Josef Bacik7b128762008-07-24 12:17:14 -04002168
Yan, Zhengd68fc572010-05-16 10:49:58 -04002169 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2170 BTRFS_I(inode)->orphan_meta_reserved = 1;
2171 reserve = 1;
2172 }
2173 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002174
Yan, Zhengd68fc572010-05-16 10:49:58 -04002175 if (block_rsv)
2176 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2177
2178 /* grab metadata reservation from transaction handle */
2179 if (reserve) {
2180 ret = btrfs_orphan_reserve_metadata(trans, inode);
2181 BUG_ON(ret);
2182 }
2183
2184 /* insert an orphan item to track this unlinked/truncated file */
2185 if (insert >= 1) {
2186 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2187 BUG_ON(ret);
2188 }
2189
2190 /* insert an orphan item to track subvolume contains orphan files */
2191 if (insert >= 2) {
2192 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2193 root->root_key.objectid);
2194 BUG_ON(ret);
2195 }
2196 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002197}
2198
2199/*
2200 * We have done the truncate/delete so we can go ahead and remove the orphan
2201 * item for this particular inode.
2202 */
2203int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2204{
2205 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002206 int delete_item = 0;
2207 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002208 int ret = 0;
2209
Yan, Zhengd68fc572010-05-16 10:49:58 -04002210 spin_lock(&root->orphan_lock);
2211 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2212 list_del_init(&BTRFS_I(inode)->i_orphan);
2213 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002214 }
2215
Yan, Zhengd68fc572010-05-16 10:49:58 -04002216 if (BTRFS_I(inode)->orphan_meta_reserved) {
2217 BTRFS_I(inode)->orphan_meta_reserved = 0;
2218 release_rsv = 1;
2219 }
2220 spin_unlock(&root->orphan_lock);
2221
2222 if (trans && delete_item) {
2223 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2224 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002225 }
2226
Yan, Zhengd68fc572010-05-16 10:49:58 -04002227 if (release_rsv)
2228 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002229
Yan, Zhengd68fc572010-05-16 10:49:58 -04002230 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002231}
2232
2233/*
2234 * this cleans up any orphans that may be left on the list from the last use
2235 * of this root.
2236 */
2237void btrfs_orphan_cleanup(struct btrfs_root *root)
2238{
2239 struct btrfs_path *path;
2240 struct extent_buffer *leaf;
2241 struct btrfs_item *item;
2242 struct btrfs_key key, found_key;
2243 struct btrfs_trans_handle *trans;
2244 struct inode *inode;
2245 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2246
Yan, Zhengd68fc572010-05-16 10:49:58 -04002247 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik7b128762008-07-24 12:17:14 -04002248 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002249
2250 path = btrfs_alloc_path();
2251 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002252 path->reada = -1;
2253
2254 key.objectid = BTRFS_ORPHAN_OBJECTID;
2255 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2256 key.offset = (u64)-1;
2257
Josef Bacik7b128762008-07-24 12:17:14 -04002258 while (1) {
2259 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2260 if (ret < 0) {
2261 printk(KERN_ERR "Error searching slot for orphan: %d"
2262 "\n", ret);
2263 break;
2264 }
2265
2266 /*
2267 * if ret == 0 means we found what we were searching for, which
2268 * is weird, but possible, so only screw with path if we didnt
2269 * find the key and see if we have stuff that matches
2270 */
2271 if (ret > 0) {
2272 if (path->slots[0] == 0)
2273 break;
2274 path->slots[0]--;
2275 }
2276
2277 /* pull out the item */
2278 leaf = path->nodes[0];
2279 item = btrfs_item_nr(leaf, path->slots[0]);
2280 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2281
2282 /* make sure the item matches what we want */
2283 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2284 break;
2285 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2286 break;
2287
2288 /* release the path since we're done with it */
2289 btrfs_release_path(root, path);
2290
2291 /*
2292 * this is where we are basically btrfs_lookup, without the
2293 * crossing root thing. we store the inode number in the
2294 * offset of the orphan item.
2295 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002296 found_key.objectid = found_key.offset;
2297 found_key.type = BTRFS_INODE_ITEM_KEY;
2298 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002299 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002300 BUG_ON(IS_ERR(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04002301
Josef Bacik7b128762008-07-24 12:17:14 -04002302 /*
2303 * add this inode to the orphan list so btrfs_orphan_del does
2304 * the proper thing when we hit it
2305 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002306 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002307 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002308 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002309
2310 /*
2311 * if this is a bad inode, means we actually succeeded in
2312 * removing the inode, but not the orphan record, which means
2313 * we need to manually delete the orphan since iput will just
2314 * do a destroy_inode
2315 */
2316 if (is_bad_inode(inode)) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04002317 trans = btrfs_start_transaction(root, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04002318 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002319 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002320 iput(inode);
2321 continue;
2322 }
2323
2324 /* if we have links, this was a truncate, lets do that */
2325 if (inode->i_nlink) {
2326 nr_truncate++;
2327 btrfs_truncate(inode);
2328 } else {
2329 nr_unlink++;
2330 }
2331
2332 /* this will do delete_inode and everything for us */
2333 iput(inode);
2334 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002335 btrfs_free_path(path);
2336
2337 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2338
2339 if (root->orphan_block_rsv)
2340 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2341 (u64)-1);
2342
2343 if (root->orphan_block_rsv || root->orphan_item_inserted) {
2344 trans = btrfs_join_transaction(root, 1);
2345 btrfs_end_transaction(trans, root);
2346 }
Josef Bacik7b128762008-07-24 12:17:14 -04002347
2348 if (nr_unlink)
2349 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2350 if (nr_truncate)
2351 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik7b128762008-07-24 12:17:14 -04002352}
2353
Chris Masond352ac62008-09-29 15:18:18 -04002354/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002355 * very simple check to peek ahead in the leaf looking for xattrs. If we
2356 * don't find any xattrs, we know there can't be any acls.
2357 *
2358 * slot is the slot the inode is in, objectid is the objectid of the inode
2359 */
2360static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2361 int slot, u64 objectid)
2362{
2363 u32 nritems = btrfs_header_nritems(leaf);
2364 struct btrfs_key found_key;
2365 int scanned = 0;
2366
2367 slot++;
2368 while (slot < nritems) {
2369 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2370
2371 /* we found a different objectid, there must not be acls */
2372 if (found_key.objectid != objectid)
2373 return 0;
2374
2375 /* we found an xattr, assume we've got an acl */
2376 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2377 return 1;
2378
2379 /*
2380 * we found a key greater than an xattr key, there can't
2381 * be any acls later on
2382 */
2383 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2384 return 0;
2385
2386 slot++;
2387 scanned++;
2388
2389 /*
2390 * it goes inode, inode backrefs, xattrs, extents,
2391 * so if there are a ton of hard links to an inode there can
2392 * be a lot of backrefs. Don't waste time searching too hard,
2393 * this is just an optimization
2394 */
2395 if (scanned >= 8)
2396 break;
2397 }
2398 /* we hit the end of the leaf before we found an xattr or
2399 * something larger than an xattr. We have to assume the inode
2400 * has acls
2401 */
2402 return 1;
2403}
2404
2405/*
Chris Masond352ac62008-09-29 15:18:18 -04002406 * read an inode from the btree into the in-memory inode
2407 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002408static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002409{
2410 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002411 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002412 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002413 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002414 struct btrfs_root *root = BTRFS_I(inode)->root;
2415 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002416 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002417 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002418 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002419 int ret;
2420
2421 path = btrfs_alloc_path();
2422 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002423 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002424
Chris Mason39279cc2007-06-12 06:35:45 -04002425 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002426 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002427 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002428
Chris Mason5f39d392007-10-15 16:14:19 -04002429 leaf = path->nodes[0];
2430 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2431 struct btrfs_inode_item);
2432
2433 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2434 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2435 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2436 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002437 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002438
2439 tspec = btrfs_inode_atime(inode_item);
2440 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2441 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2442
2443 tspec = btrfs_inode_mtime(inode_item);
2444 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2445 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2446
2447 tspec = btrfs_inode_ctime(inode_item);
2448 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2449 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2450
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002451 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002452 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002453 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002454 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002455 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002456 rdev = btrfs_inode_rdev(leaf, inode_item);
2457
Josef Bacikaec74772008-07-24 12:12:38 -04002458 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002459 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002460
Chris Mason5f39d392007-10-15 16:14:19 -04002461 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002462
Chris Mason46a53cc2009-04-27 11:47:50 -04002463 /*
2464 * try to precache a NULL acl entry for files that don't have
2465 * any xattrs or acls
2466 */
2467 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002468 if (!maybe_acls)
2469 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002470
Yan Zhengd2fb3432008-12-11 16:30:39 -05002471 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2472 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002473 btrfs_free_path(path);
2474 inode_item = NULL;
2475
Chris Mason39279cc2007-06-12 06:35:45 -04002476 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002477 case S_IFREG:
2478 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002479 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002480 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002481 inode->i_fop = &btrfs_file_operations;
2482 inode->i_op = &btrfs_file_inode_operations;
2483 break;
2484 case S_IFDIR:
2485 inode->i_fop = &btrfs_dir_file_operations;
2486 if (root == root->fs_info->tree_root)
2487 inode->i_op = &btrfs_dir_ro_inode_operations;
2488 else
2489 inode->i_op = &btrfs_dir_inode_operations;
2490 break;
2491 case S_IFLNK:
2492 inode->i_op = &btrfs_symlink_inode_operations;
2493 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002494 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002495 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002496 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002497 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002498 init_special_inode(inode, inode->i_mode, rdev);
2499 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002500 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002501
2502 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002503 return;
2504
2505make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002506 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002507 make_bad_inode(inode);
2508}
2509
Chris Masond352ac62008-09-29 15:18:18 -04002510/*
2511 * given a leaf and an inode, copy the inode fields into the leaf
2512 */
Chris Masone02119d2008-09-05 16:13:11 -04002513static void fill_inode_item(struct btrfs_trans_handle *trans,
2514 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002515 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002516 struct inode *inode)
2517{
Chris Mason5f39d392007-10-15 16:14:19 -04002518 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2519 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002520 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002521 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2522 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2523
2524 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2525 inode->i_atime.tv_sec);
2526 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2527 inode->i_atime.tv_nsec);
2528
2529 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2530 inode->i_mtime.tv_sec);
2531 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2532 inode->i_mtime.tv_nsec);
2533
2534 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2535 inode->i_ctime.tv_sec);
2536 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2537 inode->i_ctime.tv_nsec);
2538
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002539 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002540 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002541 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002542 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002543 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002544 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002545 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002546}
2547
Chris Masond352ac62008-09-29 15:18:18 -04002548/*
2549 * copy everything in the in-memory inode into the btree.
2550 */
Chris Masond3977122009-01-05 21:25:51 -05002551noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2552 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002553{
2554 struct btrfs_inode_item *inode_item;
2555 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002556 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002557 int ret;
2558
2559 path = btrfs_alloc_path();
2560 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002561 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002562 ret = btrfs_lookup_inode(trans, root, path,
2563 &BTRFS_I(inode)->location, 1);
2564 if (ret) {
2565 if (ret > 0)
2566 ret = -ENOENT;
2567 goto failed;
2568 }
2569
Chris Masonb4ce94d2009-02-04 09:25:08 -05002570 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002571 leaf = path->nodes[0];
2572 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002573 struct btrfs_inode_item);
2574
Chris Masone02119d2008-09-05 16:13:11 -04002575 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002576 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002577 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002578 ret = 0;
2579failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002580 btrfs_free_path(path);
2581 return ret;
2582}
2583
2584
Chris Masond352ac62008-09-29 15:18:18 -04002585/*
2586 * unlink helper that gets used here in inode.c and in the tree logging
2587 * recovery code. It remove a link in a directory with a given name, and
2588 * also drops the back refs in the inode to the directory
2589 */
Chris Masone02119d2008-09-05 16:13:11 -04002590int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2591 struct btrfs_root *root,
2592 struct inode *dir, struct inode *inode,
2593 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002594{
2595 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002596 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002597 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002598 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002599 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002600 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002601
2602 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002603 if (!path) {
2604 ret = -ENOMEM;
2605 goto err;
2606 }
2607
Chris Masonb9473432009-03-13 11:00:37 -04002608 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002609 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2610 name, name_len, -1);
2611 if (IS_ERR(di)) {
2612 ret = PTR_ERR(di);
2613 goto err;
2614 }
2615 if (!di) {
2616 ret = -ENOENT;
2617 goto err;
2618 }
Chris Mason5f39d392007-10-15 16:14:19 -04002619 leaf = path->nodes[0];
2620 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002621 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002622 if (ret)
2623 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002624 btrfs_release_path(root, path);
2625
Josef Bacikaec74772008-07-24 12:12:38 -04002626 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002627 inode->i_ino,
2628 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002629 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002630 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002631 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002632 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002633 goto err;
2634 }
2635
Chris Mason39279cc2007-06-12 06:35:45 -04002636 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002637 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002638 if (IS_ERR(di)) {
2639 ret = PTR_ERR(di);
2640 goto err;
2641 }
2642 if (!di) {
2643 ret = -ENOENT;
2644 goto err;
2645 }
2646 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002647 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002648
Chris Masone02119d2008-09-05 16:13:11 -04002649 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2650 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002651 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002652
2653 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2654 dir, index);
2655 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002656err:
2657 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002658 if (ret)
2659 goto out;
2660
2661 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2662 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2663 btrfs_update_inode(trans, root, dir);
2664 btrfs_drop_nlink(inode);
2665 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002666out:
Chris Mason39279cc2007-06-12 06:35:45 -04002667 return ret;
2668}
2669
Yan, Zhenga22285a2010-05-16 10:48:46 -04002670/* helper to check if there is any shared block in the path */
2671static int check_path_shared(struct btrfs_root *root,
2672 struct btrfs_path *path)
2673{
2674 struct extent_buffer *eb;
2675 int level;
2676 int ret;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002677 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002678
2679 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2680 if (!path->nodes[level])
2681 break;
2682 eb = path->nodes[level];
2683 if (!btrfs_block_can_be_shared(root, eb))
2684 continue;
2685 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2686 &refs, NULL);
2687 if (refs > 1)
2688 return 1;
2689 }
2690 return 0;
2691}
2692
2693/*
2694 * helper to start transaction for unlink and rmdir.
2695 *
2696 * unlink and rmdir are special in btrfs, they do not always free space.
2697 * so in enospc case, we should make sure they will free space before
2698 * allowing them to use the global metadata reservation.
2699 */
2700static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2701 struct dentry *dentry)
2702{
2703 struct btrfs_trans_handle *trans;
2704 struct btrfs_root *root = BTRFS_I(dir)->root;
2705 struct btrfs_path *path;
2706 struct btrfs_inode_ref *ref;
2707 struct btrfs_dir_item *di;
2708 struct inode *inode = dentry->d_inode;
2709 u64 index;
2710 int check_link = 1;
2711 int err = -ENOSPC;
2712 int ret;
2713
2714 trans = btrfs_start_transaction(root, 10);
2715 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2716 return trans;
2717
2718 if (inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
2719 return ERR_PTR(-ENOSPC);
2720
2721 /* check if there is someone else holds reference */
2722 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2723 return ERR_PTR(-ENOSPC);
2724
2725 if (atomic_read(&inode->i_count) > 2)
2726 return ERR_PTR(-ENOSPC);
2727
2728 if (xchg(&root->fs_info->enospc_unlink, 1))
2729 return ERR_PTR(-ENOSPC);
2730
2731 path = btrfs_alloc_path();
2732 if (!path) {
2733 root->fs_info->enospc_unlink = 0;
2734 return ERR_PTR(-ENOMEM);
2735 }
2736
2737 trans = btrfs_start_transaction(root, 0);
2738 if (IS_ERR(trans)) {
2739 btrfs_free_path(path);
2740 root->fs_info->enospc_unlink = 0;
2741 return trans;
2742 }
2743
2744 path->skip_locking = 1;
2745 path->search_commit_root = 1;
2746
2747 ret = btrfs_lookup_inode(trans, root, path,
2748 &BTRFS_I(dir)->location, 0);
2749 if (ret < 0) {
2750 err = ret;
2751 goto out;
2752 }
2753 if (ret == 0) {
2754 if (check_path_shared(root, path))
2755 goto out;
2756 } else {
2757 check_link = 0;
2758 }
2759 btrfs_release_path(root, path);
2760
2761 ret = btrfs_lookup_inode(trans, root, path,
2762 &BTRFS_I(inode)->location, 0);
2763 if (ret < 0) {
2764 err = ret;
2765 goto out;
2766 }
2767 if (ret == 0) {
2768 if (check_path_shared(root, path))
2769 goto out;
2770 } else {
2771 check_link = 0;
2772 }
2773 btrfs_release_path(root, path);
2774
2775 if (ret == 0 && S_ISREG(inode->i_mode)) {
2776 ret = btrfs_lookup_file_extent(trans, root, path,
2777 inode->i_ino, (u64)-1, 0);
2778 if (ret < 0) {
2779 err = ret;
2780 goto out;
2781 }
2782 BUG_ON(ret == 0);
2783 if (check_path_shared(root, path))
2784 goto out;
2785 btrfs_release_path(root, path);
2786 }
2787
2788 if (!check_link) {
2789 err = 0;
2790 goto out;
2791 }
2792
2793 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2794 dentry->d_name.name, dentry->d_name.len, 0);
2795 if (IS_ERR(di)) {
2796 err = PTR_ERR(di);
2797 goto out;
2798 }
2799 if (di) {
2800 if (check_path_shared(root, path))
2801 goto out;
2802 } else {
2803 err = 0;
2804 goto out;
2805 }
2806 btrfs_release_path(root, path);
2807
2808 ref = btrfs_lookup_inode_ref(trans, root, path,
2809 dentry->d_name.name, dentry->d_name.len,
2810 inode->i_ino, dir->i_ino, 0);
2811 if (IS_ERR(ref)) {
2812 err = PTR_ERR(ref);
2813 goto out;
2814 }
2815 BUG_ON(!ref);
2816 if (check_path_shared(root, path))
2817 goto out;
2818 index = btrfs_inode_ref_index(path->nodes[0], ref);
2819 btrfs_release_path(root, path);
2820
2821 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino, index,
2822 dentry->d_name.name, dentry->d_name.len, 0);
2823 if (IS_ERR(di)) {
2824 err = PTR_ERR(di);
2825 goto out;
2826 }
2827 BUG_ON(ret == -ENOENT);
2828 if (check_path_shared(root, path))
2829 goto out;
2830
2831 err = 0;
2832out:
2833 btrfs_free_path(path);
2834 if (err) {
2835 btrfs_end_transaction(trans, root);
2836 root->fs_info->enospc_unlink = 0;
2837 return ERR_PTR(err);
2838 }
2839
2840 trans->block_rsv = &root->fs_info->global_block_rsv;
2841 return trans;
2842}
2843
2844static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2845 struct btrfs_root *root)
2846{
2847 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
2848 BUG_ON(!root->fs_info->enospc_unlink);
2849 root->fs_info->enospc_unlink = 0;
2850 }
2851 btrfs_end_transaction_throttle(trans, root);
2852}
2853
Chris Mason39279cc2007-06-12 06:35:45 -04002854static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2855{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002856 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002857 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002858 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002859 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002860 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002861
Yan, Zhenga22285a2010-05-16 10:48:46 -04002862 trans = __unlink_start_trans(dir, dentry);
2863 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002864 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002865
Chris Mason39279cc2007-06-12 06:35:45 -04002866 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002867
2868 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2869
Chris Masone02119d2008-09-05 16:13:11 -04002870 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2871 dentry->d_name.name, dentry->d_name.len);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002872 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002873
Yan, Zhenga22285a2010-05-16 10:48:46 -04002874 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04002875 ret = btrfs_orphan_add(trans, inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002876 BUG_ON(ret);
2877 }
Josef Bacik7b128762008-07-24 12:17:14 -04002878
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002879 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002880 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002881 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002882 return ret;
2883}
2884
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002885int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2886 struct btrfs_root *root,
2887 struct inode *dir, u64 objectid,
2888 const char *name, int name_len)
2889{
2890 struct btrfs_path *path;
2891 struct extent_buffer *leaf;
2892 struct btrfs_dir_item *di;
2893 struct btrfs_key key;
2894 u64 index;
2895 int ret;
2896
2897 path = btrfs_alloc_path();
2898 if (!path)
2899 return -ENOMEM;
2900
2901 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2902 name, name_len, -1);
2903 BUG_ON(!di || IS_ERR(di));
2904
2905 leaf = path->nodes[0];
2906 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2907 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2908 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2909 BUG_ON(ret);
2910 btrfs_release_path(root, path);
2911
2912 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2913 objectid, root->root_key.objectid,
2914 dir->i_ino, &index, name, name_len);
2915 if (ret < 0) {
2916 BUG_ON(ret != -ENOENT);
2917 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2918 name, name_len);
2919 BUG_ON(!di || IS_ERR(di));
2920
2921 leaf = path->nodes[0];
2922 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2923 btrfs_release_path(root, path);
2924 index = key.offset;
2925 }
2926
2927 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2928 index, name, name_len, -1);
2929 BUG_ON(!di || IS_ERR(di));
2930
2931 leaf = path->nodes[0];
2932 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2933 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2934 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2935 BUG_ON(ret);
2936 btrfs_release_path(root, path);
2937
2938 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2939 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2940 ret = btrfs_update_inode(trans, root, dir);
2941 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002942
2943 btrfs_free_path(path);
2944 return 0;
2945}
2946
Chris Mason39279cc2007-06-12 06:35:45 -04002947static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2948{
2949 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002950 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002951 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002952 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002953 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002954
Chris Mason3394e162008-11-17 20:42:26 -05002955 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002956 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002957 return -ENOTEMPTY;
2958
Yan, Zhenga22285a2010-05-16 10:48:46 -04002959 trans = __unlink_start_trans(dir, dentry);
2960 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002961 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002962
Chris Mason39279cc2007-06-12 06:35:45 -04002963 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002964
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002965 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
2966 err = btrfs_unlink_subvol(trans, root, dir,
2967 BTRFS_I(inode)->location.objectid,
2968 dentry->d_name.name,
2969 dentry->d_name.len);
2970 goto out;
2971 }
2972
Josef Bacik7b128762008-07-24 12:17:14 -04002973 err = btrfs_orphan_add(trans, inode);
2974 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002975 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002976
Chris Mason39279cc2007-06-12 06:35:45 -04002977 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002978 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2979 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002980 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002981 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002982out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002983 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002984 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002985 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002986
Chris Mason39279cc2007-06-12 06:35:45 -04002987 return err;
2988}
2989
Chris Masond20f7042008-12-08 16:58:54 -05002990#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002991/*
Chris Mason323ac952008-10-01 19:05:46 -04002992 * when truncating bytes in a file, it is possible to avoid reading
2993 * the leaves that contain only checksum items. This can be the
2994 * majority of the IO required to delete a large file, but it must
2995 * be done carefully.
2996 *
2997 * The keys in the level just above the leaves are checked to make sure
2998 * the lowest key in a given leaf is a csum key, and starts at an offset
2999 * after the new size.
3000 *
3001 * Then the key for the next leaf is checked to make sure it also has
3002 * a checksum item for the same file. If it does, we know our target leaf
3003 * contains only checksum items, and it can be safely freed without reading
3004 * it.
3005 *
3006 * This is just an optimization targeted at large files. It may do
3007 * nothing. It will return 0 unless things went badly.
3008 */
3009static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
3010 struct btrfs_root *root,
3011 struct btrfs_path *path,
3012 struct inode *inode, u64 new_size)
3013{
3014 struct btrfs_key key;
3015 int ret;
3016 int nritems;
3017 struct btrfs_key found_key;
3018 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003019 struct btrfs_leaf_ref *ref;
3020 u64 leaf_gen;
3021 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04003022
3023 path->lowest_level = 1;
3024 key.objectid = inode->i_ino;
3025 key.type = BTRFS_CSUM_ITEM_KEY;
3026 key.offset = new_size;
3027again:
3028 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3029 if (ret < 0)
3030 goto out;
3031
3032 if (path->nodes[1] == NULL) {
3033 ret = 0;
3034 goto out;
3035 }
3036 ret = 0;
3037 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
3038 nritems = btrfs_header_nritems(path->nodes[1]);
3039
3040 if (!nritems)
3041 goto out;
3042
3043 if (path->slots[1] >= nritems)
3044 goto next_node;
3045
3046 /* did we find a key greater than anything we want to delete? */
3047 if (found_key.objectid > inode->i_ino ||
3048 (found_key.objectid == inode->i_ino && found_key.type > key.type))
3049 goto out;
3050
3051 /* we check the next key in the node to make sure the leave contains
3052 * only checksum items. This comparison doesn't work if our
3053 * leaf is the last one in the node
3054 */
3055 if (path->slots[1] + 1 >= nritems) {
3056next_node:
3057 /* search forward from the last key in the node, this
3058 * will bring us into the next node in the tree
3059 */
3060 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
3061
3062 /* unlikely, but we inc below, so check to be safe */
3063 if (found_key.offset == (u64)-1)
3064 goto out;
3065
3066 /* search_forward needs a path with locks held, do the
3067 * search again for the original key. It is possible
3068 * this will race with a balance and return a path that
3069 * we could modify, but this drop is just an optimization
3070 * and is allowed to miss some leaves.
3071 */
3072 btrfs_release_path(root, path);
3073 found_key.offset++;
3074
3075 /* setup a max key for search_forward */
3076 other_key.offset = (u64)-1;
3077 other_key.type = key.type;
3078 other_key.objectid = key.objectid;
3079
3080 path->keep_locks = 1;
3081 ret = btrfs_search_forward(root, &found_key, &other_key,
3082 path, 0, 0);
3083 path->keep_locks = 0;
3084 if (ret || found_key.objectid != key.objectid ||
3085 found_key.type != key.type) {
3086 ret = 0;
3087 goto out;
3088 }
3089
3090 key.offset = found_key.offset;
3091 btrfs_release_path(root, path);
3092 cond_resched();
3093 goto again;
3094 }
3095
3096 /* we know there's one more slot after us in the tree,
3097 * read that key so we can verify it is also a checksum item
3098 */
3099 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
3100
3101 if (found_key.objectid < inode->i_ino)
3102 goto next_key;
3103
3104 if (found_key.type != key.type || found_key.offset < new_size)
3105 goto next_key;
3106
3107 /*
3108 * if the key for the next leaf isn't a csum key from this objectid,
3109 * we can't be sure there aren't good items inside this leaf.
3110 * Bail out
3111 */
3112 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
3113 goto out;
3114
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003115 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
3116 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04003117 /*
3118 * it is safe to delete this leaf, it contains only
3119 * csum items from this inode at an offset >= new_size
3120 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003121 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04003122 BUG_ON(ret);
3123
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003124 if (root->ref_cows && leaf_gen < trans->transid) {
3125 ref = btrfs_alloc_leaf_ref(root, 0);
3126 if (ref) {
3127 ref->root_gen = root->root_key.offset;
3128 ref->bytenr = leaf_start;
3129 ref->owner = 0;
3130 ref->generation = leaf_gen;
3131 ref->nritems = 0;
3132
Chris Masonbd56b302009-02-04 09:27:02 -05003133 btrfs_sort_leaf_ref(ref);
3134
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003135 ret = btrfs_add_leaf_ref(root, ref, 0);
3136 WARN_ON(ret);
3137 btrfs_free_leaf_ref(root, ref);
3138 } else {
3139 WARN_ON(1);
3140 }
3141 }
Chris Mason323ac952008-10-01 19:05:46 -04003142next_key:
3143 btrfs_release_path(root, path);
3144
3145 if (other_key.objectid == inode->i_ino &&
3146 other_key.type == key.type && other_key.offset > key.offset) {
3147 key.offset = other_key.offset;
3148 cond_resched();
3149 goto again;
3150 }
3151 ret = 0;
3152out:
3153 /* fixup any changes we've made to the path */
3154 path->lowest_level = 0;
3155 path->keep_locks = 0;
3156 btrfs_release_path(root, path);
3157 return ret;
3158}
3159
Chris Masond20f7042008-12-08 16:58:54 -05003160#endif
3161
Chris Mason323ac952008-10-01 19:05:46 -04003162/*
Chris Mason39279cc2007-06-12 06:35:45 -04003163 * this can truncate away extent items, csum items and directory items.
3164 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003165 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003166 *
3167 * csum items that cross the new i_size are truncated to the new size
3168 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003169 *
3170 * min_type is the minimum key type to truncate down to. If set to 0, this
3171 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003172 */
Yan, Zheng80825102009-11-12 09:35:36 +00003173int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3174 struct btrfs_root *root,
3175 struct inode *inode,
3176 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003177{
Chris Mason39279cc2007-06-12 06:35:45 -04003178 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003179 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003180 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003181 struct btrfs_key key;
3182 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003183 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003184 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003185 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003186 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003187 u64 mask = root->sectorsize - 1;
3188 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003189 int found_extent;
3190 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003191 int pending_del_nr = 0;
3192 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003193 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05003194 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00003195 int ret;
3196 int err = 0;
3197
3198 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003199
Josef Bacik0af3d002010-06-21 14:48:16 -04003200 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003201 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003202
Chris Mason39279cc2007-06-12 06:35:45 -04003203 path = btrfs_alloc_path();
3204 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04003205 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04003206
Chris Mason39279cc2007-06-12 06:35:45 -04003207 key.objectid = inode->i_ino;
3208 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003209 key.type = (u8)-1;
3210
Chris Mason85e21ba2008-01-29 15:11:36 -05003211search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003212 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003213 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003214 if (ret < 0) {
3215 err = ret;
3216 goto out;
3217 }
Chris Masond3977122009-01-05 21:25:51 -05003218
Chris Mason85e21ba2008-01-29 15:11:36 -05003219 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003220 /* there are no items in the tree for us to truncate, we're
3221 * done
3222 */
Yan, Zheng80825102009-11-12 09:35:36 +00003223 if (path->slots[0] == 0)
3224 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003225 path->slots[0]--;
3226 }
3227
Chris Masond3977122009-01-05 21:25:51 -05003228 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003229 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003230 leaf = path->nodes[0];
3231 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3232 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05003233 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003234
Chris Mason5f39d392007-10-15 16:14:19 -04003235 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003236 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003237
Chris Mason85e21ba2008-01-29 15:11:36 -05003238 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003239 break;
3240
Chris Mason5f39d392007-10-15 16:14:19 -04003241 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003242 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003243 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003244 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003245 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003246 encoding = btrfs_file_extent_compression(leaf, fi);
3247 encoding |= btrfs_file_extent_encryption(leaf, fi);
3248 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
3249
Chris Mason179e29e2007-11-01 11:28:41 -04003250 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003251 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003252 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003253 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003254 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003255 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003256 }
Yan008630c2007-11-07 13:31:09 -05003257 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003258 }
Yan, Zheng80825102009-11-12 09:35:36 +00003259 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003260 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003261 } else {
3262 if (item_end < new_size)
3263 break;
3264 if (found_key.offset >= new_size)
3265 del_item = 1;
3266 else
3267 del_item = 0;
3268 }
Chris Mason39279cc2007-06-12 06:35:45 -04003269 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003270 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003271 if (found_type != BTRFS_EXTENT_DATA_KEY)
3272 goto delete;
3273
3274 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003275 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003276 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003277 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003278 u64 orig_num_bytes =
3279 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003280 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003281 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003282 extent_num_bytes = extent_num_bytes &
3283 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003284 btrfs_set_file_extent_num_bytes(leaf, fi,
3285 extent_num_bytes);
3286 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003287 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003288 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003289 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003290 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003291 } else {
Chris Masondb945352007-10-15 16:15:53 -04003292 extent_num_bytes =
3293 btrfs_file_extent_disk_num_bytes(leaf,
3294 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003295 extent_offset = found_key.offset -
3296 btrfs_file_extent_offset(leaf, fi);
3297
Chris Mason39279cc2007-06-12 06:35:45 -04003298 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003299 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003300 if (extent_start != 0) {
3301 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003302 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003303 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003304 }
3305 }
Chris Mason90692182008-02-08 13:49:28 -05003306 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003307 /*
3308 * we can't truncate inline items that have had
3309 * special encodings
3310 */
3311 if (!del_item &&
3312 btrfs_file_extent_compression(leaf, fi) == 0 &&
3313 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3314 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003315 u32 size = new_size - found_key.offset;
3316
3317 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003318 inode_sub_bytes(inode, item_end + 1 -
3319 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003320 }
3321 size =
3322 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003323 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003324 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003325 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003326 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003327 inode_sub_bytes(inode, item_end + 1 -
3328 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003329 }
Chris Mason39279cc2007-06-12 06:35:45 -04003330 }
Chris Mason179e29e2007-11-01 11:28:41 -04003331delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003332 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003333 if (!pending_del_nr) {
3334 /* no pending yet, add ourselves */
3335 pending_del_slot = path->slots[0];
3336 pending_del_nr = 1;
3337 } else if (pending_del_nr &&
3338 path->slots[0] + 1 == pending_del_slot) {
3339 /* hop on the pending chunk */
3340 pending_del_nr++;
3341 pending_del_slot = path->slots[0];
3342 } else {
Chris Masond3977122009-01-05 21:25:51 -05003343 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003344 }
Chris Mason39279cc2007-06-12 06:35:45 -04003345 } else {
3346 break;
3347 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003348 if (found_extent && (root->ref_cows ||
3349 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003350 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003351 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003352 extent_num_bytes, 0,
3353 btrfs_header_owner(leaf),
3354 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003355 BUG_ON(ret);
3356 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003357
Yan, Zheng80825102009-11-12 09:35:36 +00003358 if (found_type == BTRFS_INODE_ITEM_KEY)
3359 break;
3360
3361 if (path->slots[0] == 0 ||
3362 path->slots[0] != pending_del_slot) {
3363 if (root->ref_cows) {
3364 err = -EAGAIN;
3365 goto out;
3366 }
3367 if (pending_del_nr) {
3368 ret = btrfs_del_items(trans, root, path,
3369 pending_del_slot,
3370 pending_del_nr);
3371 BUG_ON(ret);
3372 pending_del_nr = 0;
3373 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003374 btrfs_release_path(root, path);
3375 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003376 } else {
3377 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003378 }
Chris Mason39279cc2007-06-12 06:35:45 -04003379 }
Yan, Zheng80825102009-11-12 09:35:36 +00003380out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003381 if (pending_del_nr) {
3382 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3383 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003384 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003385 }
Chris Mason39279cc2007-06-12 06:35:45 -04003386 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003387 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003388}
3389
Chris Masona52d9a82007-08-27 16:49:44 -04003390/*
3391 * taken from block_truncate_page, but does cow as it zeros out
3392 * any bytes left in the last page in the file.
3393 */
3394static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3395{
3396 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003397 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003398 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3399 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003400 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003401 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003402 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003403 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3404 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3405 struct page *page;
3406 int ret = 0;
3407 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003408 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003409
3410 if ((offset & (blocksize - 1)) == 0)
3411 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003412 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003413 if (ret)
3414 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003415
3416 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003417again:
Chris Masona52d9a82007-08-27 16:49:44 -04003418 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003419 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003420 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003421 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003422 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003423
3424 page_start = page_offset(page);
3425 page_end = page_start + PAGE_CACHE_SIZE - 1;
3426
Chris Masona52d9a82007-08-27 16:49:44 -04003427 if (!PageUptodate(page)) {
3428 ret = btrfs_readpage(NULL, page);
3429 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003430 if (page->mapping != mapping) {
3431 unlock_page(page);
3432 page_cache_release(page);
3433 goto again;
3434 }
Chris Masona52d9a82007-08-27 16:49:44 -04003435 if (!PageUptodate(page)) {
3436 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003437 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003438 }
3439 }
Chris Mason211c17f2008-05-15 09:13:45 -04003440 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003441
Josef Bacik2ac55d42010-02-03 19:33:23 +00003442 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3443 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003444 set_page_extent_mapped(page);
3445
3446 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3447 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003448 unlock_extent_cached(io_tree, page_start, page_end,
3449 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003450 unlock_page(page);
3451 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003452 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003453 btrfs_put_ordered_extent(ordered);
3454 goto again;
3455 }
3456
Josef Bacik2ac55d42010-02-03 19:33:23 +00003457 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003458 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003459 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003460
Josef Bacik2ac55d42010-02-03 19:33:23 +00003461 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3462 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003463 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003464 unlock_extent_cached(io_tree, page_start, page_end,
3465 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003466 goto out_unlock;
3467 }
3468
Chris Masone6dcd2d2008-07-17 12:53:50 -04003469 ret = 0;
3470 if (offset != PAGE_CACHE_SIZE) {
3471 kaddr = kmap(page);
3472 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3473 flush_dcache_page(page);
3474 kunmap(page);
3475 }
Chris Mason247e7432008-07-17 12:53:51 -04003476 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003477 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003478 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3479 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003480
Chris Mason89642222008-07-24 09:41:53 -04003481out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003482 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003483 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003484 unlock_page(page);
3485 page_cache_release(page);
3486out:
3487 return ret;
3488}
3489
Yan Zheng9036c102008-10-30 14:19:41 -04003490int btrfs_cont_expand(struct inode *inode, loff_t size)
3491{
3492 struct btrfs_trans_handle *trans;
3493 struct btrfs_root *root = BTRFS_I(inode)->root;
3494 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003495 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003496 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003497 u64 mask = root->sectorsize - 1;
3498 u64 hole_start = (inode->i_size + mask) & ~mask;
3499 u64 block_end = (size + mask) & ~mask;
3500 u64 last_byte;
3501 u64 cur_offset;
3502 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003503 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003504
3505 if (size <= hole_start)
3506 return 0;
3507
Yan Zheng9036c102008-10-30 14:19:41 -04003508 while (1) {
3509 struct btrfs_ordered_extent *ordered;
3510 btrfs_wait_ordered_range(inode, hole_start,
3511 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003512 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3513 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003514 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3515 if (!ordered)
3516 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003517 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3518 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003519 btrfs_put_ordered_extent(ordered);
3520 }
3521
Yan Zheng9036c102008-10-30 14:19:41 -04003522 cur_offset = hole_start;
3523 while (1) {
3524 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3525 block_end - cur_offset, 0);
3526 BUG_ON(IS_ERR(em) || !em);
3527 last_byte = min(extent_map_end(em), block_end);
3528 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003529 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003530 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003531 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003532
Yan, Zhenga22285a2010-05-16 10:48:46 -04003533 trans = btrfs_start_transaction(root, 2);
3534 if (IS_ERR(trans)) {
3535 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003536 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003537 }
Yan, Zheng80825102009-11-12 09:35:36 +00003538 btrfs_set_trans_block_group(trans, inode);
3539
3540 err = btrfs_drop_extents(trans, inode, cur_offset,
3541 cur_offset + hole_size,
3542 &hint_byte, 1);
3543 BUG_ON(err);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003544
Yan Zheng9036c102008-10-30 14:19:41 -04003545 err = btrfs_insert_file_extent(trans, root,
3546 inode->i_ino, cur_offset, 0,
3547 0, hole_size, 0, hole_size,
3548 0, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003549 BUG_ON(err);
3550
Yan Zheng9036c102008-10-30 14:19:41 -04003551 btrfs_drop_extent_cache(inode, hole_start,
3552 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003553
3554 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003555 }
3556 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003557 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003558 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003559 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003560 break;
3561 }
3562
Yan, Zhenga22285a2010-05-16 10:48:46 -04003563 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003564 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3565 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003566 return err;
3567}
3568
Yan, Zheng80825102009-11-12 09:35:36 +00003569static int btrfs_setattr_size(struct inode *inode, struct iattr *attr)
3570{
3571 struct btrfs_root *root = BTRFS_I(inode)->root;
3572 struct btrfs_trans_handle *trans;
3573 unsigned long nr;
3574 int ret;
3575
3576 if (attr->ia_size == inode->i_size)
3577 return 0;
3578
3579 if (attr->ia_size > inode->i_size) {
3580 unsigned long limit;
3581 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
3582 if (attr->ia_size > inode->i_sb->s_maxbytes)
3583 return -EFBIG;
3584 if (limit != RLIM_INFINITY && attr->ia_size > limit) {
3585 send_sig(SIGXFSZ, current, 0);
3586 return -EFBIG;
3587 }
3588 }
3589
Yan, Zhengd68fc572010-05-16 10:49:58 -04003590 trans = btrfs_start_transaction(root, 5);
3591 if (IS_ERR(trans))
3592 return PTR_ERR(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00003593
Yan, Zheng80825102009-11-12 09:35:36 +00003594 btrfs_set_trans_block_group(trans, inode);
3595
3596 ret = btrfs_orphan_add(trans, inode);
3597 BUG_ON(ret);
3598
3599 nr = trans->blocks_used;
3600 btrfs_end_transaction(trans, root);
Yan, Zheng80825102009-11-12 09:35:36 +00003601 btrfs_btree_balance_dirty(root, nr);
3602
3603 if (attr->ia_size > inode->i_size) {
3604 ret = btrfs_cont_expand(inode, attr->ia_size);
3605 if (ret) {
3606 btrfs_truncate(inode);
3607 return ret;
3608 }
3609
3610 i_size_write(inode, attr->ia_size);
3611 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
3612
Yan, Zhengd68fc572010-05-16 10:49:58 -04003613 trans = btrfs_start_transaction(root, 0);
3614 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003615 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003616 trans->block_rsv = root->orphan_block_rsv;
3617 BUG_ON(!trans->block_rsv);
Yan, Zheng80825102009-11-12 09:35:36 +00003618
3619 ret = btrfs_update_inode(trans, root, inode);
3620 BUG_ON(ret);
3621 if (inode->i_nlink > 0) {
3622 ret = btrfs_orphan_del(trans, inode);
3623 BUG_ON(ret);
3624 }
3625 nr = trans->blocks_used;
3626 btrfs_end_transaction(trans, root);
3627 btrfs_btree_balance_dirty(root, nr);
3628 return 0;
3629 }
3630
3631 /*
3632 * We're truncating a file that used to have good data down to
3633 * zero. Make sure it gets into the ordered flush list so that
3634 * any new writes get down to disk quickly.
3635 */
3636 if (attr->ia_size == 0)
3637 BTRFS_I(inode)->ordered_data_close = 1;
3638
3639 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3640 ret = vmtruncate(inode, attr->ia_size);
3641 BUG_ON(ret);
3642
3643 return 0;
3644}
3645
Chris Mason39279cc2007-06-12 06:35:45 -04003646static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3647{
3648 struct inode *inode = dentry->d_inode;
3649 int err;
3650
3651 err = inode_change_ok(inode, attr);
3652 if (err)
3653 return err;
3654
Chris Mason5a3f23d2009-03-31 13:27:11 -04003655 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Yan, Zheng80825102009-11-12 09:35:36 +00003656 err = btrfs_setattr_size(inode, attr);
3657 if (err)
3658 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003659 }
Yan Zheng9036c102008-10-30 14:19:41 -04003660
Christoph Hellwig10257742010-06-04 11:30:02 +02003661 if (attr->ia_valid) {
3662 setattr_copy(inode, attr);
3663 mark_inode_dirty(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003664
Christoph Hellwig10257742010-06-04 11:30:02 +02003665 if (attr->ia_valid & ATTR_MODE)
3666 err = btrfs_acl_chmod(inode);
3667 }
3668
Chris Mason39279cc2007-06-12 06:35:45 -04003669 return err;
3670}
Chris Mason61295eb2008-01-14 16:24:38 -05003671
Al Virobd555972010-06-07 11:35:40 -04003672void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003673{
3674 struct btrfs_trans_handle *trans;
3675 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003676 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003677 int ret;
3678
3679 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003680 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
3681 root == root->fs_info->tree_root))
Al Virobd555972010-06-07 11:35:40 -04003682 goto no_delete;
3683
Chris Mason39279cc2007-06-12 06:35:45 -04003684 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003685 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003686 goto no_delete;
3687 }
Al Virobd555972010-06-07 11:35:40 -04003688 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003689 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003690
Yan, Zhengc71bf092009-11-12 09:34:40 +00003691 if (root->fs_info->log_root_recovering) {
3692 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3693 goto no_delete;
3694 }
3695
Yan, Zheng76dda932009-09-21 16:00:26 -04003696 if (inode->i_nlink > 0) {
3697 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3698 goto no_delete;
3699 }
3700
Chris Masondbe674a2008-07-17 12:54:05 -04003701 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003702
Yan, Zheng80825102009-11-12 09:35:36 +00003703 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003704 trans = btrfs_start_transaction(root, 0);
3705 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003706 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003707 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003708
Yan, Zhengd68fc572010-05-16 10:49:58 -04003709 ret = btrfs_block_rsv_check(trans, root,
3710 root->orphan_block_rsv, 0, 5);
3711 if (ret) {
3712 BUG_ON(ret != -EAGAIN);
3713 ret = btrfs_commit_transaction(trans, root);
3714 BUG_ON(ret);
3715 continue;
3716 }
3717
3718 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003719 if (ret != -EAGAIN)
3720 break;
3721
3722 nr = trans->blocks_used;
3723 btrfs_end_transaction(trans, root);
3724 trans = NULL;
3725 btrfs_btree_balance_dirty(root, nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003726
Josef Bacik7b128762008-07-24 12:17:14 -04003727 }
3728
Yan, Zheng80825102009-11-12 09:35:36 +00003729 if (ret == 0) {
3730 ret = btrfs_orphan_del(trans, inode);
3731 BUG_ON(ret);
3732 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003733
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003734 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003735 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003736 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003737no_delete:
Al Virobd555972010-06-07 11:35:40 -04003738 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003739 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003740}
3741
3742/*
3743 * this returns the key found in the dir entry in the location pointer.
3744 * If no dir entries were found, location->objectid is 0.
3745 */
3746static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3747 struct btrfs_key *location)
3748{
3749 const char *name = dentry->d_name.name;
3750 int namelen = dentry->d_name.len;
3751 struct btrfs_dir_item *di;
3752 struct btrfs_path *path;
3753 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003754 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003755
3756 path = btrfs_alloc_path();
3757 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003758
Chris Mason39279cc2007-06-12 06:35:45 -04003759 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3760 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003761 if (IS_ERR(di))
3762 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003763
3764 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003765 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003766
Chris Mason5f39d392007-10-15 16:14:19 -04003767 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003768out:
Chris Mason39279cc2007-06-12 06:35:45 -04003769 btrfs_free_path(path);
3770 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003771out_err:
3772 location->objectid = 0;
3773 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003774}
3775
3776/*
3777 * when we hit a tree root in a directory, the btrfs part of the inode
3778 * needs to be changed to reflect the root directory of the tree root. This
3779 * is kind of like crossing a mount point.
3780 */
3781static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003782 struct inode *dir,
3783 struct dentry *dentry,
3784 struct btrfs_key *location,
3785 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003786{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003787 struct btrfs_path *path;
3788 struct btrfs_root *new_root;
3789 struct btrfs_root_ref *ref;
3790 struct extent_buffer *leaf;
3791 int ret;
3792 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003793
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003794 path = btrfs_alloc_path();
3795 if (!path) {
3796 err = -ENOMEM;
3797 goto out;
3798 }
Chris Mason39279cc2007-06-12 06:35:45 -04003799
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003800 err = -ENOENT;
3801 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3802 BTRFS_I(dir)->root->root_key.objectid,
3803 location->objectid);
3804 if (ret) {
3805 if (ret < 0)
3806 err = ret;
3807 goto out;
3808 }
Chris Mason39279cc2007-06-12 06:35:45 -04003809
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003810 leaf = path->nodes[0];
3811 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3812 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3813 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3814 goto out;
3815
3816 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3817 (unsigned long)(ref + 1),
3818 dentry->d_name.len);
3819 if (ret)
3820 goto out;
3821
3822 btrfs_release_path(root->fs_info->tree_root, path);
3823
3824 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3825 if (IS_ERR(new_root)) {
3826 err = PTR_ERR(new_root);
3827 goto out;
3828 }
3829
3830 if (btrfs_root_refs(&new_root->root_item) == 0) {
3831 err = -ENOENT;
3832 goto out;
3833 }
3834
3835 *sub_root = new_root;
3836 location->objectid = btrfs_root_dirid(&new_root->root_item);
3837 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003838 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003839 err = 0;
3840out:
3841 btrfs_free_path(path);
3842 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003843}
3844
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003845static void inode_tree_add(struct inode *inode)
3846{
3847 struct btrfs_root *root = BTRFS_I(inode)->root;
3848 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003849 struct rb_node **p;
3850 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003851again:
3852 p = &root->inode_tree.rb_node;
3853 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003854
Yan, Zheng76dda932009-09-21 16:00:26 -04003855 if (hlist_unhashed(&inode->i_hash))
3856 return;
3857
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003858 spin_lock(&root->inode_lock);
3859 while (*p) {
3860 parent = *p;
3861 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3862
3863 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003864 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003865 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003866 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003867 else {
3868 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003869 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003870 rb_erase(parent, &root->inode_tree);
3871 RB_CLEAR_NODE(parent);
3872 spin_unlock(&root->inode_lock);
3873 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003874 }
3875 }
3876 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3877 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3878 spin_unlock(&root->inode_lock);
3879}
3880
3881static void inode_tree_del(struct inode *inode)
3882{
3883 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003884 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003885
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003886 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003887 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003888 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003889 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003890 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003891 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003892 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003893
Josef Bacik0af3d002010-06-21 14:48:16 -04003894 /*
3895 * Free space cache has inodes in the tree root, but the tree root has a
3896 * root_refs of 0, so this could end up dropping the tree root as a
3897 * snapshot, so we need the extra !root->fs_info->tree_root check to
3898 * make sure we don't drop it.
3899 */
3900 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3901 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003902 synchronize_srcu(&root->fs_info->subvol_srcu);
3903 spin_lock(&root->inode_lock);
3904 empty = RB_EMPTY_ROOT(&root->inode_tree);
3905 spin_unlock(&root->inode_lock);
3906 if (empty)
3907 btrfs_add_dead_root(root);
3908 }
3909}
3910
3911int btrfs_invalidate_inodes(struct btrfs_root *root)
3912{
3913 struct rb_node *node;
3914 struct rb_node *prev;
3915 struct btrfs_inode *entry;
3916 struct inode *inode;
3917 u64 objectid = 0;
3918
3919 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3920
3921 spin_lock(&root->inode_lock);
3922again:
3923 node = root->inode_tree.rb_node;
3924 prev = NULL;
3925 while (node) {
3926 prev = node;
3927 entry = rb_entry(node, struct btrfs_inode, rb_node);
3928
3929 if (objectid < entry->vfs_inode.i_ino)
3930 node = node->rb_left;
3931 else if (objectid > entry->vfs_inode.i_ino)
3932 node = node->rb_right;
3933 else
3934 break;
3935 }
3936 if (!node) {
3937 while (prev) {
3938 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3939 if (objectid <= entry->vfs_inode.i_ino) {
3940 node = prev;
3941 break;
3942 }
3943 prev = rb_next(prev);
3944 }
3945 }
3946 while (node) {
3947 entry = rb_entry(node, struct btrfs_inode, rb_node);
3948 objectid = entry->vfs_inode.i_ino + 1;
3949 inode = igrab(&entry->vfs_inode);
3950 if (inode) {
3951 spin_unlock(&root->inode_lock);
3952 if (atomic_read(&inode->i_count) > 1)
3953 d_prune_aliases(inode);
3954 /*
Al Viro45321ac2010-06-07 13:43:19 -04003955 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04003956 * the inode cache when its usage count
3957 * hits zero.
3958 */
3959 iput(inode);
3960 cond_resched();
3961 spin_lock(&root->inode_lock);
3962 goto again;
3963 }
3964
3965 if (cond_resched_lock(&root->inode_lock))
3966 goto again;
3967
3968 node = rb_next(node);
3969 }
3970 spin_unlock(&root->inode_lock);
3971 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003972}
3973
Chris Masone02119d2008-09-05 16:13:11 -04003974static int btrfs_init_locked_inode(struct inode *inode, void *p)
3975{
3976 struct btrfs_iget_args *args = p;
3977 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04003978 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003979 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003980 return 0;
3981}
3982
3983static int btrfs_find_actor(struct inode *inode, void *opaque)
3984{
3985 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05003986 return args->ino == inode->i_ino &&
3987 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003988}
3989
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003990static struct inode *btrfs_iget_locked(struct super_block *s,
3991 u64 objectid,
3992 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003993{
3994 struct inode *inode;
3995 struct btrfs_iget_args args;
3996 args.ino = objectid;
3997 args.root = root;
3998
3999 inode = iget5_locked(s, objectid, btrfs_find_actor,
4000 btrfs_init_locked_inode,
4001 (void *)&args);
4002 return inode;
4003}
4004
Balaji Rao1a54ef82008-07-21 02:01:04 +05304005/* Get an inode object given its location and corresponding root.
4006 * Returns in *is_new if the inode was read from disk
4007 */
4008struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004009 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304010{
4011 struct inode *inode;
4012
4013 inode = btrfs_iget_locked(s, location->objectid, root);
4014 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004015 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304016
4017 if (inode->i_state & I_NEW) {
4018 BTRFS_I(inode)->root = root;
4019 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4020 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004021
4022 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304023 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00004024 if (new)
4025 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05304026 }
4027
4028 return inode;
4029}
4030
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004031static struct inode *new_simple_dir(struct super_block *s,
4032 struct btrfs_key *key,
4033 struct btrfs_root *root)
4034{
4035 struct inode *inode = new_inode(s);
4036
4037 if (!inode)
4038 return ERR_PTR(-ENOMEM);
4039
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004040 BTRFS_I(inode)->root = root;
4041 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
4042 BTRFS_I(inode)->dummy_inode = 1;
4043
4044 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
4045 inode->i_op = &simple_dir_inode_operations;
4046 inode->i_fop = &simple_dir_operations;
4047 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4048 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4049
4050 return inode;
4051}
4052
Chris Mason3de45862008-11-17 21:02:50 -05004053struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004054{
Chris Masond3977122009-01-05 21:25:51 -05004055 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004056 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004057 struct btrfs_root *sub_root = root;
4058 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004059 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004060 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004061
Yan, Zheng76dda932009-09-21 16:00:26 -04004062 dentry->d_op = &btrfs_dentry_operations;
4063
Chris Mason39279cc2007-06-12 06:35:45 -04004064 if (dentry->d_name.len > BTRFS_NAME_LEN)
4065 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004066
Chris Mason39279cc2007-06-12 06:35:45 -04004067 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04004068
Chris Mason39279cc2007-06-12 06:35:45 -04004069 if (ret < 0)
4070 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004071
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004072 if (location.objectid == 0)
4073 return NULL;
4074
4075 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004076 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004077 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004078 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004079
4080 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4081
Yan, Zheng76dda932009-09-21 16:00:26 -04004082 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004083 ret = fixup_tree_root_location(root, dir, dentry,
4084 &location, &sub_root);
4085 if (ret < 0) {
4086 if (ret != -ENOENT)
4087 inode = ERR_PTR(ret);
4088 else
4089 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4090 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004091 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004092 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004093 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4094
Yan, Zhengc71bf092009-11-12 09:34:40 +00004095 if (root != sub_root) {
4096 down_read(&root->fs_info->cleanup_work_sem);
4097 if (!(inode->i_sb->s_flags & MS_RDONLY))
4098 btrfs_orphan_cleanup(sub_root);
4099 up_read(&root->fs_info->cleanup_work_sem);
4100 }
4101
Chris Mason3de45862008-11-17 21:02:50 -05004102 return inode;
4103}
4104
Yan, Zheng76dda932009-09-21 16:00:26 -04004105static int btrfs_dentry_delete(struct dentry *dentry)
4106{
4107 struct btrfs_root *root;
4108
Yan, Zhengefefb142009-10-09 09:25:16 -04004109 if (!dentry->d_inode && !IS_ROOT(dentry))
4110 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04004111
Yan, Zhengefefb142009-10-09 09:25:16 -04004112 if (dentry->d_inode) {
4113 root = BTRFS_I(dentry->d_inode)->root;
4114 if (btrfs_root_refs(&root->root_item) == 0)
4115 return 1;
4116 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004117 return 0;
4118}
4119
Chris Mason3de45862008-11-17 21:02:50 -05004120static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4121 struct nameidata *nd)
4122{
4123 struct inode *inode;
4124
Chris Mason3de45862008-11-17 21:02:50 -05004125 inode = btrfs_lookup_dentry(dir, dentry);
4126 if (IS_ERR(inode))
4127 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004128
Chris Mason39279cc2007-06-12 06:35:45 -04004129 return d_splice_alias(inode, dentry);
4130}
4131
Chris Mason39279cc2007-06-12 06:35:45 -04004132static unsigned char btrfs_filetype_table[] = {
4133 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4134};
4135
David Woodhousecbdf5a22008-08-06 19:42:33 +01004136static int btrfs_real_readdir(struct file *filp, void *dirent,
4137 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004138{
Chris Mason6da6aba2007-12-18 16:15:09 -05004139 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004140 struct btrfs_root *root = BTRFS_I(inode)->root;
4141 struct btrfs_item *item;
4142 struct btrfs_dir_item *di;
4143 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004144 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004145 struct btrfs_path *path;
4146 int ret;
4147 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04004148 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004149 int slot;
4150 int advance;
4151 unsigned char d_type;
4152 int over = 0;
4153 u32 di_cur;
4154 u32 di_total;
4155 u32 di_len;
4156 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004157 char tmp_name[32];
4158 char *name_ptr;
4159 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04004160
4161 /* FIXME, use a real flag for deciding about the key type */
4162 if (root->fs_info->tree_root == root)
4163 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004164
Chris Mason39544012007-12-12 14:38:19 -05004165 /* special case for "." */
4166 if (filp->f_pos == 0) {
4167 over = filldir(dirent, ".", 1,
4168 1, inode->i_ino,
4169 DT_DIR);
4170 if (over)
4171 return 0;
4172 filp->f_pos = 1;
4173 }
Chris Mason39544012007-12-12 14:38:19 -05004174 /* special case for .., just use the back ref */
4175 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004176 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004177 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004178 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004179 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004180 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004181 filp->f_pos = 2;
4182 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004183 path = btrfs_alloc_path();
4184 path->reada = 2;
4185
Chris Mason39279cc2007-06-12 06:35:45 -04004186 btrfs_set_key_type(&key, key_type);
4187 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01004188 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04004189
Chris Mason39279cc2007-06-12 06:35:45 -04004190 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4191 if (ret < 0)
4192 goto err;
4193 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01004194
4195 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004196 leaf = path->nodes[0];
4197 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004198 slot = path->slots[0];
4199 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01004200 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004201 ret = btrfs_next_leaf(root, path);
4202 if (ret)
4203 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004204 leaf = path->nodes[0];
4205 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004206 slot = path->slots[0];
4207 } else {
4208 slot++;
4209 path->slots[0]++;
4210 }
4211 }
Chris Mason3de45862008-11-17 21:02:50 -05004212
Chris Mason39279cc2007-06-12 06:35:45 -04004213 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004214 item = btrfs_item_nr(leaf, slot);
4215 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4216
4217 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004218 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004219 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004220 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004221 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04004222 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04004223
4224 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01004225
Chris Mason39279cc2007-06-12 06:35:45 -04004226 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4227 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004228 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004229
4230 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004231 struct btrfs_key location;
4232
4233 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004234 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004235 name_ptr = tmp_name;
4236 } else {
4237 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004238 if (!name_ptr) {
4239 ret = -ENOMEM;
4240 goto err;
4241 }
Chris Mason5f39d392007-10-15 16:14:19 -04004242 }
4243 read_extent_buffer(leaf, name_ptr,
4244 (unsigned long)(di + 1), name_len);
4245
4246 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4247 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004248
4249 /* is this a reference to our own snapshot? If so
4250 * skip it
4251 */
4252 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4253 location.objectid == root->root_key.objectid) {
4254 over = 0;
4255 goto skip;
4256 }
Chris Mason5f39d392007-10-15 16:14:19 -04004257 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004258 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004259 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004260
Chris Mason3de45862008-11-17 21:02:50 -05004261skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004262 if (name_ptr != tmp_name)
4263 kfree(name_ptr);
4264
Chris Mason39279cc2007-06-12 06:35:45 -04004265 if (over)
4266 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004267 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004268 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004269 di_cur += di_len;
4270 di = (struct btrfs_dir_item *)((char *)di + di_len);
4271 }
4272 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004273
4274 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004275 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004276 /*
4277 * 32-bit glibc will use getdents64, but then strtol -
4278 * so the last number we can serve is this.
4279 */
4280 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004281 else
4282 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004283nopos:
4284 ret = 0;
4285err:
Chris Mason39279cc2007-06-12 06:35:45 -04004286 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004287 return ret;
4288}
4289
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004290int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004291{
4292 struct btrfs_root *root = BTRFS_I(inode)->root;
4293 struct btrfs_trans_handle *trans;
4294 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004295 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004296
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004297 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004298 return 0;
4299
Josef Bacik0af3d002010-06-21 14:48:16 -04004300 smp_mb();
4301 nolock = (root->fs_info->closing && root == root->fs_info->tree_root);
4302
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004303 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004304 if (nolock)
4305 trans = btrfs_join_transaction_nolock(root, 1);
4306 else
4307 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004308 btrfs_set_trans_block_group(trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04004309 if (nolock)
4310 ret = btrfs_end_transaction_nolock(trans, root);
4311 else
4312 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004313 }
4314 return ret;
4315}
4316
4317/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004318 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004319 * inode changes. But, it is most likely to find the inode in cache.
4320 * FIXME, needs more benchmarking...there are no reasons other than performance
4321 * to keep or drop this code.
4322 */
4323void btrfs_dirty_inode(struct inode *inode)
4324{
4325 struct btrfs_root *root = BTRFS_I(inode)->root;
4326 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004327 int ret;
4328
4329 if (BTRFS_I(inode)->dummy_inode)
4330 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004331
Chris Masonf9295742008-07-17 12:54:14 -04004332 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004333 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004334
4335 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004336 if (ret && ret == -ENOSPC) {
4337 /* whoops, lets try again with the full transaction */
4338 btrfs_end_transaction(trans, root);
4339 trans = btrfs_start_transaction(root, 1);
Chris Mason9aeead72010-05-27 10:23:00 -04004340 if (IS_ERR(trans)) {
4341 if (printk_ratelimit()) {
4342 printk(KERN_ERR "btrfs: fail to "
4343 "dirty inode %lu error %ld\n",
4344 inode->i_ino, PTR_ERR(trans));
4345 }
4346 return;
4347 }
Chris Mason94b60442010-05-26 11:02:00 -04004348 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004349
Chris Mason94b60442010-05-26 11:02:00 -04004350 ret = btrfs_update_inode(trans, root, inode);
4351 if (ret) {
Chris Mason9aeead72010-05-27 10:23:00 -04004352 if (printk_ratelimit()) {
4353 printk(KERN_ERR "btrfs: fail to "
4354 "dirty inode %lu error %d\n",
4355 inode->i_ino, ret);
4356 }
Chris Mason94b60442010-05-26 11:02:00 -04004357 }
4358 }
Chris Mason39279cc2007-06-12 06:35:45 -04004359 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004360}
4361
Chris Masond352ac62008-09-29 15:18:18 -04004362/*
4363 * find the highest existing sequence number in a directory
4364 * and then set the in-memory index_cnt variable to reflect
4365 * free sequence numbers
4366 */
Josef Bacikaec74772008-07-24 12:12:38 -04004367static int btrfs_set_inode_index_count(struct inode *inode)
4368{
4369 struct btrfs_root *root = BTRFS_I(inode)->root;
4370 struct btrfs_key key, found_key;
4371 struct btrfs_path *path;
4372 struct extent_buffer *leaf;
4373 int ret;
4374
4375 key.objectid = inode->i_ino;
4376 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4377 key.offset = (u64)-1;
4378
4379 path = btrfs_alloc_path();
4380 if (!path)
4381 return -ENOMEM;
4382
4383 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4384 if (ret < 0)
4385 goto out;
4386 /* FIXME: we should be able to handle this */
4387 if (ret == 0)
4388 goto out;
4389 ret = 0;
4390
4391 /*
4392 * MAGIC NUMBER EXPLANATION:
4393 * since we search a directory based on f_pos we have to start at 2
4394 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4395 * else has to start at 2
4396 */
4397 if (path->slots[0] == 0) {
4398 BTRFS_I(inode)->index_cnt = 2;
4399 goto out;
4400 }
4401
4402 path->slots[0]--;
4403
4404 leaf = path->nodes[0];
4405 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4406
4407 if (found_key.objectid != inode->i_ino ||
4408 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4409 BTRFS_I(inode)->index_cnt = 2;
4410 goto out;
4411 }
4412
4413 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4414out:
4415 btrfs_free_path(path);
4416 return ret;
4417}
4418
Chris Masond352ac62008-09-29 15:18:18 -04004419/*
4420 * helper to find a free sequence number in a given directory. This current
4421 * code is very simple, later versions will do smarter things in the btree
4422 */
Chris Mason3de45862008-11-17 21:02:50 -05004423int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004424{
4425 int ret = 0;
4426
4427 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4428 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004429 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004430 return ret;
4431 }
4432
Chris Mason00e4e6b2008-08-05 11:18:09 -04004433 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004434 BTRFS_I(dir)->index_cnt++;
4435
4436 return ret;
4437}
4438
Chris Mason39279cc2007-06-12 06:35:45 -04004439static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4440 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004441 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004442 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004443 u64 ref_objectid, u64 objectid,
4444 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004445{
4446 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004447 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004448 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004449 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004450 struct btrfs_inode_ref *ref;
4451 struct btrfs_key key[2];
4452 u32 sizes[2];
4453 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004454 int ret;
4455 int owner;
4456
Chris Mason5f39d392007-10-15 16:14:19 -04004457 path = btrfs_alloc_path();
4458 BUG_ON(!path);
4459
Chris Mason39279cc2007-06-12 06:35:45 -04004460 inode = new_inode(root->fs_info->sb);
4461 if (!inode)
4462 return ERR_PTR(-ENOMEM);
4463
Josef Bacikaec74772008-07-24 12:12:38 -04004464 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004465 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004466 if (ret) {
4467 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004468 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004469 }
Josef Bacikaec74772008-07-24 12:12:38 -04004470 }
4471 /*
4472 * index_cnt is ignored for everything but a dir,
4473 * btrfs_get_inode_index_count has an explanation for the magic
4474 * number
4475 */
4476 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004477 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004478 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik6a632092009-02-20 11:00:09 -05004479 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004480
Chris Mason39279cc2007-06-12 06:35:45 -04004481 if (mode & S_IFDIR)
4482 owner = 0;
4483 else
4484 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004485 BTRFS_I(inode)->block_group =
4486 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004487
4488 key[0].objectid = objectid;
4489 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4490 key[0].offset = 0;
4491
4492 key[1].objectid = objectid;
4493 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4494 key[1].offset = ref_objectid;
4495
4496 sizes[0] = sizeof(struct btrfs_inode_item);
4497 sizes[1] = name_len + sizeof(*ref);
4498
Chris Masonb9473432009-03-13 11:00:37 -04004499 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004500 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4501 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004502 goto fail;
4503
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004504 inode_init_owner(inode, dir, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04004505 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004506 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004507 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004508 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4509 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004510 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004511
4512 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4513 struct btrfs_inode_ref);
4514 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004515 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004516 ptr = (unsigned long)(ref + 1);
4517 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4518
Chris Mason5f39d392007-10-15 16:14:19 -04004519 btrfs_mark_buffer_dirty(path->nodes[0]);
4520 btrfs_free_path(path);
4521
Chris Mason39279cc2007-06-12 06:35:45 -04004522 location = &BTRFS_I(inode)->location;
4523 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004524 location->offset = 0;
4525 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4526
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004527 btrfs_inherit_iflags(inode, dir);
4528
Chris Mason94272162009-07-02 12:26:06 -04004529 if ((mode & S_IFREG)) {
4530 if (btrfs_test_opt(root, NODATASUM))
4531 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4532 if (btrfs_test_opt(root, NODATACOW))
4533 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4534 }
4535
Chris Mason39279cc2007-06-12 06:35:45 -04004536 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004537 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004538 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004539fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004540 if (dir)
4541 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004542 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004543 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004544 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004545}
4546
4547static inline u8 btrfs_inode_type(struct inode *inode)
4548{
4549 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4550}
4551
Chris Masond352ac62008-09-29 15:18:18 -04004552/*
4553 * utility function to add 'inode' into 'parent_inode' with
4554 * a give name and a given sequence number.
4555 * if 'add_backref' is true, also insert a backref from the
4556 * inode to the parent directory.
4557 */
Chris Masone02119d2008-09-05 16:13:11 -04004558int btrfs_add_link(struct btrfs_trans_handle *trans,
4559 struct inode *parent_inode, struct inode *inode,
4560 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004561{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004562 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004563 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004564 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004565
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004566 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4567 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4568 } else {
4569 key.objectid = inode->i_ino;
4570 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4571 key.offset = 0;
4572 }
Chris Mason39279cc2007-06-12 06:35:45 -04004573
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004574 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4575 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4576 key.objectid, root->root_key.objectid,
4577 parent_inode->i_ino,
4578 index, name, name_len);
4579 } else if (add_backref) {
4580 ret = btrfs_insert_inode_ref(trans, root,
4581 name, name_len, inode->i_ino,
4582 parent_inode->i_ino, index);
4583 }
4584
Chris Mason39279cc2007-06-12 06:35:45 -04004585 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004586 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4587 parent_inode->i_ino, &key,
4588 btrfs_inode_type(inode), index);
4589 BUG_ON(ret);
4590
Chris Masondbe674a2008-07-17 12:54:05 -04004591 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004592 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004593 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004594 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004595 }
4596 return ret;
4597}
4598
4599static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05004600 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004601 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004602{
Chris Masone02119d2008-09-05 16:13:11 -04004603 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4604 inode, dentry->d_name.name,
4605 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004606 if (!err) {
4607 d_instantiate(dentry, inode);
4608 return 0;
4609 }
4610 if (err > 0)
4611 err = -EEXIST;
4612 return err;
4613}
4614
Josef Bacik618e21d2007-07-11 10:18:17 -04004615static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4616 int mode, dev_t rdev)
4617{
4618 struct btrfs_trans_handle *trans;
4619 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004620 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004621 int err;
4622 int drop_inode = 0;
4623 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004624 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004625 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004626
4627 if (!new_valid_dev(rdev))
4628 return -EINVAL;
4629
Yan, Zhenga22285a2010-05-16 10:48:46 -04004630 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4631 if (err)
4632 return err;
4633
Josef Bacik9ed74f22009-09-11 16:12:44 -04004634 /*
4635 * 2 for inode item and ref
4636 * 2 for dir items
4637 * 1 for xattr if selinux is on
4638 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004639 trans = btrfs_start_transaction(root, 5);
4640 if (IS_ERR(trans))
4641 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004642
Josef Bacik618e21d2007-07-11 10:18:17 -04004643 btrfs_set_trans_block_group(trans, dir);
4644
Josef Bacikaec74772008-07-24 12:12:38 -04004645 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004646 dentry->d_name.len,
4647 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004648 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004649 err = PTR_ERR(inode);
4650 if (IS_ERR(inode))
4651 goto out_unlock;
4652
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004653 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004654 if (err) {
4655 drop_inode = 1;
4656 goto out_unlock;
4657 }
4658
Josef Bacik618e21d2007-07-11 10:18:17 -04004659 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004660 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004661 if (err)
4662 drop_inode = 1;
4663 else {
4664 inode->i_op = &btrfs_special_inode_operations;
4665 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004666 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004667 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004668 btrfs_update_inode_block_group(trans, inode);
4669 btrfs_update_inode_block_group(trans, dir);
4670out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004671 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004672 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004673 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004674 if (drop_inode) {
4675 inode_dec_link_count(inode);
4676 iput(inode);
4677 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004678 return err;
4679}
4680
Chris Mason39279cc2007-06-12 06:35:45 -04004681static int btrfs_create(struct inode *dir, struct dentry *dentry,
4682 int mode, struct nameidata *nd)
4683{
4684 struct btrfs_trans_handle *trans;
4685 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004686 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004687 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004688 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004689 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004690 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004691 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004692
Yan, Zhenga22285a2010-05-16 10:48:46 -04004693 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4694 if (err)
4695 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004696 /*
4697 * 2 for inode item and ref
4698 * 2 for dir items
4699 * 1 for xattr if selinux is on
4700 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004701 trans = btrfs_start_transaction(root, 5);
4702 if (IS_ERR(trans))
4703 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004704
Chris Mason39279cc2007-06-12 06:35:45 -04004705 btrfs_set_trans_block_group(trans, dir);
4706
Josef Bacikaec74772008-07-24 12:12:38 -04004707 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004708 dentry->d_name.len,
4709 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004710 objectid, BTRFS_I(dir)->block_group, mode,
4711 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004712 err = PTR_ERR(inode);
4713 if (IS_ERR(inode))
4714 goto out_unlock;
4715
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004716 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004717 if (err) {
4718 drop_inode = 1;
4719 goto out_unlock;
4720 }
4721
Chris Mason39279cc2007-06-12 06:35:45 -04004722 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004723 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004724 if (err)
4725 drop_inode = 1;
4726 else {
4727 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004728 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004729 inode->i_fop = &btrfs_file_operations;
4730 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004731 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004732 }
Chris Mason39279cc2007-06-12 06:35:45 -04004733 btrfs_update_inode_block_group(trans, inode);
4734 btrfs_update_inode_block_group(trans, dir);
4735out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004736 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004737 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004738 if (drop_inode) {
4739 inode_dec_link_count(inode);
4740 iput(inode);
4741 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004742 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004743 return err;
4744}
4745
4746static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4747 struct dentry *dentry)
4748{
4749 struct btrfs_trans_handle *trans;
4750 struct btrfs_root *root = BTRFS_I(dir)->root;
4751 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004752 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004753 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004754 int err;
4755 int drop_inode = 0;
4756
4757 if (inode->i_nlink == 0)
4758 return -ENOENT;
4759
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004760 /* do not allow sys_link's with other subvols of the same device */
4761 if (root->objectid != BTRFS_I(inode)->root->objectid)
4762 return -EPERM;
4763
Josef Bacik9ed74f22009-09-11 16:12:44 -04004764 btrfs_inc_nlink(inode);
4765
Chris Mason3de45862008-11-17 21:02:50 -05004766 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004767 if (err)
4768 goto fail;
4769
Yan, Zhenga22285a2010-05-16 10:48:46 -04004770 /*
4771 * 1 item for inode ref
4772 * 2 items for dir items
4773 */
4774 trans = btrfs_start_transaction(root, 3);
4775 if (IS_ERR(trans)) {
4776 err = PTR_ERR(trans);
4777 goto fail;
4778 }
Chris Mason5f39d392007-10-15 16:14:19 -04004779
Chris Mason39279cc2007-06-12 06:35:45 -04004780 btrfs_set_trans_block_group(trans, dir);
4781 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04004782
Chris Mason00e4e6b2008-08-05 11:18:09 -04004783 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004784
Yan, Zhenga5719522009-09-24 09:17:31 -04004785 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004786 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004787 } else {
4788 btrfs_update_inode_block_group(trans, dir);
4789 err = btrfs_update_inode(trans, root, inode);
4790 BUG_ON(err);
4791 btrfs_log_new_name(trans, inode, NULL, dentry->d_parent);
4792 }
Chris Mason39279cc2007-06-12 06:35:45 -04004793
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004794 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004795 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004796fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004797 if (drop_inode) {
4798 inode_dec_link_count(inode);
4799 iput(inode);
4800 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004801 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004802 return err;
4803}
4804
Chris Mason39279cc2007-06-12 06:35:45 -04004805static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4806{
Chris Masonb9d86662008-05-02 16:13:49 -04004807 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004808 struct btrfs_trans_handle *trans;
4809 struct btrfs_root *root = BTRFS_I(dir)->root;
4810 int err = 0;
4811 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004812 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004813 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004814 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004815
Yan, Zhenga22285a2010-05-16 10:48:46 -04004816 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4817 if (err)
4818 return err;
4819
Josef Bacik9ed74f22009-09-11 16:12:44 -04004820 /*
4821 * 2 items for inode and ref
4822 * 2 items for dir items
4823 * 1 for xattr if selinux is on
4824 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004825 trans = btrfs_start_transaction(root, 5);
4826 if (IS_ERR(trans))
4827 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004828 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004829
Josef Bacikaec74772008-07-24 12:12:38 -04004830 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004831 dentry->d_name.len,
4832 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004833 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4834 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004835 if (IS_ERR(inode)) {
4836 err = PTR_ERR(inode);
4837 goto out_fail;
4838 }
Chris Mason5f39d392007-10-15 16:14:19 -04004839
Chris Mason39279cc2007-06-12 06:35:45 -04004840 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004841
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004842 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004843 if (err)
4844 goto out_fail;
4845
Chris Mason39279cc2007-06-12 06:35:45 -04004846 inode->i_op = &btrfs_dir_inode_operations;
4847 inode->i_fop = &btrfs_dir_file_operations;
4848 btrfs_set_trans_block_group(trans, inode);
4849
Chris Masondbe674a2008-07-17 12:54:05 -04004850 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004851 err = btrfs_update_inode(trans, root, inode);
4852 if (err)
4853 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004854
Chris Masone02119d2008-09-05 16:13:11 -04004855 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4856 inode, dentry->d_name.name,
4857 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004858 if (err)
4859 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004860
Chris Mason39279cc2007-06-12 06:35:45 -04004861 d_instantiate(dentry, inode);
4862 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004863 btrfs_update_inode_block_group(trans, inode);
4864 btrfs_update_inode_block_group(trans, dir);
4865
4866out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004867 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004868 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004869 if (drop_on_err)
4870 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004871 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004872 return err;
4873}
4874
Chris Masond352ac62008-09-29 15:18:18 -04004875/* helper for btfs_get_extent. Given an existing extent in the tree,
4876 * and an extent that you want to insert, deal with overlap and insert
4877 * the new extent into the tree.
4878 */
Chris Mason3b951512008-04-17 11:29:12 -04004879static int merge_extent_mapping(struct extent_map_tree *em_tree,
4880 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004881 struct extent_map *em,
4882 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004883{
4884 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004885
Chris Masone6dcd2d2008-07-17 12:53:50 -04004886 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4887 start_diff = map_start - em->start;
4888 em->start = map_start;
4889 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004890 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4891 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004892 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004893 em->block_len -= start_diff;
4894 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004895 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004896}
4897
Chris Masonc8b97812008-10-29 14:49:59 -04004898static noinline int uncompress_inline(struct btrfs_path *path,
4899 struct inode *inode, struct page *page,
4900 size_t pg_offset, u64 extent_offset,
4901 struct btrfs_file_extent_item *item)
4902{
4903 int ret;
4904 struct extent_buffer *leaf = path->nodes[0];
4905 char *tmp;
4906 size_t max_size;
4907 unsigned long inline_size;
4908 unsigned long ptr;
4909
4910 WARN_ON(pg_offset != 0);
4911 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4912 inline_size = btrfs_file_extent_inline_item_len(leaf,
4913 btrfs_item_nr(leaf, path->slots[0]));
4914 tmp = kmalloc(inline_size, GFP_NOFS);
4915 ptr = btrfs_file_extent_inline_start(item);
4916
4917 read_extent_buffer(leaf, tmp, ptr, inline_size);
4918
Chris Mason5b050f02008-11-11 09:34:41 -05004919 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004920 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
4921 inline_size, max_size);
4922 if (ret) {
4923 char *kaddr = kmap_atomic(page, KM_USER0);
4924 unsigned long copy_size = min_t(u64,
4925 PAGE_CACHE_SIZE - pg_offset,
4926 max_size - extent_offset);
4927 memset(kaddr + pg_offset, 0, copy_size);
4928 kunmap_atomic(kaddr, KM_USER0);
4929 }
4930 kfree(tmp);
4931 return 0;
4932}
4933
Chris Masond352ac62008-09-29 15:18:18 -04004934/*
4935 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004936 * the ugly parts come from merging extents from the disk with the in-ram
4937 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004938 * where the in-ram extents might be locked pending data=ordered completion.
4939 *
4940 * This also copies inline extents directly into the page.
4941 */
Chris Masond3977122009-01-05 21:25:51 -05004942
Chris Masona52d9a82007-08-27 16:49:44 -04004943struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004944 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004945 int create)
4946{
4947 int ret;
4948 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004949 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004950 u64 extent_start = 0;
4951 u64 extent_end = 0;
4952 u64 objectid = inode->i_ino;
4953 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004954 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004955 struct btrfs_root *root = BTRFS_I(inode)->root;
4956 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004957 struct extent_buffer *leaf;
4958 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004959 struct extent_map *em = NULL;
4960 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004961 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004962 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004963 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04004964
Chris Masona52d9a82007-08-27 16:49:44 -04004965again:
Chris Mason890871b2009-09-02 16:24:52 -04004966 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004967 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004968 if (em)
4969 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004970 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004971
Chris Masona52d9a82007-08-27 16:49:44 -04004972 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004973 if (em->start > start || em->start + em->len <= start)
4974 free_extent_map(em);
4975 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004976 free_extent_map(em);
4977 else
4978 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004979 }
Chris Masond1310b22008-01-24 16:13:08 -05004980 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004981 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004982 err = -ENOMEM;
4983 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004984 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004985 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004986 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004987 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004988 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004989 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004990
4991 if (!path) {
4992 path = btrfs_alloc_path();
4993 BUG_ON(!path);
4994 }
4995
Chris Mason179e29e2007-11-01 11:28:41 -04004996 ret = btrfs_lookup_file_extent(trans, root, path,
4997 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004998 if (ret < 0) {
4999 err = ret;
5000 goto out;
5001 }
5002
5003 if (ret != 0) {
5004 if (path->slots[0] == 0)
5005 goto not_found;
5006 path->slots[0]--;
5007 }
5008
Chris Mason5f39d392007-10-15 16:14:19 -04005009 leaf = path->nodes[0];
5010 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005011 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005012 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005013 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5014 found_type = btrfs_key_type(&found_key);
5015 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005016 found_type != BTRFS_EXTENT_DATA_KEY) {
5017 goto not_found;
5018 }
5019
Chris Mason5f39d392007-10-15 16:14:19 -04005020 found_type = btrfs_file_extent_type(leaf, item);
5021 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04005022 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005023 if (found_type == BTRFS_FILE_EXTENT_REG ||
5024 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005025 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005026 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005027 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5028 size_t size;
5029 size = btrfs_file_extent_inline_len(leaf, item);
5030 extent_end = (extent_start + size + root->sectorsize - 1) &
5031 ~((u64)root->sectorsize - 1);
5032 }
5033
5034 if (start >= extent_end) {
5035 path->slots[0]++;
5036 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5037 ret = btrfs_next_leaf(root, path);
5038 if (ret < 0) {
5039 err = ret;
5040 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005041 }
Yan Zheng9036c102008-10-30 14:19:41 -04005042 if (ret > 0)
5043 goto not_found;
5044 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005045 }
Yan Zheng9036c102008-10-30 14:19:41 -04005046 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5047 if (found_key.objectid != objectid ||
5048 found_key.type != BTRFS_EXTENT_DATA_KEY)
5049 goto not_found;
5050 if (start + len <= found_key.offset)
5051 goto not_found;
5052 em->start = start;
5053 em->len = found_key.offset - start;
5054 goto not_found_em;
5055 }
5056
Yan Zhengd899e052008-10-30 14:25:28 -04005057 if (found_type == BTRFS_FILE_EXTENT_REG ||
5058 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005059 em->start = extent_start;
5060 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005061 em->orig_start = extent_start -
5062 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005063 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5064 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005065 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005066 goto insert;
5067 }
Chris Masonc8b97812008-10-29 14:49:59 -04005068 if (compressed) {
5069 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
5070 em->block_start = bytenr;
5071 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5072 item);
5073 } else {
5074 bytenr += btrfs_file_extent_offset(leaf, item);
5075 em->block_start = bytenr;
5076 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005077 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5078 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005079 }
Chris Masona52d9a82007-08-27 16:49:44 -04005080 goto insert;
5081 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005082 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005083 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005084 size_t size;
5085 size_t extent_offset;
5086 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005087
Chris Masona52d9a82007-08-27 16:49:44 -04005088 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005089 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005090 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005091 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005092 goto out;
5093 }
5094
Yan Zheng9036c102008-10-30 14:19:41 -04005095 size = btrfs_file_extent_inline_len(leaf, item);
5096 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005097 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005098 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005099 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005100 em->len = (copy_size + root->sectorsize - 1) &
5101 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005102 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005103 if (compressed)
5104 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04005105 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005106 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04005107 if (btrfs_file_extent_compression(leaf, item) ==
5108 BTRFS_COMPRESS_ZLIB) {
5109 ret = uncompress_inline(path, inode, page,
5110 pg_offset,
5111 extent_offset, item);
5112 BUG_ON(ret);
5113 } else {
5114 map = kmap(page);
5115 read_extent_buffer(leaf, map + pg_offset, ptr,
5116 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005117 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5118 memset(map + pg_offset + copy_size, 0,
5119 PAGE_CACHE_SIZE - pg_offset -
5120 copy_size);
5121 }
Chris Masonc8b97812008-10-29 14:49:59 -04005122 kunmap(page);
5123 }
Chris Mason179e29e2007-11-01 11:28:41 -04005124 flush_dcache_page(page);
5125 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005126 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005127 if (!trans) {
5128 kunmap(page);
5129 free_extent_map(em);
5130 em = NULL;
5131 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04005132 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04005133 goto again;
5134 }
Chris Masonc8b97812008-10-29 14:49:59 -04005135 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005136 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005137 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005138 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005139 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005140 }
Chris Masond1310b22008-01-24 16:13:08 -05005141 set_extent_uptodate(io_tree, em->start,
5142 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005143 goto insert;
5144 } else {
Chris Masond3977122009-01-05 21:25:51 -05005145 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005146 WARN_ON(1);
5147 }
5148not_found:
5149 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005150 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005151not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005152 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005153 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005154insert:
5155 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05005156 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005157 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5158 "[%llu %llu]\n", (unsigned long long)em->start,
5159 (unsigned long long)em->len,
5160 (unsigned long long)start,
5161 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005162 err = -EIO;
5163 goto out;
5164 }
Chris Masond1310b22008-01-24 16:13:08 -05005165
5166 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005167 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005168 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005169 /* it is possible that someone inserted the extent into the tree
5170 * while we had the lock dropped. It is also possible that
5171 * an overlapping map exists in the tree
5172 */
Chris Masona52d9a82007-08-27 16:49:44 -04005173 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005174 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005175
5176 ret = 0;
5177
Chris Mason3b951512008-04-17 11:29:12 -04005178 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005179 if (existing && (existing->start > start ||
5180 existing->start + existing->len <= start)) {
5181 free_extent_map(existing);
5182 existing = NULL;
5183 }
Chris Mason3b951512008-04-17 11:29:12 -04005184 if (!existing) {
5185 existing = lookup_extent_mapping(em_tree, em->start,
5186 em->len);
5187 if (existing) {
5188 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005189 em, start,
5190 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005191 free_extent_map(existing);
5192 if (err) {
5193 free_extent_map(em);
5194 em = NULL;
5195 }
5196 } else {
5197 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005198 free_extent_map(em);
5199 em = NULL;
5200 }
5201 } else {
5202 free_extent_map(em);
5203 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005204 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005205 }
Chris Masona52d9a82007-08-27 16:49:44 -04005206 }
Chris Mason890871b2009-09-02 16:24:52 -04005207 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005208out:
Chris Masonf4219502008-07-22 11:18:09 -04005209 if (path)
5210 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005211 if (trans) {
5212 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005213 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005214 err = ret;
5215 }
Chris Masona52d9a82007-08-27 16:49:44 -04005216 if (err) {
5217 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005218 return ERR_PTR(err);
5219 }
5220 return em;
5221}
5222
Josef Bacik4b46fce2010-05-23 11:00:55 -04005223static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
5224 u64 start, u64 len)
5225{
5226 struct btrfs_root *root = BTRFS_I(inode)->root;
5227 struct btrfs_trans_handle *trans;
5228 struct extent_map *em;
5229 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5230 struct btrfs_key ins;
5231 u64 alloc_hint;
5232 int ret;
5233
5234 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5235
5236 trans = btrfs_join_transaction(root, 0);
5237 if (!trans)
5238 return ERR_PTR(-ENOMEM);
5239
5240 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5241
5242 alloc_hint = get_extent_allocation_hint(inode, start, len);
5243 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5244 alloc_hint, (u64)-1, &ins, 1);
5245 if (ret) {
5246 em = ERR_PTR(ret);
5247 goto out;
5248 }
5249
5250 em = alloc_extent_map(GFP_NOFS);
5251 if (!em) {
5252 em = ERR_PTR(-ENOMEM);
5253 goto out;
5254 }
5255
5256 em->start = start;
5257 em->orig_start = em->start;
5258 em->len = ins.offset;
5259
5260 em->block_start = ins.objectid;
5261 em->block_len = ins.offset;
5262 em->bdev = root->fs_info->fs_devices->latest_bdev;
5263 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5264
5265 while (1) {
5266 write_lock(&em_tree->lock);
5267 ret = add_extent_mapping(em_tree, em);
5268 write_unlock(&em_tree->lock);
5269 if (ret != -EEXIST)
5270 break;
5271 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5272 }
5273
5274 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5275 ins.offset, ins.offset, 0);
5276 if (ret) {
5277 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5278 em = ERR_PTR(ret);
5279 }
5280out:
5281 btrfs_end_transaction(trans, root);
5282 return em;
5283}
5284
Chris Mason46bfbb52010-05-26 11:04:10 -04005285/*
5286 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5287 * block must be cow'd
5288 */
5289static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5290 struct inode *inode, u64 offset, u64 len)
5291{
5292 struct btrfs_path *path;
5293 int ret;
5294 struct extent_buffer *leaf;
5295 struct btrfs_root *root = BTRFS_I(inode)->root;
5296 struct btrfs_file_extent_item *fi;
5297 struct btrfs_key key;
5298 u64 disk_bytenr;
5299 u64 backref_offset;
5300 u64 extent_end;
5301 u64 num_bytes;
5302 int slot;
5303 int found_type;
5304
5305 path = btrfs_alloc_path();
5306 if (!path)
5307 return -ENOMEM;
5308
5309 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
5310 offset, 0);
5311 if (ret < 0)
5312 goto out;
5313
5314 slot = path->slots[0];
5315 if (ret == 1) {
5316 if (slot == 0) {
5317 /* can't find the item, must cow */
5318 ret = 0;
5319 goto out;
5320 }
5321 slot--;
5322 }
5323 ret = 0;
5324 leaf = path->nodes[0];
5325 btrfs_item_key_to_cpu(leaf, &key, slot);
5326 if (key.objectid != inode->i_ino ||
5327 key.type != BTRFS_EXTENT_DATA_KEY) {
5328 /* not our file or wrong item type, must cow */
5329 goto out;
5330 }
5331
5332 if (key.offset > offset) {
5333 /* Wrong offset, must cow */
5334 goto out;
5335 }
5336
5337 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5338 found_type = btrfs_file_extent_type(leaf, fi);
5339 if (found_type != BTRFS_FILE_EXTENT_REG &&
5340 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5341 /* not a regular extent, must cow */
5342 goto out;
5343 }
5344 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5345 backref_offset = btrfs_file_extent_offset(leaf, fi);
5346
5347 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5348 if (extent_end < offset + len) {
5349 /* extent doesn't include our full range, must cow */
5350 goto out;
5351 }
5352
5353 if (btrfs_extent_readonly(root, disk_bytenr))
5354 goto out;
5355
5356 /*
5357 * look for other files referencing this extent, if we
5358 * find any we must cow
5359 */
5360 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
5361 key.offset - backref_offset, disk_bytenr))
5362 goto out;
5363
5364 /*
5365 * adjust disk_bytenr and num_bytes to cover just the bytes
5366 * in this extent we are about to write. If there
5367 * are any csums in that range we have to cow in order
5368 * to keep the csums correct
5369 */
5370 disk_bytenr += backref_offset;
5371 disk_bytenr += offset - key.offset;
5372 num_bytes = min(offset + len, extent_end) - offset;
5373 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5374 goto out;
5375 /*
5376 * all of the above have passed, it is safe to overwrite this extent
5377 * without cow
5378 */
5379 ret = 1;
5380out:
5381 btrfs_free_path(path);
5382 return ret;
5383}
5384
Josef Bacik4b46fce2010-05-23 11:00:55 -04005385static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5386 struct buffer_head *bh_result, int create)
5387{
5388 struct extent_map *em;
5389 struct btrfs_root *root = BTRFS_I(inode)->root;
5390 u64 start = iblock << inode->i_blkbits;
5391 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005392 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005393
5394 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5395 if (IS_ERR(em))
5396 return PTR_ERR(em);
5397
5398 /*
5399 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5400 * io. INLINE is special, and we could probably kludge it in here, but
5401 * it's still buffered so for safety lets just fall back to the generic
5402 * buffered path.
5403 *
5404 * For COMPRESSED we _have_ to read the entire extent in so we can
5405 * decompress it, so there will be buffering required no matter what we
5406 * do, so go ahead and fallback to buffered.
5407 *
5408 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5409 * to buffered IO. Don't blame me, this is the price we pay for using
5410 * the generic code.
5411 */
5412 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5413 em->block_start == EXTENT_MAP_INLINE) {
5414 free_extent_map(em);
5415 return -ENOTBLK;
5416 }
5417
5418 /* Just a good old fashioned hole, return */
5419 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5420 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5421 free_extent_map(em);
5422 /* DIO will do one hole at a time, so just unlock a sector */
5423 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5424 start + root->sectorsize - 1, GFP_NOFS);
5425 return 0;
5426 }
5427
5428 /*
5429 * We don't allocate a new extent in the following cases
5430 *
5431 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5432 * existing extent.
5433 * 2) The extent is marked as PREALLOC. We're good to go here and can
5434 * just use the extent.
5435 *
5436 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005437 if (!create) {
5438 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005439 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005440 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005441
5442 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5443 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5444 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005445 int type;
5446 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005447 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005448
5449 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5450 type = BTRFS_ORDERED_PREALLOC;
5451 else
5452 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005453 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005454 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005455
5456 /*
5457 * we're not going to log anything, but we do need
5458 * to make sure the current transaction stays open
5459 * while we look for nocow cross refs
5460 */
5461 trans = btrfs_join_transaction(root, 0);
5462 if (!trans)
5463 goto must_cow;
5464
5465 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5466 ret = btrfs_add_ordered_extent_dio(inode, start,
5467 block_start, len, len, type);
5468 btrfs_end_transaction(trans, root);
5469 if (ret) {
5470 free_extent_map(em);
5471 return ret;
5472 }
5473 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005474 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005475 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005476 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005477must_cow:
5478 /*
5479 * this will cow the extent, reset the len in case we changed
5480 * it above
5481 */
5482 len = bh_result->b_size;
5483 free_extent_map(em);
5484 em = btrfs_new_extent_direct(inode, start, len);
5485 if (IS_ERR(em))
5486 return PTR_ERR(em);
5487 len = min(len, em->len - (start - em->start));
5488unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005489 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5490 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5491 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005492map:
5493 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5494 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005495 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005496 bh_result->b_bdev = em->bdev;
5497 set_buffer_mapped(bh_result);
5498 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5499 set_buffer_new(bh_result);
5500
5501 free_extent_map(em);
5502
5503 return 0;
5504}
5505
5506struct btrfs_dio_private {
5507 struct inode *inode;
5508 u64 logical_offset;
5509 u64 disk_bytenr;
5510 u64 bytes;
5511 u32 *csums;
5512 void *private;
5513};
5514
5515static void btrfs_endio_direct_read(struct bio *bio, int err)
5516{
5517 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5518 struct bio_vec *bvec = bio->bi_io_vec;
5519 struct btrfs_dio_private *dip = bio->bi_private;
5520 struct inode *inode = dip->inode;
5521 struct btrfs_root *root = BTRFS_I(inode)->root;
5522 u64 start;
5523 u32 *private = dip->csums;
5524
5525 start = dip->logical_offset;
5526 do {
5527 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5528 struct page *page = bvec->bv_page;
5529 char *kaddr;
5530 u32 csum = ~(u32)0;
5531 unsigned long flags;
5532
5533 local_irq_save(flags);
5534 kaddr = kmap_atomic(page, KM_IRQ0);
5535 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5536 csum, bvec->bv_len);
5537 btrfs_csum_final(csum, (char *)&csum);
5538 kunmap_atomic(kaddr, KM_IRQ0);
5539 local_irq_restore(flags);
5540
5541 flush_dcache_page(bvec->bv_page);
5542 if (csum != *private) {
5543 printk(KERN_ERR "btrfs csum failed ino %lu off"
5544 " %llu csum %u private %u\n",
5545 inode->i_ino, (unsigned long long)start,
5546 csum, *private);
5547 err = -EIO;
5548 }
5549 }
5550
5551 start += bvec->bv_len;
5552 private++;
5553 bvec++;
5554 } while (bvec <= bvec_end);
5555
5556 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5557 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5558 bio->bi_private = dip->private;
5559
5560 kfree(dip->csums);
5561 kfree(dip);
5562 dio_end_io(bio, err);
5563}
5564
5565static void btrfs_endio_direct_write(struct bio *bio, int err)
5566{
5567 struct btrfs_dio_private *dip = bio->bi_private;
5568 struct inode *inode = dip->inode;
5569 struct btrfs_root *root = BTRFS_I(inode)->root;
5570 struct btrfs_trans_handle *trans;
5571 struct btrfs_ordered_extent *ordered = NULL;
5572 struct extent_state *cached_state = NULL;
5573 int ret;
5574
5575 if (err)
5576 goto out_done;
5577
5578 ret = btrfs_dec_test_ordered_pending(inode, &ordered,
5579 dip->logical_offset, dip->bytes);
5580 if (!ret)
5581 goto out_done;
5582
5583 BUG_ON(!ordered);
5584
5585 trans = btrfs_join_transaction(root, 1);
5586 if (!trans) {
5587 err = -ENOMEM;
5588 goto out;
5589 }
5590 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5591
5592 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5593 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5594 if (!ret)
5595 ret = btrfs_update_inode(trans, root, inode);
5596 err = ret;
5597 goto out;
5598 }
5599
5600 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5601 ordered->file_offset + ordered->len - 1, 0,
5602 &cached_state, GFP_NOFS);
5603
5604 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5605 ret = btrfs_mark_extent_written(trans, inode,
5606 ordered->file_offset,
5607 ordered->file_offset +
5608 ordered->len);
5609 if (ret) {
5610 err = ret;
5611 goto out_unlock;
5612 }
5613 } else {
5614 ret = insert_reserved_file_extent(trans, inode,
5615 ordered->file_offset,
5616 ordered->start,
5617 ordered->disk_len,
5618 ordered->len,
5619 ordered->len,
5620 0, 0, 0,
5621 BTRFS_FILE_EXTENT_REG);
5622 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5623 ordered->file_offset, ordered->len);
5624 if (ret) {
5625 err = ret;
5626 WARN_ON(1);
5627 goto out_unlock;
5628 }
5629 }
5630
5631 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
5632 btrfs_ordered_update_i_size(inode, 0, ordered);
5633 btrfs_update_inode(trans, root, inode);
5634out_unlock:
5635 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5636 ordered->file_offset + ordered->len - 1,
5637 &cached_state, GFP_NOFS);
5638out:
5639 btrfs_delalloc_release_metadata(inode, ordered->len);
5640 btrfs_end_transaction(trans, root);
5641 btrfs_put_ordered_extent(ordered);
5642 btrfs_put_ordered_extent(ordered);
5643out_done:
5644 bio->bi_private = dip->private;
5645
5646 kfree(dip->csums);
5647 kfree(dip);
5648 dio_end_io(bio, err);
5649}
5650
Chris Masoneaf25d92010-05-25 09:48:28 -04005651static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5652 struct bio *bio, int mirror_num,
5653 unsigned long bio_flags, u64 offset)
5654{
5655 int ret;
5656 struct btrfs_root *root = BTRFS_I(inode)->root;
5657 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5658 BUG_ON(ret);
5659 return 0;
5660}
5661
Josef Bacik4b46fce2010-05-23 11:00:55 -04005662static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
5663 loff_t file_offset)
5664{
5665 struct btrfs_root *root = BTRFS_I(inode)->root;
5666 struct btrfs_dio_private *dip;
5667 struct bio_vec *bvec = bio->bi_io_vec;
5668 u64 start;
5669 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005670 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005671 int ret = 0;
5672
5673 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
5674
5675 dip = kmalloc(sizeof(*dip), GFP_NOFS);
5676 if (!dip) {
5677 ret = -ENOMEM;
5678 goto free_ordered;
5679 }
5680 dip->csums = NULL;
5681
5682 if (!skip_sum) {
5683 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
5684 if (!dip->csums) {
5685 ret = -ENOMEM;
5686 goto free_ordered;
5687 }
5688 }
5689
5690 dip->private = bio->bi_private;
5691 dip->inode = inode;
5692 dip->logical_offset = file_offset;
5693
5694 start = dip->logical_offset;
5695 dip->bytes = 0;
5696 do {
5697 dip->bytes += bvec->bv_len;
5698 bvec++;
5699 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
5700
Chris Mason46bfbb52010-05-26 11:04:10 -04005701 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005702 bio->bi_private = dip;
5703
5704 if (write)
5705 bio->bi_end_io = btrfs_endio_direct_write;
5706 else
5707 bio->bi_end_io = btrfs_endio_direct_read;
5708
5709 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5710 if (ret)
5711 goto out_err;
5712
Chris Masoneaf25d92010-05-25 09:48:28 -04005713 if (write && !skip_sum) {
5714 ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
5715 inode, rw, bio, 0, 0,
5716 dip->logical_offset,
5717 __btrfs_submit_bio_start_direct_io,
5718 __btrfs_submit_bio_done);
5719 if (ret)
5720 goto out_err;
5721 return;
5722 } else if (!skip_sum)
Josef Bacik4b46fce2010-05-23 11:00:55 -04005723 btrfs_lookup_bio_sums_dio(root, inode, bio,
5724 dip->logical_offset, dip->csums);
5725
Chris Masoneaf25d92010-05-25 09:48:28 -04005726 ret = btrfs_map_bio(root, rw, bio, 0, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005727 if (ret)
5728 goto out_err;
5729 return;
5730out_err:
5731 kfree(dip->csums);
5732 kfree(dip);
5733free_ordered:
5734 /*
5735 * If this is a write, we need to clean up the reserved space and kill
5736 * the ordered extent.
5737 */
5738 if (write) {
5739 struct btrfs_ordered_extent *ordered;
5740 ordered = btrfs_lookup_ordered_extent(inode,
5741 dip->logical_offset);
5742 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
5743 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
5744 btrfs_free_reserved_extent(root, ordered->start,
5745 ordered->disk_len);
5746 btrfs_put_ordered_extent(ordered);
5747 btrfs_put_ordered_extent(ordered);
5748 }
5749 bio_endio(bio, ret);
5750}
5751
Chris Mason5a5f79b2010-05-26 21:33:37 -04005752static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
5753 const struct iovec *iov, loff_t offset,
5754 unsigned long nr_segs)
5755{
5756 int seg;
5757 size_t size;
5758 unsigned long addr;
5759 unsigned blocksize_mask = root->sectorsize - 1;
5760 ssize_t retval = -EINVAL;
5761 loff_t end = offset;
5762
5763 if (offset & blocksize_mask)
5764 goto out;
5765
5766 /* Check the memory alignment. Blocks cannot straddle pages */
5767 for (seg = 0; seg < nr_segs; seg++) {
5768 addr = (unsigned long)iov[seg].iov_base;
5769 size = iov[seg].iov_len;
5770 end += size;
5771 if ((addr & blocksize_mask) || (size & blocksize_mask))
5772 goto out;
5773 }
5774 retval = 0;
5775out:
5776 return retval;
5777}
Chris Mason16432982008-04-10 10:23:21 -04005778static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
5779 const struct iovec *iov, loff_t offset,
5780 unsigned long nr_segs)
5781{
Josef Bacik4b46fce2010-05-23 11:00:55 -04005782 struct file *file = iocb->ki_filp;
5783 struct inode *inode = file->f_mapping->host;
5784 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04005785 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005786 u64 lockstart, lockend;
5787 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04005788 int writing = rw & WRITE;
5789 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04005790 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005791
Chris Mason5a5f79b2010-05-26 21:33:37 -04005792 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
5793 offset, nr_segs)) {
5794 return 0;
5795 }
5796
Josef Bacik4b46fce2010-05-23 11:00:55 -04005797 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04005798 lockend = offset + count - 1;
5799
5800 if (writing) {
5801 ret = btrfs_delalloc_reserve_space(inode, count);
5802 if (ret)
5803 goto out;
5804 }
Chris Mason4845e442010-05-25 20:56:50 -04005805
Josef Bacik4b46fce2010-05-23 11:00:55 -04005806 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04005807 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5808 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005809 /*
5810 * We're concerned with the entire range that we're going to be
5811 * doing DIO to, so we need to make sure theres no ordered
5812 * extents in this range.
5813 */
5814 ordered = btrfs_lookup_ordered_range(inode, lockstart,
5815 lockend - lockstart + 1);
5816 if (!ordered)
5817 break;
Chris Mason4845e442010-05-25 20:56:50 -04005818 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5819 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005820 btrfs_start_ordered_extent(inode, ordered, 1);
5821 btrfs_put_ordered_extent(ordered);
5822 cond_resched();
5823 }
5824
Chris Mason4845e442010-05-25 20:56:50 -04005825 /*
5826 * we don't use btrfs_set_extent_delalloc because we don't want
5827 * the dirty or uptodate bits
5828 */
5829 if (writing) {
5830 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
5831 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5832 EXTENT_DELALLOC, 0, NULL, &cached_state,
5833 GFP_NOFS);
5834 if (ret) {
5835 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
5836 lockend, EXTENT_LOCKED | write_bits,
5837 1, 0, &cached_state, GFP_NOFS);
5838 goto out;
5839 }
5840 }
5841
5842 free_extent_state(cached_state);
5843 cached_state = NULL;
5844
Chris Mason5a5f79b2010-05-26 21:33:37 -04005845 ret = __blockdev_direct_IO(rw, iocb, inode,
5846 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
5847 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
5848 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005849
5850 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04005851 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
5852 offset + iov_length(iov, nr_segs) - 1,
5853 EXTENT_LOCKED | write_bits, 1, 0,
5854 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005855 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
5856 /*
5857 * We're falling back to buffered, unlock the section we didn't
5858 * do IO on.
5859 */
Chris Mason4845e442010-05-25 20:56:50 -04005860 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
5861 offset + iov_length(iov, nr_segs) - 1,
5862 EXTENT_LOCKED | write_bits, 1, 0,
5863 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005864 }
Chris Mason4845e442010-05-25 20:56:50 -04005865out:
5866 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005867 return ret;
Chris Mason16432982008-04-10 10:23:21 -04005868}
5869
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05005870static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
5871 __u64 start, __u64 len)
5872{
5873 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
5874}
5875
Chris Mason9ebefb182007-06-15 13:50:00 -04005876int btrfs_readpage(struct file *file, struct page *page)
5877{
Chris Masond1310b22008-01-24 16:13:08 -05005878 struct extent_io_tree *tree;
5879 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005880 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04005881}
Chris Mason1832a6d2007-12-21 16:27:21 -05005882
Chris Mason39279cc2007-06-12 06:35:45 -04005883static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
5884{
Chris Masond1310b22008-01-24 16:13:08 -05005885 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04005886
5887
5888 if (current->flags & PF_MEMALLOC) {
5889 redirty_page_for_writepage(wbc, page);
5890 unlock_page(page);
5891 return 0;
5892 }
Chris Masond1310b22008-01-24 16:13:08 -05005893 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005894 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
5895}
Chris Mason39279cc2007-06-12 06:35:45 -04005896
Chris Masonf4219502008-07-22 11:18:09 -04005897int btrfs_writepages(struct address_space *mapping,
5898 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04005899{
Chris Masond1310b22008-01-24 16:13:08 -05005900 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05005901
Chris Masond1310b22008-01-24 16:13:08 -05005902 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04005903 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
5904}
5905
Chris Mason3ab2fb52007-11-08 10:59:22 -05005906static int
5907btrfs_readpages(struct file *file, struct address_space *mapping,
5908 struct list_head *pages, unsigned nr_pages)
5909{
Chris Masond1310b22008-01-24 16:13:08 -05005910 struct extent_io_tree *tree;
5911 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05005912 return extent_readpages(tree, mapping, pages, nr_pages,
5913 btrfs_get_extent);
5914}
Chris Masone6dcd2d2008-07-17 12:53:50 -04005915static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04005916{
Chris Masond1310b22008-01-24 16:13:08 -05005917 struct extent_io_tree *tree;
5918 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04005919 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005920
Chris Masond1310b22008-01-24 16:13:08 -05005921 tree = &BTRFS_I(page->mapping->host)->io_tree;
5922 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05005923 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005924 if (ret == 1) {
5925 ClearPagePrivate(page);
5926 set_page_private(page, 0);
5927 page_cache_release(page);
5928 }
5929 return ret;
5930}
Chris Mason39279cc2007-06-12 06:35:45 -04005931
Chris Masone6dcd2d2008-07-17 12:53:50 -04005932static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
5933{
Chris Mason98509cfc2008-09-11 15:51:43 -04005934 if (PageWriteback(page) || PageDirty(page))
5935 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05005936 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005937}
5938
Chris Masona52d9a82007-08-27 16:49:44 -04005939static void btrfs_invalidatepage(struct page *page, unsigned long offset)
5940{
Chris Masond1310b22008-01-24 16:13:08 -05005941 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005942 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00005943 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005944 u64 page_start = page_offset(page);
5945 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04005946
Chris Mason8b62b722009-09-02 16:53:46 -04005947
5948 /*
5949 * we have the page locked, so new writeback can't start,
5950 * and the dirty bit won't be cleared while we are here.
5951 *
5952 * Wait for IO on this page so that we can safely clear
5953 * the PagePrivate2 bit and do ordered accounting
5954 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005955 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04005956
Chris Masond1310b22008-01-24 16:13:08 -05005957 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005958 if (offset) {
5959 btrfs_releasepage(page, GFP_NOFS);
5960 return;
5961 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00005962 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
5963 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005964 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
5965 page_offset(page));
5966 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04005967 /*
5968 * IO on this page will never be started, so we need
5969 * to account for any ordered extents now
5970 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005971 clear_extent_bit(tree, page_start, page_end,
5972 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04005973 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00005974 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04005975 /*
5976 * whoever cleared the private bit is responsible
5977 * for the finish_ordered_io
5978 */
5979 if (TestClearPagePrivate2(page)) {
5980 btrfs_finish_ordered_io(page->mapping->host,
5981 page_start, page_end);
5982 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005983 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00005984 cached_state = NULL;
5985 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
5986 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005987 }
5988 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04005989 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00005990 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005991 __btrfs_releasepage(page, GFP_NOFS);
5992
Chris Mason4a096752008-07-21 10:29:44 -04005993 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04005994 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04005995 ClearPagePrivate(page);
5996 set_page_private(page, 0);
5997 page_cache_release(page);
5998 }
Chris Mason39279cc2007-06-12 06:35:45 -04005999}
6000
Chris Mason9ebefb182007-06-15 13:50:00 -04006001/*
6002 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6003 * called from a page fault handler when a page is first dirtied. Hence we must
6004 * be careful to check for EOF conditions here. We set the page up correctly
6005 * for a written page which means we get ENOSPC checking when writing into
6006 * holes and correct delalloc and unwritten extent mapping on filesystems that
6007 * support these features.
6008 *
6009 * We are not allowed to take the i_mutex here so we have to play games to
6010 * protect against truncate races as the page could now be beyond EOF. Because
6011 * vmtruncate() writes the inode size before removing pages, once we have the
6012 * page lock we can determine safely if the page is beyond EOF. If it is not
6013 * beyond EOF, then the page is guaranteed safe against truncation until we
6014 * unlock the page.
6015 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006016int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006017{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006018 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006019 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006020 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006021 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6022 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006023 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006024 char *kaddr;
6025 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006026 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006027 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006028 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006029 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006030
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006031 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07006032 if (ret) {
6033 if (ret == -ENOMEM)
6034 ret = VM_FAULT_OOM;
6035 else /* -ENOSPC, -EIO, etc */
6036 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006037 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006038 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006039
Nick Piggin56a76f82009-03-31 15:23:23 -07006040 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006041again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006042 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006043 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006044 page_start = page_offset(page);
6045 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006046
Chris Mason9ebefb182007-06-15 13:50:00 -04006047 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006048 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006049 /* page got truncated out from underneath us */
6050 goto out_unlock;
6051 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006052 wait_on_page_writeback(page);
6053
Josef Bacik2ac55d42010-02-03 19:33:23 +00006054 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6055 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006056 set_page_extent_mapped(page);
6057
Chris Masoneb84ae02008-07-17 13:53:27 -04006058 /*
6059 * we can't set the delalloc bits if there are pending ordered
6060 * extents. Drop our locks and wait for them to finish
6061 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006062 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6063 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006064 unlock_extent_cached(io_tree, page_start, page_end,
6065 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006066 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006067 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006068 btrfs_put_ordered_extent(ordered);
6069 goto again;
6070 }
6071
Josef Bacikfbf19082009-10-01 17:10:23 -04006072 /*
6073 * XXX - page_mkwrite gets called every time the page is dirtied, even
6074 * if it was already dirty, so for space accounting reasons we need to
6075 * clear any delalloc bits for the range we are fixing to save. There
6076 * is probably a better way to do this, but for now keep consistent with
6077 * prepare_pages in the normal write path.
6078 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006079 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006080 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006081 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006082
Josef Bacik2ac55d42010-02-03 19:33:23 +00006083 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6084 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006085 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006086 unlock_extent_cached(io_tree, page_start, page_end,
6087 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006088 ret = VM_FAULT_SIGBUS;
6089 goto out_unlock;
6090 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006091 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006092
6093 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006094 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006095 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006096 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006097 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006098
Chris Masone6dcd2d2008-07-17 12:53:50 -04006099 if (zero_start != PAGE_CACHE_SIZE) {
6100 kaddr = kmap(page);
6101 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6102 flush_dcache_page(page);
6103 kunmap(page);
6104 }
Chris Mason247e7432008-07-17 12:53:51 -04006105 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006106 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006107 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006108
Chris Mason257c62e2009-10-13 13:21:08 -04006109 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6110 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6111
Josef Bacik2ac55d42010-02-03 19:33:23 +00006112 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006113
6114out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006115 if (!ret)
6116 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006117 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006118 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006119out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006120 return ret;
6121}
6122
Chris Mason39279cc2007-06-12 06:35:45 -04006123static void btrfs_truncate(struct inode *inode)
6124{
6125 struct btrfs_root *root = BTRFS_I(inode)->root;
6126 int ret;
6127 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006128 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006129 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04006130
Yan, Zheng80825102009-11-12 09:35:36 +00006131 if (!S_ISREG(inode->i_mode)) {
6132 WARN_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04006133 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006134 }
Chris Mason39279cc2007-06-12 06:35:45 -04006135
Josef Bacik5d5e1032009-10-13 16:46:49 -04006136 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6137 if (ret)
6138 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006139
Chris Mason4a096752008-07-21 10:29:44 -04006140 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006141 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006142
Yan, Zhengd68fc572010-05-16 10:49:58 -04006143 trans = btrfs_start_transaction(root, 0);
6144 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00006145 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006146 trans->block_rsv = root->orphan_block_rsv;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006147
6148 /*
6149 * setattr is responsible for setting the ordered_data_close flag,
6150 * but that is only tested during the last file release. That
6151 * could happen well after the next commit, leaving a great big
6152 * window where new writes may get lost if someone chooses to write
6153 * to this file after truncating to zero
6154 *
6155 * The inode doesn't have any dirty data here, and so if we commit
6156 * this is a noop. If someone immediately starts writing to the inode
6157 * it is very likely we'll catch some of their writes in this
6158 * transaction, and the commit will find this file on the ordered
6159 * data list with good things to send down.
6160 *
6161 * This is a best effort solution, there is still a window where
6162 * using truncate to replace the contents of the file will
6163 * end up with a zero length file after a crash.
6164 */
6165 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6166 btrfs_add_ordered_operation(trans, root, inode);
6167
Yan, Zheng80825102009-11-12 09:35:36 +00006168 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006169 if (!trans) {
6170 trans = btrfs_start_transaction(root, 0);
6171 BUG_ON(IS_ERR(trans));
6172 btrfs_set_trans_block_group(trans, inode);
6173 trans->block_rsv = root->orphan_block_rsv;
6174 }
6175
6176 ret = btrfs_block_rsv_check(trans, root,
6177 root->orphan_block_rsv, 0, 5);
6178 if (ret) {
6179 BUG_ON(ret != -EAGAIN);
6180 ret = btrfs_commit_transaction(trans, root);
6181 BUG_ON(ret);
6182 trans = NULL;
6183 continue;
6184 }
6185
Yan, Zheng80825102009-11-12 09:35:36 +00006186 ret = btrfs_truncate_inode_items(trans, root, inode,
6187 inode->i_size,
6188 BTRFS_EXTENT_DATA_KEY);
6189 if (ret != -EAGAIN)
6190 break;
Chris Mason39279cc2007-06-12 06:35:45 -04006191
Yan, Zheng80825102009-11-12 09:35:36 +00006192 ret = btrfs_update_inode(trans, root, inode);
6193 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04006194
Yan, Zheng80825102009-11-12 09:35:36 +00006195 nr = trans->blocks_used;
6196 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006197 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006198 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006199 }
6200
6201 if (ret == 0 && inode->i_nlink > 0) {
6202 ret = btrfs_orphan_del(trans, inode);
6203 BUG_ON(ret);
6204 }
6205
6206 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04006207 BUG_ON(ret);
6208
Josef Bacik7b128762008-07-24 12:17:14 -04006209 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04006210 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04006211 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006212 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04006213}
6214
Sven Wegener3b963622008-06-09 21:57:42 -04006215/*
Chris Masond352ac62008-09-29 15:18:18 -04006216 * create a new subvolume directory/inode (helper for the ioctl).
6217 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006218int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04006219 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006220 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04006221{
Chris Mason39279cc2007-06-12 06:35:45 -04006222 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006223 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006224 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006225
Josef Bacikaec74772008-07-24 12:12:38 -04006226 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006227 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006228 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006229 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006230 inode->i_op = &btrfs_dir_inode_operations;
6231 inode->i_fop = &btrfs_dir_file_operations;
6232
Chris Mason39279cc2007-06-12 06:35:45 -04006233 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006234 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006235
Yan, Zheng76dda932009-09-21 16:00:26 -04006236 err = btrfs_update_inode(trans, new_root, inode);
6237 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006238
Yan, Zheng76dda932009-09-21 16:00:26 -04006239 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006240 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006241}
6242
Chris Masond352ac62008-09-29 15:18:18 -04006243/* helper function for file defrag and space balancing. This
6244 * forces readahead on a given range of bytes in an inode
6245 */
Chris Masonedbd8d42007-12-21 16:27:24 -05006246unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04006247 struct file_ra_state *ra, struct file *file,
6248 pgoff_t offset, pgoff_t last_index)
6249{
Chris Mason8e7bf942008-04-28 09:02:36 -04006250 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04006251
Chris Mason86479a02007-09-10 19:58:16 -04006252 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
6253 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04006254}
6255
Chris Mason39279cc2007-06-12 06:35:45 -04006256struct inode *btrfs_alloc_inode(struct super_block *sb)
6257{
6258 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006259 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006260
6261 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6262 if (!ei)
6263 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006264
6265 ei->root = NULL;
6266 ei->space_info = NULL;
6267 ei->generation = 0;
6268 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006269 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006270 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006271 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006272 ei->delalloc_bytes = 0;
6273 ei->reserved_bytes = 0;
6274 ei->disk_i_size = 0;
6275 ei->flags = 0;
6276 ei->index_cnt = (u64)-1;
6277 ei->last_unlink_trans = 0;
6278
Josef Bacik32c00af2009-10-08 13:34:05 -04006279 spin_lock_init(&ei->accounting_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006280 atomic_set(&ei->outstanding_extents, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006281 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006282
6283 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006284 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006285 ei->dummy_inode = 0;
6286 ei->force_compress = 0;
6287
6288 inode = &ei->vfs_inode;
6289 extent_map_tree_init(&ei->extent_tree, GFP_NOFS);
6290 extent_io_tree_init(&ei->io_tree, &inode->i_data, GFP_NOFS);
6291 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data, GFP_NOFS);
6292 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006293 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006294 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006295 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006296 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006297 RB_CLEAR_NODE(&ei->rb_node);
6298
6299 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006300}
6301
6302void btrfs_destroy_inode(struct inode *inode)
6303{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006304 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006305 struct btrfs_root *root = BTRFS_I(inode)->root;
6306
Chris Mason39279cc2007-06-12 06:35:45 -04006307 WARN_ON(!list_empty(&inode->i_dentry));
6308 WARN_ON(inode->i_data.nrpages);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006309 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents));
6310 WARN_ON(BTRFS_I(inode)->reserved_extents);
Chris Mason39279cc2007-06-12 06:35:45 -04006311
Chris Mason5a3f23d2009-03-31 13:27:11 -04006312 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006313 * This can happen where we create an inode, but somebody else also
6314 * created the same inode and we need to destroy the one we already
6315 * created.
6316 */
6317 if (!root)
6318 goto free;
6319
6320 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006321 * Make sure we're properly removed from the ordered operation
6322 * lists.
6323 */
6324 smp_mb();
6325 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6326 spin_lock(&root->fs_info->ordered_extent_lock);
6327 list_del_init(&BTRFS_I(inode)->ordered_operations);
6328 spin_unlock(&root->fs_info->ordered_extent_lock);
6329 }
6330
Josef Bacik0af3d002010-06-21 14:48:16 -04006331 if (root == root->fs_info->tree_root) {
6332 struct btrfs_block_group_cache *block_group;
6333
6334 block_group = btrfs_lookup_block_group(root->fs_info,
6335 BTRFS_I(inode)->block_group);
6336 if (block_group && block_group->inode == inode) {
6337 spin_lock(&block_group->lock);
6338 block_group->inode = NULL;
6339 spin_unlock(&block_group->lock);
6340 btrfs_put_block_group(block_group);
6341 } else if (block_group) {
6342 btrfs_put_block_group(block_group);
6343 }
6344 }
6345
Yan, Zhengd68fc572010-05-16 10:49:58 -04006346 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006347 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00006348 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
6349 inode->i_ino);
6350 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006351 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006352 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006353
Chris Masond3977122009-01-05 21:25:51 -05006354 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006355 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6356 if (!ordered)
6357 break;
6358 else {
Chris Masond3977122009-01-05 21:25:51 -05006359 printk(KERN_ERR "btrfs found ordered "
6360 "extent %llu %llu on inode cleanup\n",
6361 (unsigned long long)ordered->file_offset,
6362 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006363 btrfs_remove_ordered_extent(inode, ordered);
6364 btrfs_put_ordered_extent(ordered);
6365 btrfs_put_ordered_extent(ordered);
6366 }
6367 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006368 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006369 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006370free:
Chris Mason39279cc2007-06-12 06:35:45 -04006371 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6372}
6373
Al Viro45321ac2010-06-07 13:43:19 -04006374int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006375{
6376 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006377
Josef Bacik0af3d002010-06-21 14:48:16 -04006378 if (btrfs_root_refs(&root->root_item) == 0 &&
6379 root != root->fs_info->tree_root)
Al Viro45321ac2010-06-07 13:43:19 -04006380 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006381 else
Al Viro45321ac2010-06-07 13:43:19 -04006382 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006383}
6384
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006385static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006386{
6387 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6388
6389 inode_init_once(&ei->vfs_inode);
6390}
6391
6392void btrfs_destroy_cachep(void)
6393{
6394 if (btrfs_inode_cachep)
6395 kmem_cache_destroy(btrfs_inode_cachep);
6396 if (btrfs_trans_handle_cachep)
6397 kmem_cache_destroy(btrfs_trans_handle_cachep);
6398 if (btrfs_transaction_cachep)
6399 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006400 if (btrfs_path_cachep)
6401 kmem_cache_destroy(btrfs_path_cachep);
6402}
6403
6404int btrfs_init_cachep(void)
6405{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006406 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6407 sizeof(struct btrfs_inode), 0,
6408 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006409 if (!btrfs_inode_cachep)
6410 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006411
6412 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6413 sizeof(struct btrfs_trans_handle), 0,
6414 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006415 if (!btrfs_trans_handle_cachep)
6416 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006417
6418 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6419 sizeof(struct btrfs_transaction), 0,
6420 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006421 if (!btrfs_transaction_cachep)
6422 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006423
6424 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6425 sizeof(struct btrfs_path), 0,
6426 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006427 if (!btrfs_path_cachep)
6428 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006429
Chris Mason39279cc2007-06-12 06:35:45 -04006430 return 0;
6431fail:
6432 btrfs_destroy_cachep();
6433 return -ENOMEM;
6434}
6435
6436static int btrfs_getattr(struct vfsmount *mnt,
6437 struct dentry *dentry, struct kstat *stat)
6438{
6439 struct inode *inode = dentry->d_inode;
6440 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05006441 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05006442 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006443 stat->blocks = (inode_get_bytes(inode) +
6444 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006445 return 0;
6446}
6447
Chris Masond3977122009-01-05 21:25:51 -05006448static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6449 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006450{
6451 struct btrfs_trans_handle *trans;
6452 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006453 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006454 struct inode *new_inode = new_dentry->d_inode;
6455 struct inode *old_inode = old_dentry->d_inode;
6456 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006457 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006458 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006459 int ret;
6460
Yan, Zhengf679a842009-09-24 09:17:31 -04006461 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
6462 return -EPERM;
6463
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006464 /* we only allow rename subvolume link between subvolumes */
6465 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006466 return -EXDEV;
6467
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006468 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6469 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
6470 return -ENOTEMPTY;
6471
Chris Mason39279cc2007-06-12 06:35:45 -04006472 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006473 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006474 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006475 /*
6476 * we're using rename to replace one file with another.
6477 * and the replacement file is large. Start IO on it now so
6478 * we don't add too much work to the end of the transaction
6479 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006480 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006481 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6482 filemap_flush(old_inode->i_mapping);
6483
Yan, Zheng76dda932009-09-21 16:00:26 -04006484 /* close the racy window with snapshot create/destroy ioctl */
6485 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6486 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006487 /*
6488 * We want to reserve the absolute worst case amount of items. So if
6489 * both inodes are subvols and we need to unlink them then that would
6490 * require 4 item modifications, but if they are both normal inodes it
6491 * would require 5 item modifications, so we'll assume their normal
6492 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6493 * should cover the worst case number of items we'll modify.
6494 */
6495 trans = btrfs_start_transaction(root, 20);
6496 if (IS_ERR(trans))
6497 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04006498
Yan, Zhenga5719522009-09-24 09:17:31 -04006499 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04006500
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006501 if (dest != root)
6502 btrfs_record_root_in_trans(trans, dest);
6503
Yan, Zhenga5719522009-09-24 09:17:31 -04006504 ret = btrfs_set_inode_index(new_dir, &index);
6505 if (ret)
6506 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006507
Yan, Zhenga5719522009-09-24 09:17:31 -04006508 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006509 /* force full log commit if subvolume involved. */
6510 root->fs_info->last_trans_log_full_commit = trans->transid;
6511 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04006512 ret = btrfs_insert_inode_ref(trans, dest,
6513 new_dentry->d_name.name,
6514 new_dentry->d_name.len,
6515 old_inode->i_ino,
6516 new_dir->i_ino, index);
6517 if (ret)
6518 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006519 /*
6520 * this is an ugly little race, but the rename is required
6521 * to make sure that if we crash, the inode is either at the
6522 * old name or the new one. pinning the log transaction lets
6523 * us make sure we don't allow a log commit to come in after
6524 * we unlink the name but before we add the new name back in.
6525 */
6526 btrfs_pin_log_trans(root);
6527 }
Chris Mason12fcfd22009-03-24 10:24:20 -04006528 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006529 * make sure the inode gets flushed if it is replacing
6530 * something.
6531 */
6532 if (new_inode && new_inode->i_size &&
6533 old_inode && S_ISREG(old_inode->i_mode)) {
6534 btrfs_add_ordered_operation(trans, root, old_inode);
6535 }
6536
Chris Mason39279cc2007-06-12 06:35:45 -04006537 old_dir->i_ctime = old_dir->i_mtime = ctime;
6538 new_dir->i_ctime = new_dir->i_mtime = ctime;
6539 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04006540
Chris Mason12fcfd22009-03-24 10:24:20 -04006541 if (old_dentry->d_parent != new_dentry->d_parent)
6542 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
6543
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006544 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
6545 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
6546 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
6547 old_dentry->d_name.name,
6548 old_dentry->d_name.len);
6549 } else {
6550 btrfs_inc_nlink(old_dentry->d_inode);
6551 ret = btrfs_unlink_inode(trans, root, old_dir,
6552 old_dentry->d_inode,
6553 old_dentry->d_name.name,
6554 old_dentry->d_name.len);
6555 }
6556 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006557
6558 if (new_inode) {
6559 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006560 if (unlikely(new_inode->i_ino ==
6561 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
6562 root_objectid = BTRFS_I(new_inode)->location.objectid;
6563 ret = btrfs_unlink_subvol(trans, dest, new_dir,
6564 root_objectid,
6565 new_dentry->d_name.name,
6566 new_dentry->d_name.len);
6567 BUG_ON(new_inode->i_nlink == 0);
6568 } else {
6569 ret = btrfs_unlink_inode(trans, dest, new_dir,
6570 new_dentry->d_inode,
6571 new_dentry->d_name.name,
6572 new_dentry->d_name.len);
6573 }
6574 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006575 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04006576 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006577 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006578 }
Chris Mason39279cc2007-06-12 06:35:45 -04006579 }
Josef Bacikaec74772008-07-24 12:12:38 -04006580
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006581 ret = btrfs_add_link(trans, new_dir, old_inode,
6582 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04006583 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006584 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006585
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006586 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
6587 btrfs_log_new_name(trans, old_inode, old_dir,
6588 new_dentry->d_parent);
6589 btrfs_end_log_trans(root);
6590 }
Chris Mason39279cc2007-06-12 06:35:45 -04006591out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04006592 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006593
Yan, Zheng76dda932009-09-21 16:00:26 -04006594 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6595 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006596
Chris Mason39279cc2007-06-12 06:35:45 -04006597 return ret;
6598}
6599
Chris Masond352ac62008-09-29 15:18:18 -04006600/*
6601 * some fairly slow code that needs optimization. This walks the list
6602 * of all the inodes with pending delalloc and forces them to disk.
6603 */
Yan, Zheng24bbcf042009-11-12 09:36:34 +00006604int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04006605{
6606 struct list_head *head = &root->fs_info->delalloc_inodes;
6607 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006608 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04006609
Yan Zhengc146afa2008-11-12 14:34:12 -05006610 if (root->fs_info->sb->s_flags & MS_RDONLY)
6611 return -EROFS;
6612
Chris Mason75eff682008-12-15 15:54:40 -05006613 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05006614 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04006615 binode = list_entry(head->next, struct btrfs_inode,
6616 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006617 inode = igrab(&binode->vfs_inode);
6618 if (!inode)
6619 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05006620 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006621 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04006622 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf042009-11-12 09:36:34 +00006623 if (delay_iput)
6624 btrfs_add_delayed_iput(inode);
6625 else
6626 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006627 }
6628 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05006629 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04006630 }
Chris Mason75eff682008-12-15 15:54:40 -05006631 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04006632
6633 /* the filemap_flush will queue IO into the worker threads, but
6634 * we have to make sure the IO is actually started and that
6635 * ordered extents get created before we return
6636 */
6637 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05006638 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05006639 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04006640 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05006641 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
6642 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04006643 }
6644 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04006645 return 0;
6646}
6647
Yan, Zheng5da9d012010-05-16 10:46:25 -04006648int btrfs_start_one_delalloc_inode(struct btrfs_root *root, int delay_iput)
6649{
6650 struct btrfs_inode *binode;
6651 struct inode *inode = NULL;
6652
6653 spin_lock(&root->fs_info->delalloc_lock);
6654 while (!list_empty(&root->fs_info->delalloc_inodes)) {
6655 binode = list_entry(root->fs_info->delalloc_inodes.next,
6656 struct btrfs_inode, delalloc_inodes);
6657 inode = igrab(&binode->vfs_inode);
6658 if (inode) {
6659 list_move_tail(&binode->delalloc_inodes,
6660 &root->fs_info->delalloc_inodes);
6661 break;
6662 }
6663
6664 list_del_init(&binode->delalloc_inodes);
6665 cond_resched_lock(&root->fs_info->delalloc_lock);
6666 }
6667 spin_unlock(&root->fs_info->delalloc_lock);
6668
6669 if (inode) {
6670 write_inode_now(inode, 0);
6671 if (delay_iput)
6672 btrfs_add_delayed_iput(inode);
6673 else
6674 iput(inode);
6675 return 1;
6676 }
6677 return 0;
6678}
6679
Chris Mason39279cc2007-06-12 06:35:45 -04006680static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
6681 const char *symname)
6682{
6683 struct btrfs_trans_handle *trans;
6684 struct btrfs_root *root = BTRFS_I(dir)->root;
6685 struct btrfs_path *path;
6686 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05006687 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006688 int err;
6689 int drop_inode = 0;
6690 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006691 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04006692 int name_len;
6693 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04006694 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006695 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04006696 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05006697 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006698
6699 name_len = strlen(symname) + 1;
6700 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
6701 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05006702
Yan, Zhenga22285a2010-05-16 10:48:46 -04006703 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
6704 if (err)
6705 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006706 /*
6707 * 2 items for inode item and ref
6708 * 2 items for dir items
6709 * 1 item for xattr if selinux is on
6710 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006711 trans = btrfs_start_transaction(root, 5);
6712 if (IS_ERR(trans))
6713 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006714
Chris Mason39279cc2007-06-12 06:35:45 -04006715 btrfs_set_trans_block_group(trans, dir);
6716
Josef Bacikaec74772008-07-24 12:12:38 -04006717 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05006718 dentry->d_name.len,
6719 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04006720 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
6721 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006722 err = PTR_ERR(inode);
6723 if (IS_ERR(inode))
6724 goto out_unlock;
6725
Yan, Zhengf34f57a2009-11-12 09:35:27 +00006726 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04006727 if (err) {
6728 drop_inode = 1;
6729 goto out_unlock;
6730 }
6731
Chris Mason39279cc2007-06-12 06:35:45 -04006732 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04006733 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006734 if (err)
6735 drop_inode = 1;
6736 else {
6737 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04006738 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04006739 inode->i_fop = &btrfs_file_operations;
6740 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05006741 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04006742 }
Chris Mason39279cc2007-06-12 06:35:45 -04006743 btrfs_update_inode_block_group(trans, inode);
6744 btrfs_update_inode_block_group(trans, dir);
6745 if (drop_inode)
6746 goto out_unlock;
6747
6748 path = btrfs_alloc_path();
6749 BUG_ON(!path);
6750 key.objectid = inode->i_ino;
6751 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006752 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
6753 datasize = btrfs_file_extent_calc_inline_size(name_len);
6754 err = btrfs_insert_empty_item(trans, root, path, &key,
6755 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04006756 if (err) {
6757 drop_inode = 1;
6758 goto out_unlock;
6759 }
Chris Mason5f39d392007-10-15 16:14:19 -04006760 leaf = path->nodes[0];
6761 ei = btrfs_item_ptr(leaf, path->slots[0],
6762 struct btrfs_file_extent_item);
6763 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
6764 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04006765 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04006766 btrfs_set_file_extent_encryption(leaf, ei, 0);
6767 btrfs_set_file_extent_compression(leaf, ei, 0);
6768 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
6769 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
6770
Chris Mason39279cc2007-06-12 06:35:45 -04006771 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04006772 write_extent_buffer(leaf, symname, ptr, name_len);
6773 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04006774 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04006775
Chris Mason39279cc2007-06-12 06:35:45 -04006776 inode->i_op = &btrfs_symlink_inode_operations;
6777 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04006778 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04006779 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04006780 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04006781 err = btrfs_update_inode(trans, root, inode);
6782 if (err)
6783 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04006784
6785out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006786 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04006787 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04006788 if (drop_inode) {
6789 inode_dec_link_count(inode);
6790 iput(inode);
6791 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006792 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04006793 return err;
6794}
Chris Mason16432982008-04-10 10:23:21 -04006795
Josef Bacik0af3d002010-06-21 14:48:16 -04006796static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
6797 u64 start, u64 num_bytes, u64 min_size,
6798 loff_t actual_len, u64 *alloc_hint,
6799 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04006800{
Yan Zhengd899e052008-10-30 14:25:28 -04006801 struct btrfs_root *root = BTRFS_I(inode)->root;
6802 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04006803 u64 cur_offset = start;
Yan Zhengd899e052008-10-30 14:25:28 -04006804 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04006805 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04006806
Josef Bacik0af3d002010-06-21 14:48:16 -04006807 if (trans)
6808 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04006809 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04006810 if (own_trans) {
6811 trans = btrfs_start_transaction(root, 3);
6812 if (IS_ERR(trans)) {
6813 ret = PTR_ERR(trans);
6814 break;
6815 }
Yan Zhengd899e052008-10-30 14:25:28 -04006816 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00006817
Yan, Zhengefa56462010-05-16 10:49:59 -04006818 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
6819 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00006820 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04006821 if (own_trans)
6822 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006823 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00006824 }
6825
Yan Zhengd899e052008-10-30 14:25:28 -04006826 ret = insert_reserved_file_extent(trans, inode,
6827 cur_offset, ins.objectid,
6828 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00006829 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04006830 BTRFS_FILE_EXTENT_PREALLOC);
6831 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04006832 btrfs_drop_extent_cache(inode, cur_offset,
6833 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00006834
Yan Zhengd899e052008-10-30 14:25:28 -04006835 num_bytes -= ins.offset;
6836 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04006837 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00006838
Yan Zhengd899e052008-10-30 14:25:28 -04006839 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006840 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04006841 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04006842 (actual_len > inode->i_size) &&
6843 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00006844 if (cur_offset > actual_len)
Yan, Zhengefa56462010-05-16 10:49:59 -04006845 i_size_write(inode, actual_len);
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00006846 else
Yan, Zhengefa56462010-05-16 10:49:59 -04006847 i_size_write(inode, cur_offset);
6848 i_size_write(inode, cur_offset);
6849 btrfs_ordered_update_i_size(inode, cur_offset, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00006850 }
6851
Yan Zhengd899e052008-10-30 14:25:28 -04006852 ret = btrfs_update_inode(trans, root, inode);
6853 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04006854
Josef Bacik0af3d002010-06-21 14:48:16 -04006855 if (own_trans)
6856 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00006857 }
Yan Zhengd899e052008-10-30 14:25:28 -04006858 return ret;
6859}
6860
Josef Bacik0af3d002010-06-21 14:48:16 -04006861int btrfs_prealloc_file_range(struct inode *inode, int mode,
6862 u64 start, u64 num_bytes, u64 min_size,
6863 loff_t actual_len, u64 *alloc_hint)
6864{
6865 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
6866 min_size, actual_len, alloc_hint,
6867 NULL);
6868}
6869
6870int btrfs_prealloc_file_range_trans(struct inode *inode,
6871 struct btrfs_trans_handle *trans, int mode,
6872 u64 start, u64 num_bytes, u64 min_size,
6873 loff_t actual_len, u64 *alloc_hint)
6874{
6875 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
6876 min_size, actual_len, alloc_hint, trans);
6877}
6878
Yan Zhengd899e052008-10-30 14:25:28 -04006879static long btrfs_fallocate(struct inode *inode, int mode,
6880 loff_t offset, loff_t len)
6881{
Josef Bacik2ac55d42010-02-03 19:33:23 +00006882 struct extent_state *cached_state = NULL;
Yan Zhengd899e052008-10-30 14:25:28 -04006883 u64 cur_offset;
6884 u64 last_byte;
6885 u64 alloc_start;
6886 u64 alloc_end;
6887 u64 alloc_hint = 0;
Chris Masone980b502009-04-24 14:39:24 -04006888 u64 locked_end;
Yan Zhengd899e052008-10-30 14:25:28 -04006889 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
6890 struct extent_map *em;
6891 int ret;
6892
6893 alloc_start = offset & ~mask;
6894 alloc_end = (offset + len + mask) & ~mask;
6895
Chris Mason546888d2009-04-21 11:53:38 -04006896 /*
6897 * wait for ordered IO before we have any locks. We'll loop again
6898 * below with the locks held.
6899 */
6900 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
6901
Yan Zhengd899e052008-10-30 14:25:28 -04006902 mutex_lock(&inode->i_mutex);
6903 if (alloc_start > inode->i_size) {
6904 ret = btrfs_cont_expand(inode, alloc_start);
6905 if (ret)
6906 goto out;
6907 }
6908
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006909 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start);
Josef Bacika970b0a2009-06-27 21:07:34 -04006910 if (ret)
6911 goto out;
6912
Chris Masone980b502009-04-24 14:39:24 -04006913 locked_end = alloc_end - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04006914 while (1) {
6915 struct btrfs_ordered_extent *ordered;
Chris Mason546888d2009-04-21 11:53:38 -04006916
Chris Mason546888d2009-04-21 11:53:38 -04006917 /* the extent lock is ordered inside the running
6918 * transaction
6919 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006920 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
6921 locked_end, 0, &cached_state, GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04006922 ordered = btrfs_lookup_first_ordered_extent(inode,
6923 alloc_end - 1);
6924 if (ordered &&
6925 ordered->file_offset + ordered->len > alloc_start &&
6926 ordered->file_offset < alloc_end) {
6927 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006928 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
6929 alloc_start, locked_end,
6930 &cached_state, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04006931 /*
6932 * we can't wait on the range with the transaction
6933 * running or with the extent lock held
6934 */
Yan Zhengd899e052008-10-30 14:25:28 -04006935 btrfs_wait_ordered_range(inode, alloc_start,
6936 alloc_end - alloc_start);
6937 } else {
6938 if (ordered)
6939 btrfs_put_ordered_extent(ordered);
6940 break;
6941 }
6942 }
6943
6944 cur_offset = alloc_start;
6945 while (1) {
6946 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
6947 alloc_end - cur_offset, 0);
6948 BUG_ON(IS_ERR(em) || !em);
6949 last_byte = min(extent_map_end(em), alloc_end);
6950 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng5a303d52009-11-12 09:34:52 +00006951 if (em->block_start == EXTENT_MAP_HOLE ||
6952 (cur_offset >= inode->i_size &&
6953 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Josef Bacik83609772010-06-07 18:26:37 +00006954 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
Yan, Zhengefa56462010-05-16 10:49:59 -04006955 last_byte - cur_offset,
6956 1 << inode->i_blkbits,
6957 offset + len,
6958 &alloc_hint);
Yan Zhengd899e052008-10-30 14:25:28 -04006959 if (ret < 0) {
6960 free_extent_map(em);
6961 break;
6962 }
6963 }
Yan Zhengd899e052008-10-30 14:25:28 -04006964 free_extent_map(em);
6965
6966 cur_offset = last_byte;
6967 if (cur_offset >= alloc_end) {
6968 ret = 0;
6969 break;
6970 }
6971 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006972 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
6973 &cached_state, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04006974
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006975 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start);
Yan Zhengd899e052008-10-30 14:25:28 -04006976out:
6977 mutex_unlock(&inode->i_mutex);
6978 return ret;
6979}
6980
Chris Masone6dcd2d2008-07-17 12:53:50 -04006981static int btrfs_set_page_dirty(struct page *page)
6982{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006983 return __set_page_dirty_nobuffers(page);
6984}
6985
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006986static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05006987{
Christoph Hellwig6cbff002009-04-17 10:37:41 +02006988 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05006989 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04006990 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05006991}
Chris Mason39279cc2007-06-12 06:35:45 -04006992
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006993static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05006994 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04006995 .lookup = btrfs_lookup,
6996 .create = btrfs_create,
6997 .unlink = btrfs_unlink,
6998 .link = btrfs_link,
6999 .mkdir = btrfs_mkdir,
7000 .rmdir = btrfs_rmdir,
7001 .rename = btrfs_rename,
7002 .symlink = btrfs_symlink,
7003 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007004 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007005 .setxattr = btrfs_setxattr,
7006 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007007 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007008 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007009 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007010};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007011static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007012 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007013 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007014};
Yan, Zheng76dda932009-09-21 16:00:26 -04007015
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007016static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007017 .llseek = generic_file_llseek,
7018 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007019 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007020 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007021#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007022 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007023#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007024 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007025 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007026};
7027
Chris Masond1310b22008-01-24 16:13:08 -05007028static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007029 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007030 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007031 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007032 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007033 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007034 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04007035 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007036 .set_bit_hook = btrfs_set_bit_hook,
7037 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007038 .merge_extent_hook = btrfs_merge_extent_hook,
7039 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007040};
7041
Chris Mason35054392009-01-21 13:11:13 -05007042/*
7043 * btrfs doesn't support the bmap operation because swapfiles
7044 * use bmap to make a mapping of extents in the file. They assume
7045 * these extents won't change over the life of the file and they
7046 * use the bmap result to do IO directly to the drive.
7047 *
7048 * the btrfs bmap call would return logical addresses that aren't
7049 * suitable for IO and they also will change frequently as COW
7050 * operations happen. So, swapfile + btrfs == corruption.
7051 *
7052 * For now we're avoiding this by dropping bmap.
7053 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007054static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007055 .readpage = btrfs_readpage,
7056 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007057 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007058 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04007059 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04007060 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007061 .invalidatepage = btrfs_invalidatepage,
7062 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007063 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007064 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007065};
7066
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007067static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007068 .readpage = btrfs_readpage,
7069 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007070 .invalidatepage = btrfs_invalidatepage,
7071 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007072};
7073
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007074static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007075 .truncate = btrfs_truncate,
7076 .getattr = btrfs_getattr,
7077 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007078 .setxattr = btrfs_setxattr,
7079 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007080 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007081 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007082 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04007083 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007084 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04007085};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007086static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007087 .getattr = btrfs_getattr,
7088 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007089 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007090 .setxattr = btrfs_setxattr,
7091 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007092 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007093 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007094};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007095static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007096 .readlink = generic_readlink,
7097 .follow_link = page_follow_link_light,
7098 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05007099 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007100 .setxattr = btrfs_setxattr,
7101 .getxattr = btrfs_getxattr,
7102 .listxattr = btrfs_listxattr,
7103 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007104};
Yan, Zheng76dda932009-09-21 16:00:26 -04007105
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007106const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007107 .d_delete = btrfs_dentry_delete,
7108};