blob: 8cd109972fa6ba48d0a0909eb0362ccd96f85c4e [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 Masonf03d9302009-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 Masonc8b97812008-10-29 14:49:59 -0400382 btrfs_test_opt(root, COMPRESS)) {
383 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400384 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400385
Chris Masonc8b97812008-10-29 14:49:59 -0400386 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
387 total_compressed, pages,
388 nr_pages, &nr_pages_ret,
389 &total_in,
390 &total_compressed,
391 max_compressed);
392
393 if (!ret) {
394 unsigned long offset = total_compressed &
395 (PAGE_CACHE_SIZE - 1);
396 struct page *page = pages[nr_pages_ret - 1];
397 char *kaddr;
398
399 /* zero the tail end of the last page, we might be
400 * sending it down to disk
401 */
402 if (offset) {
403 kaddr = kmap_atomic(page, KM_USER0);
404 memset(kaddr + offset, 0,
405 PAGE_CACHE_SIZE - offset);
406 kunmap_atomic(kaddr, KM_USER0);
407 }
408 will_compress = 1;
409 }
410 }
411 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500412 trans = btrfs_join_transaction(root, 1);
413 BUG_ON(!trans);
414 btrfs_set_trans_block_group(trans, inode);
415
Chris Masonc8b97812008-10-29 14:49:59 -0400416 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500417 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400418 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500419 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400420 */
421 ret = cow_file_range_inline(trans, root, inode,
422 start, end, 0, NULL);
423 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500424 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400425 ret = cow_file_range_inline(trans, root, inode,
426 start, end,
427 total_compressed, pages);
428 }
429 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500430 /*
431 * inline extent creation worked, we don't need
432 * to create any more async work items. Unlock
433 * and free up our temp pages.
434 */
Chris Masonc8b97812008-10-29 14:49:59 -0400435 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400436 &BTRFS_I(inode)->io_tree,
437 start, end, NULL,
438 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400439 EXTENT_CLEAR_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -0400440 EXTENT_CLEAR_ACCOUNTING |
Chris Masona791e352009-10-08 11:27:10 -0400441 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000442
443 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400444 goto free_pages_out;
445 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000446 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400447 }
448
449 if (will_compress) {
450 /*
451 * we aren't doing an inline extent round the compressed size
452 * up to a block size boundary so the allocator does sane
453 * things
454 */
455 total_compressed = (total_compressed + blocksize - 1) &
456 ~(blocksize - 1);
457
458 /*
459 * one last check to make sure the compression is really a
460 * win, compare the page count read with the blocks on disk
461 */
462 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
463 ~(PAGE_CACHE_SIZE - 1);
464 if (total_compressed >= total_in) {
465 will_compress = 0;
466 } else {
467 disk_num_bytes = total_compressed;
468 num_bytes = total_in;
469 }
470 }
471 if (!will_compress && pages) {
472 /*
473 * the compression code ran but failed to make things smaller,
474 * free any pages it allocated and our page pointer array
475 */
476 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400477 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400478 page_cache_release(pages[i]);
479 }
480 kfree(pages);
481 pages = NULL;
482 total_compressed = 0;
483 nr_pages_ret = 0;
484
485 /* flag the file so we don't compress in the future */
Chris Masona555f812010-01-28 16:18:15 -0500486 if (!btrfs_test_opt(root, FORCE_COMPRESS))
487 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Masonc8b97812008-10-29 14:49:59 -0400488 }
Chris Mason771ed682008-11-06 22:02:51 -0500489 if (will_compress) {
490 *num_added += 1;
491
492 /* the async work queues will take care of doing actual
493 * allocation on disk for these compressed pages,
494 * and will submit them to the elevator.
495 */
496 add_async_extent(async_cow, start, num_bytes,
497 total_compressed, pages, nr_pages_ret);
498
Chris Mason42dc7ba2008-12-15 11:44:56 -0500499 if (start + num_bytes < end && start + num_bytes < actual_end) {
Chris Mason771ed682008-11-06 22:02:51 -0500500 start += num_bytes;
501 pages = NULL;
502 cond_resched();
503 goto again;
504 }
505 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500506cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500507 /*
508 * No compression, but we still need to write the pages in
509 * the file we've been given so far. redirty the locked
510 * page if it corresponds to our extent and set things up
511 * for the async work queue to run cow_file_range to do
512 * the normal delalloc dance
513 */
514 if (page_offset(locked_page) >= start &&
515 page_offset(locked_page) <= end) {
516 __set_page_dirty_nobuffers(locked_page);
517 /* unlocked later on in the async handlers */
518 }
519 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
520 *num_added += 1;
521 }
522
523out:
524 return 0;
525
526free_pages_out:
527 for (i = 0; i < nr_pages_ret; i++) {
528 WARN_ON(pages[i]->mapping);
529 page_cache_release(pages[i]);
530 }
Chris Masond3977122009-01-05 21:25:51 -0500531 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500532
533 goto out;
534}
535
536/*
537 * phase two of compressed writeback. This is the ordered portion
538 * of the code, which only gets called in the order the work was
539 * queued. We walk all the async extents created by compress_file_range
540 * and send them down to the disk.
541 */
542static noinline int submit_compressed_extents(struct inode *inode,
543 struct async_cow *async_cow)
544{
545 struct async_extent *async_extent;
546 u64 alloc_hint = 0;
547 struct btrfs_trans_handle *trans;
548 struct btrfs_key ins;
549 struct extent_map *em;
550 struct btrfs_root *root = BTRFS_I(inode)->root;
551 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
552 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500553 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500554
555 if (list_empty(&async_cow->extents))
556 return 0;
557
Chris Mason771ed682008-11-06 22:02:51 -0500558
Chris Masond3977122009-01-05 21:25:51 -0500559 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500560 async_extent = list_entry(async_cow->extents.next,
561 struct async_extent, list);
562 list_del(&async_extent->list);
563
564 io_tree = &BTRFS_I(inode)->io_tree;
565
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500566retry:
Chris Mason771ed682008-11-06 22:02:51 -0500567 /* did the compression code fall back to uncompressed IO? */
568 if (!async_extent->pages) {
569 int page_started = 0;
570 unsigned long nr_written = 0;
571
572 lock_extent(io_tree, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500573 async_extent->start +
574 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500575
576 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500577 ret = cow_file_range(inode, async_cow->locked_page,
578 async_extent->start,
579 async_extent->start +
580 async_extent->ram_size - 1,
581 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500582
583 /*
584 * if page_started, cow_file_range inserted an
585 * inline extent and took care of all the unlocking
586 * and IO for us. Otherwise, we need to submit
587 * all those pages down to the drive.
588 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500589 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500590 extent_write_locked_range(io_tree,
591 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500592 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500593 async_extent->ram_size - 1,
594 btrfs_get_extent,
595 WB_SYNC_ALL);
596 kfree(async_extent);
597 cond_resched();
598 continue;
599 }
600
601 lock_extent(io_tree, async_extent->start,
602 async_extent->start + async_extent->ram_size - 1,
603 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500604
Yan, Zhengc2167752009-11-12 09:34:21 +0000605 trans = btrfs_join_transaction(root, 1);
Chris Mason771ed682008-11-06 22:02:51 -0500606 ret = btrfs_reserve_extent(trans, root,
607 async_extent->compressed_size,
608 async_extent->compressed_size,
609 0, alloc_hint,
610 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000611 btrfs_end_transaction(trans, root);
612
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500613 if (ret) {
614 int i;
615 for (i = 0; i < async_extent->nr_pages; i++) {
616 WARN_ON(async_extent->pages[i]->mapping);
617 page_cache_release(async_extent->pages[i]);
618 }
619 kfree(async_extent->pages);
620 async_extent->nr_pages = 0;
621 async_extent->pages = NULL;
622 unlock_extent(io_tree, async_extent->start,
623 async_extent->start +
624 async_extent->ram_size - 1, GFP_NOFS);
625 goto retry;
626 }
627
Yan, Zhengc2167752009-11-12 09:34:21 +0000628 /*
629 * here we're doing allocation and writeback of the
630 * compressed pages
631 */
632 btrfs_drop_extent_cache(inode, async_extent->start,
633 async_extent->start +
634 async_extent->ram_size - 1, 0);
635
Chris Mason771ed682008-11-06 22:02:51 -0500636 em = alloc_extent_map(GFP_NOFS);
637 em->start = async_extent->start;
638 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500639 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500640
641 em->block_start = ins.objectid;
642 em->block_len = ins.offset;
643 em->bdev = root->fs_info->fs_devices->latest_bdev;
644 set_bit(EXTENT_FLAG_PINNED, &em->flags);
645 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
646
Chris Masond3977122009-01-05 21:25:51 -0500647 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400648 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500649 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400650 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500651 if (ret != -EEXIST) {
652 free_extent_map(em);
653 break;
654 }
655 btrfs_drop_extent_cache(inode, async_extent->start,
656 async_extent->start +
657 async_extent->ram_size - 1, 0);
658 }
659
660 ret = btrfs_add_ordered_extent(inode, async_extent->start,
661 ins.objectid,
662 async_extent->ram_size,
663 ins.offset,
664 BTRFS_ORDERED_COMPRESSED);
665 BUG_ON(ret);
666
Chris Mason771ed682008-11-06 22:02:51 -0500667 /*
668 * clear dirty, set writeback and unlock the pages.
669 */
670 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400671 &BTRFS_I(inode)->io_tree,
672 async_extent->start,
673 async_extent->start +
674 async_extent->ram_size - 1,
675 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
676 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400677 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400678 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500679
680 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500681 async_extent->start,
682 async_extent->ram_size,
683 ins.objectid,
684 ins.offset, async_extent->pages,
685 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500686
687 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500688 alloc_hint = ins.objectid + ins.offset;
689 kfree(async_extent);
690 cond_resched();
691 }
692
Chris Mason771ed682008-11-06 22:02:51 -0500693 return 0;
694}
695
696/*
697 * when extent_io.c finds a delayed allocation range in the file,
698 * the call backs end up in this code. The basic idea is to
699 * allocate extents on disk for the range, and create ordered data structs
700 * in ram to track those extents.
701 *
702 * locked_page is the page that writepage had locked already. We use
703 * it to make sure we don't do extra locks or unlocks.
704 *
705 * *page_started is set to one if we unlock locked_page and do everything
706 * required to start IO on it. It may be clean and already done with
707 * IO when we return.
708 */
709static noinline int cow_file_range(struct inode *inode,
710 struct page *locked_page,
711 u64 start, u64 end, int *page_started,
712 unsigned long *nr_written,
713 int unlock)
714{
715 struct btrfs_root *root = BTRFS_I(inode)->root;
716 struct btrfs_trans_handle *trans;
717 u64 alloc_hint = 0;
718 u64 num_bytes;
719 unsigned long ram_size;
720 u64 disk_num_bytes;
721 u64 cur_alloc_size;
722 u64 blocksize = root->sectorsize;
723 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500724 u64 isize = i_size_read(inode);
Chris Mason771ed682008-11-06 22:02:51 -0500725 struct btrfs_key ins;
726 struct extent_map *em;
727 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
728 int ret = 0;
729
730 trans = btrfs_join_transaction(root, 1);
731 BUG_ON(!trans);
732 btrfs_set_trans_block_group(trans, inode);
733
Chris Mason42dc7ba2008-12-15 11:44:56 -0500734 actual_end = min_t(u64, isize, end + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500735
736 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
737 num_bytes = max(blocksize, num_bytes);
738 disk_num_bytes = num_bytes;
739 ret = 0;
740
741 if (start == 0) {
742 /* lets try to make an inline extent */
743 ret = cow_file_range_inline(trans, root, inode,
744 start, end, 0, NULL);
745 if (ret == 0) {
746 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400747 &BTRFS_I(inode)->io_tree,
748 start, end, NULL,
749 EXTENT_CLEAR_UNLOCK_PAGE |
750 EXTENT_CLEAR_UNLOCK |
751 EXTENT_CLEAR_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -0400752 EXTENT_CLEAR_ACCOUNTING |
Chris Masona791e352009-10-08 11:27:10 -0400753 EXTENT_CLEAR_DIRTY |
754 EXTENT_SET_WRITEBACK |
755 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000756
Chris Mason771ed682008-11-06 22:02:51 -0500757 *nr_written = *nr_written +
758 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
759 *page_started = 1;
760 ret = 0;
761 goto out;
762 }
763 }
Chris Masonc8b97812008-10-29 14:49:59 -0400764
765 BUG_ON(disk_num_bytes >
766 btrfs_super_total_bytes(&root->fs_info->super_copy));
767
Chris Masonb917b7c2009-09-18 16:07:03 -0400768
769 read_lock(&BTRFS_I(inode)->extent_tree.lock);
770 em = search_extent_mapping(&BTRFS_I(inode)->extent_tree,
771 start, num_bytes);
772 if (em) {
Josef Bacik6346c932009-11-10 21:23:47 -0500773 /*
774 * if block start isn't an actual block number then find the
775 * first block in this inode and use that as a hint. If that
776 * block is also bogus then just don't worry about it.
777 */
778 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
779 free_extent_map(em);
780 em = search_extent_mapping(em_tree, 0, 0);
781 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
782 alloc_hint = em->block_start;
783 if (em)
784 free_extent_map(em);
785 } else {
786 alloc_hint = em->block_start;
787 free_extent_map(em);
788 }
Chris Masonb917b7c2009-09-18 16:07:03 -0400789 }
790 read_unlock(&BTRFS_I(inode)->extent_tree.lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400791 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400792
Chris Masond3977122009-01-05 21:25:51 -0500793 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400794 unsigned long op;
795
Chris Masonc8b97812008-10-29 14:49:59 -0400796 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400797 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500798 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400799 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500800 BUG_ON(ret);
801
Chris Masone6dcd2d2008-07-17 12:53:50 -0400802 em = alloc_extent_map(GFP_NOFS);
803 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500804 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500805 ram_size = ins.offset;
806 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400807
Chris Masone6dcd2d2008-07-17 12:53:50 -0400808 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400809 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400810 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400811 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400812
Chris Masond3977122009-01-05 21:25:51 -0500813 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400814 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400815 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400816 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400817 if (ret != -EEXIST) {
818 free_extent_map(em);
819 break;
820 }
821 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400822 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400823 }
824
Chris Mason98d20f62008-04-14 09:46:10 -0400825 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400826 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500827 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400828 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400829
Yan Zheng17d217f2008-12-12 10:03:38 -0500830 if (root->root_key.objectid ==
831 BTRFS_DATA_RELOC_TREE_OBJECTID) {
832 ret = btrfs_reloc_clone_csums(inode, start,
833 cur_alloc_size);
834 BUG_ON(ret);
835 }
836
Chris Masond3977122009-01-05 21:25:51 -0500837 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400838 break;
Chris Masond3977122009-01-05 21:25:51 -0500839
Chris Masonc8b97812008-10-29 14:49:59 -0400840 /* we're not doing compressed IO, don't unlock the first
841 * page (which the caller expects to stay locked), don't
842 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400843 *
844 * Do set the Private2 bit so we know this page was properly
845 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400846 */
Chris Masona791e352009-10-08 11:27:10 -0400847 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
848 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
849 EXTENT_SET_PRIVATE2;
850
Chris Masonc8b97812008-10-29 14:49:59 -0400851 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
852 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400853 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400854 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500855 num_bytes -= cur_alloc_size;
856 alloc_hint = ins.objectid + ins.offset;
857 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400858 }
Chris Masonb888db22007-08-27 16:49:44 -0400859out:
Chris Mason771ed682008-11-06 22:02:51 -0500860 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400861 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400862
Chris Masonbe20aa92007-12-17 20:14:01 -0500863 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500864}
Chris Masonc8b97812008-10-29 14:49:59 -0400865
Chris Mason771ed682008-11-06 22:02:51 -0500866/*
867 * work queue call back to started compression on a file and pages
868 */
869static noinline void async_cow_start(struct btrfs_work *work)
870{
871 struct async_cow *async_cow;
872 int num_added = 0;
873 async_cow = container_of(work, struct async_cow, work);
874
875 compress_file_range(async_cow->inode, async_cow->locked_page,
876 async_cow->start, async_cow->end, async_cow,
877 &num_added);
878 if (num_added == 0)
879 async_cow->inode = NULL;
880}
881
882/*
883 * work queue call back to submit previously compressed pages
884 */
885static noinline void async_cow_submit(struct btrfs_work *work)
886{
887 struct async_cow *async_cow;
888 struct btrfs_root *root;
889 unsigned long nr_pages;
890
891 async_cow = container_of(work, struct async_cow, work);
892
893 root = async_cow->root;
894 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
895 PAGE_CACHE_SHIFT;
896
897 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
898
899 if (atomic_read(&root->fs_info->async_delalloc_pages) <
900 5 * 1042 * 1024 &&
901 waitqueue_active(&root->fs_info->async_submit_wait))
902 wake_up(&root->fs_info->async_submit_wait);
903
Chris Masond3977122009-01-05 21:25:51 -0500904 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500905 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500906}
Chris Masonc8b97812008-10-29 14:49:59 -0400907
Chris Mason771ed682008-11-06 22:02:51 -0500908static noinline void async_cow_free(struct btrfs_work *work)
909{
910 struct async_cow *async_cow;
911 async_cow = container_of(work, struct async_cow, work);
912 kfree(async_cow);
913}
914
915static int cow_file_range_async(struct inode *inode, struct page *locked_page,
916 u64 start, u64 end, int *page_started,
917 unsigned long *nr_written)
918{
919 struct async_cow *async_cow;
920 struct btrfs_root *root = BTRFS_I(inode)->root;
921 unsigned long nr_pages;
922 u64 cur_end;
923 int limit = 10 * 1024 * 1042;
924
Chris Masona3429ab2009-10-08 12:30:20 -0400925 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
926 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500927 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500928 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
929 async_cow->inode = inode;
930 async_cow->root = root;
931 async_cow->locked_page = locked_page;
932 async_cow->start = start;
933
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200934 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500935 cur_end = end;
936 else
937 cur_end = min(end, start + 512 * 1024 - 1);
938
939 async_cow->end = cur_end;
940 INIT_LIST_HEAD(&async_cow->extents);
941
942 async_cow->work.func = async_cow_start;
943 async_cow->work.ordered_func = async_cow_submit;
944 async_cow->work.ordered_free = async_cow_free;
945 async_cow->work.flags = 0;
946
Chris Mason771ed682008-11-06 22:02:51 -0500947 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
948 PAGE_CACHE_SHIFT;
949 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
950
951 btrfs_queue_worker(&root->fs_info->delalloc_workers,
952 &async_cow->work);
953
954 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
955 wait_event(root->fs_info->async_submit_wait,
956 (atomic_read(&root->fs_info->async_delalloc_pages) <
957 limit));
958 }
959
Chris Masond3977122009-01-05 21:25:51 -0500960 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500961 atomic_read(&root->fs_info->async_delalloc_pages)) {
962 wait_event(root->fs_info->async_submit_wait,
963 (atomic_read(&root->fs_info->async_delalloc_pages) ==
964 0));
965 }
966
967 *nr_written += nr_pages;
968 start = cur_end + 1;
969 }
970 *page_started = 1;
971 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500972}
973
Chris Masond3977122009-01-05 21:25:51 -0500974static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500975 u64 bytenr, u64 num_bytes)
976{
977 int ret;
978 struct btrfs_ordered_sum *sums;
979 LIST_HEAD(list);
980
Yan Zheng07d400a2009-01-06 11:42:00 -0500981 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
982 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500983 if (ret == 0 && list_empty(&list))
984 return 0;
985
986 while (!list_empty(&list)) {
987 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
988 list_del(&sums->list);
989 kfree(sums);
990 }
991 return 1;
992}
993
Chris Masond352ac62008-09-29 15:18:18 -0400994/*
995 * when nowcow writeback call back. This checks for snapshots or COW copies
996 * of the extents that exist in the file, and COWs the file as required.
997 *
998 * If no cow copies or snapshots exist, we write directly to the existing
999 * blocks on disk
1000 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001001static noinline int run_delalloc_nocow(struct inode *inode,
1002 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001003 u64 start, u64 end, int *page_started, int force,
1004 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001005{
Chris Masonbe20aa92007-12-17 20:14:01 -05001006 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001007 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001008 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001009 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001010 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001011 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001012 u64 cow_start;
1013 u64 cur_offset;
1014 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001015 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001016 u64 disk_bytenr;
1017 u64 num_bytes;
1018 int extent_type;
1019 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001020 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001021 int nocow;
1022 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -05001023
1024 path = btrfs_alloc_path();
1025 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001026 trans = btrfs_join_transaction(root, 1);
1027 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -05001028
Yan Zheng80ff3852008-10-30 14:20:02 -04001029 cow_start = (u64)-1;
1030 cur_offset = start;
1031 while (1) {
1032 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1033 cur_offset, 0);
1034 BUG_ON(ret < 0);
1035 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1036 leaf = path->nodes[0];
1037 btrfs_item_key_to_cpu(leaf, &found_key,
1038 path->slots[0] - 1);
1039 if (found_key.objectid == inode->i_ino &&
1040 found_key.type == BTRFS_EXTENT_DATA_KEY)
1041 path->slots[0]--;
1042 }
1043 check_prev = 0;
1044next_slot:
1045 leaf = path->nodes[0];
1046 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1047 ret = btrfs_next_leaf(root, path);
1048 if (ret < 0)
1049 BUG_ON(1);
1050 if (ret > 0)
1051 break;
1052 leaf = path->nodes[0];
1053 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001054
Yan Zheng80ff3852008-10-30 14:20:02 -04001055 nocow = 0;
1056 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001057 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001058 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001059
Yan Zheng80ff3852008-10-30 14:20:02 -04001060 if (found_key.objectid > inode->i_ino ||
1061 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1062 found_key.offset > end)
1063 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001064
Yan Zheng80ff3852008-10-30 14:20:02 -04001065 if (found_key.offset > cur_offset) {
1066 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001067 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001068 goto out_check;
1069 }
Chris Masonc31f8832008-01-08 15:46:31 -05001070
Yan Zheng80ff3852008-10-30 14:20:02 -04001071 fi = btrfs_item_ptr(leaf, path->slots[0],
1072 struct btrfs_file_extent_item);
1073 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001074
Yan Zhengd899e052008-10-30 14:25:28 -04001075 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1076 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001077 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001078 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001079 extent_end = found_key.offset +
1080 btrfs_file_extent_num_bytes(leaf, fi);
1081 if (extent_end <= start) {
1082 path->slots[0]++;
1083 goto next_slot;
1084 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001085 if (disk_bytenr == 0)
1086 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001087 if (btrfs_file_extent_compression(leaf, fi) ||
1088 btrfs_file_extent_encryption(leaf, fi) ||
1089 btrfs_file_extent_other_encoding(leaf, fi))
1090 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001091 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1092 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001093 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001094 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001095 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001096 found_key.offset -
1097 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001098 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001099 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001100 disk_bytenr += cur_offset - found_key.offset;
1101 num_bytes = min(end + 1, extent_end) - cur_offset;
1102 /*
1103 * force cow if csum exists in the range.
1104 * this ensure that csum for a given extent are
1105 * either valid or do not exist.
1106 */
1107 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1108 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001109 nocow = 1;
1110 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1111 extent_end = found_key.offset +
1112 btrfs_file_extent_inline_len(leaf, fi);
1113 extent_end = ALIGN(extent_end, root->sectorsize);
1114 } else {
1115 BUG_ON(1);
1116 }
1117out_check:
1118 if (extent_end <= start) {
1119 path->slots[0]++;
1120 goto next_slot;
1121 }
1122 if (!nocow) {
1123 if (cow_start == (u64)-1)
1124 cow_start = cur_offset;
1125 cur_offset = extent_end;
1126 if (cur_offset > end)
1127 break;
1128 path->slots[0]++;
1129 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001130 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001131
Yan Zheng7ea394f2008-08-05 13:05:02 -04001132 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001133 if (cow_start != (u64)-1) {
1134 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001135 found_key.offset - 1, page_started,
1136 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001137 BUG_ON(ret);
1138 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001139 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001140
Yan Zhengd899e052008-10-30 14:25:28 -04001141 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1142 struct extent_map *em;
1143 struct extent_map_tree *em_tree;
1144 em_tree = &BTRFS_I(inode)->extent_tree;
1145 em = alloc_extent_map(GFP_NOFS);
1146 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001147 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001148 em->len = num_bytes;
1149 em->block_len = num_bytes;
1150 em->block_start = disk_bytenr;
1151 em->bdev = root->fs_info->fs_devices->latest_bdev;
1152 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1153 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001154 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001155 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001156 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001157 if (ret != -EEXIST) {
1158 free_extent_map(em);
1159 break;
1160 }
1161 btrfs_drop_extent_cache(inode, em->start,
1162 em->start + em->len - 1, 0);
1163 }
1164 type = BTRFS_ORDERED_PREALLOC;
1165 } else {
1166 type = BTRFS_ORDERED_NOCOW;
1167 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001168
1169 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001170 num_bytes, num_bytes, type);
1171 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001172
Yan Zhengd899e052008-10-30 14:25:28 -04001173 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001174 cur_offset, cur_offset + num_bytes - 1,
1175 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1176 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1177 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001178 cur_offset = extent_end;
1179 if (cur_offset > end)
1180 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001181 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001182 btrfs_release_path(root, path);
1183
1184 if (cur_offset <= end && cow_start == (u64)-1)
1185 cow_start = cur_offset;
1186 if (cow_start != (u64)-1) {
1187 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001188 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001189 BUG_ON(ret);
1190 }
1191
1192 ret = btrfs_end_transaction(trans, root);
1193 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001194 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001195 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001196}
1197
Chris Masond352ac62008-09-29 15:18:18 -04001198/*
1199 * extent_io.c call back to do delayed allocation processing
1200 */
Chris Masonc8b97812008-10-29 14:49:59 -04001201static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001202 u64 start, u64 end, int *page_started,
1203 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001204{
Chris Masonbe20aa92007-12-17 20:14:01 -05001205 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001206 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001207
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001208 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001209 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001210 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001211 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001212 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001213 page_started, 0, nr_written);
Chris Mason7f366cf2009-03-12 20:12:45 -04001214 else if (!btrfs_test_opt(root, COMPRESS))
1215 ret = cow_file_range(inode, locked_page, start, end,
1216 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001217 else
Chris Mason771ed682008-11-06 22:02:51 -05001218 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001219 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001220 return ret;
1221}
1222
Josef Bacik9ed74f22009-09-11 16:12:44 -04001223static int btrfs_split_extent_hook(struct inode *inode,
1224 struct extent_state *orig, u64 split)
1225{
1226 struct btrfs_root *root = BTRFS_I(inode)->root;
1227 u64 size;
1228
1229 if (!(orig->state & EXTENT_DELALLOC))
1230 return 0;
1231
1232 size = orig->end - orig->start + 1;
1233 if (size > root->fs_info->max_extent) {
1234 u64 num_extents;
1235 u64 new_size;
1236
1237 new_size = orig->end - split + 1;
1238 num_extents = div64_u64(size + root->fs_info->max_extent - 1,
1239 root->fs_info->max_extent);
1240
1241 /*
Josef Bacik32c00af2009-10-08 13:34:05 -04001242 * if we break a large extent up then leave oustanding_extents
1243 * be, since we've already accounted for the large extent.
Josef Bacik9ed74f22009-09-11 16:12:44 -04001244 */
1245 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1246 root->fs_info->max_extent) < num_extents)
1247 return 0;
1248 }
1249
Josef Bacik32c00af2009-10-08 13:34:05 -04001250 spin_lock(&BTRFS_I(inode)->accounting_lock);
1251 BTRFS_I(inode)->outstanding_extents++;
1252 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001253
1254 return 0;
1255}
1256
1257/*
1258 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1259 * extents so we can keep track of new extents that are just merged onto old
1260 * extents, such as when we are doing sequential writes, so we can properly
1261 * account for the metadata space we'll need.
1262 */
1263static int btrfs_merge_extent_hook(struct inode *inode,
1264 struct extent_state *new,
1265 struct extent_state *other)
1266{
1267 struct btrfs_root *root = BTRFS_I(inode)->root;
1268 u64 new_size, old_size;
1269 u64 num_extents;
1270
1271 /* not delalloc, ignore it */
1272 if (!(other->state & EXTENT_DELALLOC))
1273 return 0;
1274
1275 old_size = other->end - other->start + 1;
1276 if (new->start < other->start)
1277 new_size = other->end - new->start + 1;
1278 else
1279 new_size = new->end - other->start + 1;
1280
1281 /* we're not bigger than the max, unreserve the space and go */
1282 if (new_size <= root->fs_info->max_extent) {
Josef Bacik32c00af2009-10-08 13:34:05 -04001283 spin_lock(&BTRFS_I(inode)->accounting_lock);
1284 BTRFS_I(inode)->outstanding_extents--;
1285 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001286 return 0;
1287 }
1288
1289 /*
1290 * If we grew by another max_extent, just return, we want to keep that
1291 * reserved amount.
1292 */
1293 num_extents = div64_u64(old_size + root->fs_info->max_extent - 1,
1294 root->fs_info->max_extent);
1295 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1296 root->fs_info->max_extent) > num_extents)
1297 return 0;
1298
Josef Bacik32c00af2009-10-08 13:34:05 -04001299 spin_lock(&BTRFS_I(inode)->accounting_lock);
1300 BTRFS_I(inode)->outstanding_extents--;
1301 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001302
1303 return 0;
1304}
1305
Chris Masond352ac62008-09-29 15:18:18 -04001306/*
1307 * extent_io.c set_bit_hook, used to track delayed allocation
1308 * bytes in this file, and to maintain the list of inodes that
1309 * have pending delalloc work to be done.
1310 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001311static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001312 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001313{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001314
Chris Mason75eff682008-12-15 15:54:40 -05001315 /*
1316 * set_bit and clear bit hooks normally require _irqsave/restore
1317 * but in this case, we are only testeing for the DELALLOC
1318 * bit, which is only set or cleared with irqs on
1319 */
Chris Masonb0c68f82008-01-31 11:05:37 -05001320 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001321 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001322
Josef Bacik32c00af2009-10-08 13:34:05 -04001323 spin_lock(&BTRFS_I(inode)->accounting_lock);
1324 BTRFS_I(inode)->outstanding_extents++;
1325 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik6a632092009-02-20 11:00:09 -05001326 btrfs_delalloc_reserve_space(root, inode, end - start + 1);
Chris Mason75eff682008-12-15 15:54:40 -05001327 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -05001328 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001329 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001330 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1331 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1332 &root->fs_info->delalloc_inodes);
1333 }
Chris Mason75eff682008-12-15 15:54:40 -05001334 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001335 }
1336 return 0;
1337}
1338
Chris Masond352ac62008-09-29 15:18:18 -04001339/*
1340 * extent_io.c clear_bit_hook, see set_bit_hook for why
1341 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001342static int btrfs_clear_bit_hook(struct inode *inode,
1343 struct extent_state *state, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001344{
Chris Mason75eff682008-12-15 15:54:40 -05001345 /*
1346 * set_bit and clear bit hooks normally require _irqsave/restore
1347 * but in this case, we are only testeing for the DELALLOC
1348 * bit, which is only set or cleared with irqs on
1349 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001350 if ((state->state & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001351 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001352
Josef Bacik32c00af2009-10-08 13:34:05 -04001353 if (bits & EXTENT_DO_ACCOUNTING) {
1354 spin_lock(&BTRFS_I(inode)->accounting_lock);
1355 BTRFS_I(inode)->outstanding_extents--;
1356 spin_unlock(&BTRFS_I(inode)->accounting_lock);
1357 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
1358 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04001359
Chris Mason75eff682008-12-15 15:54:40 -05001360 spin_lock(&root->fs_info->delalloc_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001361 if (state->end - state->start + 1 >
1362 root->fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05001363 printk(KERN_INFO "btrfs warning: delalloc account "
1364 "%llu %llu\n",
Josef Bacik9ed74f22009-09-11 16:12:44 -04001365 (unsigned long long)
1366 state->end - state->start + 1,
Chris Masond3977122009-01-05 21:25:51 -05001367 (unsigned long long)
1368 root->fs_info->delalloc_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001369 btrfs_delalloc_free_space(root, inode, (u64)-1);
Chris Masonb0c68f82008-01-31 11:05:37 -05001370 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001371 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001372 } else {
Josef Bacik6a632092009-02-20 11:00:09 -05001373 btrfs_delalloc_free_space(root, inode,
Josef Bacik9ed74f22009-09-11 16:12:44 -04001374 state->end -
1375 state->start + 1);
1376 root->fs_info->delalloc_bytes -= state->end -
1377 state->start + 1;
1378 BTRFS_I(inode)->delalloc_bytes -= state->end -
1379 state->start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001380 }
Chris Masonea8c2812008-08-04 23:17:27 -04001381 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1382 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1383 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1384 }
Chris Mason75eff682008-12-15 15:54:40 -05001385 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001386 }
1387 return 0;
1388}
1389
Chris Masond352ac62008-09-29 15:18:18 -04001390/*
1391 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1392 * we don't create bios that span stripes or chunks
1393 */
Chris Mason239b14b2008-03-24 15:02:07 -04001394int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001395 size_t size, struct bio *bio,
1396 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001397{
1398 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1399 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001400 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001401 u64 length = 0;
1402 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001403 int ret;
1404
Chris Mason771ed682008-11-06 22:02:51 -05001405 if (bio_flags & EXTENT_BIO_COMPRESSED)
1406 return 0;
1407
Chris Masonf2d8d742008-04-21 10:03:05 -04001408 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001409 map_tree = &root->fs_info->mapping_tree;
1410 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001411 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001412 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001413
Chris Masond3977122009-01-05 21:25:51 -05001414 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001415 return 1;
Chris Mason239b14b2008-03-24 15:02:07 -04001416 return 0;
1417}
1418
Chris Masond352ac62008-09-29 15:18:18 -04001419/*
1420 * in order to insert checksums into the metadata in large chunks,
1421 * we wait until bio submission time. All the pages in the bio are
1422 * checksummed and sums are attached onto the ordered extent record.
1423 *
1424 * At IO completion time the cums attached on the ordered extent record
1425 * are inserted into the btree
1426 */
Chris Masond3977122009-01-05 21:25:51 -05001427static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1428 struct bio *bio, int mirror_num,
1429 unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001430{
Chris Mason065631f2008-02-20 12:07:25 -05001431 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001432 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001433
Chris Masond20f7042008-12-08 16:58:54 -05001434 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001435 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001436 return 0;
1437}
Chris Masone0156402008-04-16 11:15:20 -04001438
Chris Mason4a69a412008-11-06 22:03:00 -05001439/*
1440 * in order to insert checksums into the metadata in large chunks,
1441 * we wait until bio submission time. All the pages in the bio are
1442 * checksummed and sums are attached onto the ordered extent record.
1443 *
1444 * At IO completion time the cums attached on the ordered extent record
1445 * are inserted into the btree
1446 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001447static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Mason4a69a412008-11-06 22:03:00 -05001448 int mirror_num, unsigned long bio_flags)
1449{
1450 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001451 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001452}
1453
Chris Masond352ac62008-09-29 15:18:18 -04001454/*
Chris Masoncad321a2008-12-17 14:51:42 -05001455 * extent_io.c submission hook. This does the right thing for csum calculation
1456 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001457 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001458static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001459 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001460{
1461 struct btrfs_root *root = BTRFS_I(inode)->root;
1462 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001463 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001464
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001465 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001466
Chris Masone6dcd2d2008-07-17 12:53:50 -04001467 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1468 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001469
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001470 if (!(rw & (1 << BIO_RW))) {
Chris Masond20f7042008-12-08 16:58:54 -05001471 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001472 return btrfs_submit_compressed_read(inode, bio,
1473 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001474 } else if (!skip_sum)
1475 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001476 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001477 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001478 /* csum items have already been cloned */
1479 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1480 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001481 /* we're doing a write, do the async checksumming */
1482 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001483 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001484 bio_flags, __btrfs_submit_bio_start,
1485 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001486 }
1487
Chris Mason0b86a832008-03-24 15:01:56 -04001488mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001489 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001490}
Chris Mason6885f302008-02-20 16:11:05 -05001491
Chris Masond352ac62008-09-29 15:18:18 -04001492/*
1493 * given a list of ordered sums record them in the inode. This happens
1494 * at IO completion time based on sums calculated at bio submission time.
1495 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001496static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001497 struct inode *inode, u64 file_offset,
1498 struct list_head *list)
1499{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001500 struct btrfs_ordered_sum *sum;
1501
1502 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001503
1504 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001505 btrfs_csum_file_blocks(trans,
1506 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001507 }
1508 return 0;
1509}
1510
Chris Masonea8c2812008-08-04 23:17:27 -04001511int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1512{
Chris Masond3977122009-01-05 21:25:51 -05001513 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001514 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001515 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1516 GFP_NOFS);
1517}
1518
Chris Masond352ac62008-09-29 15:18:18 -04001519/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001520struct btrfs_writepage_fixup {
1521 struct page *page;
1522 struct btrfs_work work;
1523};
1524
Christoph Hellwigb2950862008-12-02 09:54:17 -05001525static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001526{
1527 struct btrfs_writepage_fixup *fixup;
1528 struct btrfs_ordered_extent *ordered;
1529 struct page *page;
1530 struct inode *inode;
1531 u64 page_start;
1532 u64 page_end;
1533
1534 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1535 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001536again:
Chris Mason247e7432008-07-17 12:53:51 -04001537 lock_page(page);
1538 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1539 ClearPageChecked(page);
1540 goto out_page;
1541 }
1542
1543 inode = page->mapping->host;
1544 page_start = page_offset(page);
1545 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1546
1547 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001548
1549 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001550 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001551 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001552
1553 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1554 if (ordered) {
1555 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1556 page_end, GFP_NOFS);
1557 unlock_page(page);
1558 btrfs_start_ordered_extent(inode, ordered, 1);
1559 goto again;
1560 }
Chris Mason247e7432008-07-17 12:53:51 -04001561
Chris Masonea8c2812008-08-04 23:17:27 -04001562 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001563 ClearPageChecked(page);
1564out:
1565 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1566out_page:
1567 unlock_page(page);
1568 page_cache_release(page);
1569}
1570
1571/*
1572 * There are a few paths in the higher layers of the kernel that directly
1573 * set the page dirty bit without asking the filesystem if it is a
1574 * good idea. This causes problems because we want to make sure COW
1575 * properly happens and the data=ordered rules are followed.
1576 *
Chris Masonc8b97812008-10-29 14:49:59 -04001577 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001578 * hasn't been properly setup for IO. We kick off an async process
1579 * to fix it up. The async helper will wait for ordered extents, set
1580 * the delalloc bit and make it safe to write the page.
1581 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001582static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001583{
1584 struct inode *inode = page->mapping->host;
1585 struct btrfs_writepage_fixup *fixup;
1586 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001587
Chris Mason8b62b722009-09-02 16:53:46 -04001588 /* this page is properly in the ordered list */
1589 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001590 return 0;
1591
1592 if (PageChecked(page))
1593 return -EAGAIN;
1594
1595 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1596 if (!fixup)
1597 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001598
Chris Mason247e7432008-07-17 12:53:51 -04001599 SetPageChecked(page);
1600 page_cache_get(page);
1601 fixup->work.func = btrfs_writepage_fixup_worker;
1602 fixup->page = page;
1603 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1604 return -EAGAIN;
1605}
1606
Yan Zhengd899e052008-10-30 14:25:28 -04001607static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1608 struct inode *inode, u64 file_pos,
1609 u64 disk_bytenr, u64 disk_num_bytes,
1610 u64 num_bytes, u64 ram_bytes,
1611 u8 compression, u8 encryption,
1612 u16 other_encoding, int extent_type)
1613{
1614 struct btrfs_root *root = BTRFS_I(inode)->root;
1615 struct btrfs_file_extent_item *fi;
1616 struct btrfs_path *path;
1617 struct extent_buffer *leaf;
1618 struct btrfs_key ins;
1619 u64 hint;
1620 int ret;
1621
1622 path = btrfs_alloc_path();
1623 BUG_ON(!path);
1624
Chris Masonb9473432009-03-13 11:00:37 -04001625 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001626
1627 /*
1628 * we may be replacing one extent in the tree with another.
1629 * The new extent is pinned in the extent map, and we don't want
1630 * to drop it from the cache until it is completely in the btree.
1631 *
1632 * So, tell btrfs_drop_extents to leave this extent in the cache.
1633 * the caller is expected to unpin it and allow it to be merged
1634 * with the others.
1635 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001636 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1637 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001638 BUG_ON(ret);
1639
1640 ins.objectid = inode->i_ino;
1641 ins.offset = file_pos;
1642 ins.type = BTRFS_EXTENT_DATA_KEY;
1643 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1644 BUG_ON(ret);
1645 leaf = path->nodes[0];
1646 fi = btrfs_item_ptr(leaf, path->slots[0],
1647 struct btrfs_file_extent_item);
1648 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1649 btrfs_set_file_extent_type(leaf, fi, extent_type);
1650 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1651 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1652 btrfs_set_file_extent_offset(leaf, fi, 0);
1653 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1654 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1655 btrfs_set_file_extent_compression(leaf, fi, compression);
1656 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1657 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001658
1659 btrfs_unlock_up_safe(path, 1);
1660 btrfs_set_lock_blocking(leaf);
1661
Yan Zhengd899e052008-10-30 14:25:28 -04001662 btrfs_mark_buffer_dirty(leaf);
1663
1664 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001665
1666 ins.objectid = disk_bytenr;
1667 ins.offset = disk_num_bytes;
1668 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001669 ret = btrfs_alloc_reserved_file_extent(trans, root,
1670 root->root_key.objectid,
1671 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001672 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001673 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001674
Yan Zhengd899e052008-10-30 14:25:28 -04001675 return 0;
1676}
1677
Chris Mason5d13a982009-03-13 11:41:46 -04001678/*
1679 * helper function for btrfs_finish_ordered_io, this
1680 * just reads in some of the csum leaves to prime them into ram
1681 * before we start the transaction. It limits the amount of btree
1682 * reads required while inside the transaction.
1683 */
1684static noinline void reada_csum(struct btrfs_root *root,
1685 struct btrfs_path *path,
1686 struct btrfs_ordered_extent *ordered_extent)
1687{
1688 struct btrfs_ordered_sum *sum;
1689 u64 bytenr;
1690
1691 sum = list_entry(ordered_extent->list.next, struct btrfs_ordered_sum,
1692 list);
1693 bytenr = sum->sums[0].bytenr;
1694
1695 /*
1696 * we don't care about the results, the point of this search is
1697 * just to get the btree leaves into ram
1698 */
1699 btrfs_lookup_csum(NULL, root->fs_info->csum_root, path, bytenr, 0);
1700}
1701
Chris Masond352ac62008-09-29 15:18:18 -04001702/* as ordered data IO finishes, this gets called so we can finish
1703 * an ordered extent if the range of bytes in the file it covers are
1704 * fully written.
1705 */
Chris Mason211f90e2008-07-18 11:56:15 -04001706static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001707{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001708 struct btrfs_root *root = BTRFS_I(inode)->root;
1709 struct btrfs_trans_handle *trans;
Chris Mason5d13a982009-03-13 11:41:46 -04001710 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001711 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001712 struct btrfs_path *path;
Yan Zhengd899e052008-10-30 14:25:28 -04001713 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001714 int ret;
1715
1716 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001717 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001718 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001719
Chris Masonb7ec40d2009-03-12 20:12:45 -04001720 /*
1721 * before we join the transaction, try to do some of our IO.
1722 * This will limit the amount of IO that we have to do with
1723 * the transaction running. We're unlikely to need to do any
1724 * IO if the file extents are new, the disk_i_size checks
1725 * covers the most common case.
1726 */
1727 if (start < BTRFS_I(inode)->disk_i_size) {
1728 path = btrfs_alloc_path();
1729 if (path) {
1730 ret = btrfs_lookup_file_extent(NULL, root, path,
1731 inode->i_ino,
1732 start, 0);
Chris Mason5d13a982009-03-13 11:41:46 -04001733 ordered_extent = btrfs_lookup_ordered_extent(inode,
1734 start);
1735 if (!list_empty(&ordered_extent->list)) {
1736 btrfs_release_path(root, path);
1737 reada_csum(root, path, ordered_extent);
1738 }
Chris Masonb7ec40d2009-03-12 20:12:45 -04001739 btrfs_free_path(path);
1740 }
1741 }
1742
Chris Mason5d13a982009-03-13 11:41:46 -04001743 if (!ordered_extent)
1744 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001745 BUG_ON(!ordered_extent);
Yan, Zhengc2167752009-11-12 09:34:21 +00001746 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1747 BUG_ON(!list_empty(&ordered_extent->list));
1748 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1749 if (!ret) {
1750 trans = btrfs_join_transaction(root, 1);
1751 ret = btrfs_update_inode(trans, root, inode);
1752 BUG_ON(ret);
1753 btrfs_end_transaction(trans, root);
1754 }
1755 goto out;
1756 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001757
1758 lock_extent(io_tree, ordered_extent->file_offset,
1759 ordered_extent->file_offset + ordered_extent->len - 1,
1760 GFP_NOFS);
1761
Yan, Zhengc2167752009-11-12 09:34:21 +00001762 trans = btrfs_join_transaction(root, 1);
1763
Chris Masonc8b97812008-10-29 14:49:59 -04001764 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001765 compressed = 1;
1766 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1767 BUG_ON(compressed);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001768 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001769 ordered_extent->file_offset,
1770 ordered_extent->file_offset +
1771 ordered_extent->len);
1772 BUG_ON(ret);
1773 } else {
1774 ret = insert_reserved_file_extent(trans, inode,
1775 ordered_extent->file_offset,
1776 ordered_extent->start,
1777 ordered_extent->disk_len,
1778 ordered_extent->len,
1779 ordered_extent->len,
1780 compressed, 0, 0,
1781 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001782 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1783 ordered_extent->file_offset,
1784 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001785 BUG_ON(ret);
1786 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001787 unlock_extent(io_tree, ordered_extent->file_offset,
1788 ordered_extent->file_offset + ordered_extent->len - 1,
1789 GFP_NOFS);
1790 add_pending_csums(trans, inode, ordered_extent->file_offset,
1791 &ordered_extent->list);
1792
Yan, Zhengc2167752009-11-12 09:34:21 +00001793 /* this also removes the ordered extent from the tree */
1794 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1795 ret = btrfs_update_inode(trans, root, inode);
1796 BUG_ON(ret);
1797 btrfs_end_transaction(trans, root);
1798out:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001799 /* once for us */
1800 btrfs_put_ordered_extent(ordered_extent);
1801 /* once for the tree */
1802 btrfs_put_ordered_extent(ordered_extent);
1803
Chris Masone6dcd2d2008-07-17 12:53:50 -04001804 return 0;
1805}
1806
Christoph Hellwigb2950862008-12-02 09:54:17 -05001807static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001808 struct extent_state *state, int uptodate)
1809{
Chris Mason8b62b722009-09-02 16:53:46 -04001810 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001811 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1812}
1813
Chris Masond352ac62008-09-29 15:18:18 -04001814/*
1815 * When IO fails, either with EIO or csum verification fails, we
1816 * try other mirrors that might have a good copy of the data. This
1817 * io_failure_record is used to record state as we go through all the
1818 * mirrors. If another mirror has good data, the page is set up to date
1819 * and things continue. If a good mirror can't be found, the original
1820 * bio end_io callback is called to indicate things have failed.
1821 */
Chris Mason7e383262008-04-09 16:28:12 -04001822struct io_failure_record {
1823 struct page *page;
1824 u64 start;
1825 u64 len;
1826 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001827 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001828 int last_mirror;
1829};
1830
Christoph Hellwigb2950862008-12-02 09:54:17 -05001831static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001832 struct page *page, u64 start, u64 end,
1833 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001834{
1835 struct io_failure_record *failrec = NULL;
1836 u64 private;
1837 struct extent_map *em;
1838 struct inode *inode = page->mapping->host;
1839 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001840 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001841 struct bio *bio;
1842 int num_copies;
1843 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001844 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001845 u64 logical;
1846
1847 ret = get_state_private(failure_tree, start, &private);
1848 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001849 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1850 if (!failrec)
1851 return -ENOMEM;
1852 failrec->start = start;
1853 failrec->len = end - start + 1;
1854 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001855 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001856
Chris Mason890871b2009-09-02 16:24:52 -04001857 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001858 em = lookup_extent_mapping(em_tree, start, failrec->len);
1859 if (em->start > start || em->start + em->len < start) {
1860 free_extent_map(em);
1861 em = NULL;
1862 }
Chris Mason890871b2009-09-02 16:24:52 -04001863 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001864
1865 if (!em || IS_ERR(em)) {
1866 kfree(failrec);
1867 return -EIO;
1868 }
1869 logical = start - em->start;
1870 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001871 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1872 logical = em->block_start;
1873 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1874 }
Chris Mason7e383262008-04-09 16:28:12 -04001875 failrec->logical = logical;
1876 free_extent_map(em);
1877 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1878 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001879 set_state_private(failure_tree, start,
1880 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001881 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001882 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001883 }
1884 num_copies = btrfs_num_copies(
1885 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1886 failrec->logical, failrec->len);
1887 failrec->last_mirror++;
1888 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001889 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001890 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1891 failrec->start,
1892 EXTENT_LOCKED);
1893 if (state && state->start != failrec->start)
1894 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001895 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001896 }
1897 if (!state || failrec->last_mirror > num_copies) {
1898 set_state_private(failure_tree, failrec->start, 0);
1899 clear_extent_bits(failure_tree, failrec->start,
1900 failrec->start + failrec->len - 1,
1901 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1902 kfree(failrec);
1903 return -EIO;
1904 }
1905 bio = bio_alloc(GFP_NOFS, 1);
1906 bio->bi_private = state;
1907 bio->bi_end_io = failed_bio->bi_end_io;
1908 bio->bi_sector = failrec->logical >> 9;
1909 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001910 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001911
Chris Mason7e383262008-04-09 16:28:12 -04001912 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001913 if (failed_bio->bi_rw & (1 << BIO_RW))
1914 rw = WRITE;
1915 else
1916 rw = READ;
1917
1918 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001919 failrec->last_mirror,
Chris Masond20f7042008-12-08 16:58:54 -05001920 failrec->bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001921 return 0;
1922}
1923
Chris Masond352ac62008-09-29 15:18:18 -04001924/*
1925 * each time an IO finishes, we do a fast check in the IO failure tree
1926 * to see if we need to process or clean up an io_failure_record
1927 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001928static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001929{
1930 u64 private;
1931 u64 private_failure;
1932 struct io_failure_record *failure;
1933 int ret;
1934
1935 private = 0;
1936 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1937 (u64)-1, 1, EXTENT_DIRTY)) {
1938 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1939 start, &private_failure);
1940 if (ret == 0) {
1941 failure = (struct io_failure_record *)(unsigned long)
1942 private_failure;
1943 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1944 failure->start, 0);
1945 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1946 failure->start,
1947 failure->start + failure->len - 1,
1948 EXTENT_DIRTY | EXTENT_LOCKED,
1949 GFP_NOFS);
1950 kfree(failure);
1951 }
1952 }
Chris Mason7e383262008-04-09 16:28:12 -04001953 return 0;
1954}
1955
Chris Masond352ac62008-09-29 15:18:18 -04001956/*
1957 * when reads are done, we need to check csums to verify the data is correct
1958 * if there's a match, we allow the bio to finish. If not, we go through
1959 * the io_failure_record routines to find good copies
1960 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001961static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001962 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001963{
Chris Mason35ebb932007-10-30 16:56:53 -04001964 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001965 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001966 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001967 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001968 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001969 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001970 struct btrfs_root *root = BTRFS_I(inode)->root;
1971 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001972
Chris Masond20f7042008-12-08 16:58:54 -05001973 if (PageChecked(page)) {
1974 ClearPageChecked(page);
1975 goto good;
1976 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001977
1978 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001979 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001980
Yan Zheng17d217f2008-12-12 10:03:38 -05001981 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001982 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001983 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1984 GFP_NOFS);
1985 return 0;
1986 }
1987
Yanc2e639f2008-02-04 08:57:25 -05001988 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001989 private = state->private;
1990 ret = 0;
1991 } else {
1992 ret = get_state_private(io_tree, start, &private);
1993 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001994 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001995 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001996 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001997
Chris Masonff79f812007-10-15 16:22:25 -04001998 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1999 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002000 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002001 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002002
Chris Mason9ab86c82009-01-07 09:48:51 -05002003 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05002004good:
Chris Mason7e383262008-04-09 16:28:12 -04002005 /* if the io failure tree for this inode is non-empty,
2006 * check to see if we've recovered from a failed IO
2007 */
Chris Mason1259ab72008-05-12 13:39:03 -04002008 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04002009 return 0;
2010
2011zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04002012 if (printk_ratelimit()) {
2013 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
2014 "private %llu\n", page->mapping->host->i_ino,
2015 (unsigned long long)start, csum,
2016 (unsigned long long)private);
2017 }
Chris Masondb945352007-10-15 16:15:53 -04002018 memset(kaddr + offset, 1, end - start + 1);
2019 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05002020 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04002021 if (private == 0)
2022 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002023 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002024}
Chris Masonb888db22007-08-27 16:49:44 -04002025
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002026struct delayed_iput {
2027 struct list_head list;
2028 struct inode *inode;
2029};
2030
2031void btrfs_add_delayed_iput(struct inode *inode)
2032{
2033 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2034 struct delayed_iput *delayed;
2035
2036 if (atomic_add_unless(&inode->i_count, -1, 1))
2037 return;
2038
2039 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2040 delayed->inode = inode;
2041
2042 spin_lock(&fs_info->delayed_iput_lock);
2043 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2044 spin_unlock(&fs_info->delayed_iput_lock);
2045}
2046
2047void btrfs_run_delayed_iputs(struct btrfs_root *root)
2048{
2049 LIST_HEAD(list);
2050 struct btrfs_fs_info *fs_info = root->fs_info;
2051 struct delayed_iput *delayed;
2052 int empty;
2053
2054 spin_lock(&fs_info->delayed_iput_lock);
2055 empty = list_empty(&fs_info->delayed_iputs);
2056 spin_unlock(&fs_info->delayed_iput_lock);
2057 if (empty)
2058 return;
2059
2060 down_read(&root->fs_info->cleanup_work_sem);
2061 spin_lock(&fs_info->delayed_iput_lock);
2062 list_splice_init(&fs_info->delayed_iputs, &list);
2063 spin_unlock(&fs_info->delayed_iput_lock);
2064
2065 while (!list_empty(&list)) {
2066 delayed = list_entry(list.next, struct delayed_iput, list);
2067 list_del(&delayed->list);
2068 iput(delayed->inode);
2069 kfree(delayed);
2070 }
2071 up_read(&root->fs_info->cleanup_work_sem);
2072}
2073
Josef Bacik7b128762008-07-24 12:17:14 -04002074/*
2075 * This creates an orphan entry for the given inode in case something goes
2076 * wrong in the middle of an unlink/truncate.
2077 */
2078int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2079{
2080 struct btrfs_root *root = BTRFS_I(inode)->root;
2081 int ret = 0;
2082
Yanbcc63ab2008-07-30 16:29:20 -04002083 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002084
2085 /* already on the orphan list, we're good */
2086 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04002087 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002088 return 0;
2089 }
2090
2091 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2092
Yanbcc63ab2008-07-30 16:29:20 -04002093 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002094
2095 /*
2096 * insert an orphan item to track this unlinked/truncated file
2097 */
2098 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2099
2100 return ret;
2101}
2102
2103/*
2104 * We have done the truncate/delete so we can go ahead and remove the orphan
2105 * item for this particular inode.
2106 */
2107int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2108{
2109 struct btrfs_root *root = BTRFS_I(inode)->root;
2110 int ret = 0;
2111
Yanbcc63ab2008-07-30 16:29:20 -04002112 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002113
2114 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04002115 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002116 return 0;
2117 }
2118
2119 list_del_init(&BTRFS_I(inode)->i_orphan);
2120 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04002121 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002122 return 0;
2123 }
2124
Yanbcc63ab2008-07-30 16:29:20 -04002125 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002126
2127 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2128
2129 return ret;
2130}
2131
2132/*
2133 * this cleans up any orphans that may be left on the list from the last use
2134 * of this root.
2135 */
2136void btrfs_orphan_cleanup(struct btrfs_root *root)
2137{
2138 struct btrfs_path *path;
2139 struct extent_buffer *leaf;
2140 struct btrfs_item *item;
2141 struct btrfs_key key, found_key;
2142 struct btrfs_trans_handle *trans;
2143 struct inode *inode;
2144 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2145
Yan, Zhengc71bf092009-11-12 09:34:40 +00002146 if (!xchg(&root->clean_orphans, 0))
Josef Bacik7b128762008-07-24 12:17:14 -04002147 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002148
2149 path = btrfs_alloc_path();
2150 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002151 path->reada = -1;
2152
2153 key.objectid = BTRFS_ORPHAN_OBJECTID;
2154 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2155 key.offset = (u64)-1;
2156
Josef Bacik7b128762008-07-24 12:17:14 -04002157 while (1) {
2158 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2159 if (ret < 0) {
2160 printk(KERN_ERR "Error searching slot for orphan: %d"
2161 "\n", ret);
2162 break;
2163 }
2164
2165 /*
2166 * if ret == 0 means we found what we were searching for, which
2167 * is weird, but possible, so only screw with path if we didnt
2168 * find the key and see if we have stuff that matches
2169 */
2170 if (ret > 0) {
2171 if (path->slots[0] == 0)
2172 break;
2173 path->slots[0]--;
2174 }
2175
2176 /* pull out the item */
2177 leaf = path->nodes[0];
2178 item = btrfs_item_nr(leaf, path->slots[0]);
2179 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2180
2181 /* make sure the item matches what we want */
2182 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2183 break;
2184 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2185 break;
2186
2187 /* release the path since we're done with it */
2188 btrfs_release_path(root, path);
2189
2190 /*
2191 * this is where we are basically btrfs_lookup, without the
2192 * crossing root thing. we store the inode number in the
2193 * offset of the orphan item.
2194 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002195 found_key.objectid = found_key.offset;
2196 found_key.type = BTRFS_INODE_ITEM_KEY;
2197 found_key.offset = 0;
2198 inode = btrfs_iget(root->fs_info->sb, &found_key, root);
2199 if (IS_ERR(inode))
Josef Bacik7b128762008-07-24 12:17:14 -04002200 break;
2201
Josef Bacik7b128762008-07-24 12:17:14 -04002202 /*
2203 * add this inode to the orphan list so btrfs_orphan_del does
2204 * the proper thing when we hit it
2205 */
Yanbcc63ab2008-07-30 16:29:20 -04002206 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002207 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04002208 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002209
2210 /*
2211 * if this is a bad inode, means we actually succeeded in
2212 * removing the inode, but not the orphan record, which means
2213 * we need to manually delete the orphan since iput will just
2214 * do a destroy_inode
2215 */
2216 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002217 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04002218 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002219 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002220 iput(inode);
2221 continue;
2222 }
2223
2224 /* if we have links, this was a truncate, lets do that */
2225 if (inode->i_nlink) {
2226 nr_truncate++;
2227 btrfs_truncate(inode);
2228 } else {
2229 nr_unlink++;
2230 }
2231
2232 /* this will do delete_inode and everything for us */
2233 iput(inode);
2234 }
2235
2236 if (nr_unlink)
2237 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2238 if (nr_truncate)
2239 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
2240
2241 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002242}
2243
Chris Masond352ac62008-09-29 15:18:18 -04002244/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002245 * very simple check to peek ahead in the leaf looking for xattrs. If we
2246 * don't find any xattrs, we know there can't be any acls.
2247 *
2248 * slot is the slot the inode is in, objectid is the objectid of the inode
2249 */
2250static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2251 int slot, u64 objectid)
2252{
2253 u32 nritems = btrfs_header_nritems(leaf);
2254 struct btrfs_key found_key;
2255 int scanned = 0;
2256
2257 slot++;
2258 while (slot < nritems) {
2259 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2260
2261 /* we found a different objectid, there must not be acls */
2262 if (found_key.objectid != objectid)
2263 return 0;
2264
2265 /* we found an xattr, assume we've got an acl */
2266 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2267 return 1;
2268
2269 /*
2270 * we found a key greater than an xattr key, there can't
2271 * be any acls later on
2272 */
2273 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2274 return 0;
2275
2276 slot++;
2277 scanned++;
2278
2279 /*
2280 * it goes inode, inode backrefs, xattrs, extents,
2281 * so if there are a ton of hard links to an inode there can
2282 * be a lot of backrefs. Don't waste time searching too hard,
2283 * this is just an optimization
2284 */
2285 if (scanned >= 8)
2286 break;
2287 }
2288 /* we hit the end of the leaf before we found an xattr or
2289 * something larger than an xattr. We have to assume the inode
2290 * has acls
2291 */
2292 return 1;
2293}
2294
2295/*
Chris Masond352ac62008-09-29 15:18:18 -04002296 * read an inode from the btree into the in-memory inode
2297 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002298static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002299{
2300 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002301 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002302 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002303 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002304 struct btrfs_root *root = BTRFS_I(inode)->root;
2305 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002306 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002307 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002308 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002309 int ret;
2310
2311 path = btrfs_alloc_path();
2312 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002313 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002314
Chris Mason39279cc2007-06-12 06:35:45 -04002315 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002316 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002317 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002318
Chris Mason5f39d392007-10-15 16:14:19 -04002319 leaf = path->nodes[0];
2320 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2321 struct btrfs_inode_item);
2322
2323 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2324 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2325 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2326 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002327 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002328
2329 tspec = btrfs_inode_atime(inode_item);
2330 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2331 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2332
2333 tspec = btrfs_inode_mtime(inode_item);
2334 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2335 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2336
2337 tspec = btrfs_inode_ctime(inode_item);
2338 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2339 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2340
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002341 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002342 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002343 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002344 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002345 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002346 rdev = btrfs_inode_rdev(leaf, inode_item);
2347
Josef Bacikaec74772008-07-24 12:12:38 -04002348 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002349 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002350
Chris Mason5f39d392007-10-15 16:14:19 -04002351 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002352
Chris Mason46a53cc2009-04-27 11:47:50 -04002353 /*
2354 * try to precache a NULL acl entry for files that don't have
2355 * any xattrs or acls
2356 */
2357 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002358 if (!maybe_acls)
2359 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002360
Yan Zhengd2fb3432008-12-11 16:30:39 -05002361 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2362 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002363 btrfs_free_path(path);
2364 inode_item = NULL;
2365
Chris Mason39279cc2007-06-12 06:35:45 -04002366 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002367 case S_IFREG:
2368 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002369 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002370 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002371 inode->i_fop = &btrfs_file_operations;
2372 inode->i_op = &btrfs_file_inode_operations;
2373 break;
2374 case S_IFDIR:
2375 inode->i_fop = &btrfs_dir_file_operations;
2376 if (root == root->fs_info->tree_root)
2377 inode->i_op = &btrfs_dir_ro_inode_operations;
2378 else
2379 inode->i_op = &btrfs_dir_inode_operations;
2380 break;
2381 case S_IFLNK:
2382 inode->i_op = &btrfs_symlink_inode_operations;
2383 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002384 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002385 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002386 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002387 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002388 init_special_inode(inode, inode->i_mode, rdev);
2389 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002390 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002391
2392 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002393 return;
2394
2395make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002396 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002397 make_bad_inode(inode);
2398}
2399
Chris Masond352ac62008-09-29 15:18:18 -04002400/*
2401 * given a leaf and an inode, copy the inode fields into the leaf
2402 */
Chris Masone02119d2008-09-05 16:13:11 -04002403static void fill_inode_item(struct btrfs_trans_handle *trans,
2404 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002405 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002406 struct inode *inode)
2407{
Chris Mason5f39d392007-10-15 16:14:19 -04002408 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2409 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002410 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002411 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2412 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2413
2414 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2415 inode->i_atime.tv_sec);
2416 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2417 inode->i_atime.tv_nsec);
2418
2419 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2420 inode->i_mtime.tv_sec);
2421 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2422 inode->i_mtime.tv_nsec);
2423
2424 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2425 inode->i_ctime.tv_sec);
2426 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2427 inode->i_ctime.tv_nsec);
2428
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002429 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002430 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002431 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002432 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002433 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002434 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002435 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002436}
2437
Chris Masond352ac62008-09-29 15:18:18 -04002438/*
2439 * copy everything in the in-memory inode into the btree.
2440 */
Chris Masond3977122009-01-05 21:25:51 -05002441noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2442 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002443{
2444 struct btrfs_inode_item *inode_item;
2445 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002446 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002447 int ret;
2448
2449 path = btrfs_alloc_path();
2450 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002451 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002452 ret = btrfs_lookup_inode(trans, root, path,
2453 &BTRFS_I(inode)->location, 1);
2454 if (ret) {
2455 if (ret > 0)
2456 ret = -ENOENT;
2457 goto failed;
2458 }
2459
Chris Masonb4ce94d2009-02-04 09:25:08 -05002460 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002461 leaf = path->nodes[0];
2462 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002463 struct btrfs_inode_item);
2464
Chris Masone02119d2008-09-05 16:13:11 -04002465 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002466 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002467 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002468 ret = 0;
2469failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002470 btrfs_free_path(path);
2471 return ret;
2472}
2473
2474
Chris Masond352ac62008-09-29 15:18:18 -04002475/*
2476 * unlink helper that gets used here in inode.c and in the tree logging
2477 * recovery code. It remove a link in a directory with a given name, and
2478 * also drops the back refs in the inode to the directory
2479 */
Chris Masone02119d2008-09-05 16:13:11 -04002480int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2481 struct btrfs_root *root,
2482 struct inode *dir, struct inode *inode,
2483 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002484{
2485 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002486 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002487 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002488 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002489 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002490 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002491
2492 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002493 if (!path) {
2494 ret = -ENOMEM;
2495 goto err;
2496 }
2497
Chris Masonb9473432009-03-13 11:00:37 -04002498 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002499 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2500 name, name_len, -1);
2501 if (IS_ERR(di)) {
2502 ret = PTR_ERR(di);
2503 goto err;
2504 }
2505 if (!di) {
2506 ret = -ENOENT;
2507 goto err;
2508 }
Chris Mason5f39d392007-10-15 16:14:19 -04002509 leaf = path->nodes[0];
2510 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002511 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002512 if (ret)
2513 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002514 btrfs_release_path(root, path);
2515
Josef Bacikaec74772008-07-24 12:12:38 -04002516 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002517 inode->i_ino,
2518 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002519 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002520 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002521 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002522 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002523 goto err;
2524 }
2525
Chris Mason39279cc2007-06-12 06:35:45 -04002526 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002527 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002528 if (IS_ERR(di)) {
2529 ret = PTR_ERR(di);
2530 goto err;
2531 }
2532 if (!di) {
2533 ret = -ENOENT;
2534 goto err;
2535 }
2536 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002537 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002538
Chris Masone02119d2008-09-05 16:13:11 -04002539 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2540 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002541 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002542
2543 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2544 dir, index);
2545 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002546err:
2547 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002548 if (ret)
2549 goto out;
2550
2551 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2552 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2553 btrfs_update_inode(trans, root, dir);
2554 btrfs_drop_nlink(inode);
2555 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002556out:
Chris Mason39279cc2007-06-12 06:35:45 -04002557 return ret;
2558}
2559
2560static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2561{
2562 struct btrfs_root *root;
2563 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002564 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002565 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002566 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002567
2568 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002569
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002570 /*
2571 * 5 items for unlink inode
2572 * 1 for orphan
2573 */
2574 ret = btrfs_reserve_metadata_space(root, 6);
2575 if (ret)
2576 return ret;
2577
Chris Mason39279cc2007-06-12 06:35:45 -04002578 trans = btrfs_start_transaction(root, 1);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002579 if (IS_ERR(trans)) {
2580 btrfs_unreserve_metadata_space(root, 6);
2581 return PTR_ERR(trans);
2582 }
Chris Mason5f39d392007-10-15 16:14:19 -04002583
Chris Mason39279cc2007-06-12 06:35:45 -04002584 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002585
2586 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2587
Chris Masone02119d2008-09-05 16:13:11 -04002588 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2589 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002590
2591 if (inode->i_nlink == 0)
2592 ret = btrfs_orphan_add(trans, inode);
2593
Chris Masond3c2fdc2007-09-17 10:58:06 -04002594 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002595
Chris Mason89ce8a62008-06-25 16:01:31 -04002596 btrfs_end_transaction_throttle(trans, root);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002597 btrfs_unreserve_metadata_space(root, 6);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002598 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002599 return ret;
2600}
2601
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002602int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2603 struct btrfs_root *root,
2604 struct inode *dir, u64 objectid,
2605 const char *name, int name_len)
2606{
2607 struct btrfs_path *path;
2608 struct extent_buffer *leaf;
2609 struct btrfs_dir_item *di;
2610 struct btrfs_key key;
2611 u64 index;
2612 int ret;
2613
2614 path = btrfs_alloc_path();
2615 if (!path)
2616 return -ENOMEM;
2617
2618 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2619 name, name_len, -1);
2620 BUG_ON(!di || IS_ERR(di));
2621
2622 leaf = path->nodes[0];
2623 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2624 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2625 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2626 BUG_ON(ret);
2627 btrfs_release_path(root, path);
2628
2629 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2630 objectid, root->root_key.objectid,
2631 dir->i_ino, &index, name, name_len);
2632 if (ret < 0) {
2633 BUG_ON(ret != -ENOENT);
2634 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2635 name, name_len);
2636 BUG_ON(!di || IS_ERR(di));
2637
2638 leaf = path->nodes[0];
2639 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2640 btrfs_release_path(root, path);
2641 index = key.offset;
2642 }
2643
2644 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2645 index, name, name_len, -1);
2646 BUG_ON(!di || IS_ERR(di));
2647
2648 leaf = path->nodes[0];
2649 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2650 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2651 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2652 BUG_ON(ret);
2653 btrfs_release_path(root, path);
2654
2655 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2656 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2657 ret = btrfs_update_inode(trans, root, dir);
2658 BUG_ON(ret);
2659 dir->i_sb->s_dirt = 1;
2660
2661 btrfs_free_path(path);
2662 return 0;
2663}
2664
Chris Mason39279cc2007-06-12 06:35:45 -04002665static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2666{
2667 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002668 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002669 int ret;
2670 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002671 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002672 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002673
Chris Mason3394e162008-11-17 20:42:26 -05002674 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002675 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002676 return -ENOTEMPTY;
2677
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002678 ret = btrfs_reserve_metadata_space(root, 5);
2679 if (ret)
2680 return ret;
2681
Chris Mason39279cc2007-06-12 06:35:45 -04002682 trans = btrfs_start_transaction(root, 1);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002683 if (IS_ERR(trans)) {
2684 btrfs_unreserve_metadata_space(root, 5);
2685 return PTR_ERR(trans);
2686 }
2687
Chris Mason39279cc2007-06-12 06:35:45 -04002688 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002689
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002690 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
2691 err = btrfs_unlink_subvol(trans, root, dir,
2692 BTRFS_I(inode)->location.objectid,
2693 dentry->d_name.name,
2694 dentry->d_name.len);
2695 goto out;
2696 }
2697
Josef Bacik7b128762008-07-24 12:17:14 -04002698 err = btrfs_orphan_add(trans, inode);
2699 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002700 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002701
Chris Mason39279cc2007-06-12 06:35:45 -04002702 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002703 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2704 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002705 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002706 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002707out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002708 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002709 ret = btrfs_end_transaction_throttle(trans, root);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002710 btrfs_unreserve_metadata_space(root, 5);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002711 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002712
Chris Mason39279cc2007-06-12 06:35:45 -04002713 if (ret && !err)
2714 err = ret;
2715 return err;
2716}
2717
Chris Masond20f7042008-12-08 16:58:54 -05002718#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002719/*
Chris Mason323ac952008-10-01 19:05:46 -04002720 * when truncating bytes in a file, it is possible to avoid reading
2721 * the leaves that contain only checksum items. This can be the
2722 * majority of the IO required to delete a large file, but it must
2723 * be done carefully.
2724 *
2725 * The keys in the level just above the leaves are checked to make sure
2726 * the lowest key in a given leaf is a csum key, and starts at an offset
2727 * after the new size.
2728 *
2729 * Then the key for the next leaf is checked to make sure it also has
2730 * a checksum item for the same file. If it does, we know our target leaf
2731 * contains only checksum items, and it can be safely freed without reading
2732 * it.
2733 *
2734 * This is just an optimization targeted at large files. It may do
2735 * nothing. It will return 0 unless things went badly.
2736 */
2737static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2738 struct btrfs_root *root,
2739 struct btrfs_path *path,
2740 struct inode *inode, u64 new_size)
2741{
2742 struct btrfs_key key;
2743 int ret;
2744 int nritems;
2745 struct btrfs_key found_key;
2746 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002747 struct btrfs_leaf_ref *ref;
2748 u64 leaf_gen;
2749 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002750
2751 path->lowest_level = 1;
2752 key.objectid = inode->i_ino;
2753 key.type = BTRFS_CSUM_ITEM_KEY;
2754 key.offset = new_size;
2755again:
2756 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2757 if (ret < 0)
2758 goto out;
2759
2760 if (path->nodes[1] == NULL) {
2761 ret = 0;
2762 goto out;
2763 }
2764 ret = 0;
2765 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2766 nritems = btrfs_header_nritems(path->nodes[1]);
2767
2768 if (!nritems)
2769 goto out;
2770
2771 if (path->slots[1] >= nritems)
2772 goto next_node;
2773
2774 /* did we find a key greater than anything we want to delete? */
2775 if (found_key.objectid > inode->i_ino ||
2776 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2777 goto out;
2778
2779 /* we check the next key in the node to make sure the leave contains
2780 * only checksum items. This comparison doesn't work if our
2781 * leaf is the last one in the node
2782 */
2783 if (path->slots[1] + 1 >= nritems) {
2784next_node:
2785 /* search forward from the last key in the node, this
2786 * will bring us into the next node in the tree
2787 */
2788 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2789
2790 /* unlikely, but we inc below, so check to be safe */
2791 if (found_key.offset == (u64)-1)
2792 goto out;
2793
2794 /* search_forward needs a path with locks held, do the
2795 * search again for the original key. It is possible
2796 * this will race with a balance and return a path that
2797 * we could modify, but this drop is just an optimization
2798 * and is allowed to miss some leaves.
2799 */
2800 btrfs_release_path(root, path);
2801 found_key.offset++;
2802
2803 /* setup a max key for search_forward */
2804 other_key.offset = (u64)-1;
2805 other_key.type = key.type;
2806 other_key.objectid = key.objectid;
2807
2808 path->keep_locks = 1;
2809 ret = btrfs_search_forward(root, &found_key, &other_key,
2810 path, 0, 0);
2811 path->keep_locks = 0;
2812 if (ret || found_key.objectid != key.objectid ||
2813 found_key.type != key.type) {
2814 ret = 0;
2815 goto out;
2816 }
2817
2818 key.offset = found_key.offset;
2819 btrfs_release_path(root, path);
2820 cond_resched();
2821 goto again;
2822 }
2823
2824 /* we know there's one more slot after us in the tree,
2825 * read that key so we can verify it is also a checksum item
2826 */
2827 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2828
2829 if (found_key.objectid < inode->i_ino)
2830 goto next_key;
2831
2832 if (found_key.type != key.type || found_key.offset < new_size)
2833 goto next_key;
2834
2835 /*
2836 * if the key for the next leaf isn't a csum key from this objectid,
2837 * we can't be sure there aren't good items inside this leaf.
2838 * Bail out
2839 */
2840 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2841 goto out;
2842
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002843 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2844 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002845 /*
2846 * it is safe to delete this leaf, it contains only
2847 * csum items from this inode at an offset >= new_size
2848 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002849 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002850 BUG_ON(ret);
2851
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002852 if (root->ref_cows && leaf_gen < trans->transid) {
2853 ref = btrfs_alloc_leaf_ref(root, 0);
2854 if (ref) {
2855 ref->root_gen = root->root_key.offset;
2856 ref->bytenr = leaf_start;
2857 ref->owner = 0;
2858 ref->generation = leaf_gen;
2859 ref->nritems = 0;
2860
Chris Masonbd56b302009-02-04 09:27:02 -05002861 btrfs_sort_leaf_ref(ref);
2862
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002863 ret = btrfs_add_leaf_ref(root, ref, 0);
2864 WARN_ON(ret);
2865 btrfs_free_leaf_ref(root, ref);
2866 } else {
2867 WARN_ON(1);
2868 }
2869 }
Chris Mason323ac952008-10-01 19:05:46 -04002870next_key:
2871 btrfs_release_path(root, path);
2872
2873 if (other_key.objectid == inode->i_ino &&
2874 other_key.type == key.type && other_key.offset > key.offset) {
2875 key.offset = other_key.offset;
2876 cond_resched();
2877 goto again;
2878 }
2879 ret = 0;
2880out:
2881 /* fixup any changes we've made to the path */
2882 path->lowest_level = 0;
2883 path->keep_locks = 0;
2884 btrfs_release_path(root, path);
2885 return ret;
2886}
2887
Chris Masond20f7042008-12-08 16:58:54 -05002888#endif
2889
Chris Mason323ac952008-10-01 19:05:46 -04002890/*
Chris Mason39279cc2007-06-12 06:35:45 -04002891 * this can truncate away extent items, csum items and directory items.
2892 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002893 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002894 *
2895 * csum items that cross the new i_size are truncated to the new size
2896 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002897 *
2898 * min_type is the minimum key type to truncate down to. If set to 0, this
2899 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002900 */
Yan, Zheng80825102009-11-12 09:35:36 +00002901int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2902 struct btrfs_root *root,
2903 struct inode *inode,
2904 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002905{
Chris Mason39279cc2007-06-12 06:35:45 -04002906 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002907 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002908 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00002909 struct btrfs_key key;
2910 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002911 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002912 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002913 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002914 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00002915 u64 mask = root->sectorsize - 1;
2916 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04002917 int found_extent;
2918 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002919 int pending_del_nr = 0;
2920 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002921 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002922 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00002923 int ret;
2924 int err = 0;
2925
2926 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002927
Chris Masone02119d2008-09-05 16:13:11 -04002928 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002929 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00002930
Chris Mason39279cc2007-06-12 06:35:45 -04002931 path = btrfs_alloc_path();
2932 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04002933 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04002934
Chris Mason39279cc2007-06-12 06:35:45 -04002935 key.objectid = inode->i_ino;
2936 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002937 key.type = (u8)-1;
2938
Chris Mason85e21ba2008-01-29 15:11:36 -05002939search_again:
Chris Masonb9473432009-03-13 11:00:37 -04002940 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05002941 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00002942 if (ret < 0) {
2943 err = ret;
2944 goto out;
2945 }
Chris Masond3977122009-01-05 21:25:51 -05002946
Chris Mason85e21ba2008-01-29 15:11:36 -05002947 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002948 /* there are no items in the tree for us to truncate, we're
2949 * done
2950 */
Yan, Zheng80825102009-11-12 09:35:36 +00002951 if (path->slots[0] == 0)
2952 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05002953 path->slots[0]--;
2954 }
2955
Chris Masond3977122009-01-05 21:25:51 -05002956 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002957 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002958 leaf = path->nodes[0];
2959 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2960 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002961 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002962
Chris Mason5f39d392007-10-15 16:14:19 -04002963 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002964 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002965
Chris Mason85e21ba2008-01-29 15:11:36 -05002966 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002967 break;
2968
Chris Mason5f39d392007-10-15 16:14:19 -04002969 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002970 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002971 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002972 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002973 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002974 encoding = btrfs_file_extent_compression(leaf, fi);
2975 encoding |= btrfs_file_extent_encryption(leaf, fi);
2976 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2977
Chris Mason179e29e2007-11-01 11:28:41 -04002978 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002979 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002980 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002981 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002982 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002983 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002984 }
Yan008630c2007-11-07 13:31:09 -05002985 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002986 }
Yan, Zheng80825102009-11-12 09:35:36 +00002987 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04002988 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00002989 } else {
2990 if (item_end < new_size)
2991 break;
2992 if (found_key.offset >= new_size)
2993 del_item = 1;
2994 else
2995 del_item = 0;
2996 }
Chris Mason39279cc2007-06-12 06:35:45 -04002997 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002998 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002999 if (found_type != BTRFS_EXTENT_DATA_KEY)
3000 goto delete;
3001
3002 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003003 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003004 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003005 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003006 u64 orig_num_bytes =
3007 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003008 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003009 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003010 extent_num_bytes = extent_num_bytes &
3011 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003012 btrfs_set_file_extent_num_bytes(leaf, fi,
3013 extent_num_bytes);
3014 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003015 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003016 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003017 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003018 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003019 } else {
Chris Masondb945352007-10-15 16:15:53 -04003020 extent_num_bytes =
3021 btrfs_file_extent_disk_num_bytes(leaf,
3022 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003023 extent_offset = found_key.offset -
3024 btrfs_file_extent_offset(leaf, fi);
3025
Chris Mason39279cc2007-06-12 06:35:45 -04003026 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003027 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003028 if (extent_start != 0) {
3029 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003030 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003031 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003032 }
3033 }
Chris Mason90692182008-02-08 13:49:28 -05003034 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003035 /*
3036 * we can't truncate inline items that have had
3037 * special encodings
3038 */
3039 if (!del_item &&
3040 btrfs_file_extent_compression(leaf, fi) == 0 &&
3041 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3042 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003043 u32 size = new_size - found_key.offset;
3044
3045 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003046 inode_sub_bytes(inode, item_end + 1 -
3047 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003048 }
3049 size =
3050 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003051 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003052 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003053 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003054 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003055 inode_sub_bytes(inode, item_end + 1 -
3056 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003057 }
Chris Mason39279cc2007-06-12 06:35:45 -04003058 }
Chris Mason179e29e2007-11-01 11:28:41 -04003059delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003060 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003061 if (!pending_del_nr) {
3062 /* no pending yet, add ourselves */
3063 pending_del_slot = path->slots[0];
3064 pending_del_nr = 1;
3065 } else if (pending_del_nr &&
3066 path->slots[0] + 1 == pending_del_slot) {
3067 /* hop on the pending chunk */
3068 pending_del_nr++;
3069 pending_del_slot = path->slots[0];
3070 } else {
Chris Masond3977122009-01-05 21:25:51 -05003071 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003072 }
Chris Mason39279cc2007-06-12 06:35:45 -04003073 } else {
3074 break;
3075 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003076 if (found_extent && root->ref_cows) {
Chris Masonb9473432009-03-13 11:00:37 -04003077 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003078 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003079 extent_num_bytes, 0,
3080 btrfs_header_owner(leaf),
3081 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003082 BUG_ON(ret);
3083 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003084
Yan, Zheng80825102009-11-12 09:35:36 +00003085 if (found_type == BTRFS_INODE_ITEM_KEY)
3086 break;
3087
3088 if (path->slots[0] == 0 ||
3089 path->slots[0] != pending_del_slot) {
3090 if (root->ref_cows) {
3091 err = -EAGAIN;
3092 goto out;
3093 }
3094 if (pending_del_nr) {
3095 ret = btrfs_del_items(trans, root, path,
3096 pending_del_slot,
3097 pending_del_nr);
3098 BUG_ON(ret);
3099 pending_del_nr = 0;
3100 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003101 btrfs_release_path(root, path);
3102 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003103 } else {
3104 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003105 }
Chris Mason39279cc2007-06-12 06:35:45 -04003106 }
Yan, Zheng80825102009-11-12 09:35:36 +00003107out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003108 if (pending_del_nr) {
3109 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3110 pending_del_nr);
3111 }
Chris Mason39279cc2007-06-12 06:35:45 -04003112 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003113 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003114}
3115
Chris Masona52d9a82007-08-27 16:49:44 -04003116/*
3117 * taken from block_truncate_page, but does cow as it zeros out
3118 * any bytes left in the last page in the file.
3119 */
3120static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3121{
3122 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003123 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003124 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3125 struct btrfs_ordered_extent *ordered;
3126 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003127 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003128 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3129 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3130 struct page *page;
3131 int ret = 0;
3132 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003133 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003134
3135 if ((offset & (blocksize - 1)) == 0)
3136 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003137 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
3138 if (ret)
3139 goto out;
3140
3141 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
3142 if (ret)
3143 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003144
3145 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003146again:
Chris Masona52d9a82007-08-27 16:49:44 -04003147 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003148 if (!page) {
3149 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
3150 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Masona52d9a82007-08-27 16:49:44 -04003151 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003152 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003153
3154 page_start = page_offset(page);
3155 page_end = page_start + PAGE_CACHE_SIZE - 1;
3156
Chris Masona52d9a82007-08-27 16:49:44 -04003157 if (!PageUptodate(page)) {
3158 ret = btrfs_readpage(NULL, page);
3159 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003160 if (page->mapping != mapping) {
3161 unlock_page(page);
3162 page_cache_release(page);
3163 goto again;
3164 }
Chris Masona52d9a82007-08-27 16:49:44 -04003165 if (!PageUptodate(page)) {
3166 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003167 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003168 }
3169 }
Chris Mason211c17f2008-05-15 09:13:45 -04003170 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003171
3172 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3173 set_page_extent_mapped(page);
3174
3175 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3176 if (ordered) {
3177 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3178 unlock_page(page);
3179 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003180 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003181 btrfs_put_ordered_extent(ordered);
3182 goto again;
3183 }
3184
Josef Bacik5d5e1032009-10-13 16:46:49 -04003185 clear_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
3186 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
3187 GFP_NOFS);
3188
Josef Bacik9ed74f22009-09-11 16:12:44 -04003189 ret = btrfs_set_extent_delalloc(inode, page_start, page_end);
3190 if (ret) {
3191 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3192 goto out_unlock;
3193 }
3194
Chris Masone6dcd2d2008-07-17 12:53:50 -04003195 ret = 0;
3196 if (offset != PAGE_CACHE_SIZE) {
3197 kaddr = kmap(page);
3198 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3199 flush_dcache_page(page);
3200 kunmap(page);
3201 }
Chris Mason247e7432008-07-17 12:53:51 -04003202 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003203 set_page_dirty(page);
3204 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003205
Chris Mason89642222008-07-24 09:41:53 -04003206out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003207 if (ret)
3208 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
3209 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003210 unlock_page(page);
3211 page_cache_release(page);
3212out:
3213 return ret;
3214}
3215
Yan Zheng9036c102008-10-30 14:19:41 -04003216int btrfs_cont_expand(struct inode *inode, loff_t size)
3217{
3218 struct btrfs_trans_handle *trans;
3219 struct btrfs_root *root = BTRFS_I(inode)->root;
3220 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3221 struct extent_map *em;
3222 u64 mask = root->sectorsize - 1;
3223 u64 hole_start = (inode->i_size + mask) & ~mask;
3224 u64 block_end = (size + mask) & ~mask;
3225 u64 last_byte;
3226 u64 cur_offset;
3227 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003228 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003229
3230 if (size <= hole_start)
3231 return 0;
3232
Yan Zheng9036c102008-10-30 14:19:41 -04003233 while (1) {
3234 struct btrfs_ordered_extent *ordered;
3235 btrfs_wait_ordered_range(inode, hole_start,
3236 block_end - hole_start);
3237 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3238 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3239 if (!ordered)
3240 break;
3241 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3242 btrfs_put_ordered_extent(ordered);
3243 }
3244
Yan Zheng9036c102008-10-30 14:19:41 -04003245 cur_offset = hole_start;
3246 while (1) {
3247 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3248 block_end - cur_offset, 0);
3249 BUG_ON(IS_ERR(em) || !em);
3250 last_byte = min(extent_map_end(em), block_end);
3251 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003252 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003253 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003254 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003255
3256 err = btrfs_reserve_metadata_space(root, 2);
Chris Mason771ed682008-11-06 22:02:51 -05003257 if (err)
3258 break;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003259
Yan, Zheng80825102009-11-12 09:35:36 +00003260 trans = btrfs_start_transaction(root, 1);
3261 btrfs_set_trans_block_group(trans, inode);
3262
3263 err = btrfs_drop_extents(trans, inode, cur_offset,
3264 cur_offset + hole_size,
3265 &hint_byte, 1);
3266 BUG_ON(err);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003267
Yan Zheng9036c102008-10-30 14:19:41 -04003268 err = btrfs_insert_file_extent(trans, root,
3269 inode->i_ino, cur_offset, 0,
3270 0, hole_size, 0, hole_size,
3271 0, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003272 BUG_ON(err);
3273
Yan Zheng9036c102008-10-30 14:19:41 -04003274 btrfs_drop_extent_cache(inode, hole_start,
3275 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003276
3277 btrfs_end_transaction(trans, root);
3278 btrfs_unreserve_metadata_space(root, 2);
Yan Zheng9036c102008-10-30 14:19:41 -04003279 }
3280 free_extent_map(em);
3281 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003282 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003283 break;
3284 }
3285
Yan Zheng9036c102008-10-30 14:19:41 -04003286 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3287 return err;
3288}
3289
Yan, Zheng80825102009-11-12 09:35:36 +00003290static int btrfs_setattr_size(struct inode *inode, struct iattr *attr)
3291{
3292 struct btrfs_root *root = BTRFS_I(inode)->root;
3293 struct btrfs_trans_handle *trans;
3294 unsigned long nr;
3295 int ret;
3296
3297 if (attr->ia_size == inode->i_size)
3298 return 0;
3299
3300 if (attr->ia_size > inode->i_size) {
3301 unsigned long limit;
3302 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
3303 if (attr->ia_size > inode->i_sb->s_maxbytes)
3304 return -EFBIG;
3305 if (limit != RLIM_INFINITY && attr->ia_size > limit) {
3306 send_sig(SIGXFSZ, current, 0);
3307 return -EFBIG;
3308 }
3309 }
3310
3311 ret = btrfs_reserve_metadata_space(root, 1);
3312 if (ret)
3313 return ret;
3314
3315 trans = btrfs_start_transaction(root, 1);
3316 btrfs_set_trans_block_group(trans, inode);
3317
3318 ret = btrfs_orphan_add(trans, inode);
3319 BUG_ON(ret);
3320
3321 nr = trans->blocks_used;
3322 btrfs_end_transaction(trans, root);
3323 btrfs_unreserve_metadata_space(root, 1);
3324 btrfs_btree_balance_dirty(root, nr);
3325
3326 if (attr->ia_size > inode->i_size) {
3327 ret = btrfs_cont_expand(inode, attr->ia_size);
3328 if (ret) {
3329 btrfs_truncate(inode);
3330 return ret;
3331 }
3332
3333 i_size_write(inode, attr->ia_size);
3334 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
3335
3336 trans = btrfs_start_transaction(root, 1);
3337 btrfs_set_trans_block_group(trans, inode);
3338
3339 ret = btrfs_update_inode(trans, root, inode);
3340 BUG_ON(ret);
3341 if (inode->i_nlink > 0) {
3342 ret = btrfs_orphan_del(trans, inode);
3343 BUG_ON(ret);
3344 }
3345 nr = trans->blocks_used;
3346 btrfs_end_transaction(trans, root);
3347 btrfs_btree_balance_dirty(root, nr);
3348 return 0;
3349 }
3350
3351 /*
3352 * We're truncating a file that used to have good data down to
3353 * zero. Make sure it gets into the ordered flush list so that
3354 * any new writes get down to disk quickly.
3355 */
3356 if (attr->ia_size == 0)
3357 BTRFS_I(inode)->ordered_data_close = 1;
3358
3359 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3360 ret = vmtruncate(inode, attr->ia_size);
3361 BUG_ON(ret);
3362
3363 return 0;
3364}
3365
Chris Mason39279cc2007-06-12 06:35:45 -04003366static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3367{
3368 struct inode *inode = dentry->d_inode;
3369 int err;
3370
3371 err = inode_change_ok(inode, attr);
3372 if (err)
3373 return err;
3374
Chris Mason5a3f23d2009-03-31 13:27:11 -04003375 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Yan, Zheng80825102009-11-12 09:35:36 +00003376 err = btrfs_setattr_size(inode, attr);
3377 if (err)
3378 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003379 }
Yan, Zheng80825102009-11-12 09:35:36 +00003380 attr->ia_valid &= ~ATTR_SIZE;
Yan Zheng9036c102008-10-30 14:19:41 -04003381
Yan, Zheng80825102009-11-12 09:35:36 +00003382 if (attr->ia_valid)
3383 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04003384
3385 if (!err && ((attr->ia_valid & ATTR_MODE)))
3386 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003387 return err;
3388}
Chris Mason61295eb2008-01-14 16:24:38 -05003389
Chris Mason39279cc2007-06-12 06:35:45 -04003390void btrfs_delete_inode(struct inode *inode)
3391{
3392 struct btrfs_trans_handle *trans;
3393 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04003394 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003395 int ret;
3396
3397 truncate_inode_pages(&inode->i_data, 0);
3398 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003399 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003400 goto no_delete;
3401 }
Chris Mason4a096752008-07-21 10:29:44 -04003402 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003403
Yan, Zhengc71bf092009-11-12 09:34:40 +00003404 if (root->fs_info->log_root_recovering) {
3405 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3406 goto no_delete;
3407 }
3408
Yan, Zheng76dda932009-09-21 16:00:26 -04003409 if (inode->i_nlink > 0) {
3410 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3411 goto no_delete;
3412 }
3413
Chris Masondbe674a2008-07-17 12:54:05 -04003414 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003415
Yan, Zheng80825102009-11-12 09:35:36 +00003416 while (1) {
3417 trans = btrfs_start_transaction(root, 1);
3418 btrfs_set_trans_block_group(trans, inode);
3419 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
3420
3421 if (ret != -EAGAIN)
3422 break;
3423
3424 nr = trans->blocks_used;
3425 btrfs_end_transaction(trans, root);
3426 trans = NULL;
3427 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003428 }
3429
Yan, Zheng80825102009-11-12 09:35:36 +00003430 if (ret == 0) {
3431 ret = btrfs_orphan_del(trans, inode);
3432 BUG_ON(ret);
3433 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003434
Chris Masond3c2fdc2007-09-17 10:58:06 -04003435 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003436 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003437 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003438no_delete:
3439 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003440 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003441}
3442
3443/*
3444 * this returns the key found in the dir entry in the location pointer.
3445 * If no dir entries were found, location->objectid is 0.
3446 */
3447static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3448 struct btrfs_key *location)
3449{
3450 const char *name = dentry->d_name.name;
3451 int namelen = dentry->d_name.len;
3452 struct btrfs_dir_item *di;
3453 struct btrfs_path *path;
3454 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003455 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003456
3457 path = btrfs_alloc_path();
3458 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003459
Chris Mason39279cc2007-06-12 06:35:45 -04003460 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3461 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003462 if (IS_ERR(di))
3463 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003464
3465 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003466 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003467
Chris Mason5f39d392007-10-15 16:14:19 -04003468 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003469out:
Chris Mason39279cc2007-06-12 06:35:45 -04003470 btrfs_free_path(path);
3471 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003472out_err:
3473 location->objectid = 0;
3474 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003475}
3476
3477/*
3478 * when we hit a tree root in a directory, the btrfs part of the inode
3479 * needs to be changed to reflect the root directory of the tree root. This
3480 * is kind of like crossing a mount point.
3481 */
3482static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003483 struct inode *dir,
3484 struct dentry *dentry,
3485 struct btrfs_key *location,
3486 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003487{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003488 struct btrfs_path *path;
3489 struct btrfs_root *new_root;
3490 struct btrfs_root_ref *ref;
3491 struct extent_buffer *leaf;
3492 int ret;
3493 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003494
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003495 path = btrfs_alloc_path();
3496 if (!path) {
3497 err = -ENOMEM;
3498 goto out;
3499 }
Chris Mason39279cc2007-06-12 06:35:45 -04003500
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003501 err = -ENOENT;
3502 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3503 BTRFS_I(dir)->root->root_key.objectid,
3504 location->objectid);
3505 if (ret) {
3506 if (ret < 0)
3507 err = ret;
3508 goto out;
3509 }
Chris Mason39279cc2007-06-12 06:35:45 -04003510
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003511 leaf = path->nodes[0];
3512 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3513 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3514 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3515 goto out;
3516
3517 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3518 (unsigned long)(ref + 1),
3519 dentry->d_name.len);
3520 if (ret)
3521 goto out;
3522
3523 btrfs_release_path(root->fs_info->tree_root, path);
3524
3525 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3526 if (IS_ERR(new_root)) {
3527 err = PTR_ERR(new_root);
3528 goto out;
3529 }
3530
3531 if (btrfs_root_refs(&new_root->root_item) == 0) {
3532 err = -ENOENT;
3533 goto out;
3534 }
3535
3536 *sub_root = new_root;
3537 location->objectid = btrfs_root_dirid(&new_root->root_item);
3538 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003539 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003540 err = 0;
3541out:
3542 btrfs_free_path(path);
3543 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003544}
3545
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003546static void inode_tree_add(struct inode *inode)
3547{
3548 struct btrfs_root *root = BTRFS_I(inode)->root;
3549 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003550 struct rb_node **p;
3551 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003552again:
3553 p = &root->inode_tree.rb_node;
3554 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003555
Yan, Zheng76dda932009-09-21 16:00:26 -04003556 if (hlist_unhashed(&inode->i_hash))
3557 return;
3558
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003559 spin_lock(&root->inode_lock);
3560 while (*p) {
3561 parent = *p;
3562 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3563
3564 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003565 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003566 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003567 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003568 else {
3569 WARN_ON(!(entry->vfs_inode.i_state &
3570 (I_WILL_FREE | I_FREEING | I_CLEAR)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003571 rb_erase(parent, &root->inode_tree);
3572 RB_CLEAR_NODE(parent);
3573 spin_unlock(&root->inode_lock);
3574 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003575 }
3576 }
3577 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3578 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3579 spin_unlock(&root->inode_lock);
3580}
3581
3582static void inode_tree_del(struct inode *inode)
3583{
3584 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003585 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003586
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003587 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003588 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003589 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003590 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003591 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003592 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003593 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003594
3595 if (empty && btrfs_root_refs(&root->root_item) == 0) {
3596 synchronize_srcu(&root->fs_info->subvol_srcu);
3597 spin_lock(&root->inode_lock);
3598 empty = RB_EMPTY_ROOT(&root->inode_tree);
3599 spin_unlock(&root->inode_lock);
3600 if (empty)
3601 btrfs_add_dead_root(root);
3602 }
3603}
3604
3605int btrfs_invalidate_inodes(struct btrfs_root *root)
3606{
3607 struct rb_node *node;
3608 struct rb_node *prev;
3609 struct btrfs_inode *entry;
3610 struct inode *inode;
3611 u64 objectid = 0;
3612
3613 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3614
3615 spin_lock(&root->inode_lock);
3616again:
3617 node = root->inode_tree.rb_node;
3618 prev = NULL;
3619 while (node) {
3620 prev = node;
3621 entry = rb_entry(node, struct btrfs_inode, rb_node);
3622
3623 if (objectid < entry->vfs_inode.i_ino)
3624 node = node->rb_left;
3625 else if (objectid > entry->vfs_inode.i_ino)
3626 node = node->rb_right;
3627 else
3628 break;
3629 }
3630 if (!node) {
3631 while (prev) {
3632 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3633 if (objectid <= entry->vfs_inode.i_ino) {
3634 node = prev;
3635 break;
3636 }
3637 prev = rb_next(prev);
3638 }
3639 }
3640 while (node) {
3641 entry = rb_entry(node, struct btrfs_inode, rb_node);
3642 objectid = entry->vfs_inode.i_ino + 1;
3643 inode = igrab(&entry->vfs_inode);
3644 if (inode) {
3645 spin_unlock(&root->inode_lock);
3646 if (atomic_read(&inode->i_count) > 1)
3647 d_prune_aliases(inode);
3648 /*
3649 * btrfs_drop_inode will remove it from
3650 * the inode cache when its usage count
3651 * hits zero.
3652 */
3653 iput(inode);
3654 cond_resched();
3655 spin_lock(&root->inode_lock);
3656 goto again;
3657 }
3658
3659 if (cond_resched_lock(&root->inode_lock))
3660 goto again;
3661
3662 node = rb_next(node);
3663 }
3664 spin_unlock(&root->inode_lock);
3665 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003666}
3667
Chris Masone02119d2008-09-05 16:13:11 -04003668static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003669{
Chris Masone02119d2008-09-05 16:13:11 -04003670 struct btrfs_inode *bi = BTRFS_I(inode);
3671
Chris Masone02119d2008-09-05 16:13:11 -04003672 bi->generation = 0;
Chris Masonc3027eb2008-12-08 16:40:21 -05003673 bi->sequence = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003674 bi->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04003675 bi->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003676 bi->logged_trans = 0;
3677 bi->delalloc_bytes = 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003678 bi->reserved_bytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003679 bi->disk_i_size = 0;
3680 bi->flags = 0;
3681 bi->index_cnt = (u64)-1;
Chris Mason12fcfd22009-03-24 10:24:20 -04003682 bi->last_unlink_trans = 0;
Chris Mason27574952009-05-14 13:10:02 -04003683 bi->ordered_data_close = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003684 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3685 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04003686 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003687 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3688 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04003689 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04003690 INIT_LIST_HEAD(&BTRFS_I(inode)->ordered_operations);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003691 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Chris Masonba1da2f2008-07-17 12:54:15 -04003692 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masone02119d2008-09-05 16:13:11 -04003693 mutex_init(&BTRFS_I(inode)->log_mutex);
3694}
3695
3696static int btrfs_init_locked_inode(struct inode *inode, void *p)
3697{
3698 struct btrfs_iget_args *args = p;
3699 inode->i_ino = args->ino;
3700 init_btrfs_i(inode);
3701 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003702 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003703 return 0;
3704}
3705
3706static int btrfs_find_actor(struct inode *inode, void *opaque)
3707{
3708 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05003709 return args->ino == inode->i_ino &&
3710 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003711}
3712
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003713static struct inode *btrfs_iget_locked(struct super_block *s,
3714 u64 objectid,
3715 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003716{
3717 struct inode *inode;
3718 struct btrfs_iget_args args;
3719 args.ino = objectid;
3720 args.root = root;
3721
3722 inode = iget5_locked(s, objectid, btrfs_find_actor,
3723 btrfs_init_locked_inode,
3724 (void *)&args);
3725 return inode;
3726}
3727
Balaji Rao1a54ef82008-07-21 02:01:04 +05303728/* Get an inode object given its location and corresponding root.
3729 * Returns in *is_new if the inode was read from disk
3730 */
3731struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003732 struct btrfs_root *root)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303733{
3734 struct inode *inode;
3735
3736 inode = btrfs_iget_locked(s, location->objectid, root);
3737 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003738 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303739
3740 if (inode->i_state & I_NEW) {
3741 BTRFS_I(inode)->root = root;
3742 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3743 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003744
3745 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303746 unlock_new_inode(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303747 }
3748
3749 return inode;
3750}
3751
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003752static struct inode *new_simple_dir(struct super_block *s,
3753 struct btrfs_key *key,
3754 struct btrfs_root *root)
3755{
3756 struct inode *inode = new_inode(s);
3757
3758 if (!inode)
3759 return ERR_PTR(-ENOMEM);
3760
3761 init_btrfs_i(inode);
3762
3763 BTRFS_I(inode)->root = root;
3764 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3765 BTRFS_I(inode)->dummy_inode = 1;
3766
3767 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3768 inode->i_op = &simple_dir_inode_operations;
3769 inode->i_fop = &simple_dir_operations;
3770 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3771 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3772
3773 return inode;
3774}
3775
Chris Mason3de45862008-11-17 21:02:50 -05003776struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003777{
Chris Masond3977122009-01-05 21:25:51 -05003778 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003779 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003780 struct btrfs_root *sub_root = root;
3781 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04003782 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003783 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003784
Yan, Zheng76dda932009-09-21 16:00:26 -04003785 dentry->d_op = &btrfs_dentry_operations;
3786
Chris Mason39279cc2007-06-12 06:35:45 -04003787 if (dentry->d_name.len > BTRFS_NAME_LEN)
3788 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003789
Chris Mason39279cc2007-06-12 06:35:45 -04003790 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003791
Chris Mason39279cc2007-06-12 06:35:45 -04003792 if (ret < 0)
3793 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003794
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003795 if (location.objectid == 0)
3796 return NULL;
3797
3798 if (location.type == BTRFS_INODE_ITEM_KEY) {
3799 inode = btrfs_iget(dir->i_sb, &location, root);
3800 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003801 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003802
3803 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
3804
Yan, Zheng76dda932009-09-21 16:00:26 -04003805 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003806 ret = fixup_tree_root_location(root, dir, dentry,
3807 &location, &sub_root);
3808 if (ret < 0) {
3809 if (ret != -ENOENT)
3810 inode = ERR_PTR(ret);
3811 else
3812 inode = new_simple_dir(dir->i_sb, &location, sub_root);
3813 } else {
Chris Mason39279cc2007-06-12 06:35:45 -04003814 inode = btrfs_iget(dir->i_sb, &location, sub_root);
Chris Mason39279cc2007-06-12 06:35:45 -04003815 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003816 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
3817
Yan, Zhengc71bf092009-11-12 09:34:40 +00003818 if (root != sub_root) {
3819 down_read(&root->fs_info->cleanup_work_sem);
3820 if (!(inode->i_sb->s_flags & MS_RDONLY))
3821 btrfs_orphan_cleanup(sub_root);
3822 up_read(&root->fs_info->cleanup_work_sem);
3823 }
3824
Chris Mason3de45862008-11-17 21:02:50 -05003825 return inode;
3826}
3827
Yan, Zheng76dda932009-09-21 16:00:26 -04003828static int btrfs_dentry_delete(struct dentry *dentry)
3829{
3830 struct btrfs_root *root;
3831
Yan, Zhengefefb142009-10-09 09:25:16 -04003832 if (!dentry->d_inode && !IS_ROOT(dentry))
3833 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04003834
Yan, Zhengefefb142009-10-09 09:25:16 -04003835 if (dentry->d_inode) {
3836 root = BTRFS_I(dentry->d_inode)->root;
3837 if (btrfs_root_refs(&root->root_item) == 0)
3838 return 1;
3839 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003840 return 0;
3841}
3842
Chris Mason3de45862008-11-17 21:02:50 -05003843static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3844 struct nameidata *nd)
3845{
3846 struct inode *inode;
3847
Chris Mason3de45862008-11-17 21:02:50 -05003848 inode = btrfs_lookup_dentry(dir, dentry);
3849 if (IS_ERR(inode))
3850 return ERR_CAST(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003851
Chris Mason39279cc2007-06-12 06:35:45 -04003852 return d_splice_alias(inode, dentry);
3853}
3854
3855static unsigned char btrfs_filetype_table[] = {
3856 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3857};
3858
David Woodhousecbdf5a22008-08-06 19:42:33 +01003859static int btrfs_real_readdir(struct file *filp, void *dirent,
3860 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003861{
3862 struct inode *inode = filp->f_dentry->d_inode;
3863 struct btrfs_root *root = BTRFS_I(inode)->root;
3864 struct btrfs_item *item;
3865 struct btrfs_dir_item *di;
3866 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003867 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003868 struct btrfs_path *path;
3869 int ret;
3870 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003871 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003872 int slot;
3873 int advance;
3874 unsigned char d_type;
3875 int over = 0;
3876 u32 di_cur;
3877 u32 di_total;
3878 u32 di_len;
3879 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003880 char tmp_name[32];
3881 char *name_ptr;
3882 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003883
3884 /* FIXME, use a real flag for deciding about the key type */
3885 if (root->fs_info->tree_root == root)
3886 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003887
Chris Mason39544012007-12-12 14:38:19 -05003888 /* special case for "." */
3889 if (filp->f_pos == 0) {
3890 over = filldir(dirent, ".", 1,
3891 1, inode->i_ino,
3892 DT_DIR);
3893 if (over)
3894 return 0;
3895 filp->f_pos = 1;
3896 }
Chris Mason39544012007-12-12 14:38:19 -05003897 /* special case for .., just use the back ref */
3898 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003899 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003900 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003901 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003902 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003903 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003904 filp->f_pos = 2;
3905 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003906 path = btrfs_alloc_path();
3907 path->reada = 2;
3908
Chris Mason39279cc2007-06-12 06:35:45 -04003909 btrfs_set_key_type(&key, key_type);
3910 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003911 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003912
Chris Mason39279cc2007-06-12 06:35:45 -04003913 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3914 if (ret < 0)
3915 goto err;
3916 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003917
3918 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003919 leaf = path->nodes[0];
3920 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003921 slot = path->slots[0];
3922 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003923 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003924 ret = btrfs_next_leaf(root, path);
3925 if (ret)
3926 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003927 leaf = path->nodes[0];
3928 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003929 slot = path->slots[0];
3930 } else {
3931 slot++;
3932 path->slots[0]++;
3933 }
3934 }
Chris Mason3de45862008-11-17 21:02:50 -05003935
Chris Mason39279cc2007-06-12 06:35:45 -04003936 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003937 item = btrfs_item_nr(leaf, slot);
3938 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3939
3940 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003941 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003942 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003943 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003944 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003945 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003946
3947 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003948
Chris Mason39279cc2007-06-12 06:35:45 -04003949 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3950 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003951 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003952
3953 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003954 struct btrfs_key location;
3955
3956 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003957 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003958 name_ptr = tmp_name;
3959 } else {
3960 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003961 if (!name_ptr) {
3962 ret = -ENOMEM;
3963 goto err;
3964 }
Chris Mason5f39d392007-10-15 16:14:19 -04003965 }
3966 read_extent_buffer(leaf, name_ptr,
3967 (unsigned long)(di + 1), name_len);
3968
3969 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3970 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05003971
3972 /* is this a reference to our own snapshot? If so
3973 * skip it
3974 */
3975 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3976 location.objectid == root->root_key.objectid) {
3977 over = 0;
3978 goto skip;
3979 }
Chris Mason5f39d392007-10-15 16:14:19 -04003980 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003981 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003982 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003983
Chris Mason3de45862008-11-17 21:02:50 -05003984skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003985 if (name_ptr != tmp_name)
3986 kfree(name_ptr);
3987
Chris Mason39279cc2007-06-12 06:35:45 -04003988 if (over)
3989 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003990 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003991 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003992 di_cur += di_len;
3993 di = (struct btrfs_dir_item *)((char *)di + di_len);
3994 }
3995 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003996
3997 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003998 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00003999 /*
4000 * 32-bit glibc will use getdents64, but then strtol -
4001 * so the last number we can serve is this.
4002 */
4003 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004004 else
4005 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004006nopos:
4007 ret = 0;
4008err:
Chris Mason39279cc2007-06-12 06:35:45 -04004009 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004010 return ret;
4011}
4012
4013int btrfs_write_inode(struct inode *inode, int wait)
4014{
4015 struct btrfs_root *root = BTRFS_I(inode)->root;
4016 struct btrfs_trans_handle *trans;
4017 int ret = 0;
4018
Yan Zhengc146afa2008-11-12 14:34:12 -05004019 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004020 return 0;
4021
Chris Mason39279cc2007-06-12 06:35:45 -04004022 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04004023 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004024 btrfs_set_trans_block_group(trans, inode);
4025 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004026 }
4027 return ret;
4028}
4029
4030/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004031 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004032 * inode changes. But, it is most likely to find the inode in cache.
4033 * FIXME, needs more benchmarking...there are no reasons other than performance
4034 * to keep or drop this code.
4035 */
4036void btrfs_dirty_inode(struct inode *inode)
4037{
4038 struct btrfs_root *root = BTRFS_I(inode)->root;
4039 struct btrfs_trans_handle *trans;
4040
Chris Masonf9295742008-07-17 12:54:14 -04004041 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004042 btrfs_set_trans_block_group(trans, inode);
4043 btrfs_update_inode(trans, root, inode);
4044 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004045}
4046
Chris Masond352ac62008-09-29 15:18:18 -04004047/*
4048 * find the highest existing sequence number in a directory
4049 * and then set the in-memory index_cnt variable to reflect
4050 * free sequence numbers
4051 */
Josef Bacikaec74772008-07-24 12:12:38 -04004052static int btrfs_set_inode_index_count(struct inode *inode)
4053{
4054 struct btrfs_root *root = BTRFS_I(inode)->root;
4055 struct btrfs_key key, found_key;
4056 struct btrfs_path *path;
4057 struct extent_buffer *leaf;
4058 int ret;
4059
4060 key.objectid = inode->i_ino;
4061 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4062 key.offset = (u64)-1;
4063
4064 path = btrfs_alloc_path();
4065 if (!path)
4066 return -ENOMEM;
4067
4068 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4069 if (ret < 0)
4070 goto out;
4071 /* FIXME: we should be able to handle this */
4072 if (ret == 0)
4073 goto out;
4074 ret = 0;
4075
4076 /*
4077 * MAGIC NUMBER EXPLANATION:
4078 * since we search a directory based on f_pos we have to start at 2
4079 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4080 * else has to start at 2
4081 */
4082 if (path->slots[0] == 0) {
4083 BTRFS_I(inode)->index_cnt = 2;
4084 goto out;
4085 }
4086
4087 path->slots[0]--;
4088
4089 leaf = path->nodes[0];
4090 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4091
4092 if (found_key.objectid != inode->i_ino ||
4093 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4094 BTRFS_I(inode)->index_cnt = 2;
4095 goto out;
4096 }
4097
4098 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4099out:
4100 btrfs_free_path(path);
4101 return ret;
4102}
4103
Chris Masond352ac62008-09-29 15:18:18 -04004104/*
4105 * helper to find a free sequence number in a given directory. This current
4106 * code is very simple, later versions will do smarter things in the btree
4107 */
Chris Mason3de45862008-11-17 21:02:50 -05004108int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004109{
4110 int ret = 0;
4111
4112 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4113 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004114 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004115 return ret;
4116 }
4117
Chris Mason00e4e6b2008-08-05 11:18:09 -04004118 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004119 BTRFS_I(dir)->index_cnt++;
4120
4121 return ret;
4122}
4123
Chris Mason39279cc2007-06-12 06:35:45 -04004124static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4125 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004126 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004127 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004128 u64 ref_objectid, u64 objectid,
4129 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004130{
4131 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004132 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004133 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004134 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004135 struct btrfs_inode_ref *ref;
4136 struct btrfs_key key[2];
4137 u32 sizes[2];
4138 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004139 int ret;
4140 int owner;
4141
Chris Mason5f39d392007-10-15 16:14:19 -04004142 path = btrfs_alloc_path();
4143 BUG_ON(!path);
4144
Chris Mason39279cc2007-06-12 06:35:45 -04004145 inode = new_inode(root->fs_info->sb);
4146 if (!inode)
4147 return ERR_PTR(-ENOMEM);
4148
Josef Bacikaec74772008-07-24 12:12:38 -04004149 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004150 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004151 if (ret) {
4152 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004153 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004154 }
Josef Bacikaec74772008-07-24 12:12:38 -04004155 }
4156 /*
4157 * index_cnt is ignored for everything but a dir,
4158 * btrfs_get_inode_index_count has an explanation for the magic
4159 * number
4160 */
Chris Masone02119d2008-09-05 16:13:11 -04004161 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004162 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004163 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004164 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik6a632092009-02-20 11:00:09 -05004165 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004166
Chris Mason39279cc2007-06-12 06:35:45 -04004167 if (mode & S_IFDIR)
4168 owner = 0;
4169 else
4170 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004171 BTRFS_I(inode)->block_group =
4172 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004173
4174 key[0].objectid = objectid;
4175 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4176 key[0].offset = 0;
4177
4178 key[1].objectid = objectid;
4179 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4180 key[1].offset = ref_objectid;
4181
4182 sizes[0] = sizeof(struct btrfs_inode_item);
4183 sizes[1] = name_len + sizeof(*ref);
4184
Chris Masonb9473432009-03-13 11:00:37 -04004185 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004186 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4187 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004188 goto fail;
4189
Chris Mason79683f22008-11-19 22:00:53 -05004190 inode->i_uid = current_fsuid();
Chris Ball8c087b52009-02-04 09:29:54 -05004191
Chris Mason42f15d72009-02-06 11:35:57 -05004192 if (dir && (dir->i_mode & S_ISGID)) {
Chris Ball8c087b52009-02-04 09:29:54 -05004193 inode->i_gid = dir->i_gid;
4194 if (S_ISDIR(mode))
4195 mode |= S_ISGID;
4196 } else
4197 inode->i_gid = current_fsgid();
4198
Chris Mason39279cc2007-06-12 06:35:45 -04004199 inode->i_mode = mode;
4200 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004201 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004202 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004203 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4204 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004205 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004206
4207 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4208 struct btrfs_inode_ref);
4209 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004210 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004211 ptr = (unsigned long)(ref + 1);
4212 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4213
Chris Mason5f39d392007-10-15 16:14:19 -04004214 btrfs_mark_buffer_dirty(path->nodes[0]);
4215 btrfs_free_path(path);
4216
Chris Mason39279cc2007-06-12 06:35:45 -04004217 location = &BTRFS_I(inode)->location;
4218 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004219 location->offset = 0;
4220 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4221
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004222 btrfs_inherit_iflags(inode, dir);
4223
Chris Mason94272162009-07-02 12:26:06 -04004224 if ((mode & S_IFREG)) {
4225 if (btrfs_test_opt(root, NODATASUM))
4226 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4227 if (btrfs_test_opt(root, NODATACOW))
4228 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4229 }
4230
Chris Mason39279cc2007-06-12 06:35:45 -04004231 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004232 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004233 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004234fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004235 if (dir)
4236 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004237 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004238 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004239 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004240}
4241
4242static inline u8 btrfs_inode_type(struct inode *inode)
4243{
4244 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4245}
4246
Chris Masond352ac62008-09-29 15:18:18 -04004247/*
4248 * utility function to add 'inode' into 'parent_inode' with
4249 * a give name and a given sequence number.
4250 * if 'add_backref' is true, also insert a backref from the
4251 * inode to the parent directory.
4252 */
Chris Masone02119d2008-09-05 16:13:11 -04004253int btrfs_add_link(struct btrfs_trans_handle *trans,
4254 struct inode *parent_inode, struct inode *inode,
4255 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004256{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004257 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004258 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004259 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004260
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004261 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4262 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4263 } else {
4264 key.objectid = inode->i_ino;
4265 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4266 key.offset = 0;
4267 }
Chris Mason39279cc2007-06-12 06:35:45 -04004268
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004269 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4270 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4271 key.objectid, root->root_key.objectid,
4272 parent_inode->i_ino,
4273 index, name, name_len);
4274 } else if (add_backref) {
4275 ret = btrfs_insert_inode_ref(trans, root,
4276 name, name_len, inode->i_ino,
4277 parent_inode->i_ino, index);
4278 }
4279
Chris Mason39279cc2007-06-12 06:35:45 -04004280 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004281 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4282 parent_inode->i_ino, &key,
4283 btrfs_inode_type(inode), index);
4284 BUG_ON(ret);
4285
Chris Masondbe674a2008-07-17 12:54:05 -04004286 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004287 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004288 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004289 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004290 }
4291 return ret;
4292}
4293
4294static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05004295 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004296 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004297{
Chris Masone02119d2008-09-05 16:13:11 -04004298 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4299 inode, dentry->d_name.name,
4300 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004301 if (!err) {
4302 d_instantiate(dentry, inode);
4303 return 0;
4304 }
4305 if (err > 0)
4306 err = -EEXIST;
4307 return err;
4308}
4309
Josef Bacik618e21d2007-07-11 10:18:17 -04004310static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4311 int mode, dev_t rdev)
4312{
4313 struct btrfs_trans_handle *trans;
4314 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004315 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004316 int err;
4317 int drop_inode = 0;
4318 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004319 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004320 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004321
4322 if (!new_valid_dev(rdev))
4323 return -EINVAL;
4324
Josef Bacik9ed74f22009-09-11 16:12:44 -04004325 /*
4326 * 2 for inode item and ref
4327 * 2 for dir items
4328 * 1 for xattr if selinux is on
4329 */
4330 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004331 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004332 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004333
Josef Bacik618e21d2007-07-11 10:18:17 -04004334 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004335 if (!trans)
4336 goto fail;
Josef Bacik618e21d2007-07-11 10:18:17 -04004337 btrfs_set_trans_block_group(trans, dir);
4338
4339 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4340 if (err) {
4341 err = -ENOSPC;
4342 goto out_unlock;
4343 }
4344
Josef Bacikaec74772008-07-24 12:12:38 -04004345 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004346 dentry->d_name.len,
4347 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004348 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004349 err = PTR_ERR(inode);
4350 if (IS_ERR(inode))
4351 goto out_unlock;
4352
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004353 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004354 if (err) {
4355 drop_inode = 1;
4356 goto out_unlock;
4357 }
4358
Josef Bacik618e21d2007-07-11 10:18:17 -04004359 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004360 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004361 if (err)
4362 drop_inode = 1;
4363 else {
4364 inode->i_op = &btrfs_special_inode_operations;
4365 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004366 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004367 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004368 btrfs_update_inode_block_group(trans, inode);
4369 btrfs_update_inode_block_group(trans, dir);
4370out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004371 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004372 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004373fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004374 btrfs_unreserve_metadata_space(root, 5);
Josef Bacik618e21d2007-07-11 10:18:17 -04004375 if (drop_inode) {
4376 inode_dec_link_count(inode);
4377 iput(inode);
4378 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004379 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004380 return err;
4381}
4382
Chris Mason39279cc2007-06-12 06:35:45 -04004383static int btrfs_create(struct inode *dir, struct dentry *dentry,
4384 int mode, struct nameidata *nd)
4385{
4386 struct btrfs_trans_handle *trans;
4387 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004388 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004389 int err;
4390 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05004391 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004392 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004393 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004394
Josef Bacik9ed74f22009-09-11 16:12:44 -04004395 /*
4396 * 2 for inode item and ref
4397 * 2 for dir items
4398 * 1 for xattr if selinux is on
4399 */
4400 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004401 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004402 return err;
4403
Chris Mason39279cc2007-06-12 06:35:45 -04004404 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004405 if (!trans)
4406 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04004407 btrfs_set_trans_block_group(trans, dir);
4408
4409 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4410 if (err) {
4411 err = -ENOSPC;
4412 goto out_unlock;
4413 }
4414
Josef Bacikaec74772008-07-24 12:12:38 -04004415 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004416 dentry->d_name.len,
4417 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004418 objectid, BTRFS_I(dir)->block_group, mode,
4419 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004420 err = PTR_ERR(inode);
4421 if (IS_ERR(inode))
4422 goto out_unlock;
4423
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004424 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004425 if (err) {
4426 drop_inode = 1;
4427 goto out_unlock;
4428 }
4429
Chris Mason39279cc2007-06-12 06:35:45 -04004430 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004431 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004432 if (err)
4433 drop_inode = 1;
4434 else {
4435 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004436 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004437 inode->i_fop = &btrfs_file_operations;
4438 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004439 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004440 }
Chris Mason39279cc2007-06-12 06:35:45 -04004441 btrfs_update_inode_block_group(trans, inode);
4442 btrfs_update_inode_block_group(trans, dir);
4443out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004444 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004445 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004446fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004447 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004448 if (drop_inode) {
4449 inode_dec_link_count(inode);
4450 iput(inode);
4451 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004452 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004453 return err;
4454}
4455
4456static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4457 struct dentry *dentry)
4458{
4459 struct btrfs_trans_handle *trans;
4460 struct btrfs_root *root = BTRFS_I(dir)->root;
4461 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004462 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004463 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004464 int err;
4465 int drop_inode = 0;
4466
4467 if (inode->i_nlink == 0)
4468 return -ENOENT;
4469
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004470 /* do not allow sys_link's with other subvols of the same device */
4471 if (root->objectid != BTRFS_I(inode)->root->objectid)
4472 return -EPERM;
4473
Josef Bacik9ed74f22009-09-11 16:12:44 -04004474 /*
4475 * 1 item for inode ref
4476 * 2 items for dir items
4477 */
4478 err = btrfs_reserve_metadata_space(root, 3);
Chris Mason1832a6d2007-12-21 16:27:21 -05004479 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004480 return err;
4481
4482 btrfs_inc_nlink(inode);
4483
Chris Mason3de45862008-11-17 21:02:50 -05004484 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004485 if (err)
4486 goto fail;
4487
Chris Mason39279cc2007-06-12 06:35:45 -04004488 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004489
Chris Mason39279cc2007-06-12 06:35:45 -04004490 btrfs_set_trans_block_group(trans, dir);
4491 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04004492
Chris Mason00e4e6b2008-08-05 11:18:09 -04004493 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004494
Yan, Zhenga5719522009-09-24 09:17:31 -04004495 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004496 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004497 } else {
4498 btrfs_update_inode_block_group(trans, dir);
4499 err = btrfs_update_inode(trans, root, inode);
4500 BUG_ON(err);
4501 btrfs_log_new_name(trans, inode, NULL, dentry->d_parent);
4502 }
Chris Mason39279cc2007-06-12 06:35:45 -04004503
Chris Masond3c2fdc2007-09-17 10:58:06 -04004504 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004505 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004506fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004507 btrfs_unreserve_metadata_space(root, 3);
Chris Mason39279cc2007-06-12 06:35:45 -04004508 if (drop_inode) {
4509 inode_dec_link_count(inode);
4510 iput(inode);
4511 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004512 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004513 return err;
4514}
4515
Chris Mason39279cc2007-06-12 06:35:45 -04004516static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4517{
Chris Masonb9d86662008-05-02 16:13:49 -04004518 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004519 struct btrfs_trans_handle *trans;
4520 struct btrfs_root *root = BTRFS_I(dir)->root;
4521 int err = 0;
4522 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004523 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004524 u64 index = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04004525 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004526
Josef Bacik9ed74f22009-09-11 16:12:44 -04004527 /*
4528 * 2 items for inode and ref
4529 * 2 items for dir items
4530 * 1 for xattr if selinux is on
4531 */
4532 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004533 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004534 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004535
Chris Mason39279cc2007-06-12 06:35:45 -04004536 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004537 if (!trans) {
4538 err = -ENOMEM;
Chris Mason39279cc2007-06-12 06:35:45 -04004539 goto out_unlock;
4540 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04004541 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004542
4543 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4544 if (err) {
4545 err = -ENOSPC;
4546 goto out_unlock;
4547 }
4548
Josef Bacikaec74772008-07-24 12:12:38 -04004549 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004550 dentry->d_name.len,
4551 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004552 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4553 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004554 if (IS_ERR(inode)) {
4555 err = PTR_ERR(inode);
4556 goto out_fail;
4557 }
Chris Mason5f39d392007-10-15 16:14:19 -04004558
Chris Mason39279cc2007-06-12 06:35:45 -04004559 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004560
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004561 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004562 if (err)
4563 goto out_fail;
4564
Chris Mason39279cc2007-06-12 06:35:45 -04004565 inode->i_op = &btrfs_dir_inode_operations;
4566 inode->i_fop = &btrfs_dir_file_operations;
4567 btrfs_set_trans_block_group(trans, inode);
4568
Chris Masondbe674a2008-07-17 12:54:05 -04004569 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004570 err = btrfs_update_inode(trans, root, inode);
4571 if (err)
4572 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004573
Chris Masone02119d2008-09-05 16:13:11 -04004574 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4575 inode, dentry->d_name.name,
4576 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004577 if (err)
4578 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004579
Chris Mason39279cc2007-06-12 06:35:45 -04004580 d_instantiate(dentry, inode);
4581 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004582 btrfs_update_inode_block_group(trans, inode);
4583 btrfs_update_inode_block_group(trans, dir);
4584
4585out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004586 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004587 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04004588
Chris Mason39279cc2007-06-12 06:35:45 -04004589out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004590 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004591 if (drop_on_err)
4592 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04004593 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004594 return err;
4595}
4596
Chris Masond352ac62008-09-29 15:18:18 -04004597/* helper for btfs_get_extent. Given an existing extent in the tree,
4598 * and an extent that you want to insert, deal with overlap and insert
4599 * the new extent into the tree.
4600 */
Chris Mason3b951512008-04-17 11:29:12 -04004601static int merge_extent_mapping(struct extent_map_tree *em_tree,
4602 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004603 struct extent_map *em,
4604 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004605{
4606 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004607
Chris Masone6dcd2d2008-07-17 12:53:50 -04004608 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4609 start_diff = map_start - em->start;
4610 em->start = map_start;
4611 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004612 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4613 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004614 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004615 em->block_len -= start_diff;
4616 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004617 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004618}
4619
Chris Masonc8b97812008-10-29 14:49:59 -04004620static noinline int uncompress_inline(struct btrfs_path *path,
4621 struct inode *inode, struct page *page,
4622 size_t pg_offset, u64 extent_offset,
4623 struct btrfs_file_extent_item *item)
4624{
4625 int ret;
4626 struct extent_buffer *leaf = path->nodes[0];
4627 char *tmp;
4628 size_t max_size;
4629 unsigned long inline_size;
4630 unsigned long ptr;
4631
4632 WARN_ON(pg_offset != 0);
4633 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4634 inline_size = btrfs_file_extent_inline_item_len(leaf,
4635 btrfs_item_nr(leaf, path->slots[0]));
4636 tmp = kmalloc(inline_size, GFP_NOFS);
4637 ptr = btrfs_file_extent_inline_start(item);
4638
4639 read_extent_buffer(leaf, tmp, ptr, inline_size);
4640
Chris Mason5b050f02008-11-11 09:34:41 -05004641 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004642 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
4643 inline_size, max_size);
4644 if (ret) {
4645 char *kaddr = kmap_atomic(page, KM_USER0);
4646 unsigned long copy_size = min_t(u64,
4647 PAGE_CACHE_SIZE - pg_offset,
4648 max_size - extent_offset);
4649 memset(kaddr + pg_offset, 0, copy_size);
4650 kunmap_atomic(kaddr, KM_USER0);
4651 }
4652 kfree(tmp);
4653 return 0;
4654}
4655
Chris Masond352ac62008-09-29 15:18:18 -04004656/*
4657 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004658 * the ugly parts come from merging extents from the disk with the in-ram
4659 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004660 * where the in-ram extents might be locked pending data=ordered completion.
4661 *
4662 * This also copies inline extents directly into the page.
4663 */
Chris Masond3977122009-01-05 21:25:51 -05004664
Chris Masona52d9a82007-08-27 16:49:44 -04004665struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004666 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004667 int create)
4668{
4669 int ret;
4670 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004671 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004672 u64 extent_start = 0;
4673 u64 extent_end = 0;
4674 u64 objectid = inode->i_ino;
4675 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004676 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004677 struct btrfs_root *root = BTRFS_I(inode)->root;
4678 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004679 struct extent_buffer *leaf;
4680 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004681 struct extent_map *em = NULL;
4682 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004683 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004684 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004685 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04004686
Chris Masona52d9a82007-08-27 16:49:44 -04004687again:
Chris Mason890871b2009-09-02 16:24:52 -04004688 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004689 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004690 if (em)
4691 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004692 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004693
Chris Masona52d9a82007-08-27 16:49:44 -04004694 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004695 if (em->start > start || em->start + em->len <= start)
4696 free_extent_map(em);
4697 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004698 free_extent_map(em);
4699 else
4700 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004701 }
Chris Masond1310b22008-01-24 16:13:08 -05004702 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004703 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004704 err = -ENOMEM;
4705 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004706 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004707 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004708 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004709 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004710 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004711 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004712
4713 if (!path) {
4714 path = btrfs_alloc_path();
4715 BUG_ON(!path);
4716 }
4717
Chris Mason179e29e2007-11-01 11:28:41 -04004718 ret = btrfs_lookup_file_extent(trans, root, path,
4719 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004720 if (ret < 0) {
4721 err = ret;
4722 goto out;
4723 }
4724
4725 if (ret != 0) {
4726 if (path->slots[0] == 0)
4727 goto not_found;
4728 path->slots[0]--;
4729 }
4730
Chris Mason5f39d392007-10-15 16:14:19 -04004731 leaf = path->nodes[0];
4732 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04004733 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04004734 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04004735 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4736 found_type = btrfs_key_type(&found_key);
4737 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04004738 found_type != BTRFS_EXTENT_DATA_KEY) {
4739 goto not_found;
4740 }
4741
Chris Mason5f39d392007-10-15 16:14:19 -04004742 found_type = btrfs_file_extent_type(leaf, item);
4743 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04004744 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04004745 if (found_type == BTRFS_FILE_EXTENT_REG ||
4746 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04004747 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04004748 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04004749 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
4750 size_t size;
4751 size = btrfs_file_extent_inline_len(leaf, item);
4752 extent_end = (extent_start + size + root->sectorsize - 1) &
4753 ~((u64)root->sectorsize - 1);
4754 }
4755
4756 if (start >= extent_end) {
4757 path->slots[0]++;
4758 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
4759 ret = btrfs_next_leaf(root, path);
4760 if (ret < 0) {
4761 err = ret;
4762 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004763 }
Yan Zheng9036c102008-10-30 14:19:41 -04004764 if (ret > 0)
4765 goto not_found;
4766 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04004767 }
Yan Zheng9036c102008-10-30 14:19:41 -04004768 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4769 if (found_key.objectid != objectid ||
4770 found_key.type != BTRFS_EXTENT_DATA_KEY)
4771 goto not_found;
4772 if (start + len <= found_key.offset)
4773 goto not_found;
4774 em->start = start;
4775 em->len = found_key.offset - start;
4776 goto not_found_em;
4777 }
4778
Yan Zhengd899e052008-10-30 14:25:28 -04004779 if (found_type == BTRFS_FILE_EXTENT_REG ||
4780 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04004781 em->start = extent_start;
4782 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004783 em->orig_start = extent_start -
4784 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04004785 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4786 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004787 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04004788 goto insert;
4789 }
Chris Masonc8b97812008-10-29 14:49:59 -04004790 if (compressed) {
4791 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
4792 em->block_start = bytenr;
4793 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
4794 item);
4795 } else {
4796 bytenr += btrfs_file_extent_offset(leaf, item);
4797 em->block_start = bytenr;
4798 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04004799 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
4800 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04004801 }
Chris Masona52d9a82007-08-27 16:49:44 -04004802 goto insert;
4803 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004804 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04004805 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04004806 size_t size;
4807 size_t extent_offset;
4808 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04004809
Chris Masona52d9a82007-08-27 16:49:44 -04004810 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004811 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04004812 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04004813 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04004814 goto out;
4815 }
4816
Yan Zheng9036c102008-10-30 14:19:41 -04004817 size = btrfs_file_extent_inline_len(leaf, item);
4818 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05004819 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04004820 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04004821 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05004822 em->len = (copy_size + root->sectorsize - 1) &
4823 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004824 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004825 if (compressed)
4826 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004827 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004828 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004829 if (btrfs_file_extent_compression(leaf, item) ==
4830 BTRFS_COMPRESS_ZLIB) {
4831 ret = uncompress_inline(path, inode, page,
4832 pg_offset,
4833 extent_offset, item);
4834 BUG_ON(ret);
4835 } else {
4836 map = kmap(page);
4837 read_extent_buffer(leaf, map + pg_offset, ptr,
4838 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04004839 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
4840 memset(map + pg_offset + copy_size, 0,
4841 PAGE_CACHE_SIZE - pg_offset -
4842 copy_size);
4843 }
Chris Masonc8b97812008-10-29 14:49:59 -04004844 kunmap(page);
4845 }
Chris Mason179e29e2007-11-01 11:28:41 -04004846 flush_dcache_page(page);
4847 } else if (create && PageUptodate(page)) {
4848 if (!trans) {
4849 kunmap(page);
4850 free_extent_map(em);
4851 em = NULL;
4852 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004853 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004854 goto again;
4855 }
Chris Masonc8b97812008-10-29 14:49:59 -04004856 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004857 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004858 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004859 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004860 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004861 }
Chris Masond1310b22008-01-24 16:13:08 -05004862 set_extent_uptodate(io_tree, em->start,
4863 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004864 goto insert;
4865 } else {
Chris Masond3977122009-01-05 21:25:51 -05004866 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04004867 WARN_ON(1);
4868 }
4869not_found:
4870 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004871 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004872not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004873 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004874 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004875insert:
4876 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004877 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05004878 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
4879 "[%llu %llu]\n", (unsigned long long)em->start,
4880 (unsigned long long)em->len,
4881 (unsigned long long)start,
4882 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04004883 err = -EIO;
4884 goto out;
4885 }
Chris Masond1310b22008-01-24 16:13:08 -05004886
4887 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04004888 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004889 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004890 /* it is possible that someone inserted the extent into the tree
4891 * while we had the lock dropped. It is also possible that
4892 * an overlapping map exists in the tree
4893 */
Chris Masona52d9a82007-08-27 16:49:44 -04004894 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004895 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004896
4897 ret = 0;
4898
Chris Mason3b951512008-04-17 11:29:12 -04004899 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004900 if (existing && (existing->start > start ||
4901 existing->start + existing->len <= start)) {
4902 free_extent_map(existing);
4903 existing = NULL;
4904 }
Chris Mason3b951512008-04-17 11:29:12 -04004905 if (!existing) {
4906 existing = lookup_extent_mapping(em_tree, em->start,
4907 em->len);
4908 if (existing) {
4909 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004910 em, start,
4911 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004912 free_extent_map(existing);
4913 if (err) {
4914 free_extent_map(em);
4915 em = NULL;
4916 }
4917 } else {
4918 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04004919 free_extent_map(em);
4920 em = NULL;
4921 }
4922 } else {
4923 free_extent_map(em);
4924 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004925 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004926 }
Chris Masona52d9a82007-08-27 16:49:44 -04004927 }
Chris Mason890871b2009-09-02 16:24:52 -04004928 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004929out:
Chris Masonf4219502008-07-22 11:18:09 -04004930 if (path)
4931 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004932 if (trans) {
4933 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05004934 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04004935 err = ret;
4936 }
Chris Masona52d9a82007-08-27 16:49:44 -04004937 if (err) {
4938 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04004939 return ERR_PTR(err);
4940 }
4941 return em;
4942}
4943
Chris Mason16432982008-04-10 10:23:21 -04004944static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4945 const struct iovec *iov, loff_t offset,
4946 unsigned long nr_segs)
4947{
Chris Masone1c4b742008-04-22 13:26:46 -04004948 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004949}
4950
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004951static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4952 __u64 start, __u64 len)
4953{
4954 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
4955}
4956
Chris Mason9ebefb182007-06-15 13:50:00 -04004957int btrfs_readpage(struct file *file, struct page *page)
4958{
Chris Masond1310b22008-01-24 16:13:08 -05004959 struct extent_io_tree *tree;
4960 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004961 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004962}
Chris Mason1832a6d2007-12-21 16:27:21 -05004963
Chris Mason39279cc2007-06-12 06:35:45 -04004964static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4965{
Chris Masond1310b22008-01-24 16:13:08 -05004966 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004967
4968
4969 if (current->flags & PF_MEMALLOC) {
4970 redirty_page_for_writepage(wbc, page);
4971 unlock_page(page);
4972 return 0;
4973 }
Chris Masond1310b22008-01-24 16:13:08 -05004974 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004975 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4976}
Chris Mason39279cc2007-06-12 06:35:45 -04004977
Chris Masonf4219502008-07-22 11:18:09 -04004978int btrfs_writepages(struct address_space *mapping,
4979 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04004980{
Chris Masond1310b22008-01-24 16:13:08 -05004981 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004982
Chris Masond1310b22008-01-24 16:13:08 -05004983 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04004984 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4985}
4986
Chris Mason3ab2fb52007-11-08 10:59:22 -05004987static int
4988btrfs_readpages(struct file *file, struct address_space *mapping,
4989 struct list_head *pages, unsigned nr_pages)
4990{
Chris Masond1310b22008-01-24 16:13:08 -05004991 struct extent_io_tree *tree;
4992 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004993 return extent_readpages(tree, mapping, pages, nr_pages,
4994 btrfs_get_extent);
4995}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004996static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004997{
Chris Masond1310b22008-01-24 16:13:08 -05004998 struct extent_io_tree *tree;
4999 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04005000 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005001
Chris Masond1310b22008-01-24 16:13:08 -05005002 tree = &BTRFS_I(page->mapping->host)->io_tree;
5003 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05005004 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005005 if (ret == 1) {
5006 ClearPagePrivate(page);
5007 set_page_private(page, 0);
5008 page_cache_release(page);
5009 }
5010 return ret;
5011}
Chris Mason39279cc2007-06-12 06:35:45 -04005012
Chris Masone6dcd2d2008-07-17 12:53:50 -04005013static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
5014{
Chris Mason98509cf2008-09-11 15:51:43 -04005015 if (PageWriteback(page) || PageDirty(page))
5016 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05005017 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005018}
5019
Chris Masona52d9a82007-08-27 16:49:44 -04005020static void btrfs_invalidatepage(struct page *page, unsigned long offset)
5021{
Chris Masond1310b22008-01-24 16:13:08 -05005022 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005023 struct btrfs_ordered_extent *ordered;
5024 u64 page_start = page_offset(page);
5025 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04005026
Chris Mason8b62b722009-09-02 16:53:46 -04005027
5028 /*
5029 * we have the page locked, so new writeback can't start,
5030 * and the dirty bit won't be cleared while we are here.
5031 *
5032 * Wait for IO on this page so that we can safely clear
5033 * the PagePrivate2 bit and do ordered accounting
5034 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005035 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04005036
Chris Masond1310b22008-01-24 16:13:08 -05005037 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005038 if (offset) {
5039 btrfs_releasepage(page, GFP_NOFS);
5040 return;
5041 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005042 lock_extent(tree, page_start, page_end, GFP_NOFS);
5043 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
5044 page_offset(page));
5045 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04005046 /*
5047 * IO on this page will never be started, so we need
5048 * to account for any ordered extents now
5049 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005050 clear_extent_bit(tree, page_start, page_end,
5051 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04005052 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
5053 NULL, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04005054 /*
5055 * whoever cleared the private bit is responsible
5056 * for the finish_ordered_io
5057 */
5058 if (TestClearPagePrivate2(page)) {
5059 btrfs_finish_ordered_io(page->mapping->host,
5060 page_start, page_end);
5061 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005062 btrfs_put_ordered_extent(ordered);
5063 lock_extent(tree, page_start, page_end, GFP_NOFS);
5064 }
5065 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04005066 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
5067 EXTENT_DO_ACCOUNTING, 1, 1, NULL, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005068 __btrfs_releasepage(page, GFP_NOFS);
5069
Chris Mason4a096752008-07-21 10:29:44 -04005070 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04005071 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04005072 ClearPagePrivate(page);
5073 set_page_private(page, 0);
5074 page_cache_release(page);
5075 }
Chris Mason39279cc2007-06-12 06:35:45 -04005076}
5077
Chris Mason9ebefb182007-06-15 13:50:00 -04005078/*
5079 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
5080 * called from a page fault handler when a page is first dirtied. Hence we must
5081 * be careful to check for EOF conditions here. We set the page up correctly
5082 * for a written page which means we get ENOSPC checking when writing into
5083 * holes and correct delalloc and unwritten extent mapping on filesystems that
5084 * support these features.
5085 *
5086 * We are not allowed to take the i_mutex here so we have to play games to
5087 * protect against truncate races as the page could now be beyond EOF. Because
5088 * vmtruncate() writes the inode size before removing pages, once we have the
5089 * page lock we can determine safely if the page is beyond EOF. If it is not
5090 * beyond EOF, then the page is guaranteed safe against truncation until we
5091 * unlock the page.
5092 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07005093int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04005094{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005095 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05005096 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05005097 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005098 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5099 struct btrfs_ordered_extent *ordered;
5100 char *kaddr;
5101 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04005102 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05005103 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04005104 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005105 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04005106
Josef Bacik6a632092009-02-20 11:00:09 -05005107 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07005108 if (ret) {
5109 if (ret == -ENOMEM)
5110 ret = VM_FAULT_OOM;
5111 else /* -ENOSPC, -EIO, etc */
5112 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05005113 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07005114 }
Chris Mason1832a6d2007-12-21 16:27:21 -05005115
Josef Bacik9ed74f22009-09-11 16:12:44 -04005116 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
5117 if (ret) {
5118 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
5119 ret = VM_FAULT_SIGBUS;
5120 goto out;
5121 }
5122
Nick Piggin56a76f82009-03-31 15:23:23 -07005123 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005124again:
Chris Mason9ebefb182007-06-15 13:50:00 -04005125 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04005126 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005127 page_start = page_offset(page);
5128 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04005129
Chris Mason9ebefb182007-06-15 13:50:00 -04005130 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04005131 (page_start >= size)) {
Josef Bacik6a632092009-02-20 11:00:09 -05005132 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Chris Mason9ebefb182007-06-15 13:50:00 -04005133 /* page got truncated out from underneath us */
5134 goto out_unlock;
5135 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005136 wait_on_page_writeback(page);
5137
5138 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
5139 set_page_extent_mapped(page);
5140
Chris Masoneb84ae02008-07-17 13:53:27 -04005141 /*
5142 * we can't set the delalloc bits if there are pending ordered
5143 * extents. Drop our locks and wait for them to finish
5144 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005145 ordered = btrfs_lookup_ordered_extent(inode, page_start);
5146 if (ordered) {
5147 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
5148 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04005149 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005150 btrfs_put_ordered_extent(ordered);
5151 goto again;
5152 }
5153
Josef Bacikfbf19082009-10-01 17:10:23 -04005154 /*
5155 * XXX - page_mkwrite gets called every time the page is dirtied, even
5156 * if it was already dirty, so for space accounting reasons we need to
5157 * clear any delalloc bits for the range we are fixing to save. There
5158 * is probably a better way to do this, but for now keep consistent with
5159 * prepare_pages in the normal write path.
5160 */
5161 clear_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04005162 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
5163 GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04005164
Josef Bacik9ed74f22009-09-11 16:12:44 -04005165 ret = btrfs_set_extent_delalloc(inode, page_start, page_end);
5166 if (ret) {
5167 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
5168 ret = VM_FAULT_SIGBUS;
Josef Bacikfbf19082009-10-01 17:10:23 -04005169 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005170 goto out_unlock;
5171 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005172 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04005173
5174 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04005175 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005176 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04005177 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04005178 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04005179
Chris Masone6dcd2d2008-07-17 12:53:50 -04005180 if (zero_start != PAGE_CACHE_SIZE) {
5181 kaddr = kmap(page);
5182 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
5183 flush_dcache_page(page);
5184 kunmap(page);
5185 }
Chris Mason247e7432008-07-17 12:53:51 -04005186 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005187 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04005188 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005189
Chris Mason257c62e2009-10-13 13:21:08 -04005190 BTRFS_I(inode)->last_trans = root->fs_info->generation;
5191 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
5192
Chris Masone6dcd2d2008-07-17 12:53:50 -04005193 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04005194
5195out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04005196 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason50a9b212009-09-11 12:33:12 -04005197 if (!ret)
5198 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04005199 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05005200out:
Chris Mason9ebefb182007-06-15 13:50:00 -04005201 return ret;
5202}
5203
Chris Mason39279cc2007-06-12 06:35:45 -04005204static void btrfs_truncate(struct inode *inode)
5205{
5206 struct btrfs_root *root = BTRFS_I(inode)->root;
5207 int ret;
5208 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04005209 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04005210 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005211
Yan, Zheng80825102009-11-12 09:35:36 +00005212 if (!S_ISREG(inode->i_mode)) {
5213 WARN_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04005214 return;
Yan, Zheng80825102009-11-12 09:35:36 +00005215 }
Chris Mason39279cc2007-06-12 06:35:45 -04005216
Josef Bacik5d5e1032009-10-13 16:46:49 -04005217 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
5218 if (ret)
5219 return;
Yan, Zheng80825102009-11-12 09:35:36 +00005220
Chris Mason4a096752008-07-21 10:29:44 -04005221 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00005222 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005223
Chris Mason39279cc2007-06-12 06:35:45 -04005224 trans = btrfs_start_transaction(root, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00005225 btrfs_set_trans_block_group(trans, inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005226
5227 /*
5228 * setattr is responsible for setting the ordered_data_close flag,
5229 * but that is only tested during the last file release. That
5230 * could happen well after the next commit, leaving a great big
5231 * window where new writes may get lost if someone chooses to write
5232 * to this file after truncating to zero
5233 *
5234 * The inode doesn't have any dirty data here, and so if we commit
5235 * this is a noop. If someone immediately starts writing to the inode
5236 * it is very likely we'll catch some of their writes in this
5237 * transaction, and the commit will find this file on the ordered
5238 * data list with good things to send down.
5239 *
5240 * This is a best effort solution, there is still a window where
5241 * using truncate to replace the contents of the file will
5242 * end up with a zero length file after a crash.
5243 */
5244 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
5245 btrfs_add_ordered_operation(trans, root, inode);
5246
Yan, Zheng80825102009-11-12 09:35:36 +00005247 while (1) {
5248 ret = btrfs_truncate_inode_items(trans, root, inode,
5249 inode->i_size,
5250 BTRFS_EXTENT_DATA_KEY);
5251 if (ret != -EAGAIN)
5252 break;
Chris Mason39279cc2007-06-12 06:35:45 -04005253
Yan, Zheng80825102009-11-12 09:35:36 +00005254 ret = btrfs_update_inode(trans, root, inode);
5255 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005256
Yan, Zheng80825102009-11-12 09:35:36 +00005257 nr = trans->blocks_used;
5258 btrfs_end_transaction(trans, root);
5259 btrfs_btree_balance_dirty(root, nr);
5260
5261 trans = btrfs_start_transaction(root, 1);
5262 btrfs_set_trans_block_group(trans, inode);
5263 }
5264
5265 if (ret == 0 && inode->i_nlink > 0) {
5266 ret = btrfs_orphan_del(trans, inode);
5267 BUG_ON(ret);
5268 }
5269
5270 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04005271 BUG_ON(ret);
5272
Josef Bacik7b128762008-07-24 12:17:14 -04005273 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04005274 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005275 BUG_ON(ret);
Chris Masond3c2fdc2007-09-17 10:58:06 -04005276 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005277}
5278
Sven Wegener3b963622008-06-09 21:57:42 -04005279/*
Chris Masond352ac62008-09-29 15:18:18 -04005280 * create a new subvolume directory/inode (helper for the ioctl).
5281 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05005282int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04005283 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005284 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04005285{
Chris Mason39279cc2007-06-12 06:35:45 -04005286 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005287 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005288 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005289
Josef Bacikaec74772008-07-24 12:12:38 -04005290 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005291 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04005292 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005293 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005294 inode->i_op = &btrfs_dir_inode_operations;
5295 inode->i_fop = &btrfs_dir_file_operations;
5296
Chris Mason39279cc2007-06-12 06:35:45 -04005297 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04005298 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04005299
Yan, Zheng76dda932009-09-21 16:00:26 -04005300 err = btrfs_update_inode(trans, new_root, inode);
5301 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005302
Yan, Zheng76dda932009-09-21 16:00:26 -04005303 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005304 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005305}
5306
Chris Masond352ac62008-09-29 15:18:18 -04005307/* helper function for file defrag and space balancing. This
5308 * forces readahead on a given range of bytes in an inode
5309 */
Chris Masonedbd8d42007-12-21 16:27:24 -05005310unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04005311 struct file_ra_state *ra, struct file *file,
5312 pgoff_t offset, pgoff_t last_index)
5313{
Chris Mason8e7bf942008-04-28 09:02:36 -04005314 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04005315
Chris Mason86479a02007-09-10 19:58:16 -04005316 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
5317 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04005318}
5319
Chris Mason39279cc2007-06-12 06:35:45 -04005320struct inode *btrfs_alloc_inode(struct super_block *sb)
5321{
5322 struct btrfs_inode *ei;
5323
5324 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
5325 if (!ei)
5326 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04005327 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04005328 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04005329 ei->logged_trans = 0;
Josef Bacik32c00af2009-10-08 13:34:05 -04005330 ei->outstanding_extents = 0;
5331 ei->reserved_extents = 0;
Josef Bacika6dbd422009-11-11 15:53:34 -05005332 ei->root = NULL;
Josef Bacik32c00af2009-10-08 13:34:05 -04005333 spin_lock_init(&ei->accounting_lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005334 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04005335 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005336 INIT_LIST_HEAD(&ei->ordered_operations);
Chris Mason39279cc2007-06-12 06:35:45 -04005337 return &ei->vfs_inode;
5338}
5339
5340void btrfs_destroy_inode(struct inode *inode)
5341{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005342 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005343 struct btrfs_root *root = BTRFS_I(inode)->root;
5344
Chris Mason39279cc2007-06-12 06:35:45 -04005345 WARN_ON(!list_empty(&inode->i_dentry));
5346 WARN_ON(inode->i_data.nrpages);
5347
Chris Mason5a3f23d2009-03-31 13:27:11 -04005348 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05005349 * This can happen where we create an inode, but somebody else also
5350 * created the same inode and we need to destroy the one we already
5351 * created.
5352 */
5353 if (!root)
5354 goto free;
5355
5356 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04005357 * Make sure we're properly removed from the ordered operation
5358 * lists.
5359 */
5360 smp_mb();
5361 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
5362 spin_lock(&root->fs_info->ordered_extent_lock);
5363 list_del_init(&BTRFS_I(inode)->ordered_operations);
5364 spin_unlock(&root->fs_info->ordered_extent_lock);
5365 }
5366
5367 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005368 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00005369 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
5370 inode->i_ino);
5371 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04005372 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04005373 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005374
Chris Masond3977122009-01-05 21:25:51 -05005375 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005376 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
5377 if (!ordered)
5378 break;
5379 else {
Chris Masond3977122009-01-05 21:25:51 -05005380 printk(KERN_ERR "btrfs found ordered "
5381 "extent %llu %llu on inode cleanup\n",
5382 (unsigned long long)ordered->file_offset,
5383 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005384 btrfs_remove_ordered_extent(inode, ordered);
5385 btrfs_put_ordered_extent(ordered);
5386 btrfs_put_ordered_extent(ordered);
5387 }
5388 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005389 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005390 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05005391free:
Chris Mason39279cc2007-06-12 06:35:45 -04005392 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
5393}
5394
Yan, Zheng76dda932009-09-21 16:00:26 -04005395void btrfs_drop_inode(struct inode *inode)
5396{
5397 struct btrfs_root *root = BTRFS_I(inode)->root;
5398
5399 if (inode->i_nlink > 0 && btrfs_root_refs(&root->root_item) == 0)
5400 generic_delete_inode(inode);
5401 else
5402 generic_drop_inode(inode);
5403}
5404
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005405static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04005406{
5407 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
5408
5409 inode_init_once(&ei->vfs_inode);
5410}
5411
5412void btrfs_destroy_cachep(void)
5413{
5414 if (btrfs_inode_cachep)
5415 kmem_cache_destroy(btrfs_inode_cachep);
5416 if (btrfs_trans_handle_cachep)
5417 kmem_cache_destroy(btrfs_trans_handle_cachep);
5418 if (btrfs_transaction_cachep)
5419 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04005420 if (btrfs_path_cachep)
5421 kmem_cache_destroy(btrfs_path_cachep);
5422}
5423
5424int btrfs_init_cachep(void)
5425{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005426 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
5427 sizeof(struct btrfs_inode), 0,
5428 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04005429 if (!btrfs_inode_cachep)
5430 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005431
5432 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
5433 sizeof(struct btrfs_trans_handle), 0,
5434 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005435 if (!btrfs_trans_handle_cachep)
5436 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005437
5438 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
5439 sizeof(struct btrfs_transaction), 0,
5440 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005441 if (!btrfs_transaction_cachep)
5442 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005443
5444 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
5445 sizeof(struct btrfs_path), 0,
5446 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005447 if (!btrfs_path_cachep)
5448 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005449
Chris Mason39279cc2007-06-12 06:35:45 -04005450 return 0;
5451fail:
5452 btrfs_destroy_cachep();
5453 return -ENOMEM;
5454}
5455
5456static int btrfs_getattr(struct vfsmount *mnt,
5457 struct dentry *dentry, struct kstat *stat)
5458{
5459 struct inode *inode = dentry->d_inode;
5460 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05005461 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05005462 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04005463 stat->blocks = (inode_get_bytes(inode) +
5464 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04005465 return 0;
5466}
5467
Chris Masond3977122009-01-05 21:25:51 -05005468static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
5469 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005470{
5471 struct btrfs_trans_handle *trans;
5472 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005473 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005474 struct inode *new_inode = new_dentry->d_inode;
5475 struct inode *old_inode = old_dentry->d_inode;
5476 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005477 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005478 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04005479 int ret;
5480
Yan, Zhengf679a842009-09-24 09:17:31 -04005481 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5482 return -EPERM;
5483
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005484 /* we only allow rename subvolume link between subvolumes */
5485 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05005486 return -EXDEV;
5487
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005488 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
5489 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
5490 return -ENOTEMPTY;
5491
Chris Mason39279cc2007-06-12 06:35:45 -04005492 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005493 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04005494 return -ENOTEMPTY;
Chris Mason0660b5a2008-11-17 20:37:39 -05005495
Josef Bacik9ed74f22009-09-11 16:12:44 -04005496 /*
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005497 * We want to reserve the absolute worst case amount of items. So if
5498 * both inodes are subvols and we need to unlink them then that would
5499 * require 4 item modifications, but if they are both normal inodes it
5500 * would require 5 item modifications, so we'll assume their normal
5501 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
5502 * should cover the worst case number of items we'll modify.
Josef Bacik9ed74f22009-09-11 16:12:44 -04005503 */
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005504 ret = btrfs_reserve_metadata_space(root, 11);
Chris Mason1832a6d2007-12-21 16:27:21 -05005505 if (ret)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005506 return ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05005507
Chris Mason5a3f23d2009-03-31 13:27:11 -04005508 /*
5509 * we're using rename to replace one file with another.
5510 * and the replacement file is large. Start IO on it now so
5511 * we don't add too much work to the end of the transaction
5512 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04005513 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04005514 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
5515 filemap_flush(old_inode->i_mapping);
5516
Yan, Zheng76dda932009-09-21 16:00:26 -04005517 /* close the racy window with snapshot create/destroy ioctl */
5518 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5519 down_read(&root->fs_info->subvol_sem);
Chris Mason5f39d392007-10-15 16:14:19 -04005520
Chris Mason39279cc2007-06-12 06:35:45 -04005521 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga5719522009-09-24 09:17:31 -04005522 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04005523
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005524 if (dest != root)
5525 btrfs_record_root_in_trans(trans, dest);
5526
Yan, Zhenga5719522009-09-24 09:17:31 -04005527 ret = btrfs_set_inode_index(new_dir, &index);
5528 if (ret)
5529 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005530
Yan, Zhenga5719522009-09-24 09:17:31 -04005531 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005532 /* force full log commit if subvolume involved. */
5533 root->fs_info->last_trans_log_full_commit = trans->transid;
5534 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04005535 ret = btrfs_insert_inode_ref(trans, dest,
5536 new_dentry->d_name.name,
5537 new_dentry->d_name.len,
5538 old_inode->i_ino,
5539 new_dir->i_ino, index);
5540 if (ret)
5541 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005542 /*
5543 * this is an ugly little race, but the rename is required
5544 * to make sure that if we crash, the inode is either at the
5545 * old name or the new one. pinning the log transaction lets
5546 * us make sure we don't allow a log commit to come in after
5547 * we unlink the name but before we add the new name back in.
5548 */
5549 btrfs_pin_log_trans(root);
5550 }
Chris Mason12fcfd22009-03-24 10:24:20 -04005551 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04005552 * make sure the inode gets flushed if it is replacing
5553 * something.
5554 */
5555 if (new_inode && new_inode->i_size &&
5556 old_inode && S_ISREG(old_inode->i_mode)) {
5557 btrfs_add_ordered_operation(trans, root, old_inode);
5558 }
5559
Chris Mason39279cc2007-06-12 06:35:45 -04005560 old_dir->i_ctime = old_dir->i_mtime = ctime;
5561 new_dir->i_ctime = new_dir->i_mtime = ctime;
5562 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04005563
Chris Mason12fcfd22009-03-24 10:24:20 -04005564 if (old_dentry->d_parent != new_dentry->d_parent)
5565 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
5566
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005567 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
5568 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
5569 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
5570 old_dentry->d_name.name,
5571 old_dentry->d_name.len);
5572 } else {
5573 btrfs_inc_nlink(old_dentry->d_inode);
5574 ret = btrfs_unlink_inode(trans, root, old_dir,
5575 old_dentry->d_inode,
5576 old_dentry->d_name.name,
5577 old_dentry->d_name.len);
5578 }
5579 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005580
5581 if (new_inode) {
5582 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005583 if (unlikely(new_inode->i_ino ==
5584 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
5585 root_objectid = BTRFS_I(new_inode)->location.objectid;
5586 ret = btrfs_unlink_subvol(trans, dest, new_dir,
5587 root_objectid,
5588 new_dentry->d_name.name,
5589 new_dentry->d_name.len);
5590 BUG_ON(new_inode->i_nlink == 0);
5591 } else {
5592 ret = btrfs_unlink_inode(trans, dest, new_dir,
5593 new_dentry->d_inode,
5594 new_dentry->d_name.name,
5595 new_dentry->d_name.len);
5596 }
5597 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005598 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04005599 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005600 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005601 }
Chris Mason39279cc2007-06-12 06:35:45 -04005602 }
Josef Bacikaec74772008-07-24 12:12:38 -04005603
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005604 ret = btrfs_add_link(trans, new_dir, old_inode,
5605 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04005606 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005607 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005608
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005609 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
5610 btrfs_log_new_name(trans, old_inode, old_dir,
5611 new_dentry->d_parent);
5612 btrfs_end_log_trans(root);
5613 }
Chris Mason39279cc2007-06-12 06:35:45 -04005614out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04005615 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005616
Yan, Zheng76dda932009-09-21 16:00:26 -04005617 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5618 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005619
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005620 btrfs_unreserve_metadata_space(root, 11);
Chris Mason39279cc2007-06-12 06:35:45 -04005621 return ret;
5622}
5623
Chris Masond352ac62008-09-29 15:18:18 -04005624/*
5625 * some fairly slow code that needs optimization. This walks the list
5626 * of all the inodes with pending delalloc and forces them to disk.
5627 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00005628int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04005629{
5630 struct list_head *head = &root->fs_info->delalloc_inodes;
5631 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005632 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04005633
Yan Zhengc146afa2008-11-12 14:34:12 -05005634 if (root->fs_info->sb->s_flags & MS_RDONLY)
5635 return -EROFS;
5636
Chris Mason75eff682008-12-15 15:54:40 -05005637 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05005638 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04005639 binode = list_entry(head->next, struct btrfs_inode,
5640 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005641 inode = igrab(&binode->vfs_inode);
5642 if (!inode)
5643 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05005644 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005645 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005646 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00005647 if (delay_iput)
5648 btrfs_add_delayed_iput(inode);
5649 else
5650 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005651 }
5652 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05005653 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04005654 }
Chris Mason75eff682008-12-15 15:54:40 -05005655 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04005656
5657 /* the filemap_flush will queue IO into the worker threads, but
5658 * we have to make sure the IO is actually started and that
5659 * ordered extents get created before we return
5660 */
5661 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05005662 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05005663 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005664 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05005665 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
5666 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04005667 }
5668 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04005669 return 0;
5670}
5671
Chris Mason39279cc2007-06-12 06:35:45 -04005672static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
5673 const char *symname)
5674{
5675 struct btrfs_trans_handle *trans;
5676 struct btrfs_root *root = BTRFS_I(dir)->root;
5677 struct btrfs_path *path;
5678 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05005679 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005680 int err;
5681 int drop_inode = 0;
5682 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005683 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04005684 int name_len;
5685 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04005686 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04005687 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04005688 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05005689 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005690
5691 name_len = strlen(symname) + 1;
5692 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
5693 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05005694
Josef Bacik9ed74f22009-09-11 16:12:44 -04005695 /*
5696 * 2 items for inode item and ref
5697 * 2 items for dir items
5698 * 1 item for xattr if selinux is on
5699 */
5700 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05005701 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04005702 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05005703
Chris Mason39279cc2007-06-12 06:35:45 -04005704 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005705 if (!trans)
5706 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04005707 btrfs_set_trans_block_group(trans, dir);
5708
5709 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
5710 if (err) {
5711 err = -ENOSPC;
5712 goto out_unlock;
5713 }
5714
Josef Bacikaec74772008-07-24 12:12:38 -04005715 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05005716 dentry->d_name.len,
5717 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04005718 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
5719 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005720 err = PTR_ERR(inode);
5721 if (IS_ERR(inode))
5722 goto out_unlock;
5723
Yan, Zhengf34f57a2009-11-12 09:35:27 +00005724 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04005725 if (err) {
5726 drop_inode = 1;
5727 goto out_unlock;
5728 }
5729
Chris Mason39279cc2007-06-12 06:35:45 -04005730 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04005731 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005732 if (err)
5733 drop_inode = 1;
5734 else {
5735 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005736 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04005737 inode->i_fop = &btrfs_file_operations;
5738 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05005739 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04005740 }
Chris Mason39279cc2007-06-12 06:35:45 -04005741 btrfs_update_inode_block_group(trans, inode);
5742 btrfs_update_inode_block_group(trans, dir);
5743 if (drop_inode)
5744 goto out_unlock;
5745
5746 path = btrfs_alloc_path();
5747 BUG_ON(!path);
5748 key.objectid = inode->i_ino;
5749 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005750 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
5751 datasize = btrfs_file_extent_calc_inline_size(name_len);
5752 err = btrfs_insert_empty_item(trans, root, path, &key,
5753 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005754 if (err) {
5755 drop_inode = 1;
5756 goto out_unlock;
5757 }
Chris Mason5f39d392007-10-15 16:14:19 -04005758 leaf = path->nodes[0];
5759 ei = btrfs_item_ptr(leaf, path->slots[0],
5760 struct btrfs_file_extent_item);
5761 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
5762 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04005763 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04005764 btrfs_set_file_extent_encryption(leaf, ei, 0);
5765 btrfs_set_file_extent_compression(leaf, ei, 0);
5766 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
5767 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
5768
Chris Mason39279cc2007-06-12 06:35:45 -04005769 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04005770 write_extent_buffer(leaf, symname, ptr, name_len);
5771 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04005772 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04005773
Chris Mason39279cc2007-06-12 06:35:45 -04005774 inode->i_op = &btrfs_symlink_inode_operations;
5775 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04005776 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04005777 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04005778 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005779 err = btrfs_update_inode(trans, root, inode);
5780 if (err)
5781 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005782
5783out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04005784 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04005785 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005786out_fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04005787 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04005788 if (drop_inode) {
5789 inode_dec_link_count(inode);
5790 iput(inode);
5791 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04005792 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005793 return err;
5794}
Chris Mason16432982008-04-10 10:23:21 -04005795
Yan, Zheng5a303d52009-11-12 09:34:52 +00005796static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005797 u64 alloc_hint, int mode, loff_t actual_len)
Yan Zhengd899e052008-10-30 14:25:28 -04005798{
Yan, Zheng5a303d52009-11-12 09:34:52 +00005799 struct btrfs_trans_handle *trans;
Yan Zhengd899e052008-10-30 14:25:28 -04005800 struct btrfs_root *root = BTRFS_I(inode)->root;
5801 struct btrfs_key ins;
5802 u64 alloc_size;
5803 u64 cur_offset = start;
5804 u64 num_bytes = end - start;
5805 int ret = 0;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005806 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04005807
Yan Zhengd899e052008-10-30 14:25:28 -04005808 while (num_bytes > 0) {
5809 alloc_size = min(num_bytes, root->fs_info->max_extent);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005810
Chris Mason3a1abec2009-12-17 15:47:17 -05005811 trans = btrfs_start_transaction(root, 1);
5812
Yan Zhengd899e052008-10-30 14:25:28 -04005813 ret = btrfs_reserve_extent(trans, root, alloc_size,
5814 root->sectorsize, 0, alloc_hint,
5815 (u64)-1, &ins, 1);
5816 if (ret) {
5817 WARN_ON(1);
Chris Mason3a1abec2009-12-17 15:47:17 -05005818 goto stop_trans;
Yan Zhengd899e052008-10-30 14:25:28 -04005819 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00005820
5821 ret = btrfs_reserve_metadata_space(root, 3);
5822 if (ret) {
5823 btrfs_free_reserved_extent(root, ins.objectid,
5824 ins.offset);
Chris Mason3a1abec2009-12-17 15:47:17 -05005825 goto stop_trans;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005826 }
5827
Yan Zhengd899e052008-10-30 14:25:28 -04005828 ret = insert_reserved_file_extent(trans, inode,
5829 cur_offset, ins.objectid,
5830 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00005831 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04005832 BTRFS_FILE_EXTENT_PREALLOC);
5833 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04005834 btrfs_drop_extent_cache(inode, cur_offset,
5835 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00005836
Yan Zhengd899e052008-10-30 14:25:28 -04005837 num_bytes -= ins.offset;
5838 cur_offset += ins.offset;
5839 alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005840
Yan Zhengd899e052008-10-30 14:25:28 -04005841 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005842 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04005843 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zheng5a303d52009-11-12 09:34:52 +00005844 cur_offset > inode->i_size) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005845 if (cur_offset > actual_len)
5846 i_size = actual_len;
5847 else
5848 i_size = cur_offset;
5849 i_size_write(inode, i_size);
5850 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00005851 }
5852
Yan Zhengd899e052008-10-30 14:25:28 -04005853 ret = btrfs_update_inode(trans, root, inode);
5854 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04005855
Yan, Zheng5a303d52009-11-12 09:34:52 +00005856 btrfs_end_transaction(trans, root);
5857 btrfs_unreserve_metadata_space(root, 3);
5858 }
Yan Zhengd899e052008-10-30 14:25:28 -04005859 return ret;
Chris Mason3a1abec2009-12-17 15:47:17 -05005860
5861stop_trans:
5862 btrfs_end_transaction(trans, root);
5863 return ret;
5864
Yan Zhengd899e052008-10-30 14:25:28 -04005865}
5866
5867static long btrfs_fallocate(struct inode *inode, int mode,
5868 loff_t offset, loff_t len)
5869{
5870 u64 cur_offset;
5871 u64 last_byte;
5872 u64 alloc_start;
5873 u64 alloc_end;
5874 u64 alloc_hint = 0;
Chris Masone980b502009-04-24 14:39:24 -04005875 u64 locked_end;
Yan Zhengd899e052008-10-30 14:25:28 -04005876 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
5877 struct extent_map *em;
5878 int ret;
5879
5880 alloc_start = offset & ~mask;
5881 alloc_end = (offset + len + mask) & ~mask;
5882
Chris Mason546888d2009-04-21 11:53:38 -04005883 /*
5884 * wait for ordered IO before we have any locks. We'll loop again
5885 * below with the locks held.
5886 */
5887 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
5888
Yan Zhengd899e052008-10-30 14:25:28 -04005889 mutex_lock(&inode->i_mutex);
5890 if (alloc_start > inode->i_size) {
5891 ret = btrfs_cont_expand(inode, alloc_start);
5892 if (ret)
5893 goto out;
5894 }
5895
Yan, Zheng5a303d52009-11-12 09:34:52 +00005896 ret = btrfs_check_data_free_space(BTRFS_I(inode)->root, inode,
Josef Bacika970b0a2009-06-27 21:07:34 -04005897 alloc_end - alloc_start);
5898 if (ret)
5899 goto out;
5900
Chris Masone980b502009-04-24 14:39:24 -04005901 locked_end = alloc_end - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04005902 while (1) {
5903 struct btrfs_ordered_extent *ordered;
Chris Mason546888d2009-04-21 11:53:38 -04005904
Chris Mason546888d2009-04-21 11:53:38 -04005905 /* the extent lock is ordered inside the running
5906 * transaction
5907 */
Chris Masone980b502009-04-24 14:39:24 -04005908 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
5909 GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04005910 ordered = btrfs_lookup_first_ordered_extent(inode,
5911 alloc_end - 1);
5912 if (ordered &&
5913 ordered->file_offset + ordered->len > alloc_start &&
5914 ordered->file_offset < alloc_end) {
5915 btrfs_put_ordered_extent(ordered);
5916 unlock_extent(&BTRFS_I(inode)->io_tree,
Chris Masone980b502009-04-24 14:39:24 -04005917 alloc_start, locked_end, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005918 /*
5919 * we can't wait on the range with the transaction
5920 * running or with the extent lock held
5921 */
Yan Zhengd899e052008-10-30 14:25:28 -04005922 btrfs_wait_ordered_range(inode, alloc_start,
5923 alloc_end - alloc_start);
5924 } else {
5925 if (ordered)
5926 btrfs_put_ordered_extent(ordered);
5927 break;
5928 }
5929 }
5930
5931 cur_offset = alloc_start;
5932 while (1) {
5933 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
5934 alloc_end - cur_offset, 0);
5935 BUG_ON(IS_ERR(em) || !em);
5936 last_byte = min(extent_map_end(em), alloc_end);
5937 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005938 if (em->block_start == EXTENT_MAP_HOLE ||
5939 (cur_offset >= inode->i_size &&
5940 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5941 ret = prealloc_file_range(inode,
5942 cur_offset, last_byte,
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005943 alloc_hint, mode, offset+len);
Yan Zhengd899e052008-10-30 14:25:28 -04005944 if (ret < 0) {
5945 free_extent_map(em);
5946 break;
5947 }
5948 }
5949 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
5950 alloc_hint = em->block_start;
5951 free_extent_map(em);
5952
5953 cur_offset = last_byte;
5954 if (cur_offset >= alloc_end) {
5955 ret = 0;
5956 break;
5957 }
5958 }
Chris Masone980b502009-04-24 14:39:24 -04005959 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
Yan Zhengd899e052008-10-30 14:25:28 -04005960 GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005961
Yan, Zheng5a303d52009-11-12 09:34:52 +00005962 btrfs_free_reserved_data_space(BTRFS_I(inode)->root, inode,
5963 alloc_end - alloc_start);
Yan Zhengd899e052008-10-30 14:25:28 -04005964out:
5965 mutex_unlock(&inode->i_mutex);
5966 return ret;
5967}
5968
Chris Masone6dcd2d2008-07-17 12:53:50 -04005969static int btrfs_set_page_dirty(struct page *page)
5970{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005971 return __set_page_dirty_nobuffers(page);
5972}
5973
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005974static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05005975{
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005976 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05005977 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04005978 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05005979}
Chris Mason39279cc2007-06-12 06:35:45 -04005980
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07005981static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05005982 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04005983 .lookup = btrfs_lookup,
5984 .create = btrfs_create,
5985 .unlink = btrfs_unlink,
5986 .link = btrfs_link,
5987 .mkdir = btrfs_mkdir,
5988 .rmdir = btrfs_rmdir,
5989 .rename = btrfs_rename,
5990 .symlink = btrfs_symlink,
5991 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005992 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005993 .setxattr = btrfs_setxattr,
5994 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005995 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005996 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005997 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005998};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07005999static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04006000 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05006001 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04006002};
Yan, Zheng76dda932009-09-21 16:00:26 -04006003
Alexey Dobriyan828c0952009-10-01 15:43:56 -07006004static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04006005 .llseek = generic_file_llseek,
6006 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01006007 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04006008 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04006009#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04006010 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04006011#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04006012 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04006013 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04006014};
6015
Chris Masond1310b22008-01-24 16:13:08 -05006016static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04006017 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05006018 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04006019 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04006020 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006021 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04006022 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04006023 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05006024 .set_bit_hook = btrfs_set_bit_hook,
6025 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04006026 .merge_extent_hook = btrfs_merge_extent_hook,
6027 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04006028};
6029
Chris Mason35054392009-01-21 13:11:13 -05006030/*
6031 * btrfs doesn't support the bmap operation because swapfiles
6032 * use bmap to make a mapping of extents in the file. They assume
6033 * these extents won't change over the life of the file and they
6034 * use the bmap result to do IO directly to the drive.
6035 *
6036 * the btrfs bmap call would return logical addresses that aren't
6037 * suitable for IO and they also will change frequently as COW
6038 * operations happen. So, swapfile + btrfs == corruption.
6039 *
6040 * For now we're avoiding this by dropping bmap.
6041 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07006042static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04006043 .readpage = btrfs_readpage,
6044 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04006045 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05006046 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04006047 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04006048 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04006049 .invalidatepage = btrfs_invalidatepage,
6050 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006051 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02006052 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04006053};
6054
Alexey Dobriyan7f094102009-09-21 17:01:10 -07006055static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04006056 .readpage = btrfs_readpage,
6057 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04006058 .invalidatepage = btrfs_invalidatepage,
6059 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04006060};
6061
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006062static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04006063 .truncate = btrfs_truncate,
6064 .getattr = btrfs_getattr,
6065 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006066 .setxattr = btrfs_setxattr,
6067 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05006068 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006069 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05006070 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04006071 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006072 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04006073};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006074static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04006075 .getattr = btrfs_getattr,
6076 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05006077 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006078 .setxattr = btrfs_setxattr,
6079 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04006080 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006081 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04006082};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006083static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04006084 .readlink = generic_readlink,
6085 .follow_link = page_follow_link_light,
6086 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05006087 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05006088 .setxattr = btrfs_setxattr,
6089 .getxattr = btrfs_getxattr,
6090 .listxattr = btrfs_listxattr,
6091 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04006092};
Yan, Zheng76dda932009-09-21 16:00:26 -04006093
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04006094const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04006095 .d_delete = btrfs_dentry_delete,
6096};