blob: 1824dda1d351844fc66bfc94895dad3919d4c57f [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050039#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040040#include "ctree.h"
41#include "disk-io.h"
42#include "transaction.h"
43#include "btrfs_inode.h"
44#include "ioctl.h"
45#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040046#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040047#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040048#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040049#include "tree-log.h"
Chris Masonc8b97812008-10-29 14:49:59 -040050#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050051#include "locking.h"
Chris Mason39279cc2007-06-12 06:35:45 -040052
53struct btrfs_iget_args {
54 u64 ino;
55 struct btrfs_root *root;
56};
57
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070058static const struct inode_operations btrfs_dir_inode_operations;
59static const struct inode_operations btrfs_symlink_inode_operations;
60static const struct inode_operations btrfs_dir_ro_inode_operations;
61static const struct inode_operations btrfs_special_inode_operations;
62static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070063static const struct address_space_operations btrfs_aops;
64static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070065static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050066static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040067
68static struct kmem_cache *btrfs_inode_cachep;
69struct kmem_cache *btrfs_trans_handle_cachep;
70struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040071struct kmem_cache *btrfs_path_cachep;
72
73#define S_SHIFT 12
74static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
75 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
76 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
77 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
78 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
79 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
80 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
81 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
82};
83
Josef Bacik7b128762008-07-24 12:17:14 -040084static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040085static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050086static noinline int cow_file_range(struct inode *inode,
87 struct page *locked_page,
88 u64 start, u64 end, int *page_started,
89 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040090
Yan, Zhengf34f57a2009-11-12 09:35:27 +000091static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
92 struct inode *inode, struct inode *dir)
Jim Owens0279b4c2009-02-04 09:29:13 -050093{
94 int err;
95
Yan, Zhengf34f57a2009-11-12 09:35:27 +000096 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -050097 if (!err)
Yan, Zhengf34f57a2009-11-12 09:35:27 +000098 err = btrfs_xattr_security_init(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -050099 return err;
100}
101
Chris Masond352ac62008-09-29 15:18:18 -0400102/*
Chris Masonc8b97812008-10-29 14:49:59 -0400103 * this does all the hard work for inserting an inline extent into
104 * the btree. The caller should have done a btrfs_drop_extents so that
105 * no overlapping inline items exist in the btree
106 */
Chris Masond3977122009-01-05 21:25:51 -0500107static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400108 struct btrfs_root *root, struct inode *inode,
109 u64 start, size_t size, size_t compressed_size,
110 struct page **compressed_pages)
111{
112 struct btrfs_key key;
113 struct btrfs_path *path;
114 struct extent_buffer *leaf;
115 struct page *page = NULL;
116 char *kaddr;
117 unsigned long ptr;
118 struct btrfs_file_extent_item *ei;
119 int err = 0;
120 int ret;
121 size_t cur_size = size;
122 size_t datasize;
123 unsigned long offset;
124 int use_compress = 0;
125
126 if (compressed_size && compressed_pages) {
127 use_compress = 1;
128 cur_size = compressed_size;
129 }
130
Chris Masond3977122009-01-05 21:25:51 -0500131 path = btrfs_alloc_path();
132 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400133 return -ENOMEM;
134
Chris Masonb9473432009-03-13 11:00:37 -0400135 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400136 btrfs_set_trans_block_group(trans, inode);
137
138 key.objectid = inode->i_ino;
139 key.offset = start;
140 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400141 datasize = btrfs_file_extent_calc_inline_size(cur_size);
142
143 inode_add_bytes(inode, size);
144 ret = btrfs_insert_empty_item(trans, root, path, &key,
145 datasize);
146 BUG_ON(ret);
147 if (ret) {
148 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400149 goto fail;
150 }
151 leaf = path->nodes[0];
152 ei = btrfs_item_ptr(leaf, path->slots[0],
153 struct btrfs_file_extent_item);
154 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
155 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
156 btrfs_set_file_extent_encryption(leaf, ei, 0);
157 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
158 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
159 ptr = btrfs_file_extent_inline_start(ei);
160
161 if (use_compress) {
162 struct page *cpage;
163 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500164 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400165 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500166 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400167 PAGE_CACHE_SIZE);
168
Chris Masonb9473432009-03-13 11:00:37 -0400169 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400170 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400171 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400172
173 i++;
174 ptr += cur_size;
175 compressed_size -= cur_size;
176 }
177 btrfs_set_file_extent_compression(leaf, ei,
178 BTRFS_COMPRESS_ZLIB);
179 } else {
180 page = find_get_page(inode->i_mapping,
181 start >> PAGE_CACHE_SHIFT);
182 btrfs_set_file_extent_compression(leaf, ei, 0);
183 kaddr = kmap_atomic(page, KM_USER0);
184 offset = start & (PAGE_CACHE_SIZE - 1);
185 write_extent_buffer(leaf, kaddr + offset, ptr, size);
186 kunmap_atomic(kaddr, KM_USER0);
187 page_cache_release(page);
188 }
189 btrfs_mark_buffer_dirty(leaf);
190 btrfs_free_path(path);
191
Yan, Zhengc2167752009-11-12 09:34:21 +0000192 /*
193 * we're an inline extent, so nobody can
194 * extend the file past i_size without locking
195 * a page we already have locked.
196 *
197 * We must do any isize and inode updates
198 * before we unlock the pages. Otherwise we
199 * could end up racing with unlink.
200 */
Chris Masonc8b97812008-10-29 14:49:59 -0400201 BTRFS_I(inode)->disk_i_size = inode->i_size;
202 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000203
Chris Masonc8b97812008-10-29 14:49:59 -0400204 return 0;
205fail:
206 btrfs_free_path(path);
207 return err;
208}
209
210
211/*
212 * conditionally insert an inline extent into the file. This
213 * does the checks required to make sure the data is small enough
214 * to fit as an inline extent.
215 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400216static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400217 struct btrfs_root *root,
218 struct inode *inode, u64 start, u64 end,
219 size_t compressed_size,
220 struct page **compressed_pages)
221{
222 u64 isize = i_size_read(inode);
223 u64 actual_end = min(end + 1, isize);
224 u64 inline_len = actual_end - start;
225 u64 aligned_end = (end + root->sectorsize - 1) &
226 ~((u64)root->sectorsize - 1);
227 u64 hint_byte;
228 u64 data_len = inline_len;
229 int ret;
230
231 if (compressed_size)
232 data_len = compressed_size;
233
234 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400235 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400236 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
237 (!compressed_size &&
238 (actual_end & (root->sectorsize - 1)) == 0) ||
239 end + 1 < isize ||
240 data_len > root->fs_info->max_inline) {
241 return 1;
242 }
243
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000244 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400245 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400246 BUG_ON(ret);
247
248 if (isize > actual_end)
249 inline_len = min_t(u64, isize, actual_end);
250 ret = insert_inline_extent(trans, root, inode, start,
251 inline_len, compressed_size,
252 compressed_pages);
253 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -0400254 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400255 return 0;
256}
257
Chris Mason771ed682008-11-06 22:02:51 -0500258struct async_extent {
259 u64 start;
260 u64 ram_size;
261 u64 compressed_size;
262 struct page **pages;
263 unsigned long nr_pages;
264 struct list_head list;
265};
266
267struct async_cow {
268 struct inode *inode;
269 struct btrfs_root *root;
270 struct page *locked_page;
271 u64 start;
272 u64 end;
273 struct list_head extents;
274 struct btrfs_work work;
275};
276
277static noinline int add_async_extent(struct async_cow *cow,
278 u64 start, u64 ram_size,
279 u64 compressed_size,
280 struct page **pages,
281 unsigned long nr_pages)
282{
283 struct async_extent *async_extent;
284
285 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
286 async_extent->start = start;
287 async_extent->ram_size = ram_size;
288 async_extent->compressed_size = compressed_size;
289 async_extent->pages = pages;
290 async_extent->nr_pages = nr_pages;
291 list_add_tail(&async_extent->list, &cow->extents);
292 return 0;
293}
294
Chris Masonc8b97812008-10-29 14:49:59 -0400295/*
Chris Mason771ed682008-11-06 22:02:51 -0500296 * we create compressed extents in two phases. The first
297 * phase compresses a range of pages that have already been
298 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400299 *
Chris Mason771ed682008-11-06 22:02:51 -0500300 * This is done inside an ordered work queue, and the compression
301 * is spread across many cpus. The actual IO submission is step
302 * two, and the ordered work queue takes care of making sure that
303 * happens in the same order things were put onto the queue by
304 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400305 *
Chris Mason771ed682008-11-06 22:02:51 -0500306 * If this code finds it can't get good compression, it puts an
307 * entry onto the work queue to write the uncompressed bytes. This
308 * makes sure that both compressed inodes and uncompressed inodes
309 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400310 */
Chris Mason771ed682008-11-06 22:02:51 -0500311static noinline int compress_file_range(struct inode *inode,
312 struct page *locked_page,
313 u64 start, u64 end,
314 struct async_cow *async_cow,
315 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400316{
317 struct btrfs_root *root = BTRFS_I(inode)->root;
318 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400319 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -0400320 u64 orig_start;
321 u64 disk_num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400322 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400323 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500324 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400325 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400326 struct page **pages = NULL;
327 unsigned long nr_pages;
328 unsigned long nr_pages_ret = 0;
329 unsigned long total_compressed = 0;
330 unsigned long total_in = 0;
331 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500332 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400333 int i;
334 int will_compress;
Chris Masonb888db22007-08-27 16:49:44 -0400335
Chris Masonc8b97812008-10-29 14:49:59 -0400336 orig_start = start;
Chris Masonbe20aa92007-12-17 20:14:01 -0500337
Chris Mason42dc7ba2008-12-15 11:44:56 -0500338 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400339again:
340 will_compress = 0;
341 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
342 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
343
Chris Masonf03d9301f2009-02-04 09:31:06 -0500344 /*
345 * we don't want to send crud past the end of i_size through
346 * compression, that's just a waste of CPU time. So, if the
347 * end of the file is before the start of our current
348 * requested range of bytes, we bail out to the uncompressed
349 * cleanup code that can deal with all of this.
350 *
351 * It isn't really the fastest way to fix things, but this is a
352 * very uncommon corner.
353 */
354 if (actual_end <= start)
355 goto cleanup_and_bail_uncompressed;
356
Chris Masonc8b97812008-10-29 14:49:59 -0400357 total_compressed = actual_end - start;
358
359 /* we want to make sure that amount of ram required to uncompress
360 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500361 * of a compressed extent to 128k. This is a crucial number
362 * because it also controls how easily we can spread reads across
363 * cpus for decompression.
364 *
365 * We also want to make sure the amount of IO required to do
366 * a random read is reasonably small, so we limit the size of
367 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400368 */
369 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400370 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500371 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400372 disk_num_bytes = num_bytes;
373 total_in = 0;
374 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400375
Chris Mason771ed682008-11-06 22:02:51 -0500376 /*
377 * we do compression for mount -o compress and when the
378 * inode has not been flagged as nocompress. This flag can
379 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400380 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200381 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500382 (btrfs_test_opt(root, COMPRESS) ||
383 (BTRFS_I(inode)->force_compress))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400384 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400385 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400386
Chris Masonc8b97812008-10-29 14:49:59 -0400387 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
388 total_compressed, pages,
389 nr_pages, &nr_pages_ret,
390 &total_in,
391 &total_compressed,
392 max_compressed);
393
394 if (!ret) {
395 unsigned long offset = total_compressed &
396 (PAGE_CACHE_SIZE - 1);
397 struct page *page = pages[nr_pages_ret - 1];
398 char *kaddr;
399
400 /* zero the tail end of the last page, we might be
401 * sending it down to disk
402 */
403 if (offset) {
404 kaddr = kmap_atomic(page, KM_USER0);
405 memset(kaddr + offset, 0,
406 PAGE_CACHE_SIZE - offset);
407 kunmap_atomic(kaddr, KM_USER0);
408 }
409 will_compress = 1;
410 }
411 }
412 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500413 trans = btrfs_join_transaction(root, 1);
414 BUG_ON(!trans);
415 btrfs_set_trans_block_group(trans, inode);
416
Chris Masonc8b97812008-10-29 14:49:59 -0400417 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500418 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400419 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500420 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400421 */
422 ret = cow_file_range_inline(trans, root, inode,
423 start, end, 0, NULL);
424 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500425 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400426 ret = cow_file_range_inline(trans, root, inode,
427 start, end,
428 total_compressed, pages);
429 }
430 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500431 /*
432 * inline extent creation worked, we don't need
433 * to create any more async work items. Unlock
434 * and free up our temp pages.
435 */
Chris Masonc8b97812008-10-29 14:49:59 -0400436 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400437 &BTRFS_I(inode)->io_tree,
438 start, end, NULL,
439 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400440 EXTENT_CLEAR_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -0400441 EXTENT_CLEAR_ACCOUNTING |
Chris Masona791e352009-10-08 11:27:10 -0400442 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000443
444 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400445 goto free_pages_out;
446 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000447 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400448 }
449
450 if (will_compress) {
451 /*
452 * we aren't doing an inline extent round the compressed size
453 * up to a block size boundary so the allocator does sane
454 * things
455 */
456 total_compressed = (total_compressed + blocksize - 1) &
457 ~(blocksize - 1);
458
459 /*
460 * one last check to make sure the compression is really a
461 * win, compare the page count read with the blocks on disk
462 */
463 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
464 ~(PAGE_CACHE_SIZE - 1);
465 if (total_compressed >= total_in) {
466 will_compress = 0;
467 } else {
468 disk_num_bytes = total_compressed;
469 num_bytes = total_in;
470 }
471 }
472 if (!will_compress && pages) {
473 /*
474 * the compression code ran but failed to make things smaller,
475 * free any pages it allocated and our page pointer array
476 */
477 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400478 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400479 page_cache_release(pages[i]);
480 }
481 kfree(pages);
482 pages = NULL;
483 total_compressed = 0;
484 nr_pages_ret = 0;
485
486 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500487 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
488 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500489 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500490 }
Chris Masonc8b97812008-10-29 14:49:59 -0400491 }
Chris Mason771ed682008-11-06 22:02:51 -0500492 if (will_compress) {
493 *num_added += 1;
494
495 /* the async work queues will take care of doing actual
496 * allocation on disk for these compressed pages,
497 * and will submit them to the elevator.
498 */
499 add_async_extent(async_cow, start, num_bytes,
500 total_compressed, pages, nr_pages_ret);
501
Chris Mason42dc7ba2008-12-15 11:44:56 -0500502 if (start + num_bytes < end && start + num_bytes < actual_end) {
Chris Mason771ed682008-11-06 22:02:51 -0500503 start += num_bytes;
504 pages = NULL;
505 cond_resched();
506 goto again;
507 }
508 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500509cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500510 /*
511 * No compression, but we still need to write the pages in
512 * the file we've been given so far. redirty the locked
513 * page if it corresponds to our extent and set things up
514 * for the async work queue to run cow_file_range to do
515 * the normal delalloc dance
516 */
517 if (page_offset(locked_page) >= start &&
518 page_offset(locked_page) <= end) {
519 __set_page_dirty_nobuffers(locked_page);
520 /* unlocked later on in the async handlers */
521 }
522 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
523 *num_added += 1;
524 }
525
526out:
527 return 0;
528
529free_pages_out:
530 for (i = 0; i < nr_pages_ret; i++) {
531 WARN_ON(pages[i]->mapping);
532 page_cache_release(pages[i]);
533 }
Chris Masond3977122009-01-05 21:25:51 -0500534 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500535
536 goto out;
537}
538
539/*
540 * phase two of compressed writeback. This is the ordered portion
541 * of the code, which only gets called in the order the work was
542 * queued. We walk all the async extents created by compress_file_range
543 * and send them down to the disk.
544 */
545static noinline int submit_compressed_extents(struct inode *inode,
546 struct async_cow *async_cow)
547{
548 struct async_extent *async_extent;
549 u64 alloc_hint = 0;
550 struct btrfs_trans_handle *trans;
551 struct btrfs_key ins;
552 struct extent_map *em;
553 struct btrfs_root *root = BTRFS_I(inode)->root;
554 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
555 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500556 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500557
558 if (list_empty(&async_cow->extents))
559 return 0;
560
Chris Mason771ed682008-11-06 22:02:51 -0500561
Chris Masond3977122009-01-05 21:25:51 -0500562 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500563 async_extent = list_entry(async_cow->extents.next,
564 struct async_extent, list);
565 list_del(&async_extent->list);
566
567 io_tree = &BTRFS_I(inode)->io_tree;
568
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500569retry:
Chris Mason771ed682008-11-06 22:02:51 -0500570 /* did the compression code fall back to uncompressed IO? */
571 if (!async_extent->pages) {
572 int page_started = 0;
573 unsigned long nr_written = 0;
574
575 lock_extent(io_tree, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500576 async_extent->start +
577 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500578
579 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500580 ret = cow_file_range(inode, async_cow->locked_page,
581 async_extent->start,
582 async_extent->start +
583 async_extent->ram_size - 1,
584 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500585
586 /*
587 * if page_started, cow_file_range inserted an
588 * inline extent and took care of all the unlocking
589 * and IO for us. Otherwise, we need to submit
590 * all those pages down to the drive.
591 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500592 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500593 extent_write_locked_range(io_tree,
594 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500595 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500596 async_extent->ram_size - 1,
597 btrfs_get_extent,
598 WB_SYNC_ALL);
599 kfree(async_extent);
600 cond_resched();
601 continue;
602 }
603
604 lock_extent(io_tree, async_extent->start,
605 async_extent->start + async_extent->ram_size - 1,
606 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500607
Yan, Zhengc2167752009-11-12 09:34:21 +0000608 trans = btrfs_join_transaction(root, 1);
Chris Mason771ed682008-11-06 22:02:51 -0500609 ret = btrfs_reserve_extent(trans, root,
610 async_extent->compressed_size,
611 async_extent->compressed_size,
612 0, alloc_hint,
613 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000614 btrfs_end_transaction(trans, root);
615
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500616 if (ret) {
617 int i;
618 for (i = 0; i < async_extent->nr_pages; i++) {
619 WARN_ON(async_extent->pages[i]->mapping);
620 page_cache_release(async_extent->pages[i]);
621 }
622 kfree(async_extent->pages);
623 async_extent->nr_pages = 0;
624 async_extent->pages = NULL;
625 unlock_extent(io_tree, async_extent->start,
626 async_extent->start +
627 async_extent->ram_size - 1, GFP_NOFS);
628 goto retry;
629 }
630
Yan, Zhengc2167752009-11-12 09:34:21 +0000631 /*
632 * here we're doing allocation and writeback of the
633 * compressed pages
634 */
635 btrfs_drop_extent_cache(inode, async_extent->start,
636 async_extent->start +
637 async_extent->ram_size - 1, 0);
638
Chris Mason771ed682008-11-06 22:02:51 -0500639 em = alloc_extent_map(GFP_NOFS);
640 em->start = async_extent->start;
641 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500642 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500643
644 em->block_start = ins.objectid;
645 em->block_len = ins.offset;
646 em->bdev = root->fs_info->fs_devices->latest_bdev;
647 set_bit(EXTENT_FLAG_PINNED, &em->flags);
648 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
649
Chris Masond3977122009-01-05 21:25:51 -0500650 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400651 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500652 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400653 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500654 if (ret != -EEXIST) {
655 free_extent_map(em);
656 break;
657 }
658 btrfs_drop_extent_cache(inode, async_extent->start,
659 async_extent->start +
660 async_extent->ram_size - 1, 0);
661 }
662
663 ret = btrfs_add_ordered_extent(inode, async_extent->start,
664 ins.objectid,
665 async_extent->ram_size,
666 ins.offset,
667 BTRFS_ORDERED_COMPRESSED);
668 BUG_ON(ret);
669
Chris Mason771ed682008-11-06 22:02:51 -0500670 /*
671 * clear dirty, set writeback and unlock the pages.
672 */
673 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400674 &BTRFS_I(inode)->io_tree,
675 async_extent->start,
676 async_extent->start +
677 async_extent->ram_size - 1,
678 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
679 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400680 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400681 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500682
683 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500684 async_extent->start,
685 async_extent->ram_size,
686 ins.objectid,
687 ins.offset, async_extent->pages,
688 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500689
690 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500691 alloc_hint = ins.objectid + ins.offset;
692 kfree(async_extent);
693 cond_resched();
694 }
695
Chris Mason771ed682008-11-06 22:02:51 -0500696 return 0;
697}
698
699/*
700 * when extent_io.c finds a delayed allocation range in the file,
701 * the call backs end up in this code. The basic idea is to
702 * allocate extents on disk for the range, and create ordered data structs
703 * in ram to track those extents.
704 *
705 * locked_page is the page that writepage had locked already. We use
706 * it to make sure we don't do extra locks or unlocks.
707 *
708 * *page_started is set to one if we unlock locked_page and do everything
709 * required to start IO on it. It may be clean and already done with
710 * IO when we return.
711 */
712static noinline int cow_file_range(struct inode *inode,
713 struct page *locked_page,
714 u64 start, u64 end, int *page_started,
715 unsigned long *nr_written,
716 int unlock)
717{
718 struct btrfs_root *root = BTRFS_I(inode)->root;
719 struct btrfs_trans_handle *trans;
720 u64 alloc_hint = 0;
721 u64 num_bytes;
722 unsigned long ram_size;
723 u64 disk_num_bytes;
724 u64 cur_alloc_size;
725 u64 blocksize = root->sectorsize;
726 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500727 u64 isize = i_size_read(inode);
Chris Mason771ed682008-11-06 22:02:51 -0500728 struct btrfs_key ins;
729 struct extent_map *em;
730 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
731 int ret = 0;
732
733 trans = btrfs_join_transaction(root, 1);
734 BUG_ON(!trans);
735 btrfs_set_trans_block_group(trans, inode);
736
Chris Mason42dc7ba2008-12-15 11:44:56 -0500737 actual_end = min_t(u64, isize, end + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500738
739 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
740 num_bytes = max(blocksize, num_bytes);
741 disk_num_bytes = num_bytes;
742 ret = 0;
743
744 if (start == 0) {
745 /* lets try to make an inline extent */
746 ret = cow_file_range_inline(trans, root, inode,
747 start, end, 0, NULL);
748 if (ret == 0) {
749 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400750 &BTRFS_I(inode)->io_tree,
751 start, end, NULL,
752 EXTENT_CLEAR_UNLOCK_PAGE |
753 EXTENT_CLEAR_UNLOCK |
754 EXTENT_CLEAR_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -0400755 EXTENT_CLEAR_ACCOUNTING |
Chris Masona791e352009-10-08 11:27:10 -0400756 EXTENT_CLEAR_DIRTY |
757 EXTENT_SET_WRITEBACK |
758 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000759
Chris Mason771ed682008-11-06 22:02:51 -0500760 *nr_written = *nr_written +
761 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
762 *page_started = 1;
763 ret = 0;
764 goto out;
765 }
766 }
Chris Masonc8b97812008-10-29 14:49:59 -0400767
768 BUG_ON(disk_num_bytes >
769 btrfs_super_total_bytes(&root->fs_info->super_copy));
770
Chris Masonb917b7c2009-09-18 16:07:03 -0400771
772 read_lock(&BTRFS_I(inode)->extent_tree.lock);
773 em = search_extent_mapping(&BTRFS_I(inode)->extent_tree,
774 start, num_bytes);
775 if (em) {
Josef Bacik6346c932009-11-10 21:23:47 -0500776 /*
777 * if block start isn't an actual block number then find the
778 * first block in this inode and use that as a hint. If that
779 * block is also bogus then just don't worry about it.
780 */
781 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
782 free_extent_map(em);
783 em = search_extent_mapping(em_tree, 0, 0);
784 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
785 alloc_hint = em->block_start;
786 if (em)
787 free_extent_map(em);
788 } else {
789 alloc_hint = em->block_start;
790 free_extent_map(em);
791 }
Chris Masonb917b7c2009-09-18 16:07:03 -0400792 }
793 read_unlock(&BTRFS_I(inode)->extent_tree.lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400794 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400795
Chris Masond3977122009-01-05 21:25:51 -0500796 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400797 unsigned long op;
798
Chris Masonc8b97812008-10-29 14:49:59 -0400799 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400800 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500801 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400802 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500803 BUG_ON(ret);
804
Chris Masone6dcd2d2008-07-17 12:53:50 -0400805 em = alloc_extent_map(GFP_NOFS);
806 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500807 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500808 ram_size = ins.offset;
809 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400810
Chris Masone6dcd2d2008-07-17 12:53:50 -0400811 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400812 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400813 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400814 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400815
Chris Masond3977122009-01-05 21:25:51 -0500816 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400817 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400818 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400819 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400820 if (ret != -EEXIST) {
821 free_extent_map(em);
822 break;
823 }
824 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400825 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400826 }
827
Chris Mason98d20f62008-04-14 09:46:10 -0400828 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400829 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500830 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400831 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400832
Yan Zheng17d217f2008-12-12 10:03:38 -0500833 if (root->root_key.objectid ==
834 BTRFS_DATA_RELOC_TREE_OBJECTID) {
835 ret = btrfs_reloc_clone_csums(inode, start,
836 cur_alloc_size);
837 BUG_ON(ret);
838 }
839
Chris Masond3977122009-01-05 21:25:51 -0500840 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400841 break;
Chris Masond3977122009-01-05 21:25:51 -0500842
Chris Masonc8b97812008-10-29 14:49:59 -0400843 /* we're not doing compressed IO, don't unlock the first
844 * page (which the caller expects to stay locked), don't
845 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400846 *
847 * Do set the Private2 bit so we know this page was properly
848 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400849 */
Chris Masona791e352009-10-08 11:27:10 -0400850 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
851 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
852 EXTENT_SET_PRIVATE2;
853
Chris Masonc8b97812008-10-29 14:49:59 -0400854 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
855 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400856 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400857 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500858 num_bytes -= cur_alloc_size;
859 alloc_hint = ins.objectid + ins.offset;
860 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400861 }
Chris Masonb888db22007-08-27 16:49:44 -0400862out:
Chris Mason771ed682008-11-06 22:02:51 -0500863 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400864 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400865
Chris Masonbe20aa92007-12-17 20:14:01 -0500866 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500867}
Chris Masonc8b97812008-10-29 14:49:59 -0400868
Chris Mason771ed682008-11-06 22:02:51 -0500869/*
870 * work queue call back to started compression on a file and pages
871 */
872static noinline void async_cow_start(struct btrfs_work *work)
873{
874 struct async_cow *async_cow;
875 int num_added = 0;
876 async_cow = container_of(work, struct async_cow, work);
877
878 compress_file_range(async_cow->inode, async_cow->locked_page,
879 async_cow->start, async_cow->end, async_cow,
880 &num_added);
881 if (num_added == 0)
882 async_cow->inode = NULL;
883}
884
885/*
886 * work queue call back to submit previously compressed pages
887 */
888static noinline void async_cow_submit(struct btrfs_work *work)
889{
890 struct async_cow *async_cow;
891 struct btrfs_root *root;
892 unsigned long nr_pages;
893
894 async_cow = container_of(work, struct async_cow, work);
895
896 root = async_cow->root;
897 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
898 PAGE_CACHE_SHIFT;
899
900 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
901
902 if (atomic_read(&root->fs_info->async_delalloc_pages) <
903 5 * 1042 * 1024 &&
904 waitqueue_active(&root->fs_info->async_submit_wait))
905 wake_up(&root->fs_info->async_submit_wait);
906
Chris Masond3977122009-01-05 21:25:51 -0500907 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500908 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500909}
Chris Masonc8b97812008-10-29 14:49:59 -0400910
Chris Mason771ed682008-11-06 22:02:51 -0500911static noinline void async_cow_free(struct btrfs_work *work)
912{
913 struct async_cow *async_cow;
914 async_cow = container_of(work, struct async_cow, work);
915 kfree(async_cow);
916}
917
918static int cow_file_range_async(struct inode *inode, struct page *locked_page,
919 u64 start, u64 end, int *page_started,
920 unsigned long *nr_written)
921{
922 struct async_cow *async_cow;
923 struct btrfs_root *root = BTRFS_I(inode)->root;
924 unsigned long nr_pages;
925 u64 cur_end;
926 int limit = 10 * 1024 * 1042;
927
Chris Masona3429ab2009-10-08 12:30:20 -0400928 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
929 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500930 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500931 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
932 async_cow->inode = inode;
933 async_cow->root = root;
934 async_cow->locked_page = locked_page;
935 async_cow->start = start;
936
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200937 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500938 cur_end = end;
939 else
940 cur_end = min(end, start + 512 * 1024 - 1);
941
942 async_cow->end = cur_end;
943 INIT_LIST_HEAD(&async_cow->extents);
944
945 async_cow->work.func = async_cow_start;
946 async_cow->work.ordered_func = async_cow_submit;
947 async_cow->work.ordered_free = async_cow_free;
948 async_cow->work.flags = 0;
949
Chris Mason771ed682008-11-06 22:02:51 -0500950 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
951 PAGE_CACHE_SHIFT;
952 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
953
954 btrfs_queue_worker(&root->fs_info->delalloc_workers,
955 &async_cow->work);
956
957 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
958 wait_event(root->fs_info->async_submit_wait,
959 (atomic_read(&root->fs_info->async_delalloc_pages) <
960 limit));
961 }
962
Chris Masond3977122009-01-05 21:25:51 -0500963 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500964 atomic_read(&root->fs_info->async_delalloc_pages)) {
965 wait_event(root->fs_info->async_submit_wait,
966 (atomic_read(&root->fs_info->async_delalloc_pages) ==
967 0));
968 }
969
970 *nr_written += nr_pages;
971 start = cur_end + 1;
972 }
973 *page_started = 1;
974 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500975}
976
Chris Masond3977122009-01-05 21:25:51 -0500977static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500978 u64 bytenr, u64 num_bytes)
979{
980 int ret;
981 struct btrfs_ordered_sum *sums;
982 LIST_HEAD(list);
983
Yan Zheng07d400a2009-01-06 11:42:00 -0500984 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
985 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500986 if (ret == 0 && list_empty(&list))
987 return 0;
988
989 while (!list_empty(&list)) {
990 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
991 list_del(&sums->list);
992 kfree(sums);
993 }
994 return 1;
995}
996
Chris Masond352ac62008-09-29 15:18:18 -0400997/*
998 * when nowcow writeback call back. This checks for snapshots or COW copies
999 * of the extents that exist in the file, and COWs the file as required.
1000 *
1001 * If no cow copies or snapshots exist, we write directly to the existing
1002 * blocks on disk
1003 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001004static noinline int run_delalloc_nocow(struct inode *inode,
1005 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001006 u64 start, u64 end, int *page_started, int force,
1007 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001008{
Chris Masonbe20aa92007-12-17 20:14:01 -05001009 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001010 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001011 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001012 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001013 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001014 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001015 u64 cow_start;
1016 u64 cur_offset;
1017 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001018 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001019 u64 disk_bytenr;
1020 u64 num_bytes;
1021 int extent_type;
1022 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001023 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001024 int nocow;
1025 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -05001026
1027 path = btrfs_alloc_path();
1028 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001029 trans = btrfs_join_transaction(root, 1);
1030 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -05001031
Yan Zheng80ff3852008-10-30 14:20:02 -04001032 cow_start = (u64)-1;
1033 cur_offset = start;
1034 while (1) {
1035 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1036 cur_offset, 0);
1037 BUG_ON(ret < 0);
1038 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1039 leaf = path->nodes[0];
1040 btrfs_item_key_to_cpu(leaf, &found_key,
1041 path->slots[0] - 1);
1042 if (found_key.objectid == inode->i_ino &&
1043 found_key.type == BTRFS_EXTENT_DATA_KEY)
1044 path->slots[0]--;
1045 }
1046 check_prev = 0;
1047next_slot:
1048 leaf = path->nodes[0];
1049 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1050 ret = btrfs_next_leaf(root, path);
1051 if (ret < 0)
1052 BUG_ON(1);
1053 if (ret > 0)
1054 break;
1055 leaf = path->nodes[0];
1056 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001057
Yan Zheng80ff3852008-10-30 14:20:02 -04001058 nocow = 0;
1059 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001060 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001061 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001062
Yan Zheng80ff3852008-10-30 14:20:02 -04001063 if (found_key.objectid > inode->i_ino ||
1064 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1065 found_key.offset > end)
1066 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001067
Yan Zheng80ff3852008-10-30 14:20:02 -04001068 if (found_key.offset > cur_offset) {
1069 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001070 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001071 goto out_check;
1072 }
Chris Masonc31f8832008-01-08 15:46:31 -05001073
Yan Zheng80ff3852008-10-30 14:20:02 -04001074 fi = btrfs_item_ptr(leaf, path->slots[0],
1075 struct btrfs_file_extent_item);
1076 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001077
Yan Zhengd899e052008-10-30 14:25:28 -04001078 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1079 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001080 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001081 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001082 extent_end = found_key.offset +
1083 btrfs_file_extent_num_bytes(leaf, fi);
1084 if (extent_end <= start) {
1085 path->slots[0]++;
1086 goto next_slot;
1087 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001088 if (disk_bytenr == 0)
1089 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001090 if (btrfs_file_extent_compression(leaf, fi) ||
1091 btrfs_file_extent_encryption(leaf, fi) ||
1092 btrfs_file_extent_other_encoding(leaf, fi))
1093 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001094 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1095 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001096 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001097 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001098 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001099 found_key.offset -
1100 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001101 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001102 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001103 disk_bytenr += cur_offset - found_key.offset;
1104 num_bytes = min(end + 1, extent_end) - cur_offset;
1105 /*
1106 * force cow if csum exists in the range.
1107 * this ensure that csum for a given extent are
1108 * either valid or do not exist.
1109 */
1110 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1111 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001112 nocow = 1;
1113 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1114 extent_end = found_key.offset +
1115 btrfs_file_extent_inline_len(leaf, fi);
1116 extent_end = ALIGN(extent_end, root->sectorsize);
1117 } else {
1118 BUG_ON(1);
1119 }
1120out_check:
1121 if (extent_end <= start) {
1122 path->slots[0]++;
1123 goto next_slot;
1124 }
1125 if (!nocow) {
1126 if (cow_start == (u64)-1)
1127 cow_start = cur_offset;
1128 cur_offset = extent_end;
1129 if (cur_offset > end)
1130 break;
1131 path->slots[0]++;
1132 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001133 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001134
Yan Zheng7ea394f2008-08-05 13:05:02 -04001135 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001136 if (cow_start != (u64)-1) {
1137 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001138 found_key.offset - 1, page_started,
1139 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001140 BUG_ON(ret);
1141 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001142 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001143
Yan Zhengd899e052008-10-30 14:25:28 -04001144 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1145 struct extent_map *em;
1146 struct extent_map_tree *em_tree;
1147 em_tree = &BTRFS_I(inode)->extent_tree;
1148 em = alloc_extent_map(GFP_NOFS);
1149 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001150 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001151 em->len = num_bytes;
1152 em->block_len = num_bytes;
1153 em->block_start = disk_bytenr;
1154 em->bdev = root->fs_info->fs_devices->latest_bdev;
1155 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1156 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001157 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001158 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001159 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001160 if (ret != -EEXIST) {
1161 free_extent_map(em);
1162 break;
1163 }
1164 btrfs_drop_extent_cache(inode, em->start,
1165 em->start + em->len - 1, 0);
1166 }
1167 type = BTRFS_ORDERED_PREALLOC;
1168 } else {
1169 type = BTRFS_ORDERED_NOCOW;
1170 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001171
1172 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001173 num_bytes, num_bytes, type);
1174 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001175
Yan Zhengd899e052008-10-30 14:25:28 -04001176 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001177 cur_offset, cur_offset + num_bytes - 1,
1178 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1179 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1180 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001181 cur_offset = extent_end;
1182 if (cur_offset > end)
1183 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001184 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001185 btrfs_release_path(root, path);
1186
1187 if (cur_offset <= end && cow_start == (u64)-1)
1188 cow_start = cur_offset;
1189 if (cow_start != (u64)-1) {
1190 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001191 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001192 BUG_ON(ret);
1193 }
1194
1195 ret = btrfs_end_transaction(trans, root);
1196 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001197 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001198 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001199}
1200
Chris Masond352ac62008-09-29 15:18:18 -04001201/*
1202 * extent_io.c call back to do delayed allocation processing
1203 */
Chris Masonc8b97812008-10-29 14:49:59 -04001204static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001205 u64 start, u64 end, int *page_started,
1206 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001207{
Chris Masonbe20aa92007-12-17 20:14:01 -05001208 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001209 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001210
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001211 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001212 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001213 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001214 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001215 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001216 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001217 else if (!btrfs_test_opt(root, COMPRESS) &&
1218 !(BTRFS_I(inode)->force_compress))
Chris Mason7f366cf2009-03-12 20:12:45 -04001219 ret = cow_file_range(inode, locked_page, start, end,
1220 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001221 else
Chris Mason771ed682008-11-06 22:02:51 -05001222 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001223 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001224 return ret;
1225}
1226
Josef Bacik9ed74f22009-09-11 16:12:44 -04001227static int btrfs_split_extent_hook(struct inode *inode,
1228 struct extent_state *orig, u64 split)
1229{
1230 struct btrfs_root *root = BTRFS_I(inode)->root;
1231 u64 size;
1232
1233 if (!(orig->state & EXTENT_DELALLOC))
1234 return 0;
1235
1236 size = orig->end - orig->start + 1;
1237 if (size > root->fs_info->max_extent) {
1238 u64 num_extents;
1239 u64 new_size;
1240
1241 new_size = orig->end - split + 1;
1242 num_extents = div64_u64(size + root->fs_info->max_extent - 1,
1243 root->fs_info->max_extent);
1244
1245 /*
Josef Bacik32c00af2009-10-08 13:34:05 -04001246 * if we break a large extent up then leave oustanding_extents
1247 * be, since we've already accounted for the large extent.
Josef Bacik9ed74f22009-09-11 16:12:44 -04001248 */
1249 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1250 root->fs_info->max_extent) < num_extents)
1251 return 0;
1252 }
1253
Josef Bacik32c00af2009-10-08 13:34:05 -04001254 spin_lock(&BTRFS_I(inode)->accounting_lock);
1255 BTRFS_I(inode)->outstanding_extents++;
1256 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001257
1258 return 0;
1259}
1260
1261/*
1262 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1263 * extents so we can keep track of new extents that are just merged onto old
1264 * extents, such as when we are doing sequential writes, so we can properly
1265 * account for the metadata space we'll need.
1266 */
1267static int btrfs_merge_extent_hook(struct inode *inode,
1268 struct extent_state *new,
1269 struct extent_state *other)
1270{
1271 struct btrfs_root *root = BTRFS_I(inode)->root;
1272 u64 new_size, old_size;
1273 u64 num_extents;
1274
1275 /* not delalloc, ignore it */
1276 if (!(other->state & EXTENT_DELALLOC))
1277 return 0;
1278
1279 old_size = other->end - other->start + 1;
1280 if (new->start < other->start)
1281 new_size = other->end - new->start + 1;
1282 else
1283 new_size = new->end - other->start + 1;
1284
1285 /* we're not bigger than the max, unreserve the space and go */
1286 if (new_size <= root->fs_info->max_extent) {
Josef Bacik32c00af2009-10-08 13:34:05 -04001287 spin_lock(&BTRFS_I(inode)->accounting_lock);
1288 BTRFS_I(inode)->outstanding_extents--;
1289 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001290 return 0;
1291 }
1292
1293 /*
1294 * If we grew by another max_extent, just return, we want to keep that
1295 * reserved amount.
1296 */
1297 num_extents = div64_u64(old_size + root->fs_info->max_extent - 1,
1298 root->fs_info->max_extent);
1299 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1300 root->fs_info->max_extent) > num_extents)
1301 return 0;
1302
Josef Bacik32c00af2009-10-08 13:34:05 -04001303 spin_lock(&BTRFS_I(inode)->accounting_lock);
1304 BTRFS_I(inode)->outstanding_extents--;
1305 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001306
1307 return 0;
1308}
1309
Chris Masond352ac62008-09-29 15:18:18 -04001310/*
1311 * extent_io.c set_bit_hook, used to track delayed allocation
1312 * bytes in this file, and to maintain the list of inodes that
1313 * have pending delalloc work to be done.
1314 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001315static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001316 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001317{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001318
Chris Mason75eff682008-12-15 15:54:40 -05001319 /*
1320 * set_bit and clear bit hooks normally require _irqsave/restore
1321 * but in this case, we are only testeing for the DELALLOC
1322 * bit, which is only set or cleared with irqs on
1323 */
Chris Masonb0c68f82008-01-31 11:05:37 -05001324 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001325 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001326
Josef Bacik32c00af2009-10-08 13:34:05 -04001327 spin_lock(&BTRFS_I(inode)->accounting_lock);
1328 BTRFS_I(inode)->outstanding_extents++;
1329 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik6a632092009-02-20 11:00:09 -05001330 btrfs_delalloc_reserve_space(root, inode, end - start + 1);
Chris Mason75eff682008-12-15 15:54:40 -05001331 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -05001332 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001333 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001334 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1335 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1336 &root->fs_info->delalloc_inodes);
1337 }
Chris Mason75eff682008-12-15 15:54:40 -05001338 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001339 }
1340 return 0;
1341}
1342
Chris Masond352ac62008-09-29 15:18:18 -04001343/*
1344 * extent_io.c clear_bit_hook, see set_bit_hook for why
1345 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001346static int btrfs_clear_bit_hook(struct inode *inode,
1347 struct extent_state *state, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001348{
Chris Mason75eff682008-12-15 15:54:40 -05001349 /*
1350 * set_bit and clear bit hooks normally require _irqsave/restore
1351 * but in this case, we are only testeing for the DELALLOC
1352 * bit, which is only set or cleared with irqs on
1353 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001354 if ((state->state & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001355 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001356
Josef Bacik32c00af2009-10-08 13:34:05 -04001357 if (bits & EXTENT_DO_ACCOUNTING) {
1358 spin_lock(&BTRFS_I(inode)->accounting_lock);
1359 BTRFS_I(inode)->outstanding_extents--;
1360 spin_unlock(&BTRFS_I(inode)->accounting_lock);
1361 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
1362 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04001363
Chris Mason75eff682008-12-15 15:54:40 -05001364 spin_lock(&root->fs_info->delalloc_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001365 if (state->end - state->start + 1 >
1366 root->fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05001367 printk(KERN_INFO "btrfs warning: delalloc account "
1368 "%llu %llu\n",
Josef Bacik9ed74f22009-09-11 16:12:44 -04001369 (unsigned long long)
1370 state->end - state->start + 1,
Chris Masond3977122009-01-05 21:25:51 -05001371 (unsigned long long)
1372 root->fs_info->delalloc_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001373 btrfs_delalloc_free_space(root, inode, (u64)-1);
Chris Masonb0c68f82008-01-31 11:05:37 -05001374 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001375 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001376 } else {
Josef Bacik6a632092009-02-20 11:00:09 -05001377 btrfs_delalloc_free_space(root, inode,
Josef Bacik9ed74f22009-09-11 16:12:44 -04001378 state->end -
1379 state->start + 1);
1380 root->fs_info->delalloc_bytes -= state->end -
1381 state->start + 1;
1382 BTRFS_I(inode)->delalloc_bytes -= state->end -
1383 state->start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001384 }
Chris Masonea8c2812008-08-04 23:17:27 -04001385 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1386 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1387 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1388 }
Chris Mason75eff682008-12-15 15:54:40 -05001389 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001390 }
1391 return 0;
1392}
1393
Chris Masond352ac62008-09-29 15:18:18 -04001394/*
1395 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1396 * we don't create bios that span stripes or chunks
1397 */
Chris Mason239b14b2008-03-24 15:02:07 -04001398int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001399 size_t size, struct bio *bio,
1400 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001401{
1402 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1403 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001404 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001405 u64 length = 0;
1406 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001407 int ret;
1408
Chris Mason771ed682008-11-06 22:02:51 -05001409 if (bio_flags & EXTENT_BIO_COMPRESSED)
1410 return 0;
1411
Chris Masonf2d8d742008-04-21 10:03:05 -04001412 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001413 map_tree = &root->fs_info->mapping_tree;
1414 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001415 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001416 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001417
Chris Masond3977122009-01-05 21:25:51 -05001418 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001419 return 1;
Chris Mason239b14b2008-03-24 15:02:07 -04001420 return 0;
1421}
1422
Chris Masond352ac62008-09-29 15:18:18 -04001423/*
1424 * in order to insert checksums into the metadata in large chunks,
1425 * we wait until bio submission time. All the pages in the bio are
1426 * checksummed and sums are attached onto the ordered extent record.
1427 *
1428 * At IO completion time the cums attached on the ordered extent record
1429 * are inserted into the btree
1430 */
Chris Masond3977122009-01-05 21:25:51 -05001431static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1432 struct bio *bio, int mirror_num,
1433 unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001434{
Chris Mason065631f2008-02-20 12:07:25 -05001435 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001436 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001437
Chris Masond20f7042008-12-08 16:58:54 -05001438 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001439 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001440 return 0;
1441}
Chris Masone0156402008-04-16 11:15:20 -04001442
Chris Mason4a69a412008-11-06 22:03:00 -05001443/*
1444 * in order to insert checksums into the metadata in large chunks,
1445 * we wait until bio submission time. All the pages in the bio are
1446 * checksummed and sums are attached onto the ordered extent record.
1447 *
1448 * At IO completion time the cums attached on the ordered extent record
1449 * are inserted into the btree
1450 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001451static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Mason4a69a412008-11-06 22:03:00 -05001452 int mirror_num, unsigned long bio_flags)
1453{
1454 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001455 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001456}
1457
Chris Masond352ac62008-09-29 15:18:18 -04001458/*
Chris Masoncad321a2008-12-17 14:51:42 -05001459 * extent_io.c submission hook. This does the right thing for csum calculation
1460 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001461 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001462static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001463 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001464{
1465 struct btrfs_root *root = BTRFS_I(inode)->root;
1466 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001467 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001468
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001469 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001470
Chris Masone6dcd2d2008-07-17 12:53:50 -04001471 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1472 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001473
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001474 if (!(rw & (1 << BIO_RW))) {
Chris Masond20f7042008-12-08 16:58:54 -05001475 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001476 return btrfs_submit_compressed_read(inode, bio,
1477 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001478 } else if (!skip_sum)
1479 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001480 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001481 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001482 /* csum items have already been cloned */
1483 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1484 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001485 /* we're doing a write, do the async checksumming */
1486 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001487 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001488 bio_flags, __btrfs_submit_bio_start,
1489 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001490 }
1491
Chris Mason0b86a832008-03-24 15:01:56 -04001492mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001493 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001494}
Chris Mason6885f302008-02-20 16:11:05 -05001495
Chris Masond352ac62008-09-29 15:18:18 -04001496/*
1497 * given a list of ordered sums record them in the inode. This happens
1498 * at IO completion time based on sums calculated at bio submission time.
1499 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001500static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001501 struct inode *inode, u64 file_offset,
1502 struct list_head *list)
1503{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001504 struct btrfs_ordered_sum *sum;
1505
1506 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001507
1508 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001509 btrfs_csum_file_blocks(trans,
1510 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001511 }
1512 return 0;
1513}
1514
Chris Masonea8c2812008-08-04 23:17:27 -04001515int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1516{
Chris Masond3977122009-01-05 21:25:51 -05001517 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001518 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001519 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1520 GFP_NOFS);
1521}
1522
Chris Masond352ac62008-09-29 15:18:18 -04001523/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001524struct btrfs_writepage_fixup {
1525 struct page *page;
1526 struct btrfs_work work;
1527};
1528
Christoph Hellwigb2950862008-12-02 09:54:17 -05001529static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001530{
1531 struct btrfs_writepage_fixup *fixup;
1532 struct btrfs_ordered_extent *ordered;
1533 struct page *page;
1534 struct inode *inode;
1535 u64 page_start;
1536 u64 page_end;
1537
1538 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1539 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001540again:
Chris Mason247e7432008-07-17 12:53:51 -04001541 lock_page(page);
1542 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1543 ClearPageChecked(page);
1544 goto out_page;
1545 }
1546
1547 inode = page->mapping->host;
1548 page_start = page_offset(page);
1549 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1550
1551 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001552
1553 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001554 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001555 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001556
1557 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1558 if (ordered) {
1559 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1560 page_end, GFP_NOFS);
1561 unlock_page(page);
1562 btrfs_start_ordered_extent(inode, ordered, 1);
1563 goto again;
1564 }
Chris Mason247e7432008-07-17 12:53:51 -04001565
Chris Masonea8c2812008-08-04 23:17:27 -04001566 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001567 ClearPageChecked(page);
1568out:
1569 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1570out_page:
1571 unlock_page(page);
1572 page_cache_release(page);
1573}
1574
1575/*
1576 * There are a few paths in the higher layers of the kernel that directly
1577 * set the page dirty bit without asking the filesystem if it is a
1578 * good idea. This causes problems because we want to make sure COW
1579 * properly happens and the data=ordered rules are followed.
1580 *
Chris Masonc8b97812008-10-29 14:49:59 -04001581 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001582 * hasn't been properly setup for IO. We kick off an async process
1583 * to fix it up. The async helper will wait for ordered extents, set
1584 * the delalloc bit and make it safe to write the page.
1585 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001586static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001587{
1588 struct inode *inode = page->mapping->host;
1589 struct btrfs_writepage_fixup *fixup;
1590 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001591
Chris Mason8b62b722009-09-02 16:53:46 -04001592 /* this page is properly in the ordered list */
1593 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001594 return 0;
1595
1596 if (PageChecked(page))
1597 return -EAGAIN;
1598
1599 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1600 if (!fixup)
1601 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001602
Chris Mason247e7432008-07-17 12:53:51 -04001603 SetPageChecked(page);
1604 page_cache_get(page);
1605 fixup->work.func = btrfs_writepage_fixup_worker;
1606 fixup->page = page;
1607 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1608 return -EAGAIN;
1609}
1610
Yan Zhengd899e052008-10-30 14:25:28 -04001611static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1612 struct inode *inode, u64 file_pos,
1613 u64 disk_bytenr, u64 disk_num_bytes,
1614 u64 num_bytes, u64 ram_bytes,
1615 u8 compression, u8 encryption,
1616 u16 other_encoding, int extent_type)
1617{
1618 struct btrfs_root *root = BTRFS_I(inode)->root;
1619 struct btrfs_file_extent_item *fi;
1620 struct btrfs_path *path;
1621 struct extent_buffer *leaf;
1622 struct btrfs_key ins;
1623 u64 hint;
1624 int ret;
1625
1626 path = btrfs_alloc_path();
1627 BUG_ON(!path);
1628
Chris Masonb9473432009-03-13 11:00:37 -04001629 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001630
1631 /*
1632 * we may be replacing one extent in the tree with another.
1633 * The new extent is pinned in the extent map, and we don't want
1634 * to drop it from the cache until it is completely in the btree.
1635 *
1636 * So, tell btrfs_drop_extents to leave this extent in the cache.
1637 * the caller is expected to unpin it and allow it to be merged
1638 * with the others.
1639 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001640 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1641 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001642 BUG_ON(ret);
1643
1644 ins.objectid = inode->i_ino;
1645 ins.offset = file_pos;
1646 ins.type = BTRFS_EXTENT_DATA_KEY;
1647 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1648 BUG_ON(ret);
1649 leaf = path->nodes[0];
1650 fi = btrfs_item_ptr(leaf, path->slots[0],
1651 struct btrfs_file_extent_item);
1652 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1653 btrfs_set_file_extent_type(leaf, fi, extent_type);
1654 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1655 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1656 btrfs_set_file_extent_offset(leaf, fi, 0);
1657 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1658 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1659 btrfs_set_file_extent_compression(leaf, fi, compression);
1660 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1661 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001662
1663 btrfs_unlock_up_safe(path, 1);
1664 btrfs_set_lock_blocking(leaf);
1665
Yan Zhengd899e052008-10-30 14:25:28 -04001666 btrfs_mark_buffer_dirty(leaf);
1667
1668 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001669
1670 ins.objectid = disk_bytenr;
1671 ins.offset = disk_num_bytes;
1672 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001673 ret = btrfs_alloc_reserved_file_extent(trans, root,
1674 root->root_key.objectid,
1675 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001676 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001677 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001678
Yan Zhengd899e052008-10-30 14:25:28 -04001679 return 0;
1680}
1681
Chris Mason5d13a982009-03-13 11:41:46 -04001682/*
1683 * helper function for btrfs_finish_ordered_io, this
1684 * just reads in some of the csum leaves to prime them into ram
1685 * before we start the transaction. It limits the amount of btree
1686 * reads required while inside the transaction.
1687 */
Chris Masond352ac62008-09-29 15:18:18 -04001688/* as ordered data IO finishes, this gets called so we can finish
1689 * an ordered extent if the range of bytes in the file it covers are
1690 * fully written.
1691 */
Chris Mason211f90e2008-07-18 11:56:15 -04001692static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001693{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001694 struct btrfs_root *root = BTRFS_I(inode)->root;
1695 struct btrfs_trans_handle *trans;
Chris Mason5d13a982009-03-13 11:41:46 -04001696 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001697 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan Zhengd899e052008-10-30 14:25:28 -04001698 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001699 int ret;
1700
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001701 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1702 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001703 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001704 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001705 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001706
Yan, Zhengc2167752009-11-12 09:34:21 +00001707 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1708 BUG_ON(!list_empty(&ordered_extent->list));
1709 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1710 if (!ret) {
1711 trans = btrfs_join_transaction(root, 1);
1712 ret = btrfs_update_inode(trans, root, inode);
1713 BUG_ON(ret);
1714 btrfs_end_transaction(trans, root);
1715 }
1716 goto out;
1717 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001718
1719 lock_extent(io_tree, ordered_extent->file_offset,
1720 ordered_extent->file_offset + ordered_extent->len - 1,
1721 GFP_NOFS);
1722
Yan, Zhengc2167752009-11-12 09:34:21 +00001723 trans = btrfs_join_transaction(root, 1);
1724
Chris Masonc8b97812008-10-29 14:49:59 -04001725 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001726 compressed = 1;
1727 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1728 BUG_ON(compressed);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001729 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001730 ordered_extent->file_offset,
1731 ordered_extent->file_offset +
1732 ordered_extent->len);
1733 BUG_ON(ret);
1734 } else {
1735 ret = insert_reserved_file_extent(trans, inode,
1736 ordered_extent->file_offset,
1737 ordered_extent->start,
1738 ordered_extent->disk_len,
1739 ordered_extent->len,
1740 ordered_extent->len,
1741 compressed, 0, 0,
1742 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001743 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1744 ordered_extent->file_offset,
1745 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001746 BUG_ON(ret);
1747 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001748 unlock_extent(io_tree, ordered_extent->file_offset,
1749 ordered_extent->file_offset + ordered_extent->len - 1,
1750 GFP_NOFS);
1751 add_pending_csums(trans, inode, ordered_extent->file_offset,
1752 &ordered_extent->list);
1753
Yan, Zhengc2167752009-11-12 09:34:21 +00001754 /* this also removes the ordered extent from the tree */
1755 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1756 ret = btrfs_update_inode(trans, root, inode);
1757 BUG_ON(ret);
1758 btrfs_end_transaction(trans, root);
1759out:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001760 /* once for us */
1761 btrfs_put_ordered_extent(ordered_extent);
1762 /* once for the tree */
1763 btrfs_put_ordered_extent(ordered_extent);
1764
Chris Masone6dcd2d2008-07-17 12:53:50 -04001765 return 0;
1766}
1767
Christoph Hellwigb2950862008-12-02 09:54:17 -05001768static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001769 struct extent_state *state, int uptodate)
1770{
Chris Mason8b62b722009-09-02 16:53:46 -04001771 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001772 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1773}
1774
Chris Masond352ac62008-09-29 15:18:18 -04001775/*
1776 * When IO fails, either with EIO or csum verification fails, we
1777 * try other mirrors that might have a good copy of the data. This
1778 * io_failure_record is used to record state as we go through all the
1779 * mirrors. If another mirror has good data, the page is set up to date
1780 * and things continue. If a good mirror can't be found, the original
1781 * bio end_io callback is called to indicate things have failed.
1782 */
Chris Mason7e383262008-04-09 16:28:12 -04001783struct io_failure_record {
1784 struct page *page;
1785 u64 start;
1786 u64 len;
1787 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001788 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001789 int last_mirror;
1790};
1791
Christoph Hellwigb2950862008-12-02 09:54:17 -05001792static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001793 struct page *page, u64 start, u64 end,
1794 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001795{
1796 struct io_failure_record *failrec = NULL;
1797 u64 private;
1798 struct extent_map *em;
1799 struct inode *inode = page->mapping->host;
1800 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001801 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001802 struct bio *bio;
1803 int num_copies;
1804 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001805 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001806 u64 logical;
1807
1808 ret = get_state_private(failure_tree, start, &private);
1809 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001810 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1811 if (!failrec)
1812 return -ENOMEM;
1813 failrec->start = start;
1814 failrec->len = end - start + 1;
1815 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001816 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001817
Chris Mason890871b2009-09-02 16:24:52 -04001818 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001819 em = lookup_extent_mapping(em_tree, start, failrec->len);
1820 if (em->start > start || em->start + em->len < start) {
1821 free_extent_map(em);
1822 em = NULL;
1823 }
Chris Mason890871b2009-09-02 16:24:52 -04001824 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001825
1826 if (!em || IS_ERR(em)) {
1827 kfree(failrec);
1828 return -EIO;
1829 }
1830 logical = start - em->start;
1831 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001832 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1833 logical = em->block_start;
1834 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1835 }
Chris Mason7e383262008-04-09 16:28:12 -04001836 failrec->logical = logical;
1837 free_extent_map(em);
1838 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1839 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001840 set_state_private(failure_tree, start,
1841 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001842 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001843 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001844 }
1845 num_copies = btrfs_num_copies(
1846 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1847 failrec->logical, failrec->len);
1848 failrec->last_mirror++;
1849 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001850 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001851 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1852 failrec->start,
1853 EXTENT_LOCKED);
1854 if (state && state->start != failrec->start)
1855 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001856 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001857 }
1858 if (!state || failrec->last_mirror > num_copies) {
1859 set_state_private(failure_tree, failrec->start, 0);
1860 clear_extent_bits(failure_tree, failrec->start,
1861 failrec->start + failrec->len - 1,
1862 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1863 kfree(failrec);
1864 return -EIO;
1865 }
1866 bio = bio_alloc(GFP_NOFS, 1);
1867 bio->bi_private = state;
1868 bio->bi_end_io = failed_bio->bi_end_io;
1869 bio->bi_sector = failrec->logical >> 9;
1870 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001871 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001872
Chris Mason7e383262008-04-09 16:28:12 -04001873 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001874 if (failed_bio->bi_rw & (1 << BIO_RW))
1875 rw = WRITE;
1876 else
1877 rw = READ;
1878
1879 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001880 failrec->last_mirror,
Chris Masond20f7042008-12-08 16:58:54 -05001881 failrec->bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001882 return 0;
1883}
1884
Chris Masond352ac62008-09-29 15:18:18 -04001885/*
1886 * each time an IO finishes, we do a fast check in the IO failure tree
1887 * to see if we need to process or clean up an io_failure_record
1888 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001889static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001890{
1891 u64 private;
1892 u64 private_failure;
1893 struct io_failure_record *failure;
1894 int ret;
1895
1896 private = 0;
1897 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1898 (u64)-1, 1, EXTENT_DIRTY)) {
1899 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1900 start, &private_failure);
1901 if (ret == 0) {
1902 failure = (struct io_failure_record *)(unsigned long)
1903 private_failure;
1904 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1905 failure->start, 0);
1906 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1907 failure->start,
1908 failure->start + failure->len - 1,
1909 EXTENT_DIRTY | EXTENT_LOCKED,
1910 GFP_NOFS);
1911 kfree(failure);
1912 }
1913 }
Chris Mason7e383262008-04-09 16:28:12 -04001914 return 0;
1915}
1916
Chris Masond352ac62008-09-29 15:18:18 -04001917/*
1918 * when reads are done, we need to check csums to verify the data is correct
1919 * if there's a match, we allow the bio to finish. If not, we go through
1920 * the io_failure_record routines to find good copies
1921 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001922static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001923 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001924{
Chris Mason35ebb932007-10-30 16:56:53 -04001925 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001926 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001927 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001928 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001929 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001930 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001931 struct btrfs_root *root = BTRFS_I(inode)->root;
1932 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001933
Chris Masond20f7042008-12-08 16:58:54 -05001934 if (PageChecked(page)) {
1935 ClearPageChecked(page);
1936 goto good;
1937 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001938
1939 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001940 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001941
Yan Zheng17d217f2008-12-12 10:03:38 -05001942 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001943 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001944 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1945 GFP_NOFS);
1946 return 0;
1947 }
1948
Yanc2e639f2008-02-04 08:57:25 -05001949 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001950 private = state->private;
1951 ret = 0;
1952 } else {
1953 ret = get_state_private(io_tree, start, &private);
1954 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001955 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001956 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001957 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001958
Chris Masonff79f812007-10-15 16:22:25 -04001959 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1960 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001961 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001962 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001963
Chris Mason9ab86c82009-01-07 09:48:51 -05001964 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001965good:
Chris Mason7e383262008-04-09 16:28:12 -04001966 /* if the io failure tree for this inode is non-empty,
1967 * check to see if we've recovered from a failed IO
1968 */
Chris Mason1259ab72008-05-12 13:39:03 -04001969 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001970 return 0;
1971
1972zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001973 if (printk_ratelimit()) {
1974 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1975 "private %llu\n", page->mapping->host->i_ino,
1976 (unsigned long long)start, csum,
1977 (unsigned long long)private);
1978 }
Chris Masondb945352007-10-15 16:15:53 -04001979 memset(kaddr + offset, 1, end - start + 1);
1980 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001981 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001982 if (private == 0)
1983 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001984 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001985}
Chris Masonb888db22007-08-27 16:49:44 -04001986
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001987struct delayed_iput {
1988 struct list_head list;
1989 struct inode *inode;
1990};
1991
1992void btrfs_add_delayed_iput(struct inode *inode)
1993{
1994 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
1995 struct delayed_iput *delayed;
1996
1997 if (atomic_add_unless(&inode->i_count, -1, 1))
1998 return;
1999
2000 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2001 delayed->inode = inode;
2002
2003 spin_lock(&fs_info->delayed_iput_lock);
2004 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2005 spin_unlock(&fs_info->delayed_iput_lock);
2006}
2007
2008void btrfs_run_delayed_iputs(struct btrfs_root *root)
2009{
2010 LIST_HEAD(list);
2011 struct btrfs_fs_info *fs_info = root->fs_info;
2012 struct delayed_iput *delayed;
2013 int empty;
2014
2015 spin_lock(&fs_info->delayed_iput_lock);
2016 empty = list_empty(&fs_info->delayed_iputs);
2017 spin_unlock(&fs_info->delayed_iput_lock);
2018 if (empty)
2019 return;
2020
2021 down_read(&root->fs_info->cleanup_work_sem);
2022 spin_lock(&fs_info->delayed_iput_lock);
2023 list_splice_init(&fs_info->delayed_iputs, &list);
2024 spin_unlock(&fs_info->delayed_iput_lock);
2025
2026 while (!list_empty(&list)) {
2027 delayed = list_entry(list.next, struct delayed_iput, list);
2028 list_del(&delayed->list);
2029 iput(delayed->inode);
2030 kfree(delayed);
2031 }
2032 up_read(&root->fs_info->cleanup_work_sem);
2033}
2034
Josef Bacik7b128762008-07-24 12:17:14 -04002035/*
2036 * This creates an orphan entry for the given inode in case something goes
2037 * wrong in the middle of an unlink/truncate.
2038 */
2039int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2040{
2041 struct btrfs_root *root = BTRFS_I(inode)->root;
2042 int ret = 0;
2043
Yanbcc63ab2008-07-30 16:29:20 -04002044 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002045
2046 /* already on the orphan list, we're good */
2047 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04002048 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002049 return 0;
2050 }
2051
2052 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2053
Yanbcc63ab2008-07-30 16:29:20 -04002054 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002055
2056 /*
2057 * insert an orphan item to track this unlinked/truncated file
2058 */
2059 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2060
2061 return ret;
2062}
2063
2064/*
2065 * We have done the truncate/delete so we can go ahead and remove the orphan
2066 * item for this particular inode.
2067 */
2068int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2069{
2070 struct btrfs_root *root = BTRFS_I(inode)->root;
2071 int ret = 0;
2072
Yanbcc63ab2008-07-30 16:29:20 -04002073 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002074
2075 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04002076 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002077 return 0;
2078 }
2079
2080 list_del_init(&BTRFS_I(inode)->i_orphan);
2081 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04002082 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002083 return 0;
2084 }
2085
Yanbcc63ab2008-07-30 16:29:20 -04002086 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002087
2088 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2089
2090 return ret;
2091}
2092
2093/*
2094 * this cleans up any orphans that may be left on the list from the last use
2095 * of this root.
2096 */
2097void btrfs_orphan_cleanup(struct btrfs_root *root)
2098{
2099 struct btrfs_path *path;
2100 struct extent_buffer *leaf;
2101 struct btrfs_item *item;
2102 struct btrfs_key key, found_key;
2103 struct btrfs_trans_handle *trans;
2104 struct inode *inode;
2105 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2106
Yan, Zhengc71bf092009-11-12 09:34:40 +00002107 if (!xchg(&root->clean_orphans, 0))
Josef Bacik7b128762008-07-24 12:17:14 -04002108 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002109
2110 path = btrfs_alloc_path();
2111 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002112 path->reada = -1;
2113
2114 key.objectid = BTRFS_ORPHAN_OBJECTID;
2115 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2116 key.offset = (u64)-1;
2117
Josef Bacik7b128762008-07-24 12:17:14 -04002118 while (1) {
2119 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2120 if (ret < 0) {
2121 printk(KERN_ERR "Error searching slot for orphan: %d"
2122 "\n", ret);
2123 break;
2124 }
2125
2126 /*
2127 * if ret == 0 means we found what we were searching for, which
2128 * is weird, but possible, so only screw with path if we didnt
2129 * find the key and see if we have stuff that matches
2130 */
2131 if (ret > 0) {
2132 if (path->slots[0] == 0)
2133 break;
2134 path->slots[0]--;
2135 }
2136
2137 /* pull out the item */
2138 leaf = path->nodes[0];
2139 item = btrfs_item_nr(leaf, path->slots[0]);
2140 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2141
2142 /* make sure the item matches what we want */
2143 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2144 break;
2145 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2146 break;
2147
2148 /* release the path since we're done with it */
2149 btrfs_release_path(root, path);
2150
2151 /*
2152 * this is where we are basically btrfs_lookup, without the
2153 * crossing root thing. we store the inode number in the
2154 * offset of the orphan item.
2155 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002156 found_key.objectid = found_key.offset;
2157 found_key.type = BTRFS_INODE_ITEM_KEY;
2158 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002159 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002160 if (IS_ERR(inode))
Josef Bacik7b128762008-07-24 12:17:14 -04002161 break;
2162
Josef Bacik7b128762008-07-24 12:17:14 -04002163 /*
2164 * add this inode to the orphan list so btrfs_orphan_del does
2165 * the proper thing when we hit it
2166 */
Yanbcc63ab2008-07-30 16:29:20 -04002167 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002168 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04002169 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002170
2171 /*
2172 * if this is a bad inode, means we actually succeeded in
2173 * removing the inode, but not the orphan record, which means
2174 * we need to manually delete the orphan since iput will just
2175 * do a destroy_inode
2176 */
2177 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002178 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04002179 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002180 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002181 iput(inode);
2182 continue;
2183 }
2184
2185 /* if we have links, this was a truncate, lets do that */
2186 if (inode->i_nlink) {
2187 nr_truncate++;
2188 btrfs_truncate(inode);
2189 } else {
2190 nr_unlink++;
2191 }
2192
2193 /* this will do delete_inode and everything for us */
2194 iput(inode);
2195 }
2196
2197 if (nr_unlink)
2198 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2199 if (nr_truncate)
2200 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
2201
2202 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002203}
2204
Chris Masond352ac62008-09-29 15:18:18 -04002205/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002206 * very simple check to peek ahead in the leaf looking for xattrs. If we
2207 * don't find any xattrs, we know there can't be any acls.
2208 *
2209 * slot is the slot the inode is in, objectid is the objectid of the inode
2210 */
2211static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2212 int slot, u64 objectid)
2213{
2214 u32 nritems = btrfs_header_nritems(leaf);
2215 struct btrfs_key found_key;
2216 int scanned = 0;
2217
2218 slot++;
2219 while (slot < nritems) {
2220 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2221
2222 /* we found a different objectid, there must not be acls */
2223 if (found_key.objectid != objectid)
2224 return 0;
2225
2226 /* we found an xattr, assume we've got an acl */
2227 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2228 return 1;
2229
2230 /*
2231 * we found a key greater than an xattr key, there can't
2232 * be any acls later on
2233 */
2234 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2235 return 0;
2236
2237 slot++;
2238 scanned++;
2239
2240 /*
2241 * it goes inode, inode backrefs, xattrs, extents,
2242 * so if there are a ton of hard links to an inode there can
2243 * be a lot of backrefs. Don't waste time searching too hard,
2244 * this is just an optimization
2245 */
2246 if (scanned >= 8)
2247 break;
2248 }
2249 /* we hit the end of the leaf before we found an xattr or
2250 * something larger than an xattr. We have to assume the inode
2251 * has acls
2252 */
2253 return 1;
2254}
2255
2256/*
Chris Masond352ac62008-09-29 15:18:18 -04002257 * read an inode from the btree into the in-memory inode
2258 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002259static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002260{
2261 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002262 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002263 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002264 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002265 struct btrfs_root *root = BTRFS_I(inode)->root;
2266 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002267 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002268 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002269 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002270 int ret;
2271
2272 path = btrfs_alloc_path();
2273 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002274 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002275
Chris Mason39279cc2007-06-12 06:35:45 -04002276 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002277 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002278 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002279
Chris Mason5f39d392007-10-15 16:14:19 -04002280 leaf = path->nodes[0];
2281 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2282 struct btrfs_inode_item);
2283
2284 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2285 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2286 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2287 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002288 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002289
2290 tspec = btrfs_inode_atime(inode_item);
2291 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2292 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2293
2294 tspec = btrfs_inode_mtime(inode_item);
2295 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2296 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2297
2298 tspec = btrfs_inode_ctime(inode_item);
2299 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2300 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2301
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002302 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002303 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002304 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002305 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002306 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002307 rdev = btrfs_inode_rdev(leaf, inode_item);
2308
Josef Bacikaec74772008-07-24 12:12:38 -04002309 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002310 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002311
Chris Mason5f39d392007-10-15 16:14:19 -04002312 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002313
Chris Mason46a53cc2009-04-27 11:47:50 -04002314 /*
2315 * try to precache a NULL acl entry for files that don't have
2316 * any xattrs or acls
2317 */
2318 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002319 if (!maybe_acls)
2320 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002321
Yan Zhengd2fb3432008-12-11 16:30:39 -05002322 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2323 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002324 btrfs_free_path(path);
2325 inode_item = NULL;
2326
Chris Mason39279cc2007-06-12 06:35:45 -04002327 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002328 case S_IFREG:
2329 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002330 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002331 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002332 inode->i_fop = &btrfs_file_operations;
2333 inode->i_op = &btrfs_file_inode_operations;
2334 break;
2335 case S_IFDIR:
2336 inode->i_fop = &btrfs_dir_file_operations;
2337 if (root == root->fs_info->tree_root)
2338 inode->i_op = &btrfs_dir_ro_inode_operations;
2339 else
2340 inode->i_op = &btrfs_dir_inode_operations;
2341 break;
2342 case S_IFLNK:
2343 inode->i_op = &btrfs_symlink_inode_operations;
2344 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002345 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002346 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002347 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002348 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002349 init_special_inode(inode, inode->i_mode, rdev);
2350 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002351 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002352
2353 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002354 return;
2355
2356make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002357 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002358 make_bad_inode(inode);
2359}
2360
Chris Masond352ac62008-09-29 15:18:18 -04002361/*
2362 * given a leaf and an inode, copy the inode fields into the leaf
2363 */
Chris Masone02119d2008-09-05 16:13:11 -04002364static void fill_inode_item(struct btrfs_trans_handle *trans,
2365 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002366 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002367 struct inode *inode)
2368{
Chris Mason5f39d392007-10-15 16:14:19 -04002369 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2370 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002371 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002372 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2373 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2374
2375 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2376 inode->i_atime.tv_sec);
2377 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2378 inode->i_atime.tv_nsec);
2379
2380 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2381 inode->i_mtime.tv_sec);
2382 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2383 inode->i_mtime.tv_nsec);
2384
2385 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2386 inode->i_ctime.tv_sec);
2387 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2388 inode->i_ctime.tv_nsec);
2389
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002390 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002391 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002392 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002393 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002394 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002395 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002396 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002397}
2398
Chris Masond352ac62008-09-29 15:18:18 -04002399/*
2400 * copy everything in the in-memory inode into the btree.
2401 */
Chris Masond3977122009-01-05 21:25:51 -05002402noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2403 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002404{
2405 struct btrfs_inode_item *inode_item;
2406 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002407 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002408 int ret;
2409
2410 path = btrfs_alloc_path();
2411 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002412 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002413 ret = btrfs_lookup_inode(trans, root, path,
2414 &BTRFS_I(inode)->location, 1);
2415 if (ret) {
2416 if (ret > 0)
2417 ret = -ENOENT;
2418 goto failed;
2419 }
2420
Chris Masonb4ce94d2009-02-04 09:25:08 -05002421 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002422 leaf = path->nodes[0];
2423 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002424 struct btrfs_inode_item);
2425
Chris Masone02119d2008-09-05 16:13:11 -04002426 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002427 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002428 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002429 ret = 0;
2430failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002431 btrfs_free_path(path);
2432 return ret;
2433}
2434
2435
Chris Masond352ac62008-09-29 15:18:18 -04002436/*
2437 * unlink helper that gets used here in inode.c and in the tree logging
2438 * recovery code. It remove a link in a directory with a given name, and
2439 * also drops the back refs in the inode to the directory
2440 */
Chris Masone02119d2008-09-05 16:13:11 -04002441int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2442 struct btrfs_root *root,
2443 struct inode *dir, struct inode *inode,
2444 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002445{
2446 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002447 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002448 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002449 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002450 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002451 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002452
2453 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002454 if (!path) {
2455 ret = -ENOMEM;
2456 goto err;
2457 }
2458
Chris Masonb9473432009-03-13 11:00:37 -04002459 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002460 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2461 name, name_len, -1);
2462 if (IS_ERR(di)) {
2463 ret = PTR_ERR(di);
2464 goto err;
2465 }
2466 if (!di) {
2467 ret = -ENOENT;
2468 goto err;
2469 }
Chris Mason5f39d392007-10-15 16:14:19 -04002470 leaf = path->nodes[0];
2471 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002472 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002473 if (ret)
2474 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002475 btrfs_release_path(root, path);
2476
Josef Bacikaec74772008-07-24 12:12:38 -04002477 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002478 inode->i_ino,
2479 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002480 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002481 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002482 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002483 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002484 goto err;
2485 }
2486
Chris Mason39279cc2007-06-12 06:35:45 -04002487 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002488 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002489 if (IS_ERR(di)) {
2490 ret = PTR_ERR(di);
2491 goto err;
2492 }
2493 if (!di) {
2494 ret = -ENOENT;
2495 goto err;
2496 }
2497 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002498 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002499
Chris Masone02119d2008-09-05 16:13:11 -04002500 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2501 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002502 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002503
2504 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2505 dir, index);
2506 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002507err:
2508 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002509 if (ret)
2510 goto out;
2511
2512 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2513 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2514 btrfs_update_inode(trans, root, dir);
2515 btrfs_drop_nlink(inode);
2516 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002517out:
Chris Mason39279cc2007-06-12 06:35:45 -04002518 return ret;
2519}
2520
2521static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2522{
2523 struct btrfs_root *root;
2524 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002525 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002526 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002527 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002528
2529 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002530
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002531 /*
2532 * 5 items for unlink inode
2533 * 1 for orphan
2534 */
2535 ret = btrfs_reserve_metadata_space(root, 6);
2536 if (ret)
2537 return ret;
2538
Chris Mason39279cc2007-06-12 06:35:45 -04002539 trans = btrfs_start_transaction(root, 1);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002540 if (IS_ERR(trans)) {
2541 btrfs_unreserve_metadata_space(root, 6);
2542 return PTR_ERR(trans);
2543 }
Chris Mason5f39d392007-10-15 16:14:19 -04002544
Chris Mason39279cc2007-06-12 06:35:45 -04002545 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002546
2547 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2548
Chris Masone02119d2008-09-05 16:13:11 -04002549 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2550 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002551
2552 if (inode->i_nlink == 0)
2553 ret = btrfs_orphan_add(trans, inode);
2554
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002555 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002556
Chris Mason89ce8a62008-06-25 16:01:31 -04002557 btrfs_end_transaction_throttle(trans, root);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002558 btrfs_unreserve_metadata_space(root, 6);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002559 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002560 return ret;
2561}
2562
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002563int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2564 struct btrfs_root *root,
2565 struct inode *dir, u64 objectid,
2566 const char *name, int name_len)
2567{
2568 struct btrfs_path *path;
2569 struct extent_buffer *leaf;
2570 struct btrfs_dir_item *di;
2571 struct btrfs_key key;
2572 u64 index;
2573 int ret;
2574
2575 path = btrfs_alloc_path();
2576 if (!path)
2577 return -ENOMEM;
2578
2579 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2580 name, name_len, -1);
2581 BUG_ON(!di || IS_ERR(di));
2582
2583 leaf = path->nodes[0];
2584 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2585 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2586 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2587 BUG_ON(ret);
2588 btrfs_release_path(root, path);
2589
2590 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2591 objectid, root->root_key.objectid,
2592 dir->i_ino, &index, name, name_len);
2593 if (ret < 0) {
2594 BUG_ON(ret != -ENOENT);
2595 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2596 name, name_len);
2597 BUG_ON(!di || IS_ERR(di));
2598
2599 leaf = path->nodes[0];
2600 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2601 btrfs_release_path(root, path);
2602 index = key.offset;
2603 }
2604
2605 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2606 index, name, name_len, -1);
2607 BUG_ON(!di || IS_ERR(di));
2608
2609 leaf = path->nodes[0];
2610 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2611 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2612 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2613 BUG_ON(ret);
2614 btrfs_release_path(root, path);
2615
2616 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2617 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2618 ret = btrfs_update_inode(trans, root, dir);
2619 BUG_ON(ret);
2620 dir->i_sb->s_dirt = 1;
2621
2622 btrfs_free_path(path);
2623 return 0;
2624}
2625
Chris Mason39279cc2007-06-12 06:35:45 -04002626static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2627{
2628 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002629 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002630 int ret;
2631 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002632 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002633 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002634
Chris Mason3394e162008-11-17 20:42:26 -05002635 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002636 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002637 return -ENOTEMPTY;
2638
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002639 ret = btrfs_reserve_metadata_space(root, 5);
2640 if (ret)
2641 return ret;
2642
Chris Mason39279cc2007-06-12 06:35:45 -04002643 trans = btrfs_start_transaction(root, 1);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002644 if (IS_ERR(trans)) {
2645 btrfs_unreserve_metadata_space(root, 5);
2646 return PTR_ERR(trans);
2647 }
2648
Chris Mason39279cc2007-06-12 06:35:45 -04002649 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002650
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002651 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
2652 err = btrfs_unlink_subvol(trans, root, dir,
2653 BTRFS_I(inode)->location.objectid,
2654 dentry->d_name.name,
2655 dentry->d_name.len);
2656 goto out;
2657 }
2658
Josef Bacik7b128762008-07-24 12:17:14 -04002659 err = btrfs_orphan_add(trans, inode);
2660 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002661 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002662
Chris Mason39279cc2007-06-12 06:35:45 -04002663 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002664 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2665 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002666 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002667 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002668out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002669 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002670 ret = btrfs_end_transaction_throttle(trans, root);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002671 btrfs_unreserve_metadata_space(root, 5);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002672 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002673
Chris Mason39279cc2007-06-12 06:35:45 -04002674 if (ret && !err)
2675 err = ret;
2676 return err;
2677}
2678
Chris Masond20f7042008-12-08 16:58:54 -05002679#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002680/*
Chris Mason323ac952008-10-01 19:05:46 -04002681 * when truncating bytes in a file, it is possible to avoid reading
2682 * the leaves that contain only checksum items. This can be the
2683 * majority of the IO required to delete a large file, but it must
2684 * be done carefully.
2685 *
2686 * The keys in the level just above the leaves are checked to make sure
2687 * the lowest key in a given leaf is a csum key, and starts at an offset
2688 * after the new size.
2689 *
2690 * Then the key for the next leaf is checked to make sure it also has
2691 * a checksum item for the same file. If it does, we know our target leaf
2692 * contains only checksum items, and it can be safely freed without reading
2693 * it.
2694 *
2695 * This is just an optimization targeted at large files. It may do
2696 * nothing. It will return 0 unless things went badly.
2697 */
2698static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2699 struct btrfs_root *root,
2700 struct btrfs_path *path,
2701 struct inode *inode, u64 new_size)
2702{
2703 struct btrfs_key key;
2704 int ret;
2705 int nritems;
2706 struct btrfs_key found_key;
2707 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002708 struct btrfs_leaf_ref *ref;
2709 u64 leaf_gen;
2710 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002711
2712 path->lowest_level = 1;
2713 key.objectid = inode->i_ino;
2714 key.type = BTRFS_CSUM_ITEM_KEY;
2715 key.offset = new_size;
2716again:
2717 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2718 if (ret < 0)
2719 goto out;
2720
2721 if (path->nodes[1] == NULL) {
2722 ret = 0;
2723 goto out;
2724 }
2725 ret = 0;
2726 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2727 nritems = btrfs_header_nritems(path->nodes[1]);
2728
2729 if (!nritems)
2730 goto out;
2731
2732 if (path->slots[1] >= nritems)
2733 goto next_node;
2734
2735 /* did we find a key greater than anything we want to delete? */
2736 if (found_key.objectid > inode->i_ino ||
2737 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2738 goto out;
2739
2740 /* we check the next key in the node to make sure the leave contains
2741 * only checksum items. This comparison doesn't work if our
2742 * leaf is the last one in the node
2743 */
2744 if (path->slots[1] + 1 >= nritems) {
2745next_node:
2746 /* search forward from the last key in the node, this
2747 * will bring us into the next node in the tree
2748 */
2749 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2750
2751 /* unlikely, but we inc below, so check to be safe */
2752 if (found_key.offset == (u64)-1)
2753 goto out;
2754
2755 /* search_forward needs a path with locks held, do the
2756 * search again for the original key. It is possible
2757 * this will race with a balance and return a path that
2758 * we could modify, but this drop is just an optimization
2759 * and is allowed to miss some leaves.
2760 */
2761 btrfs_release_path(root, path);
2762 found_key.offset++;
2763
2764 /* setup a max key for search_forward */
2765 other_key.offset = (u64)-1;
2766 other_key.type = key.type;
2767 other_key.objectid = key.objectid;
2768
2769 path->keep_locks = 1;
2770 ret = btrfs_search_forward(root, &found_key, &other_key,
2771 path, 0, 0);
2772 path->keep_locks = 0;
2773 if (ret || found_key.objectid != key.objectid ||
2774 found_key.type != key.type) {
2775 ret = 0;
2776 goto out;
2777 }
2778
2779 key.offset = found_key.offset;
2780 btrfs_release_path(root, path);
2781 cond_resched();
2782 goto again;
2783 }
2784
2785 /* we know there's one more slot after us in the tree,
2786 * read that key so we can verify it is also a checksum item
2787 */
2788 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2789
2790 if (found_key.objectid < inode->i_ino)
2791 goto next_key;
2792
2793 if (found_key.type != key.type || found_key.offset < new_size)
2794 goto next_key;
2795
2796 /*
2797 * if the key for the next leaf isn't a csum key from this objectid,
2798 * we can't be sure there aren't good items inside this leaf.
2799 * Bail out
2800 */
2801 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2802 goto out;
2803
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002804 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2805 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002806 /*
2807 * it is safe to delete this leaf, it contains only
2808 * csum items from this inode at an offset >= new_size
2809 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002810 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002811 BUG_ON(ret);
2812
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002813 if (root->ref_cows && leaf_gen < trans->transid) {
2814 ref = btrfs_alloc_leaf_ref(root, 0);
2815 if (ref) {
2816 ref->root_gen = root->root_key.offset;
2817 ref->bytenr = leaf_start;
2818 ref->owner = 0;
2819 ref->generation = leaf_gen;
2820 ref->nritems = 0;
2821
Chris Masonbd56b302009-02-04 09:27:02 -05002822 btrfs_sort_leaf_ref(ref);
2823
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002824 ret = btrfs_add_leaf_ref(root, ref, 0);
2825 WARN_ON(ret);
2826 btrfs_free_leaf_ref(root, ref);
2827 } else {
2828 WARN_ON(1);
2829 }
2830 }
Chris Mason323ac952008-10-01 19:05:46 -04002831next_key:
2832 btrfs_release_path(root, path);
2833
2834 if (other_key.objectid == inode->i_ino &&
2835 other_key.type == key.type && other_key.offset > key.offset) {
2836 key.offset = other_key.offset;
2837 cond_resched();
2838 goto again;
2839 }
2840 ret = 0;
2841out:
2842 /* fixup any changes we've made to the path */
2843 path->lowest_level = 0;
2844 path->keep_locks = 0;
2845 btrfs_release_path(root, path);
2846 return ret;
2847}
2848
Chris Masond20f7042008-12-08 16:58:54 -05002849#endif
2850
Chris Mason323ac952008-10-01 19:05:46 -04002851/*
Chris Mason39279cc2007-06-12 06:35:45 -04002852 * this can truncate away extent items, csum items and directory items.
2853 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002854 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002855 *
2856 * csum items that cross the new i_size are truncated to the new size
2857 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002858 *
2859 * min_type is the minimum key type to truncate down to. If set to 0, this
2860 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002861 */
Yan, Zheng80825102009-11-12 09:35:36 +00002862int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2863 struct btrfs_root *root,
2864 struct inode *inode,
2865 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002866{
Chris Mason39279cc2007-06-12 06:35:45 -04002867 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002868 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002869 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00002870 struct btrfs_key key;
2871 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002872 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002873 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002874 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002875 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00002876 u64 mask = root->sectorsize - 1;
2877 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04002878 int found_extent;
2879 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002880 int pending_del_nr = 0;
2881 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002882 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002883 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00002884 int ret;
2885 int err = 0;
2886
2887 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002888
Chris Masone02119d2008-09-05 16:13:11 -04002889 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002890 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00002891
Chris Mason39279cc2007-06-12 06:35:45 -04002892 path = btrfs_alloc_path();
2893 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04002894 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04002895
Chris Mason39279cc2007-06-12 06:35:45 -04002896 key.objectid = inode->i_ino;
2897 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002898 key.type = (u8)-1;
2899
Chris Mason85e21ba2008-01-29 15:11:36 -05002900search_again:
Chris Masonb9473432009-03-13 11:00:37 -04002901 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05002902 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00002903 if (ret < 0) {
2904 err = ret;
2905 goto out;
2906 }
Chris Masond3977122009-01-05 21:25:51 -05002907
Chris Mason85e21ba2008-01-29 15:11:36 -05002908 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002909 /* there are no items in the tree for us to truncate, we're
2910 * done
2911 */
Yan, Zheng80825102009-11-12 09:35:36 +00002912 if (path->slots[0] == 0)
2913 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05002914 path->slots[0]--;
2915 }
2916
Chris Masond3977122009-01-05 21:25:51 -05002917 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002918 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002919 leaf = path->nodes[0];
2920 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2921 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002922 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002923
Chris Mason5f39d392007-10-15 16:14:19 -04002924 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002925 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002926
Chris Mason85e21ba2008-01-29 15:11:36 -05002927 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002928 break;
2929
Chris Mason5f39d392007-10-15 16:14:19 -04002930 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002931 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002932 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002933 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002934 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002935 encoding = btrfs_file_extent_compression(leaf, fi);
2936 encoding |= btrfs_file_extent_encryption(leaf, fi);
2937 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2938
Chris Mason179e29e2007-11-01 11:28:41 -04002939 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002940 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002941 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002942 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002943 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002944 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002945 }
Yan008630c2007-11-07 13:31:09 -05002946 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002947 }
Yan, Zheng80825102009-11-12 09:35:36 +00002948 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04002949 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00002950 } else {
2951 if (item_end < new_size)
2952 break;
2953 if (found_key.offset >= new_size)
2954 del_item = 1;
2955 else
2956 del_item = 0;
2957 }
Chris Mason39279cc2007-06-12 06:35:45 -04002958 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002959 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002960 if (found_type != BTRFS_EXTENT_DATA_KEY)
2961 goto delete;
2962
2963 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002964 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002965 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002966 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002967 u64 orig_num_bytes =
2968 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002969 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002970 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002971 extent_num_bytes = extent_num_bytes &
2972 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002973 btrfs_set_file_extent_num_bytes(leaf, fi,
2974 extent_num_bytes);
2975 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002976 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002977 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002978 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002979 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002980 } else {
Chris Masondb945352007-10-15 16:15:53 -04002981 extent_num_bytes =
2982 btrfs_file_extent_disk_num_bytes(leaf,
2983 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002984 extent_offset = found_key.offset -
2985 btrfs_file_extent_offset(leaf, fi);
2986
Chris Mason39279cc2007-06-12 06:35:45 -04002987 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002988 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002989 if (extent_start != 0) {
2990 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002991 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002992 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002993 }
2994 }
Chris Mason90692182008-02-08 13:49:28 -05002995 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002996 /*
2997 * we can't truncate inline items that have had
2998 * special encodings
2999 */
3000 if (!del_item &&
3001 btrfs_file_extent_compression(leaf, fi) == 0 &&
3002 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3003 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003004 u32 size = new_size - found_key.offset;
3005
3006 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003007 inode_sub_bytes(inode, item_end + 1 -
3008 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003009 }
3010 size =
3011 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003012 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003013 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003014 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003015 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003016 inode_sub_bytes(inode, item_end + 1 -
3017 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003018 }
Chris Mason39279cc2007-06-12 06:35:45 -04003019 }
Chris Mason179e29e2007-11-01 11:28:41 -04003020delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003021 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003022 if (!pending_del_nr) {
3023 /* no pending yet, add ourselves */
3024 pending_del_slot = path->slots[0];
3025 pending_del_nr = 1;
3026 } else if (pending_del_nr &&
3027 path->slots[0] + 1 == pending_del_slot) {
3028 /* hop on the pending chunk */
3029 pending_del_nr++;
3030 pending_del_slot = path->slots[0];
3031 } else {
Chris Masond3977122009-01-05 21:25:51 -05003032 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003033 }
Chris Mason39279cc2007-06-12 06:35:45 -04003034 } else {
3035 break;
3036 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003037 if (found_extent && root->ref_cows) {
Chris Masonb9473432009-03-13 11:00:37 -04003038 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003039 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003040 extent_num_bytes, 0,
3041 btrfs_header_owner(leaf),
3042 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003043 BUG_ON(ret);
3044 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003045
Yan, Zheng80825102009-11-12 09:35:36 +00003046 if (found_type == BTRFS_INODE_ITEM_KEY)
3047 break;
3048
3049 if (path->slots[0] == 0 ||
3050 path->slots[0] != pending_del_slot) {
3051 if (root->ref_cows) {
3052 err = -EAGAIN;
3053 goto out;
3054 }
3055 if (pending_del_nr) {
3056 ret = btrfs_del_items(trans, root, path,
3057 pending_del_slot,
3058 pending_del_nr);
3059 BUG_ON(ret);
3060 pending_del_nr = 0;
3061 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003062 btrfs_release_path(root, path);
3063 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003064 } else {
3065 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003066 }
Chris Mason39279cc2007-06-12 06:35:45 -04003067 }
Yan, Zheng80825102009-11-12 09:35:36 +00003068out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003069 if (pending_del_nr) {
3070 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3071 pending_del_nr);
3072 }
Chris Mason39279cc2007-06-12 06:35:45 -04003073 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003074 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003075}
3076
Chris Masona52d9a82007-08-27 16:49:44 -04003077/*
3078 * taken from block_truncate_page, but does cow as it zeros out
3079 * any bytes left in the last page in the file.
3080 */
3081static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3082{
3083 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003084 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003085 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3086 struct btrfs_ordered_extent *ordered;
3087 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003088 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003089 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3090 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3091 struct page *page;
3092 int ret = 0;
3093 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003094 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003095
3096 if ((offset & (blocksize - 1)) == 0)
3097 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003098 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
3099 if (ret)
3100 goto out;
3101
3102 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
3103 if (ret)
3104 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003105
3106 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003107again:
Chris Masona52d9a82007-08-27 16:49:44 -04003108 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003109 if (!page) {
3110 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
3111 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Masona52d9a82007-08-27 16:49:44 -04003112 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003113 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003114
3115 page_start = page_offset(page);
3116 page_end = page_start + PAGE_CACHE_SIZE - 1;
3117
Chris Masona52d9a82007-08-27 16:49:44 -04003118 if (!PageUptodate(page)) {
3119 ret = btrfs_readpage(NULL, page);
3120 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003121 if (page->mapping != mapping) {
3122 unlock_page(page);
3123 page_cache_release(page);
3124 goto again;
3125 }
Chris Masona52d9a82007-08-27 16:49:44 -04003126 if (!PageUptodate(page)) {
3127 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003128 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003129 }
3130 }
Chris Mason211c17f2008-05-15 09:13:45 -04003131 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003132
3133 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3134 set_page_extent_mapped(page);
3135
3136 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3137 if (ordered) {
3138 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3139 unlock_page(page);
3140 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003141 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003142 btrfs_put_ordered_extent(ordered);
3143 goto again;
3144 }
3145
Josef Bacik5d5e1032009-10-13 16:46:49 -04003146 clear_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
3147 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
3148 GFP_NOFS);
3149
Josef Bacik9ed74f22009-09-11 16:12:44 -04003150 ret = btrfs_set_extent_delalloc(inode, page_start, page_end);
3151 if (ret) {
3152 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3153 goto out_unlock;
3154 }
3155
Chris Masone6dcd2d2008-07-17 12:53:50 -04003156 ret = 0;
3157 if (offset != PAGE_CACHE_SIZE) {
3158 kaddr = kmap(page);
3159 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3160 flush_dcache_page(page);
3161 kunmap(page);
3162 }
Chris Mason247e7432008-07-17 12:53:51 -04003163 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003164 set_page_dirty(page);
3165 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003166
Chris Mason89642222008-07-24 09:41:53 -04003167out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003168 if (ret)
3169 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
3170 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003171 unlock_page(page);
3172 page_cache_release(page);
3173out:
3174 return ret;
3175}
3176
Yan Zheng9036c102008-10-30 14:19:41 -04003177int btrfs_cont_expand(struct inode *inode, loff_t size)
3178{
3179 struct btrfs_trans_handle *trans;
3180 struct btrfs_root *root = BTRFS_I(inode)->root;
3181 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3182 struct extent_map *em;
3183 u64 mask = root->sectorsize - 1;
3184 u64 hole_start = (inode->i_size + mask) & ~mask;
3185 u64 block_end = (size + mask) & ~mask;
3186 u64 last_byte;
3187 u64 cur_offset;
3188 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003189 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003190
3191 if (size <= hole_start)
3192 return 0;
3193
Yan Zheng9036c102008-10-30 14:19:41 -04003194 while (1) {
3195 struct btrfs_ordered_extent *ordered;
3196 btrfs_wait_ordered_range(inode, hole_start,
3197 block_end - hole_start);
3198 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3199 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3200 if (!ordered)
3201 break;
3202 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3203 btrfs_put_ordered_extent(ordered);
3204 }
3205
Yan Zheng9036c102008-10-30 14:19:41 -04003206 cur_offset = hole_start;
3207 while (1) {
3208 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3209 block_end - cur_offset, 0);
3210 BUG_ON(IS_ERR(em) || !em);
3211 last_byte = min(extent_map_end(em), block_end);
3212 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003213 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003214 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003215 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003216
3217 err = btrfs_reserve_metadata_space(root, 2);
Chris Mason771ed682008-11-06 22:02:51 -05003218 if (err)
3219 break;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003220
Yan, Zheng80825102009-11-12 09:35:36 +00003221 trans = btrfs_start_transaction(root, 1);
3222 btrfs_set_trans_block_group(trans, inode);
3223
3224 err = btrfs_drop_extents(trans, inode, cur_offset,
3225 cur_offset + hole_size,
3226 &hint_byte, 1);
3227 BUG_ON(err);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003228
Yan Zheng9036c102008-10-30 14:19:41 -04003229 err = btrfs_insert_file_extent(trans, root,
3230 inode->i_ino, cur_offset, 0,
3231 0, hole_size, 0, hole_size,
3232 0, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003233 BUG_ON(err);
3234
Yan Zheng9036c102008-10-30 14:19:41 -04003235 btrfs_drop_extent_cache(inode, hole_start,
3236 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003237
3238 btrfs_end_transaction(trans, root);
3239 btrfs_unreserve_metadata_space(root, 2);
Yan Zheng9036c102008-10-30 14:19:41 -04003240 }
3241 free_extent_map(em);
3242 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003243 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003244 break;
3245 }
3246
Yan Zheng9036c102008-10-30 14:19:41 -04003247 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3248 return err;
3249}
3250
Yan, Zheng80825102009-11-12 09:35:36 +00003251static int btrfs_setattr_size(struct inode *inode, struct iattr *attr)
3252{
3253 struct btrfs_root *root = BTRFS_I(inode)->root;
3254 struct btrfs_trans_handle *trans;
3255 unsigned long nr;
3256 int ret;
3257
3258 if (attr->ia_size == inode->i_size)
3259 return 0;
3260
3261 if (attr->ia_size > inode->i_size) {
3262 unsigned long limit;
3263 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
3264 if (attr->ia_size > inode->i_sb->s_maxbytes)
3265 return -EFBIG;
3266 if (limit != RLIM_INFINITY && attr->ia_size > limit) {
3267 send_sig(SIGXFSZ, current, 0);
3268 return -EFBIG;
3269 }
3270 }
3271
3272 ret = btrfs_reserve_metadata_space(root, 1);
3273 if (ret)
3274 return ret;
3275
3276 trans = btrfs_start_transaction(root, 1);
3277 btrfs_set_trans_block_group(trans, inode);
3278
3279 ret = btrfs_orphan_add(trans, inode);
3280 BUG_ON(ret);
3281
3282 nr = trans->blocks_used;
3283 btrfs_end_transaction(trans, root);
3284 btrfs_unreserve_metadata_space(root, 1);
3285 btrfs_btree_balance_dirty(root, nr);
3286
3287 if (attr->ia_size > inode->i_size) {
3288 ret = btrfs_cont_expand(inode, attr->ia_size);
3289 if (ret) {
3290 btrfs_truncate(inode);
3291 return ret;
3292 }
3293
3294 i_size_write(inode, attr->ia_size);
3295 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
3296
3297 trans = btrfs_start_transaction(root, 1);
3298 btrfs_set_trans_block_group(trans, inode);
3299
3300 ret = btrfs_update_inode(trans, root, inode);
3301 BUG_ON(ret);
3302 if (inode->i_nlink > 0) {
3303 ret = btrfs_orphan_del(trans, inode);
3304 BUG_ON(ret);
3305 }
3306 nr = trans->blocks_used;
3307 btrfs_end_transaction(trans, root);
3308 btrfs_btree_balance_dirty(root, nr);
3309 return 0;
3310 }
3311
3312 /*
3313 * We're truncating a file that used to have good data down to
3314 * zero. Make sure it gets into the ordered flush list so that
3315 * any new writes get down to disk quickly.
3316 */
3317 if (attr->ia_size == 0)
3318 BTRFS_I(inode)->ordered_data_close = 1;
3319
3320 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3321 ret = vmtruncate(inode, attr->ia_size);
3322 BUG_ON(ret);
3323
3324 return 0;
3325}
3326
Chris Mason39279cc2007-06-12 06:35:45 -04003327static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3328{
3329 struct inode *inode = dentry->d_inode;
3330 int err;
3331
3332 err = inode_change_ok(inode, attr);
3333 if (err)
3334 return err;
3335
Chris Mason5a3f23d2009-03-31 13:27:11 -04003336 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Yan, Zheng80825102009-11-12 09:35:36 +00003337 err = btrfs_setattr_size(inode, attr);
3338 if (err)
3339 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003340 }
Yan, Zheng80825102009-11-12 09:35:36 +00003341 attr->ia_valid &= ~ATTR_SIZE;
Yan Zheng9036c102008-10-30 14:19:41 -04003342
Yan, Zheng80825102009-11-12 09:35:36 +00003343 if (attr->ia_valid)
3344 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04003345
3346 if (!err && ((attr->ia_valid & ATTR_MODE)))
3347 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003348 return err;
3349}
Chris Mason61295eb2008-01-14 16:24:38 -05003350
Chris Mason39279cc2007-06-12 06:35:45 -04003351void btrfs_delete_inode(struct inode *inode)
3352{
3353 struct btrfs_trans_handle *trans;
3354 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003355 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003356 int ret;
3357
3358 truncate_inode_pages(&inode->i_data, 0);
3359 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003360 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003361 goto no_delete;
3362 }
Chris Mason4a096752008-07-21 10:29:44 -04003363 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003364
Yan, Zhengc71bf092009-11-12 09:34:40 +00003365 if (root->fs_info->log_root_recovering) {
3366 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3367 goto no_delete;
3368 }
3369
Yan, Zheng76dda932009-09-21 16:00:26 -04003370 if (inode->i_nlink > 0) {
3371 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3372 goto no_delete;
3373 }
3374
Chris Masondbe674a2008-07-17 12:54:05 -04003375 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003376
Yan, Zheng80825102009-11-12 09:35:36 +00003377 while (1) {
3378 trans = btrfs_start_transaction(root, 1);
3379 btrfs_set_trans_block_group(trans, inode);
3380 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
3381
3382 if (ret != -EAGAIN)
3383 break;
3384
3385 nr = trans->blocks_used;
3386 btrfs_end_transaction(trans, root);
3387 trans = NULL;
3388 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003389 }
3390
Yan, Zheng80825102009-11-12 09:35:36 +00003391 if (ret == 0) {
3392 ret = btrfs_orphan_del(trans, inode);
3393 BUG_ON(ret);
3394 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003395
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003396 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003397 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003398 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003399no_delete:
3400 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003401 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003402}
3403
3404/*
3405 * this returns the key found in the dir entry in the location pointer.
3406 * If no dir entries were found, location->objectid is 0.
3407 */
3408static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3409 struct btrfs_key *location)
3410{
3411 const char *name = dentry->d_name.name;
3412 int namelen = dentry->d_name.len;
3413 struct btrfs_dir_item *di;
3414 struct btrfs_path *path;
3415 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003416 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003417
3418 path = btrfs_alloc_path();
3419 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003420
Chris Mason39279cc2007-06-12 06:35:45 -04003421 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3422 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003423 if (IS_ERR(di))
3424 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003425
3426 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003427 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003428
Chris Mason5f39d392007-10-15 16:14:19 -04003429 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003430out:
Chris Mason39279cc2007-06-12 06:35:45 -04003431 btrfs_free_path(path);
3432 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003433out_err:
3434 location->objectid = 0;
3435 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003436}
3437
3438/*
3439 * when we hit a tree root in a directory, the btrfs part of the inode
3440 * needs to be changed to reflect the root directory of the tree root. This
3441 * is kind of like crossing a mount point.
3442 */
3443static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003444 struct inode *dir,
3445 struct dentry *dentry,
3446 struct btrfs_key *location,
3447 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003448{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003449 struct btrfs_path *path;
3450 struct btrfs_root *new_root;
3451 struct btrfs_root_ref *ref;
3452 struct extent_buffer *leaf;
3453 int ret;
3454 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003455
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003456 path = btrfs_alloc_path();
3457 if (!path) {
3458 err = -ENOMEM;
3459 goto out;
3460 }
Chris Mason39279cc2007-06-12 06:35:45 -04003461
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003462 err = -ENOENT;
3463 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3464 BTRFS_I(dir)->root->root_key.objectid,
3465 location->objectid);
3466 if (ret) {
3467 if (ret < 0)
3468 err = ret;
3469 goto out;
3470 }
Chris Mason39279cc2007-06-12 06:35:45 -04003471
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003472 leaf = path->nodes[0];
3473 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3474 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3475 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3476 goto out;
3477
3478 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3479 (unsigned long)(ref + 1),
3480 dentry->d_name.len);
3481 if (ret)
3482 goto out;
3483
3484 btrfs_release_path(root->fs_info->tree_root, path);
3485
3486 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3487 if (IS_ERR(new_root)) {
3488 err = PTR_ERR(new_root);
3489 goto out;
3490 }
3491
3492 if (btrfs_root_refs(&new_root->root_item) == 0) {
3493 err = -ENOENT;
3494 goto out;
3495 }
3496
3497 *sub_root = new_root;
3498 location->objectid = btrfs_root_dirid(&new_root->root_item);
3499 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003500 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003501 err = 0;
3502out:
3503 btrfs_free_path(path);
3504 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003505}
3506
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003507static void inode_tree_add(struct inode *inode)
3508{
3509 struct btrfs_root *root = BTRFS_I(inode)->root;
3510 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003511 struct rb_node **p;
3512 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003513again:
3514 p = &root->inode_tree.rb_node;
3515 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003516
Yan, Zheng76dda932009-09-21 16:00:26 -04003517 if (hlist_unhashed(&inode->i_hash))
3518 return;
3519
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003520 spin_lock(&root->inode_lock);
3521 while (*p) {
3522 parent = *p;
3523 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3524
3525 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003526 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003527 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003528 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003529 else {
3530 WARN_ON(!(entry->vfs_inode.i_state &
3531 (I_WILL_FREE | I_FREEING | I_CLEAR)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003532 rb_erase(parent, &root->inode_tree);
3533 RB_CLEAR_NODE(parent);
3534 spin_unlock(&root->inode_lock);
3535 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003536 }
3537 }
3538 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3539 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3540 spin_unlock(&root->inode_lock);
3541}
3542
3543static void inode_tree_del(struct inode *inode)
3544{
3545 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003546 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003547
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003548 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003549 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003550 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003551 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003552 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003553 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003554 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003555
3556 if (empty && btrfs_root_refs(&root->root_item) == 0) {
3557 synchronize_srcu(&root->fs_info->subvol_srcu);
3558 spin_lock(&root->inode_lock);
3559 empty = RB_EMPTY_ROOT(&root->inode_tree);
3560 spin_unlock(&root->inode_lock);
3561 if (empty)
3562 btrfs_add_dead_root(root);
3563 }
3564}
3565
3566int btrfs_invalidate_inodes(struct btrfs_root *root)
3567{
3568 struct rb_node *node;
3569 struct rb_node *prev;
3570 struct btrfs_inode *entry;
3571 struct inode *inode;
3572 u64 objectid = 0;
3573
3574 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3575
3576 spin_lock(&root->inode_lock);
3577again:
3578 node = root->inode_tree.rb_node;
3579 prev = NULL;
3580 while (node) {
3581 prev = node;
3582 entry = rb_entry(node, struct btrfs_inode, rb_node);
3583
3584 if (objectid < entry->vfs_inode.i_ino)
3585 node = node->rb_left;
3586 else if (objectid > entry->vfs_inode.i_ino)
3587 node = node->rb_right;
3588 else
3589 break;
3590 }
3591 if (!node) {
3592 while (prev) {
3593 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3594 if (objectid <= entry->vfs_inode.i_ino) {
3595 node = prev;
3596 break;
3597 }
3598 prev = rb_next(prev);
3599 }
3600 }
3601 while (node) {
3602 entry = rb_entry(node, struct btrfs_inode, rb_node);
3603 objectid = entry->vfs_inode.i_ino + 1;
3604 inode = igrab(&entry->vfs_inode);
3605 if (inode) {
3606 spin_unlock(&root->inode_lock);
3607 if (atomic_read(&inode->i_count) > 1)
3608 d_prune_aliases(inode);
3609 /*
3610 * btrfs_drop_inode will remove it from
3611 * the inode cache when its usage count
3612 * hits zero.
3613 */
3614 iput(inode);
3615 cond_resched();
3616 spin_lock(&root->inode_lock);
3617 goto again;
3618 }
3619
3620 if (cond_resched_lock(&root->inode_lock))
3621 goto again;
3622
3623 node = rb_next(node);
3624 }
3625 spin_unlock(&root->inode_lock);
3626 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003627}
3628
Chris Masone02119d2008-09-05 16:13:11 -04003629static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003630{
Chris Masone02119d2008-09-05 16:13:11 -04003631 struct btrfs_inode *bi = BTRFS_I(inode);
3632
Chris Masone02119d2008-09-05 16:13:11 -04003633 bi->generation = 0;
Chris Masonc3027eb2008-12-08 16:40:21 -05003634 bi->sequence = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003635 bi->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04003636 bi->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003637 bi->logged_trans = 0;
3638 bi->delalloc_bytes = 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003639 bi->reserved_bytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003640 bi->disk_i_size = 0;
3641 bi->flags = 0;
3642 bi->index_cnt = (u64)-1;
Chris Mason12fcfd22009-03-24 10:24:20 -04003643 bi->last_unlink_trans = 0;
Chris Mason27574952009-05-14 13:10:02 -04003644 bi->ordered_data_close = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05003645 bi->force_compress = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003646 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3647 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04003648 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003649 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3650 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04003651 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04003652 INIT_LIST_HEAD(&BTRFS_I(inode)->ordered_operations);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003653 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Chris Masonba1da2f2008-07-17 12:54:15 -04003654 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masone02119d2008-09-05 16:13:11 -04003655 mutex_init(&BTRFS_I(inode)->log_mutex);
3656}
3657
3658static int btrfs_init_locked_inode(struct inode *inode, void *p)
3659{
3660 struct btrfs_iget_args *args = p;
3661 inode->i_ino = args->ino;
3662 init_btrfs_i(inode);
3663 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003664 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003665 return 0;
3666}
3667
3668static int btrfs_find_actor(struct inode *inode, void *opaque)
3669{
3670 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05003671 return args->ino == inode->i_ino &&
3672 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003673}
3674
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003675static struct inode *btrfs_iget_locked(struct super_block *s,
3676 u64 objectid,
3677 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003678{
3679 struct inode *inode;
3680 struct btrfs_iget_args args;
3681 args.ino = objectid;
3682 args.root = root;
3683
3684 inode = iget5_locked(s, objectid, btrfs_find_actor,
3685 btrfs_init_locked_inode,
3686 (void *)&args);
3687 return inode;
3688}
3689
Balaji Rao1a54ef82008-07-21 02:01:04 +05303690/* Get an inode object given its location and corresponding root.
3691 * Returns in *is_new if the inode was read from disk
3692 */
3693struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00003694 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303695{
3696 struct inode *inode;
3697
3698 inode = btrfs_iget_locked(s, location->objectid, root);
3699 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003700 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303701
3702 if (inode->i_state & I_NEW) {
3703 BTRFS_I(inode)->root = root;
3704 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3705 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003706
3707 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303708 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00003709 if (new)
3710 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05303711 }
3712
3713 return inode;
3714}
3715
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003716static struct inode *new_simple_dir(struct super_block *s,
3717 struct btrfs_key *key,
3718 struct btrfs_root *root)
3719{
3720 struct inode *inode = new_inode(s);
3721
3722 if (!inode)
3723 return ERR_PTR(-ENOMEM);
3724
3725 init_btrfs_i(inode);
3726
3727 BTRFS_I(inode)->root = root;
3728 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3729 BTRFS_I(inode)->dummy_inode = 1;
3730
3731 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3732 inode->i_op = &simple_dir_inode_operations;
3733 inode->i_fop = &simple_dir_operations;
3734 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3735 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3736
3737 return inode;
3738}
3739
Chris Mason3de45862008-11-17 21:02:50 -05003740struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003741{
Chris Masond3977122009-01-05 21:25:51 -05003742 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003743 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003744 struct btrfs_root *sub_root = root;
3745 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04003746 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003747 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003748
Yan, Zheng76dda932009-09-21 16:00:26 -04003749 dentry->d_op = &btrfs_dentry_operations;
3750
Chris Mason39279cc2007-06-12 06:35:45 -04003751 if (dentry->d_name.len > BTRFS_NAME_LEN)
3752 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003753
Chris Mason39279cc2007-06-12 06:35:45 -04003754 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003755
Chris Mason39279cc2007-06-12 06:35:45 -04003756 if (ret < 0)
3757 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003758
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003759 if (location.objectid == 0)
3760 return NULL;
3761
3762 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00003763 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003764 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003765 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003766
3767 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
3768
Yan, Zheng76dda932009-09-21 16:00:26 -04003769 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003770 ret = fixup_tree_root_location(root, dir, dentry,
3771 &location, &sub_root);
3772 if (ret < 0) {
3773 if (ret != -ENOENT)
3774 inode = ERR_PTR(ret);
3775 else
3776 inode = new_simple_dir(dir->i_sb, &location, sub_root);
3777 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00003778 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003779 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003780 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
3781
Yan, Zhengc71bf092009-11-12 09:34:40 +00003782 if (root != sub_root) {
3783 down_read(&root->fs_info->cleanup_work_sem);
3784 if (!(inode->i_sb->s_flags & MS_RDONLY))
3785 btrfs_orphan_cleanup(sub_root);
3786 up_read(&root->fs_info->cleanup_work_sem);
3787 }
3788
Chris Mason3de45862008-11-17 21:02:50 -05003789 return inode;
3790}
3791
Yan, Zheng76dda932009-09-21 16:00:26 -04003792static int btrfs_dentry_delete(struct dentry *dentry)
3793{
3794 struct btrfs_root *root;
3795
Yan, Zhengefefb142009-10-09 09:25:16 -04003796 if (!dentry->d_inode && !IS_ROOT(dentry))
3797 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04003798
Yan, Zhengefefb142009-10-09 09:25:16 -04003799 if (dentry->d_inode) {
3800 root = BTRFS_I(dentry->d_inode)->root;
3801 if (btrfs_root_refs(&root->root_item) == 0)
3802 return 1;
3803 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003804 return 0;
3805}
3806
Chris Mason3de45862008-11-17 21:02:50 -05003807static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3808 struct nameidata *nd)
3809{
3810 struct inode *inode;
3811
Chris Mason3de45862008-11-17 21:02:50 -05003812 inode = btrfs_lookup_dentry(dir, dentry);
3813 if (IS_ERR(inode))
3814 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003815
Chris Mason39279cc2007-06-12 06:35:45 -04003816 return d_splice_alias(inode, dentry);
3817}
3818
Chris Mason39279cc2007-06-12 06:35:45 -04003819static unsigned char btrfs_filetype_table[] = {
3820 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3821};
3822
David Woodhousecbdf5a22008-08-06 19:42:33 +01003823static int btrfs_real_readdir(struct file *filp, void *dirent,
3824 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003825{
Chris Mason6da6aba2007-12-18 16:15:09 -05003826 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003827 struct btrfs_root *root = BTRFS_I(inode)->root;
3828 struct btrfs_item *item;
3829 struct btrfs_dir_item *di;
3830 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003831 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003832 struct btrfs_path *path;
3833 int ret;
3834 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003835 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003836 int slot;
3837 int advance;
3838 unsigned char d_type;
3839 int over = 0;
3840 u32 di_cur;
3841 u32 di_total;
3842 u32 di_len;
3843 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003844 char tmp_name[32];
3845 char *name_ptr;
3846 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003847
3848 /* FIXME, use a real flag for deciding about the key type */
3849 if (root->fs_info->tree_root == root)
3850 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003851
Chris Mason39544012007-12-12 14:38:19 -05003852 /* special case for "." */
3853 if (filp->f_pos == 0) {
3854 over = filldir(dirent, ".", 1,
3855 1, inode->i_ino,
3856 DT_DIR);
3857 if (over)
3858 return 0;
3859 filp->f_pos = 1;
3860 }
Chris Mason39544012007-12-12 14:38:19 -05003861 /* special case for .., just use the back ref */
3862 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003863 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003864 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003865 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003866 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003867 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003868 filp->f_pos = 2;
3869 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003870 path = btrfs_alloc_path();
3871 path->reada = 2;
3872
Chris Mason39279cc2007-06-12 06:35:45 -04003873 btrfs_set_key_type(&key, key_type);
3874 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003875 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003876
Chris Mason39279cc2007-06-12 06:35:45 -04003877 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3878 if (ret < 0)
3879 goto err;
3880 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003881
3882 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003883 leaf = path->nodes[0];
3884 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003885 slot = path->slots[0];
3886 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003887 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003888 ret = btrfs_next_leaf(root, path);
3889 if (ret)
3890 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003891 leaf = path->nodes[0];
3892 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003893 slot = path->slots[0];
3894 } else {
3895 slot++;
3896 path->slots[0]++;
3897 }
3898 }
Chris Mason3de45862008-11-17 21:02:50 -05003899
Chris Mason39279cc2007-06-12 06:35:45 -04003900 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003901 item = btrfs_item_nr(leaf, slot);
3902 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3903
3904 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003905 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003906 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003907 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003908 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003909 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003910
3911 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003912
Chris Mason39279cc2007-06-12 06:35:45 -04003913 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3914 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003915 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003916
3917 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003918 struct btrfs_key location;
3919
3920 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003921 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003922 name_ptr = tmp_name;
3923 } else {
3924 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003925 if (!name_ptr) {
3926 ret = -ENOMEM;
3927 goto err;
3928 }
Chris Mason5f39d392007-10-15 16:14:19 -04003929 }
3930 read_extent_buffer(leaf, name_ptr,
3931 (unsigned long)(di + 1), name_len);
3932
3933 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3934 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05003935
3936 /* is this a reference to our own snapshot? If so
3937 * skip it
3938 */
3939 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3940 location.objectid == root->root_key.objectid) {
3941 over = 0;
3942 goto skip;
3943 }
Chris Mason5f39d392007-10-15 16:14:19 -04003944 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003945 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003946 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003947
Chris Mason3de45862008-11-17 21:02:50 -05003948skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003949 if (name_ptr != tmp_name)
3950 kfree(name_ptr);
3951
Chris Mason39279cc2007-06-12 06:35:45 -04003952 if (over)
3953 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003954 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003955 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003956 di_cur += di_len;
3957 di = (struct btrfs_dir_item *)((char *)di + di_len);
3958 }
3959 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003960
3961 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003962 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00003963 /*
3964 * 32-bit glibc will use getdents64, but then strtol -
3965 * so the last number we can serve is this.
3966 */
3967 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05003968 else
3969 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003970nopos:
3971 ret = 0;
3972err:
Chris Mason39279cc2007-06-12 06:35:45 -04003973 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003974 return ret;
3975}
3976
3977int btrfs_write_inode(struct inode *inode, int wait)
3978{
3979 struct btrfs_root *root = BTRFS_I(inode)->root;
3980 struct btrfs_trans_handle *trans;
3981 int ret = 0;
3982
Yan Zhengc146afa2008-11-12 14:34:12 -05003983 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04003984 return 0;
3985
Chris Mason39279cc2007-06-12 06:35:45 -04003986 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003987 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003988 btrfs_set_trans_block_group(trans, inode);
3989 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003990 }
3991 return ret;
3992}
3993
3994/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003995 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003996 * inode changes. But, it is most likely to find the inode in cache.
3997 * FIXME, needs more benchmarking...there are no reasons other than performance
3998 * to keep or drop this code.
3999 */
4000void btrfs_dirty_inode(struct inode *inode)
4001{
4002 struct btrfs_root *root = BTRFS_I(inode)->root;
4003 struct btrfs_trans_handle *trans;
4004
Chris Masonf9295742008-07-17 12:54:14 -04004005 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004006 btrfs_set_trans_block_group(trans, inode);
4007 btrfs_update_inode(trans, root, inode);
4008 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004009}
4010
Chris Masond352ac62008-09-29 15:18:18 -04004011/*
4012 * find the highest existing sequence number in a directory
4013 * and then set the in-memory index_cnt variable to reflect
4014 * free sequence numbers
4015 */
Josef Bacikaec74772008-07-24 12:12:38 -04004016static int btrfs_set_inode_index_count(struct inode *inode)
4017{
4018 struct btrfs_root *root = BTRFS_I(inode)->root;
4019 struct btrfs_key key, found_key;
4020 struct btrfs_path *path;
4021 struct extent_buffer *leaf;
4022 int ret;
4023
4024 key.objectid = inode->i_ino;
4025 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4026 key.offset = (u64)-1;
4027
4028 path = btrfs_alloc_path();
4029 if (!path)
4030 return -ENOMEM;
4031
4032 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4033 if (ret < 0)
4034 goto out;
4035 /* FIXME: we should be able to handle this */
4036 if (ret == 0)
4037 goto out;
4038 ret = 0;
4039
4040 /*
4041 * MAGIC NUMBER EXPLANATION:
4042 * since we search a directory based on f_pos we have to start at 2
4043 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4044 * else has to start at 2
4045 */
4046 if (path->slots[0] == 0) {
4047 BTRFS_I(inode)->index_cnt = 2;
4048 goto out;
4049 }
4050
4051 path->slots[0]--;
4052
4053 leaf = path->nodes[0];
4054 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4055
4056 if (found_key.objectid != inode->i_ino ||
4057 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4058 BTRFS_I(inode)->index_cnt = 2;
4059 goto out;
4060 }
4061
4062 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4063out:
4064 btrfs_free_path(path);
4065 return ret;
4066}
4067
Chris Masond352ac62008-09-29 15:18:18 -04004068/*
4069 * helper to find a free sequence number in a given directory. This current
4070 * code is very simple, later versions will do smarter things in the btree
4071 */
Chris Mason3de45862008-11-17 21:02:50 -05004072int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004073{
4074 int ret = 0;
4075
4076 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4077 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004078 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004079 return ret;
4080 }
4081
Chris Mason00e4e6b2008-08-05 11:18:09 -04004082 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004083 BTRFS_I(dir)->index_cnt++;
4084
4085 return ret;
4086}
4087
Chris Mason39279cc2007-06-12 06:35:45 -04004088static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4089 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004090 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004091 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004092 u64 ref_objectid, u64 objectid,
4093 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004094{
4095 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004096 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004097 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004098 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004099 struct btrfs_inode_ref *ref;
4100 struct btrfs_key key[2];
4101 u32 sizes[2];
4102 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004103 int ret;
4104 int owner;
4105
Chris Mason5f39d392007-10-15 16:14:19 -04004106 path = btrfs_alloc_path();
4107 BUG_ON(!path);
4108
Chris Mason39279cc2007-06-12 06:35:45 -04004109 inode = new_inode(root->fs_info->sb);
4110 if (!inode)
4111 return ERR_PTR(-ENOMEM);
4112
Josef Bacikaec74772008-07-24 12:12:38 -04004113 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004114 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004115 if (ret) {
4116 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004117 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004118 }
Josef Bacikaec74772008-07-24 12:12:38 -04004119 }
4120 /*
4121 * index_cnt is ignored for everything but a dir,
4122 * btrfs_get_inode_index_count has an explanation for the magic
4123 * number
4124 */
Chris Masone02119d2008-09-05 16:13:11 -04004125 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004126 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004127 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004128 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik6a632092009-02-20 11:00:09 -05004129 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004130
Chris Mason39279cc2007-06-12 06:35:45 -04004131 if (mode & S_IFDIR)
4132 owner = 0;
4133 else
4134 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004135 BTRFS_I(inode)->block_group =
4136 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004137
4138 key[0].objectid = objectid;
4139 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4140 key[0].offset = 0;
4141
4142 key[1].objectid = objectid;
4143 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4144 key[1].offset = ref_objectid;
4145
4146 sizes[0] = sizeof(struct btrfs_inode_item);
4147 sizes[1] = name_len + sizeof(*ref);
4148
Chris Masonb9473432009-03-13 11:00:37 -04004149 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004150 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4151 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004152 goto fail;
4153
Chris Mason79683f22008-11-19 22:00:53 -05004154 inode->i_uid = current_fsuid();
Chris Ball8c087b52009-02-04 09:29:54 -05004155
Chris Mason42f15d72009-02-06 11:35:57 -05004156 if (dir && (dir->i_mode & S_ISGID)) {
Chris Ball8c087b52009-02-04 09:29:54 -05004157 inode->i_gid = dir->i_gid;
4158 if (S_ISDIR(mode))
4159 mode |= S_ISGID;
4160 } else
4161 inode->i_gid = current_fsgid();
4162
Chris Mason39279cc2007-06-12 06:35:45 -04004163 inode->i_mode = mode;
4164 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004165 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004166 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004167 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4168 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004169 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004170
4171 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4172 struct btrfs_inode_ref);
4173 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004174 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004175 ptr = (unsigned long)(ref + 1);
4176 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4177
Chris Mason5f39d392007-10-15 16:14:19 -04004178 btrfs_mark_buffer_dirty(path->nodes[0]);
4179 btrfs_free_path(path);
4180
Chris Mason39279cc2007-06-12 06:35:45 -04004181 location = &BTRFS_I(inode)->location;
4182 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004183 location->offset = 0;
4184 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4185
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004186 btrfs_inherit_iflags(inode, dir);
4187
Chris Mason94272162009-07-02 12:26:06 -04004188 if ((mode & S_IFREG)) {
4189 if (btrfs_test_opt(root, NODATASUM))
4190 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4191 if (btrfs_test_opt(root, NODATACOW))
4192 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4193 }
4194
Chris Mason39279cc2007-06-12 06:35:45 -04004195 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004196 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004197 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004198fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004199 if (dir)
4200 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004201 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004202 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004203 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004204}
4205
4206static inline u8 btrfs_inode_type(struct inode *inode)
4207{
4208 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4209}
4210
Chris Masond352ac62008-09-29 15:18:18 -04004211/*
4212 * utility function to add 'inode' into 'parent_inode' with
4213 * a give name and a given sequence number.
4214 * if 'add_backref' is true, also insert a backref from the
4215 * inode to the parent directory.
4216 */
Chris Masone02119d2008-09-05 16:13:11 -04004217int btrfs_add_link(struct btrfs_trans_handle *trans,
4218 struct inode *parent_inode, struct inode *inode,
4219 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004220{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004221 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004222 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004223 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004224
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004225 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4226 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4227 } else {
4228 key.objectid = inode->i_ino;
4229 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4230 key.offset = 0;
4231 }
Chris Mason39279cc2007-06-12 06:35:45 -04004232
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004233 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4234 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4235 key.objectid, root->root_key.objectid,
4236 parent_inode->i_ino,
4237 index, name, name_len);
4238 } else if (add_backref) {
4239 ret = btrfs_insert_inode_ref(trans, root,
4240 name, name_len, inode->i_ino,
4241 parent_inode->i_ino, index);
4242 }
4243
Chris Mason39279cc2007-06-12 06:35:45 -04004244 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004245 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4246 parent_inode->i_ino, &key,
4247 btrfs_inode_type(inode), index);
4248 BUG_ON(ret);
4249
Chris Masondbe674a2008-07-17 12:54:05 -04004250 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004251 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004252 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004253 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004254 }
4255 return ret;
4256}
4257
4258static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05004259 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004260 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004261{
Chris Masone02119d2008-09-05 16:13:11 -04004262 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4263 inode, dentry->d_name.name,
4264 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004265 if (!err) {
4266 d_instantiate(dentry, inode);
4267 return 0;
4268 }
4269 if (err > 0)
4270 err = -EEXIST;
4271 return err;
4272}
4273
Josef Bacik618e21d2007-07-11 10:18:17 -04004274static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4275 int mode, dev_t rdev)
4276{
4277 struct btrfs_trans_handle *trans;
4278 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004279 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004280 int err;
4281 int drop_inode = 0;
4282 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004283 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004284 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004285
4286 if (!new_valid_dev(rdev))
4287 return -EINVAL;
4288
Josef Bacik9ed74f22009-09-11 16:12:44 -04004289 /*
4290 * 2 for inode item and ref
4291 * 2 for dir items
4292 * 1 for xattr if selinux is on
4293 */
4294 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004295 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004296 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004297
Josef Bacik618e21d2007-07-11 10:18:17 -04004298 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004299 if (!trans)
4300 goto fail;
Josef Bacik618e21d2007-07-11 10:18:17 -04004301 btrfs_set_trans_block_group(trans, dir);
4302
4303 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4304 if (err) {
4305 err = -ENOSPC;
4306 goto out_unlock;
4307 }
4308
Josef Bacikaec74772008-07-24 12:12:38 -04004309 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004310 dentry->d_name.len,
4311 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004312 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004313 err = PTR_ERR(inode);
4314 if (IS_ERR(inode))
4315 goto out_unlock;
4316
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004317 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004318 if (err) {
4319 drop_inode = 1;
4320 goto out_unlock;
4321 }
4322
Josef Bacik618e21d2007-07-11 10:18:17 -04004323 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004324 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004325 if (err)
4326 drop_inode = 1;
4327 else {
4328 inode->i_op = &btrfs_special_inode_operations;
4329 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004330 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004331 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004332 btrfs_update_inode_block_group(trans, inode);
4333 btrfs_update_inode_block_group(trans, dir);
4334out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004335 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004336 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004337fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004338 btrfs_unreserve_metadata_space(root, 5);
Josef Bacik618e21d2007-07-11 10:18:17 -04004339 if (drop_inode) {
4340 inode_dec_link_count(inode);
4341 iput(inode);
4342 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004343 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004344 return err;
4345}
4346
Chris Mason39279cc2007-06-12 06:35:45 -04004347static int btrfs_create(struct inode *dir, struct dentry *dentry,
4348 int mode, struct nameidata *nd)
4349{
4350 struct btrfs_trans_handle *trans;
4351 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004352 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004353 int err;
4354 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05004355 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004356 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004357 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004358
Josef Bacik9ed74f22009-09-11 16:12:44 -04004359 /*
4360 * 2 for inode item and ref
4361 * 2 for dir items
4362 * 1 for xattr if selinux is on
4363 */
4364 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004365 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004366 return err;
4367
Chris Mason39279cc2007-06-12 06:35:45 -04004368 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004369 if (!trans)
4370 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04004371 btrfs_set_trans_block_group(trans, dir);
4372
4373 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4374 if (err) {
4375 err = -ENOSPC;
4376 goto out_unlock;
4377 }
4378
Josef Bacikaec74772008-07-24 12:12:38 -04004379 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004380 dentry->d_name.len,
4381 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004382 objectid, BTRFS_I(dir)->block_group, mode,
4383 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004384 err = PTR_ERR(inode);
4385 if (IS_ERR(inode))
4386 goto out_unlock;
4387
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004388 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004389 if (err) {
4390 drop_inode = 1;
4391 goto out_unlock;
4392 }
4393
Chris Mason39279cc2007-06-12 06:35:45 -04004394 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004395 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004396 if (err)
4397 drop_inode = 1;
4398 else {
4399 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004400 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004401 inode->i_fop = &btrfs_file_operations;
4402 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004403 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004404 }
Chris Mason39279cc2007-06-12 06:35:45 -04004405 btrfs_update_inode_block_group(trans, inode);
4406 btrfs_update_inode_block_group(trans, dir);
4407out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004408 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004409 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004410fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004411 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004412 if (drop_inode) {
4413 inode_dec_link_count(inode);
4414 iput(inode);
4415 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004416 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004417 return err;
4418}
4419
4420static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4421 struct dentry *dentry)
4422{
4423 struct btrfs_trans_handle *trans;
4424 struct btrfs_root *root = BTRFS_I(dir)->root;
4425 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004426 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004427 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004428 int err;
4429 int drop_inode = 0;
4430
4431 if (inode->i_nlink == 0)
4432 return -ENOENT;
4433
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004434 /* do not allow sys_link's with other subvols of the same device */
4435 if (root->objectid != BTRFS_I(inode)->root->objectid)
4436 return -EPERM;
4437
Josef Bacik9ed74f22009-09-11 16:12:44 -04004438 /*
4439 * 1 item for inode ref
4440 * 2 items for dir items
4441 */
4442 err = btrfs_reserve_metadata_space(root, 3);
Chris Mason1832a6d2007-12-21 16:27:21 -05004443 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004444 return err;
4445
4446 btrfs_inc_nlink(inode);
4447
Chris Mason3de45862008-11-17 21:02:50 -05004448 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004449 if (err)
4450 goto fail;
4451
Chris Mason39279cc2007-06-12 06:35:45 -04004452 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004453
Chris Mason39279cc2007-06-12 06:35:45 -04004454 btrfs_set_trans_block_group(trans, dir);
4455 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04004456
Chris Mason00e4e6b2008-08-05 11:18:09 -04004457 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004458
Yan, Zhenga5719522009-09-24 09:17:31 -04004459 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004460 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004461 } else {
4462 btrfs_update_inode_block_group(trans, dir);
4463 err = btrfs_update_inode(trans, root, inode);
4464 BUG_ON(err);
4465 btrfs_log_new_name(trans, inode, NULL, dentry->d_parent);
4466 }
Chris Mason39279cc2007-06-12 06:35:45 -04004467
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004468 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004469 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004470fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004471 btrfs_unreserve_metadata_space(root, 3);
Chris Mason39279cc2007-06-12 06:35:45 -04004472 if (drop_inode) {
4473 inode_dec_link_count(inode);
4474 iput(inode);
4475 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004476 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004477 return err;
4478}
4479
Chris Mason39279cc2007-06-12 06:35:45 -04004480static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4481{
Chris Masonb9d86662008-05-02 16:13:49 -04004482 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004483 struct btrfs_trans_handle *trans;
4484 struct btrfs_root *root = BTRFS_I(dir)->root;
4485 int err = 0;
4486 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004487 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004488 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004489 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004490
Josef Bacik9ed74f22009-09-11 16:12:44 -04004491 /*
4492 * 2 items for inode and ref
4493 * 2 items for dir items
4494 * 1 for xattr if selinux is on
4495 */
4496 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004497 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004498 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004499
Chris Mason39279cc2007-06-12 06:35:45 -04004500 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004501 if (!trans) {
4502 err = -ENOMEM;
Chris Mason39279cc2007-06-12 06:35:45 -04004503 goto out_unlock;
4504 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04004505 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004506
4507 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4508 if (err) {
4509 err = -ENOSPC;
Miao Xie0be2e982010-02-11 08:06:58 +00004510 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04004511 }
4512
Josef Bacikaec74772008-07-24 12:12:38 -04004513 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004514 dentry->d_name.len,
4515 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004516 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4517 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004518 if (IS_ERR(inode)) {
4519 err = PTR_ERR(inode);
4520 goto out_fail;
4521 }
Chris Mason5f39d392007-10-15 16:14:19 -04004522
Chris Mason39279cc2007-06-12 06:35:45 -04004523 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004524
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004525 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004526 if (err)
4527 goto out_fail;
4528
Chris Mason39279cc2007-06-12 06:35:45 -04004529 inode->i_op = &btrfs_dir_inode_operations;
4530 inode->i_fop = &btrfs_dir_file_operations;
4531 btrfs_set_trans_block_group(trans, inode);
4532
Chris Masondbe674a2008-07-17 12:54:05 -04004533 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004534 err = btrfs_update_inode(trans, root, inode);
4535 if (err)
4536 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004537
Chris Masone02119d2008-09-05 16:13:11 -04004538 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4539 inode, dentry->d_name.name,
4540 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004541 if (err)
4542 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004543
Chris Mason39279cc2007-06-12 06:35:45 -04004544 d_instantiate(dentry, inode);
4545 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004546 btrfs_update_inode_block_group(trans, inode);
4547 btrfs_update_inode_block_group(trans, dir);
4548
4549out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004550 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004551 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04004552
Chris Mason39279cc2007-06-12 06:35:45 -04004553out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004554 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004555 if (drop_on_err)
4556 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004557 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004558 return err;
4559}
4560
Chris Masond352ac62008-09-29 15:18:18 -04004561/* helper for btfs_get_extent. Given an existing extent in the tree,
4562 * and an extent that you want to insert, deal with overlap and insert
4563 * the new extent into the tree.
4564 */
Chris Mason3b951512008-04-17 11:29:12 -04004565static int merge_extent_mapping(struct extent_map_tree *em_tree,
4566 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004567 struct extent_map *em,
4568 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004569{
4570 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004571
Chris Masone6dcd2d2008-07-17 12:53:50 -04004572 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4573 start_diff = map_start - em->start;
4574 em->start = map_start;
4575 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004576 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4577 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004578 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004579 em->block_len -= start_diff;
4580 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004581 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004582}
4583
Chris Masonc8b97812008-10-29 14:49:59 -04004584static noinline int uncompress_inline(struct btrfs_path *path,
4585 struct inode *inode, struct page *page,
4586 size_t pg_offset, u64 extent_offset,
4587 struct btrfs_file_extent_item *item)
4588{
4589 int ret;
4590 struct extent_buffer *leaf = path->nodes[0];
4591 char *tmp;
4592 size_t max_size;
4593 unsigned long inline_size;
4594 unsigned long ptr;
4595
4596 WARN_ON(pg_offset != 0);
4597 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4598 inline_size = btrfs_file_extent_inline_item_len(leaf,
4599 btrfs_item_nr(leaf, path->slots[0]));
4600 tmp = kmalloc(inline_size, GFP_NOFS);
4601 ptr = btrfs_file_extent_inline_start(item);
4602
4603 read_extent_buffer(leaf, tmp, ptr, inline_size);
4604
Chris Mason5b050f02008-11-11 09:34:41 -05004605 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004606 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
4607 inline_size, max_size);
4608 if (ret) {
4609 char *kaddr = kmap_atomic(page, KM_USER0);
4610 unsigned long copy_size = min_t(u64,
4611 PAGE_CACHE_SIZE - pg_offset,
4612 max_size - extent_offset);
4613 memset(kaddr + pg_offset, 0, copy_size);
4614 kunmap_atomic(kaddr, KM_USER0);
4615 }
4616 kfree(tmp);
4617 return 0;
4618}
4619
Chris Masond352ac62008-09-29 15:18:18 -04004620/*
4621 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004622 * the ugly parts come from merging extents from the disk with the in-ram
4623 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004624 * where the in-ram extents might be locked pending data=ordered completion.
4625 *
4626 * This also copies inline extents directly into the page.
4627 */
Chris Masond3977122009-01-05 21:25:51 -05004628
Chris Masona52d9a82007-08-27 16:49:44 -04004629struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004630 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004631 int create)
4632{
4633 int ret;
4634 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004635 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004636 u64 extent_start = 0;
4637 u64 extent_end = 0;
4638 u64 objectid = inode->i_ino;
4639 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004640 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004641 struct btrfs_root *root = BTRFS_I(inode)->root;
4642 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004643 struct extent_buffer *leaf;
4644 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004645 struct extent_map *em = NULL;
4646 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004647 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004648 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004649 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04004650
Chris Masona52d9a82007-08-27 16:49:44 -04004651again:
Chris Mason890871b2009-09-02 16:24:52 -04004652 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004653 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004654 if (em)
4655 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004656 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004657
Chris Masona52d9a82007-08-27 16:49:44 -04004658 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004659 if (em->start > start || em->start + em->len <= start)
4660 free_extent_map(em);
4661 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004662 free_extent_map(em);
4663 else
4664 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004665 }
Chris Masond1310b22008-01-24 16:13:08 -05004666 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004667 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004668 err = -ENOMEM;
4669 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004670 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004671 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004672 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004673 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004674 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004675 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004676
4677 if (!path) {
4678 path = btrfs_alloc_path();
4679 BUG_ON(!path);
4680 }
4681
Chris Mason179e29e2007-11-01 11:28:41 -04004682 ret = btrfs_lookup_file_extent(trans, root, path,
4683 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004684 if (ret < 0) {
4685 err = ret;
4686 goto out;
4687 }
4688
4689 if (ret != 0) {
4690 if (path->slots[0] == 0)
4691 goto not_found;
4692 path->slots[0]--;
4693 }
4694
Chris Mason5f39d392007-10-15 16:14:19 -04004695 leaf = path->nodes[0];
4696 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04004697 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04004698 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04004699 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4700 found_type = btrfs_key_type(&found_key);
4701 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04004702 found_type != BTRFS_EXTENT_DATA_KEY) {
4703 goto not_found;
4704 }
4705
Chris Mason5f39d392007-10-15 16:14:19 -04004706 found_type = btrfs_file_extent_type(leaf, item);
4707 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04004708 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04004709 if (found_type == BTRFS_FILE_EXTENT_REG ||
4710 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04004711 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04004712 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04004713 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
4714 size_t size;
4715 size = btrfs_file_extent_inline_len(leaf, item);
4716 extent_end = (extent_start + size + root->sectorsize - 1) &
4717 ~((u64)root->sectorsize - 1);
4718 }
4719
4720 if (start >= extent_end) {
4721 path->slots[0]++;
4722 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
4723 ret = btrfs_next_leaf(root, path);
4724 if (ret < 0) {
4725 err = ret;
4726 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004727 }
Yan Zheng9036c102008-10-30 14:19:41 -04004728 if (ret > 0)
4729 goto not_found;
4730 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04004731 }
Yan Zheng9036c102008-10-30 14:19:41 -04004732 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4733 if (found_key.objectid != objectid ||
4734 found_key.type != BTRFS_EXTENT_DATA_KEY)
4735 goto not_found;
4736 if (start + len <= found_key.offset)
4737 goto not_found;
4738 em->start = start;
4739 em->len = found_key.offset - start;
4740 goto not_found_em;
4741 }
4742
Yan Zhengd899e052008-10-30 14:25:28 -04004743 if (found_type == BTRFS_FILE_EXTENT_REG ||
4744 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04004745 em->start = extent_start;
4746 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004747 em->orig_start = extent_start -
4748 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04004749 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4750 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004751 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04004752 goto insert;
4753 }
Chris Masonc8b97812008-10-29 14:49:59 -04004754 if (compressed) {
4755 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
4756 em->block_start = bytenr;
4757 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
4758 item);
4759 } else {
4760 bytenr += btrfs_file_extent_offset(leaf, item);
4761 em->block_start = bytenr;
4762 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04004763 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
4764 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04004765 }
Chris Masona52d9a82007-08-27 16:49:44 -04004766 goto insert;
4767 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004768 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04004769 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04004770 size_t size;
4771 size_t extent_offset;
4772 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04004773
Chris Masona52d9a82007-08-27 16:49:44 -04004774 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004775 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04004776 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04004777 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04004778 goto out;
4779 }
4780
Yan Zheng9036c102008-10-30 14:19:41 -04004781 size = btrfs_file_extent_inline_len(leaf, item);
4782 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05004783 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04004784 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04004785 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05004786 em->len = (copy_size + root->sectorsize - 1) &
4787 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004788 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004789 if (compressed)
4790 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004791 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004792 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004793 if (btrfs_file_extent_compression(leaf, item) ==
4794 BTRFS_COMPRESS_ZLIB) {
4795 ret = uncompress_inline(path, inode, page,
4796 pg_offset,
4797 extent_offset, item);
4798 BUG_ON(ret);
4799 } else {
4800 map = kmap(page);
4801 read_extent_buffer(leaf, map + pg_offset, ptr,
4802 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04004803 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
4804 memset(map + pg_offset + copy_size, 0,
4805 PAGE_CACHE_SIZE - pg_offset -
4806 copy_size);
4807 }
Chris Masonc8b97812008-10-29 14:49:59 -04004808 kunmap(page);
4809 }
Chris Mason179e29e2007-11-01 11:28:41 -04004810 flush_dcache_page(page);
4811 } else if (create && PageUptodate(page)) {
4812 if (!trans) {
4813 kunmap(page);
4814 free_extent_map(em);
4815 em = NULL;
4816 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004817 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004818 goto again;
4819 }
Chris Masonc8b97812008-10-29 14:49:59 -04004820 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004821 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004822 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004823 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004824 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004825 }
Chris Masond1310b22008-01-24 16:13:08 -05004826 set_extent_uptodate(io_tree, em->start,
4827 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004828 goto insert;
4829 } else {
Chris Masond3977122009-01-05 21:25:51 -05004830 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04004831 WARN_ON(1);
4832 }
4833not_found:
4834 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004835 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004836not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004837 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004838 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004839insert:
4840 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004841 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05004842 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
4843 "[%llu %llu]\n", (unsigned long long)em->start,
4844 (unsigned long long)em->len,
4845 (unsigned long long)start,
4846 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04004847 err = -EIO;
4848 goto out;
4849 }
Chris Masond1310b22008-01-24 16:13:08 -05004850
4851 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04004852 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004853 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004854 /* it is possible that someone inserted the extent into the tree
4855 * while we had the lock dropped. It is also possible that
4856 * an overlapping map exists in the tree
4857 */
Chris Masona52d9a82007-08-27 16:49:44 -04004858 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004859 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004860
4861 ret = 0;
4862
Chris Mason3b951512008-04-17 11:29:12 -04004863 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004864 if (existing && (existing->start > start ||
4865 existing->start + existing->len <= start)) {
4866 free_extent_map(existing);
4867 existing = NULL;
4868 }
Chris Mason3b951512008-04-17 11:29:12 -04004869 if (!existing) {
4870 existing = lookup_extent_mapping(em_tree, em->start,
4871 em->len);
4872 if (existing) {
4873 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004874 em, start,
4875 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004876 free_extent_map(existing);
4877 if (err) {
4878 free_extent_map(em);
4879 em = NULL;
4880 }
4881 } else {
4882 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04004883 free_extent_map(em);
4884 em = NULL;
4885 }
4886 } else {
4887 free_extent_map(em);
4888 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004889 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004890 }
Chris Masona52d9a82007-08-27 16:49:44 -04004891 }
Chris Mason890871b2009-09-02 16:24:52 -04004892 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004893out:
Chris Masonf4219502008-07-22 11:18:09 -04004894 if (path)
4895 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004896 if (trans) {
4897 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05004898 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04004899 err = ret;
4900 }
Chris Masona52d9a82007-08-27 16:49:44 -04004901 if (err) {
4902 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04004903 return ERR_PTR(err);
4904 }
4905 return em;
4906}
4907
Chris Mason16432982008-04-10 10:23:21 -04004908static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4909 const struct iovec *iov, loff_t offset,
4910 unsigned long nr_segs)
4911{
Chris Masone1c4b742008-04-22 13:26:46 -04004912 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004913}
4914
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004915static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4916 __u64 start, __u64 len)
4917{
4918 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
4919}
4920
Chris Mason9ebefb182007-06-15 13:50:00 -04004921int btrfs_readpage(struct file *file, struct page *page)
4922{
Chris Masond1310b22008-01-24 16:13:08 -05004923 struct extent_io_tree *tree;
4924 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004925 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004926}
Chris Mason1832a6d2007-12-21 16:27:21 -05004927
Chris Mason39279cc2007-06-12 06:35:45 -04004928static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4929{
Chris Masond1310b22008-01-24 16:13:08 -05004930 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004931
4932
4933 if (current->flags & PF_MEMALLOC) {
4934 redirty_page_for_writepage(wbc, page);
4935 unlock_page(page);
4936 return 0;
4937 }
Chris Masond1310b22008-01-24 16:13:08 -05004938 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004939 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4940}
Chris Mason39279cc2007-06-12 06:35:45 -04004941
Chris Masonf4219502008-07-22 11:18:09 -04004942int btrfs_writepages(struct address_space *mapping,
4943 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04004944{
Chris Masond1310b22008-01-24 16:13:08 -05004945 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004946
Chris Masond1310b22008-01-24 16:13:08 -05004947 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04004948 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4949}
4950
Chris Mason3ab2fb52007-11-08 10:59:22 -05004951static int
4952btrfs_readpages(struct file *file, struct address_space *mapping,
4953 struct list_head *pages, unsigned nr_pages)
4954{
Chris Masond1310b22008-01-24 16:13:08 -05004955 struct extent_io_tree *tree;
4956 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004957 return extent_readpages(tree, mapping, pages, nr_pages,
4958 btrfs_get_extent);
4959}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004960static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004961{
Chris Masond1310b22008-01-24 16:13:08 -05004962 struct extent_io_tree *tree;
4963 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004964 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004965
Chris Masond1310b22008-01-24 16:13:08 -05004966 tree = &BTRFS_I(page->mapping->host)->io_tree;
4967 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004968 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004969 if (ret == 1) {
4970 ClearPagePrivate(page);
4971 set_page_private(page, 0);
4972 page_cache_release(page);
4973 }
4974 return ret;
4975}
Chris Mason39279cc2007-06-12 06:35:45 -04004976
Chris Masone6dcd2d2008-07-17 12:53:50 -04004977static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4978{
Chris Mason98509cf2008-09-11 15:51:43 -04004979 if (PageWriteback(page) || PageDirty(page))
4980 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05004981 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004982}
4983
Chris Masona52d9a82007-08-27 16:49:44 -04004984static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4985{
Chris Masond1310b22008-01-24 16:13:08 -05004986 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004987 struct btrfs_ordered_extent *ordered;
4988 u64 page_start = page_offset(page);
4989 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004990
Chris Mason8b62b722009-09-02 16:53:46 -04004991
4992 /*
4993 * we have the page locked, so new writeback can't start,
4994 * and the dirty bit won't be cleared while we are here.
4995 *
4996 * Wait for IO on this page so that we can safely clear
4997 * the PagePrivate2 bit and do ordered accounting
4998 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004999 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04005000
Chris Masond1310b22008-01-24 16:13:08 -05005001 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005002 if (offset) {
5003 btrfs_releasepage(page, GFP_NOFS);
5004 return;
5005 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005006 lock_extent(tree, page_start, page_end, GFP_NOFS);
5007 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
5008 page_offset(page));
5009 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04005010 /*
5011 * IO on this page will never be started, so we need
5012 * to account for any ordered extents now
5013 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005014 clear_extent_bit(tree, page_start, page_end,
5015 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04005016 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
5017 NULL, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04005018 /*
5019 * whoever cleared the private bit is responsible
5020 * for the finish_ordered_io
5021 */
5022 if (TestClearPagePrivate2(page)) {
5023 btrfs_finish_ordered_io(page->mapping->host,
5024 page_start, page_end);
5025 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005026 btrfs_put_ordered_extent(ordered);
5027 lock_extent(tree, page_start, page_end, GFP_NOFS);
5028 }
5029 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04005030 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
5031 EXTENT_DO_ACCOUNTING, 1, 1, NULL, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005032 __btrfs_releasepage(page, GFP_NOFS);
5033
Chris Mason4a096752008-07-21 10:29:44 -04005034 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04005035 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04005036 ClearPagePrivate(page);
5037 set_page_private(page, 0);
5038 page_cache_release(page);
5039 }
Chris Mason39279cc2007-06-12 06:35:45 -04005040}
5041
Chris Mason9ebefb182007-06-15 13:50:00 -04005042/*
5043 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
5044 * called from a page fault handler when a page is first dirtied. Hence we must
5045 * be careful to check for EOF conditions here. We set the page up correctly
5046 * for a written page which means we get ENOSPC checking when writing into
5047 * holes and correct delalloc and unwritten extent mapping on filesystems that
5048 * support these features.
5049 *
5050 * We are not allowed to take the i_mutex here so we have to play games to
5051 * protect against truncate races as the page could now be beyond EOF. Because
5052 * vmtruncate() writes the inode size before removing pages, once we have the
5053 * page lock we can determine safely if the page is beyond EOF. If it is not
5054 * beyond EOF, then the page is guaranteed safe against truncation until we
5055 * unlock the page.
5056 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07005057int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04005058{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005059 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05005060 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05005061 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005062 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5063 struct btrfs_ordered_extent *ordered;
5064 char *kaddr;
5065 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04005066 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05005067 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04005068 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005069 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04005070
Josef Bacik6a632092009-02-20 11:00:09 -05005071 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07005072 if (ret) {
5073 if (ret == -ENOMEM)
5074 ret = VM_FAULT_OOM;
5075 else /* -ENOSPC, -EIO, etc */
5076 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05005077 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07005078 }
Chris Mason1832a6d2007-12-21 16:27:21 -05005079
Josef Bacik9ed74f22009-09-11 16:12:44 -04005080 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
5081 if (ret) {
5082 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
5083 ret = VM_FAULT_SIGBUS;
5084 goto out;
5085 }
5086
Nick Piggin56a76f82009-03-31 15:23:23 -07005087 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005088again:
Chris Mason9ebefb182007-06-15 13:50:00 -04005089 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04005090 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005091 page_start = page_offset(page);
5092 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04005093
Chris Mason9ebefb182007-06-15 13:50:00 -04005094 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04005095 (page_start >= size)) {
Josef Bacik6a632092009-02-20 11:00:09 -05005096 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Chris Mason9ebefb182007-06-15 13:50:00 -04005097 /* page got truncated out from underneath us */
5098 goto out_unlock;
5099 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005100 wait_on_page_writeback(page);
5101
5102 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
5103 set_page_extent_mapped(page);
5104
Chris Masoneb84ae02008-07-17 13:53:27 -04005105 /*
5106 * we can't set the delalloc bits if there are pending ordered
5107 * extents. Drop our locks and wait for them to finish
5108 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005109 ordered = btrfs_lookup_ordered_extent(inode, page_start);
5110 if (ordered) {
5111 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
5112 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04005113 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005114 btrfs_put_ordered_extent(ordered);
5115 goto again;
5116 }
5117
Josef Bacikfbf19082009-10-01 17:10:23 -04005118 /*
5119 * XXX - page_mkwrite gets called every time the page is dirtied, even
5120 * if it was already dirty, so for space accounting reasons we need to
5121 * clear any delalloc bits for the range we are fixing to save. There
5122 * is probably a better way to do this, but for now keep consistent with
5123 * prepare_pages in the normal write path.
5124 */
5125 clear_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04005126 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
5127 GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04005128
Josef Bacik9ed74f22009-09-11 16:12:44 -04005129 ret = btrfs_set_extent_delalloc(inode, page_start, page_end);
5130 if (ret) {
5131 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
5132 ret = VM_FAULT_SIGBUS;
Josef Bacikfbf19082009-10-01 17:10:23 -04005133 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005134 goto out_unlock;
5135 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005136 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04005137
5138 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04005139 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005140 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04005141 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04005142 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04005143
Chris Masone6dcd2d2008-07-17 12:53:50 -04005144 if (zero_start != PAGE_CACHE_SIZE) {
5145 kaddr = kmap(page);
5146 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
5147 flush_dcache_page(page);
5148 kunmap(page);
5149 }
Chris Mason247e7432008-07-17 12:53:51 -04005150 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005151 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04005152 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005153
Chris Mason257c62e2009-10-13 13:21:08 -04005154 BTRFS_I(inode)->last_trans = root->fs_info->generation;
5155 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
5156
Chris Masone6dcd2d2008-07-17 12:53:50 -04005157 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04005158
5159out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04005160 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason50a9b212009-09-11 12:33:12 -04005161 if (!ret)
5162 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04005163 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05005164out:
Chris Mason9ebefb182007-06-15 13:50:00 -04005165 return ret;
5166}
5167
Chris Mason39279cc2007-06-12 06:35:45 -04005168static void btrfs_truncate(struct inode *inode)
5169{
5170 struct btrfs_root *root = BTRFS_I(inode)->root;
5171 int ret;
5172 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005173 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04005174 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005175
Yan, Zheng80825102009-11-12 09:35:36 +00005176 if (!S_ISREG(inode->i_mode)) {
5177 WARN_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04005178 return;
Yan, Zheng80825102009-11-12 09:35:36 +00005179 }
Chris Mason39279cc2007-06-12 06:35:45 -04005180
Josef Bacik5d5e1032009-10-13 16:46:49 -04005181 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
5182 if (ret)
5183 return;
Yan, Zheng80825102009-11-12 09:35:36 +00005184
Chris Mason4a096752008-07-21 10:29:44 -04005185 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00005186 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005187
Chris Mason39279cc2007-06-12 06:35:45 -04005188 trans = btrfs_start_transaction(root, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00005189 btrfs_set_trans_block_group(trans, inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005190
5191 /*
5192 * setattr is responsible for setting the ordered_data_close flag,
5193 * but that is only tested during the last file release. That
5194 * could happen well after the next commit, leaving a great big
5195 * window where new writes may get lost if someone chooses to write
5196 * to this file after truncating to zero
5197 *
5198 * The inode doesn't have any dirty data here, and so if we commit
5199 * this is a noop. If someone immediately starts writing to the inode
5200 * it is very likely we'll catch some of their writes in this
5201 * transaction, and the commit will find this file on the ordered
5202 * data list with good things to send down.
5203 *
5204 * This is a best effort solution, there is still a window where
5205 * using truncate to replace the contents of the file will
5206 * end up with a zero length file after a crash.
5207 */
5208 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
5209 btrfs_add_ordered_operation(trans, root, inode);
5210
Yan, Zheng80825102009-11-12 09:35:36 +00005211 while (1) {
5212 ret = btrfs_truncate_inode_items(trans, root, inode,
5213 inode->i_size,
5214 BTRFS_EXTENT_DATA_KEY);
5215 if (ret != -EAGAIN)
5216 break;
Chris Mason39279cc2007-06-12 06:35:45 -04005217
Yan, Zheng80825102009-11-12 09:35:36 +00005218 ret = btrfs_update_inode(trans, root, inode);
5219 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005220
Yan, Zheng80825102009-11-12 09:35:36 +00005221 nr = trans->blocks_used;
5222 btrfs_end_transaction(trans, root);
5223 btrfs_btree_balance_dirty(root, nr);
5224
5225 trans = btrfs_start_transaction(root, 1);
5226 btrfs_set_trans_block_group(trans, inode);
5227 }
5228
5229 if (ret == 0 && inode->i_nlink > 0) {
5230 ret = btrfs_orphan_del(trans, inode);
5231 BUG_ON(ret);
5232 }
5233
5234 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04005235 BUG_ON(ret);
5236
Josef Bacik7b128762008-07-24 12:17:14 -04005237 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04005238 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005239 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005240 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005241}
5242
Sven Wegener3b963622008-06-09 21:57:42 -04005243/*
Chris Masond352ac62008-09-29 15:18:18 -04005244 * create a new subvolume directory/inode (helper for the ioctl).
5245 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05005246int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04005247 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005248 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04005249{
Chris Mason39279cc2007-06-12 06:35:45 -04005250 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005251 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005252 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005253
Josef Bacikaec74772008-07-24 12:12:38 -04005254 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005255 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04005256 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005257 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005258 inode->i_op = &btrfs_dir_inode_operations;
5259 inode->i_fop = &btrfs_dir_file_operations;
5260
Chris Mason39279cc2007-06-12 06:35:45 -04005261 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04005262 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04005263
Yan, Zheng76dda932009-09-21 16:00:26 -04005264 err = btrfs_update_inode(trans, new_root, inode);
5265 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005266
Yan, Zheng76dda932009-09-21 16:00:26 -04005267 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005268 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005269}
5270
Chris Masond352ac62008-09-29 15:18:18 -04005271/* helper function for file defrag and space balancing. This
5272 * forces readahead on a given range of bytes in an inode
5273 */
Chris Masonedbd8d42007-12-21 16:27:24 -05005274unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04005275 struct file_ra_state *ra, struct file *file,
5276 pgoff_t offset, pgoff_t last_index)
5277{
Chris Mason8e7bf942008-04-28 09:02:36 -04005278 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04005279
Chris Mason86479a02007-09-10 19:58:16 -04005280 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
5281 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04005282}
5283
Chris Mason39279cc2007-06-12 06:35:45 -04005284struct inode *btrfs_alloc_inode(struct super_block *sb)
5285{
5286 struct btrfs_inode *ei;
5287
5288 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
5289 if (!ei)
5290 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04005291 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04005292 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04005293 ei->logged_trans = 0;
Josef Bacik32c00af2009-10-08 13:34:05 -04005294 ei->outstanding_extents = 0;
5295 ei->reserved_extents = 0;
Josef Bacika6dbd422009-11-11 15:53:34 -05005296 ei->root = NULL;
Josef Bacik32c00af2009-10-08 13:34:05 -04005297 spin_lock_init(&ei->accounting_lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005298 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04005299 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005300 INIT_LIST_HEAD(&ei->ordered_operations);
Chris Mason39279cc2007-06-12 06:35:45 -04005301 return &ei->vfs_inode;
5302}
5303
5304void btrfs_destroy_inode(struct inode *inode)
5305{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005306 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005307 struct btrfs_root *root = BTRFS_I(inode)->root;
5308
Chris Mason39279cc2007-06-12 06:35:45 -04005309 WARN_ON(!list_empty(&inode->i_dentry));
5310 WARN_ON(inode->i_data.nrpages);
5311
Chris Mason5a3f23d2009-03-31 13:27:11 -04005312 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05005313 * This can happen where we create an inode, but somebody else also
5314 * created the same inode and we need to destroy the one we already
5315 * created.
5316 */
5317 if (!root)
5318 goto free;
5319
5320 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04005321 * Make sure we're properly removed from the ordered operation
5322 * lists.
5323 */
5324 smp_mb();
5325 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
5326 spin_lock(&root->fs_info->ordered_extent_lock);
5327 list_del_init(&BTRFS_I(inode)->ordered_operations);
5328 spin_unlock(&root->fs_info->ordered_extent_lock);
5329 }
5330
5331 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005332 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00005333 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
5334 inode->i_ino);
5335 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04005336 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04005337 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005338
Chris Masond3977122009-01-05 21:25:51 -05005339 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005340 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
5341 if (!ordered)
5342 break;
5343 else {
Chris Masond3977122009-01-05 21:25:51 -05005344 printk(KERN_ERR "btrfs found ordered "
5345 "extent %llu %llu on inode cleanup\n",
5346 (unsigned long long)ordered->file_offset,
5347 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005348 btrfs_remove_ordered_extent(inode, ordered);
5349 btrfs_put_ordered_extent(ordered);
5350 btrfs_put_ordered_extent(ordered);
5351 }
5352 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005353 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005354 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05005355free:
Chris Mason39279cc2007-06-12 06:35:45 -04005356 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
5357}
5358
Yan, Zheng76dda932009-09-21 16:00:26 -04005359void btrfs_drop_inode(struct inode *inode)
5360{
5361 struct btrfs_root *root = BTRFS_I(inode)->root;
5362
5363 if (inode->i_nlink > 0 && btrfs_root_refs(&root->root_item) == 0)
5364 generic_delete_inode(inode);
5365 else
5366 generic_drop_inode(inode);
5367}
5368
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005369static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04005370{
5371 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
5372
5373 inode_init_once(&ei->vfs_inode);
5374}
5375
5376void btrfs_destroy_cachep(void)
5377{
5378 if (btrfs_inode_cachep)
5379 kmem_cache_destroy(btrfs_inode_cachep);
5380 if (btrfs_trans_handle_cachep)
5381 kmem_cache_destroy(btrfs_trans_handle_cachep);
5382 if (btrfs_transaction_cachep)
5383 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04005384 if (btrfs_path_cachep)
5385 kmem_cache_destroy(btrfs_path_cachep);
5386}
5387
5388int btrfs_init_cachep(void)
5389{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005390 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
5391 sizeof(struct btrfs_inode), 0,
5392 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04005393 if (!btrfs_inode_cachep)
5394 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005395
5396 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
5397 sizeof(struct btrfs_trans_handle), 0,
5398 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005399 if (!btrfs_trans_handle_cachep)
5400 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005401
5402 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
5403 sizeof(struct btrfs_transaction), 0,
5404 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005405 if (!btrfs_transaction_cachep)
5406 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005407
5408 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
5409 sizeof(struct btrfs_path), 0,
5410 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005411 if (!btrfs_path_cachep)
5412 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005413
Chris Mason39279cc2007-06-12 06:35:45 -04005414 return 0;
5415fail:
5416 btrfs_destroy_cachep();
5417 return -ENOMEM;
5418}
5419
5420static int btrfs_getattr(struct vfsmount *mnt,
5421 struct dentry *dentry, struct kstat *stat)
5422{
5423 struct inode *inode = dentry->d_inode;
5424 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05005425 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05005426 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04005427 stat->blocks = (inode_get_bytes(inode) +
5428 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04005429 return 0;
5430}
5431
Chris Masond3977122009-01-05 21:25:51 -05005432static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
5433 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005434{
5435 struct btrfs_trans_handle *trans;
5436 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005437 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005438 struct inode *new_inode = new_dentry->d_inode;
5439 struct inode *old_inode = old_dentry->d_inode;
5440 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005441 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005442 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04005443 int ret;
5444
Yan, Zhengf679a842009-09-24 09:17:31 -04005445 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5446 return -EPERM;
5447
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005448 /* we only allow rename subvolume link between subvolumes */
5449 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05005450 return -EXDEV;
5451
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005452 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
5453 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
5454 return -ENOTEMPTY;
5455
Chris Mason39279cc2007-06-12 06:35:45 -04005456 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005457 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04005458 return -ENOTEMPTY;
Chris Mason0660b5a2008-11-17 20:37:39 -05005459
Josef Bacik9ed74f22009-09-11 16:12:44 -04005460 /*
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005461 * We want to reserve the absolute worst case amount of items. So if
5462 * both inodes are subvols and we need to unlink them then that would
5463 * require 4 item modifications, but if they are both normal inodes it
5464 * would require 5 item modifications, so we'll assume their normal
5465 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
5466 * should cover the worst case number of items we'll modify.
Josef Bacik9ed74f22009-09-11 16:12:44 -04005467 */
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005468 ret = btrfs_reserve_metadata_space(root, 11);
Chris Mason1832a6d2007-12-21 16:27:21 -05005469 if (ret)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005470 return ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05005471
Chris Mason5a3f23d2009-03-31 13:27:11 -04005472 /*
5473 * we're using rename to replace one file with another.
5474 * and the replacement file is large. Start IO on it now so
5475 * we don't add too much work to the end of the transaction
5476 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04005477 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04005478 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
5479 filemap_flush(old_inode->i_mapping);
5480
Yan, Zheng76dda932009-09-21 16:00:26 -04005481 /* close the racy window with snapshot create/destroy ioctl */
5482 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5483 down_read(&root->fs_info->subvol_sem);
Chris Mason5f39d392007-10-15 16:14:19 -04005484
Chris Mason39279cc2007-06-12 06:35:45 -04005485 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga5719522009-09-24 09:17:31 -04005486 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04005487
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005488 if (dest != root)
5489 btrfs_record_root_in_trans(trans, dest);
5490
Yan, Zhenga5719522009-09-24 09:17:31 -04005491 ret = btrfs_set_inode_index(new_dir, &index);
5492 if (ret)
5493 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005494
Yan, Zhenga5719522009-09-24 09:17:31 -04005495 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005496 /* force full log commit if subvolume involved. */
5497 root->fs_info->last_trans_log_full_commit = trans->transid;
5498 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04005499 ret = btrfs_insert_inode_ref(trans, dest,
5500 new_dentry->d_name.name,
5501 new_dentry->d_name.len,
5502 old_inode->i_ino,
5503 new_dir->i_ino, index);
5504 if (ret)
5505 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005506 /*
5507 * this is an ugly little race, but the rename is required
5508 * to make sure that if we crash, the inode is either at the
5509 * old name or the new one. pinning the log transaction lets
5510 * us make sure we don't allow a log commit to come in after
5511 * we unlink the name but before we add the new name back in.
5512 */
5513 btrfs_pin_log_trans(root);
5514 }
Chris Mason12fcfd22009-03-24 10:24:20 -04005515 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04005516 * make sure the inode gets flushed if it is replacing
5517 * something.
5518 */
5519 if (new_inode && new_inode->i_size &&
5520 old_inode && S_ISREG(old_inode->i_mode)) {
5521 btrfs_add_ordered_operation(trans, root, old_inode);
5522 }
5523
Chris Mason39279cc2007-06-12 06:35:45 -04005524 old_dir->i_ctime = old_dir->i_mtime = ctime;
5525 new_dir->i_ctime = new_dir->i_mtime = ctime;
5526 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04005527
Chris Mason12fcfd22009-03-24 10:24:20 -04005528 if (old_dentry->d_parent != new_dentry->d_parent)
5529 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
5530
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005531 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
5532 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
5533 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
5534 old_dentry->d_name.name,
5535 old_dentry->d_name.len);
5536 } else {
5537 btrfs_inc_nlink(old_dentry->d_inode);
5538 ret = btrfs_unlink_inode(trans, root, old_dir,
5539 old_dentry->d_inode,
5540 old_dentry->d_name.name,
5541 old_dentry->d_name.len);
5542 }
5543 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005544
5545 if (new_inode) {
5546 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005547 if (unlikely(new_inode->i_ino ==
5548 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
5549 root_objectid = BTRFS_I(new_inode)->location.objectid;
5550 ret = btrfs_unlink_subvol(trans, dest, new_dir,
5551 root_objectid,
5552 new_dentry->d_name.name,
5553 new_dentry->d_name.len);
5554 BUG_ON(new_inode->i_nlink == 0);
5555 } else {
5556 ret = btrfs_unlink_inode(trans, dest, new_dir,
5557 new_dentry->d_inode,
5558 new_dentry->d_name.name,
5559 new_dentry->d_name.len);
5560 }
5561 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005562 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04005563 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005564 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005565 }
Chris Mason39279cc2007-06-12 06:35:45 -04005566 }
Josef Bacikaec74772008-07-24 12:12:38 -04005567
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005568 ret = btrfs_add_link(trans, new_dir, old_inode,
5569 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04005570 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005571 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005572
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005573 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
5574 btrfs_log_new_name(trans, old_inode, old_dir,
5575 new_dentry->d_parent);
5576 btrfs_end_log_trans(root);
5577 }
Chris Mason39279cc2007-06-12 06:35:45 -04005578out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04005579 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005580
Yan, Zheng76dda932009-09-21 16:00:26 -04005581 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5582 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005583
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005584 btrfs_unreserve_metadata_space(root, 11);
Chris Mason39279cc2007-06-12 06:35:45 -04005585 return ret;
5586}
5587
Chris Masond352ac62008-09-29 15:18:18 -04005588/*
5589 * some fairly slow code that needs optimization. This walks the list
5590 * of all the inodes with pending delalloc and forces them to disk.
5591 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00005592int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04005593{
5594 struct list_head *head = &root->fs_info->delalloc_inodes;
5595 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005596 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04005597
Yan Zhengc146afa2008-11-12 14:34:12 -05005598 if (root->fs_info->sb->s_flags & MS_RDONLY)
5599 return -EROFS;
5600
Chris Mason75eff682008-12-15 15:54:40 -05005601 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05005602 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04005603 binode = list_entry(head->next, struct btrfs_inode,
5604 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005605 inode = igrab(&binode->vfs_inode);
5606 if (!inode)
5607 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05005608 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005609 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005610 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00005611 if (delay_iput)
5612 btrfs_add_delayed_iput(inode);
5613 else
5614 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005615 }
5616 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05005617 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04005618 }
Chris Mason75eff682008-12-15 15:54:40 -05005619 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04005620
5621 /* the filemap_flush will queue IO into the worker threads, but
5622 * we have to make sure the IO is actually started and that
5623 * ordered extents get created before we return
5624 */
5625 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05005626 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05005627 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005628 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05005629 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
5630 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04005631 }
5632 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04005633 return 0;
5634}
5635
Chris Mason39279cc2007-06-12 06:35:45 -04005636static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
5637 const char *symname)
5638{
5639 struct btrfs_trans_handle *trans;
5640 struct btrfs_root *root = BTRFS_I(dir)->root;
5641 struct btrfs_path *path;
5642 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05005643 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005644 int err;
5645 int drop_inode = 0;
5646 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005647 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04005648 int name_len;
5649 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04005650 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04005651 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04005652 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05005653 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005654
5655 name_len = strlen(symname) + 1;
5656 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
5657 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05005658
Josef Bacik9ed74f22009-09-11 16:12:44 -04005659 /*
5660 * 2 items for inode item and ref
5661 * 2 items for dir items
5662 * 1 item for xattr if selinux is on
5663 */
5664 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05005665 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04005666 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05005667
Chris Mason39279cc2007-06-12 06:35:45 -04005668 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005669 if (!trans)
5670 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04005671 btrfs_set_trans_block_group(trans, dir);
5672
5673 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
5674 if (err) {
5675 err = -ENOSPC;
5676 goto out_unlock;
5677 }
5678
Josef Bacikaec74772008-07-24 12:12:38 -04005679 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05005680 dentry->d_name.len,
5681 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04005682 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
5683 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005684 err = PTR_ERR(inode);
5685 if (IS_ERR(inode))
5686 goto out_unlock;
5687
Yan, Zhengf34f57a2009-11-12 09:35:27 +00005688 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04005689 if (err) {
5690 drop_inode = 1;
5691 goto out_unlock;
5692 }
5693
Chris Mason39279cc2007-06-12 06:35:45 -04005694 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04005695 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005696 if (err)
5697 drop_inode = 1;
5698 else {
5699 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005700 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04005701 inode->i_fop = &btrfs_file_operations;
5702 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05005703 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04005704 }
Chris Mason39279cc2007-06-12 06:35:45 -04005705 btrfs_update_inode_block_group(trans, inode);
5706 btrfs_update_inode_block_group(trans, dir);
5707 if (drop_inode)
5708 goto out_unlock;
5709
5710 path = btrfs_alloc_path();
5711 BUG_ON(!path);
5712 key.objectid = inode->i_ino;
5713 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005714 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
5715 datasize = btrfs_file_extent_calc_inline_size(name_len);
5716 err = btrfs_insert_empty_item(trans, root, path, &key,
5717 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005718 if (err) {
5719 drop_inode = 1;
5720 goto out_unlock;
5721 }
Chris Mason5f39d392007-10-15 16:14:19 -04005722 leaf = path->nodes[0];
5723 ei = btrfs_item_ptr(leaf, path->slots[0],
5724 struct btrfs_file_extent_item);
5725 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
5726 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04005727 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04005728 btrfs_set_file_extent_encryption(leaf, ei, 0);
5729 btrfs_set_file_extent_compression(leaf, ei, 0);
5730 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
5731 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
5732
Chris Mason39279cc2007-06-12 06:35:45 -04005733 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04005734 write_extent_buffer(leaf, symname, ptr, name_len);
5735 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04005736 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04005737
Chris Mason39279cc2007-06-12 06:35:45 -04005738 inode->i_op = &btrfs_symlink_inode_operations;
5739 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04005740 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04005741 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04005742 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005743 err = btrfs_update_inode(trans, root, inode);
5744 if (err)
5745 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005746
5747out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005748 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04005749 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005750out_fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04005751 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04005752 if (drop_inode) {
5753 inode_dec_link_count(inode);
5754 iput(inode);
5755 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005756 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005757 return err;
5758}
Chris Mason16432982008-04-10 10:23:21 -04005759
Yan, Zheng5a303d52009-11-12 09:34:52 +00005760static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005761 u64 alloc_hint, int mode, loff_t actual_len)
Yan Zhengd899e052008-10-30 14:25:28 -04005762{
Yan, Zheng5a303d52009-11-12 09:34:52 +00005763 struct btrfs_trans_handle *trans;
Yan Zhengd899e052008-10-30 14:25:28 -04005764 struct btrfs_root *root = BTRFS_I(inode)->root;
5765 struct btrfs_key ins;
5766 u64 alloc_size;
5767 u64 cur_offset = start;
5768 u64 num_bytes = end - start;
5769 int ret = 0;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005770 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04005771
Yan Zhengd899e052008-10-30 14:25:28 -04005772 while (num_bytes > 0) {
5773 alloc_size = min(num_bytes, root->fs_info->max_extent);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005774
Chris Mason3a1abec2009-12-17 15:47:17 -05005775 trans = btrfs_start_transaction(root, 1);
5776
Yan Zhengd899e052008-10-30 14:25:28 -04005777 ret = btrfs_reserve_extent(trans, root, alloc_size,
5778 root->sectorsize, 0, alloc_hint,
5779 (u64)-1, &ins, 1);
5780 if (ret) {
5781 WARN_ON(1);
Chris Mason3a1abec2009-12-17 15:47:17 -05005782 goto stop_trans;
Yan Zhengd899e052008-10-30 14:25:28 -04005783 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00005784
5785 ret = btrfs_reserve_metadata_space(root, 3);
5786 if (ret) {
5787 btrfs_free_reserved_extent(root, ins.objectid,
5788 ins.offset);
Chris Mason3a1abec2009-12-17 15:47:17 -05005789 goto stop_trans;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005790 }
5791
Yan Zhengd899e052008-10-30 14:25:28 -04005792 ret = insert_reserved_file_extent(trans, inode,
5793 cur_offset, ins.objectid,
5794 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00005795 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04005796 BTRFS_FILE_EXTENT_PREALLOC);
5797 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04005798 btrfs_drop_extent_cache(inode, cur_offset,
5799 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00005800
Yan Zhengd899e052008-10-30 14:25:28 -04005801 num_bytes -= ins.offset;
5802 cur_offset += ins.offset;
5803 alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005804
Yan Zhengd899e052008-10-30 14:25:28 -04005805 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005806 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04005807 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Aneesh Kumar K.V23b5c502010-02-04 11:33:03 -05005808 (actual_len > inode->i_size) &&
5809 (cur_offset > inode->i_size)) {
5810
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005811 if (cur_offset > actual_len)
5812 i_size = actual_len;
5813 else
5814 i_size = cur_offset;
5815 i_size_write(inode, i_size);
5816 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00005817 }
5818
Yan Zhengd899e052008-10-30 14:25:28 -04005819 ret = btrfs_update_inode(trans, root, inode);
5820 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04005821
Yan, Zheng5a303d52009-11-12 09:34:52 +00005822 btrfs_end_transaction(trans, root);
5823 btrfs_unreserve_metadata_space(root, 3);
5824 }
Yan Zhengd899e052008-10-30 14:25:28 -04005825 return ret;
Chris Mason3a1abec2009-12-17 15:47:17 -05005826
5827stop_trans:
5828 btrfs_end_transaction(trans, root);
5829 return ret;
5830
Yan Zhengd899e052008-10-30 14:25:28 -04005831}
5832
5833static long btrfs_fallocate(struct inode *inode, int mode,
5834 loff_t offset, loff_t len)
5835{
5836 u64 cur_offset;
5837 u64 last_byte;
5838 u64 alloc_start;
5839 u64 alloc_end;
5840 u64 alloc_hint = 0;
Chris Masone980b502009-04-24 14:39:24 -04005841 u64 locked_end;
Yan Zhengd899e052008-10-30 14:25:28 -04005842 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
5843 struct extent_map *em;
5844 int ret;
5845
5846 alloc_start = offset & ~mask;
5847 alloc_end = (offset + len + mask) & ~mask;
5848
Chris Mason546888d2009-04-21 11:53:38 -04005849 /*
5850 * wait for ordered IO before we have any locks. We'll loop again
5851 * below with the locks held.
5852 */
5853 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
5854
Yan Zhengd899e052008-10-30 14:25:28 -04005855 mutex_lock(&inode->i_mutex);
5856 if (alloc_start > inode->i_size) {
5857 ret = btrfs_cont_expand(inode, alloc_start);
5858 if (ret)
5859 goto out;
5860 }
5861
Yan, Zheng5a303d52009-11-12 09:34:52 +00005862 ret = btrfs_check_data_free_space(BTRFS_I(inode)->root, inode,
Josef Bacika970b0a2009-06-27 21:07:34 -04005863 alloc_end - alloc_start);
5864 if (ret)
5865 goto out;
5866
Chris Masone980b502009-04-24 14:39:24 -04005867 locked_end = alloc_end - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04005868 while (1) {
5869 struct btrfs_ordered_extent *ordered;
Chris Mason546888d2009-04-21 11:53:38 -04005870
Chris Mason546888d2009-04-21 11:53:38 -04005871 /* the extent lock is ordered inside the running
5872 * transaction
5873 */
Chris Masone980b502009-04-24 14:39:24 -04005874 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
5875 GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04005876 ordered = btrfs_lookup_first_ordered_extent(inode,
5877 alloc_end - 1);
5878 if (ordered &&
5879 ordered->file_offset + ordered->len > alloc_start &&
5880 ordered->file_offset < alloc_end) {
5881 btrfs_put_ordered_extent(ordered);
5882 unlock_extent(&BTRFS_I(inode)->io_tree,
Chris Masone980b502009-04-24 14:39:24 -04005883 alloc_start, locked_end, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005884 /*
5885 * we can't wait on the range with the transaction
5886 * running or with the extent lock held
5887 */
Yan Zhengd899e052008-10-30 14:25:28 -04005888 btrfs_wait_ordered_range(inode, alloc_start,
5889 alloc_end - alloc_start);
5890 } else {
5891 if (ordered)
5892 btrfs_put_ordered_extent(ordered);
5893 break;
5894 }
5895 }
5896
5897 cur_offset = alloc_start;
5898 while (1) {
5899 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
5900 alloc_end - cur_offset, 0);
5901 BUG_ON(IS_ERR(em) || !em);
5902 last_byte = min(extent_map_end(em), alloc_end);
5903 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005904 if (em->block_start == EXTENT_MAP_HOLE ||
5905 (cur_offset >= inode->i_size &&
5906 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5907 ret = prealloc_file_range(inode,
5908 cur_offset, last_byte,
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005909 alloc_hint, mode, offset+len);
Yan Zhengd899e052008-10-30 14:25:28 -04005910 if (ret < 0) {
5911 free_extent_map(em);
5912 break;
5913 }
5914 }
5915 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
5916 alloc_hint = em->block_start;
5917 free_extent_map(em);
5918
5919 cur_offset = last_byte;
5920 if (cur_offset >= alloc_end) {
5921 ret = 0;
5922 break;
5923 }
5924 }
Chris Masone980b502009-04-24 14:39:24 -04005925 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
Yan Zhengd899e052008-10-30 14:25:28 -04005926 GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005927
Yan, Zheng5a303d52009-11-12 09:34:52 +00005928 btrfs_free_reserved_data_space(BTRFS_I(inode)->root, inode,
5929 alloc_end - alloc_start);
Yan Zhengd899e052008-10-30 14:25:28 -04005930out:
5931 mutex_unlock(&inode->i_mutex);
5932 return ret;
5933}
5934
Chris Masone6dcd2d2008-07-17 12:53:50 -04005935static int btrfs_set_page_dirty(struct page *page)
5936{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005937 return __set_page_dirty_nobuffers(page);
5938}
5939
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005940static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05005941{
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005942 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05005943 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04005944 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05005945}
Chris Mason39279cc2007-06-12 06:35:45 -04005946
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07005947static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05005948 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04005949 .lookup = btrfs_lookup,
5950 .create = btrfs_create,
5951 .unlink = btrfs_unlink,
5952 .link = btrfs_link,
5953 .mkdir = btrfs_mkdir,
5954 .rmdir = btrfs_rmdir,
5955 .rename = btrfs_rename,
5956 .symlink = btrfs_symlink,
5957 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005958 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005959 .setxattr = btrfs_setxattr,
5960 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005961 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005962 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005963 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005964};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07005965static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04005966 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05005967 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005968};
Yan, Zheng76dda932009-09-21 16:00:26 -04005969
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005970static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04005971 .llseek = generic_file_llseek,
5972 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01005973 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04005974 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04005975#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04005976 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04005977#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04005978 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04005979 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04005980};
5981
Chris Masond1310b22008-01-24 16:13:08 -05005982static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04005983 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05005984 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04005985 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005986 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005987 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04005988 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04005989 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05005990 .set_bit_hook = btrfs_set_bit_hook,
5991 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005992 .merge_extent_hook = btrfs_merge_extent_hook,
5993 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005994};
5995
Chris Mason35054392009-01-21 13:11:13 -05005996/*
5997 * btrfs doesn't support the bmap operation because swapfiles
5998 * use bmap to make a mapping of extents in the file. They assume
5999 * these extents won't change over the life of the file and they
6000 * use the bmap result to do IO directly to the drive.
6001 *
6002 * the btrfs bmap call would return logical addresses that aren't
6003 * suitable for IO and they also will change frequently as COW
6004 * operations happen. So, swapfile + btrfs == corruption.
6005 *
6006 * For now we're avoiding this by dropping bmap.
6007 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07006008static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04006009 .readpage = btrfs_readpage,
6010 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04006011 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05006012 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04006013 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04006014 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04006015 .invalidatepage = btrfs_invalidatepage,
6016 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006017 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02006018 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04006019};
6020
Alexey Dobriyan7f094102009-09-21 17:01:10 -07006021static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04006022 .readpage = btrfs_readpage,
6023 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04006024 .invalidatepage = btrfs_invalidatepage,
6025 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04006026};
6027
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006028static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04006029 .truncate = btrfs_truncate,
6030 .getattr = btrfs_getattr,
6031 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006032 .setxattr = btrfs_setxattr,
6033 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05006034 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006035 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05006036 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04006037 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006038 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04006039};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006040static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04006041 .getattr = btrfs_getattr,
6042 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05006043 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006044 .setxattr = btrfs_setxattr,
6045 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04006046 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006047 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04006048};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006049static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04006050 .readlink = generic_readlink,
6051 .follow_link = page_follow_link_light,
6052 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05006053 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05006054 .setxattr = btrfs_setxattr,
6055 .getxattr = btrfs_getxattr,
6056 .listxattr = btrfs_listxattr,
6057 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04006058};
Yan, Zheng76dda932009-09-21 16:00:26 -04006059
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04006060const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04006061 .d_delete = btrfs_dentry_delete,
6062};