blob: 2fe494c84e6077f91abc7d6ae7a71fce5eff4f5f [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/statfs.h>
34#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040035#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040037#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040038#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050040#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040041#include "ctree.h"
42#include "disk-io.h"
43#include "transaction.h"
44#include "btrfs_inode.h"
45#include "ioctl.h"
46#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040047#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040048#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040049#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040050#include "tree-log.h"
Chris Masonc8b97812008-10-29 14:49:59 -040051#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050052#include "locking.h"
Chris Mason39279cc2007-06-12 06:35:45 -040053
54struct btrfs_iget_args {
55 u64 ino;
56 struct btrfs_root *root;
57};
58
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070059static const struct inode_operations btrfs_dir_inode_operations;
60static const struct inode_operations btrfs_symlink_inode_operations;
61static const struct inode_operations btrfs_dir_ro_inode_operations;
62static const struct inode_operations btrfs_special_inode_operations;
63static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070064static const struct address_space_operations btrfs_aops;
65static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070066static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050067static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040068
69static struct kmem_cache *btrfs_inode_cachep;
70struct kmem_cache *btrfs_trans_handle_cachep;
71struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040072struct kmem_cache *btrfs_path_cachep;
73
74#define S_SHIFT 12
75static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
76 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
77 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
78 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
79 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
80 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
81 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
82 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
83};
84
Josef Bacik7b128762008-07-24 12:17:14 -040085static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040086static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050087static noinline int cow_file_range(struct inode *inode,
88 struct page *locked_page,
89 u64 start, u64 end, int *page_started,
90 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040091
Yan, Zhengf34f57a2009-11-12 09:35:27 +000092static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
93 struct inode *inode, struct inode *dir)
Jim Owens0279b4c2009-02-04 09:29:13 -050094{
95 int err;
96
Yan, Zhengf34f57a2009-11-12 09:35:27 +000097 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -050098 if (!err)
Yan, Zhengf34f57a2009-11-12 09:35:27 +000099 err = btrfs_xattr_security_init(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500100 return err;
101}
102
Chris Masond352ac62008-09-29 15:18:18 -0400103/*
Chris Masonc8b97812008-10-29 14:49:59 -0400104 * this does all the hard work for inserting an inline extent into
105 * the btree. The caller should have done a btrfs_drop_extents so that
106 * no overlapping inline items exist in the btree
107 */
Chris Masond3977122009-01-05 21:25:51 -0500108static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400109 struct btrfs_root *root, struct inode *inode,
110 u64 start, size_t size, size_t compressed_size,
111 struct page **compressed_pages)
112{
113 struct btrfs_key key;
114 struct btrfs_path *path;
115 struct extent_buffer *leaf;
116 struct page *page = NULL;
117 char *kaddr;
118 unsigned long ptr;
119 struct btrfs_file_extent_item *ei;
120 int err = 0;
121 int ret;
122 size_t cur_size = size;
123 size_t datasize;
124 unsigned long offset;
125 int use_compress = 0;
126
127 if (compressed_size && compressed_pages) {
128 use_compress = 1;
129 cur_size = compressed_size;
130 }
131
Chris Masond3977122009-01-05 21:25:51 -0500132 path = btrfs_alloc_path();
133 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400134 return -ENOMEM;
135
Chris Masonb9473432009-03-13 11:00:37 -0400136 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400137 btrfs_set_trans_block_group(trans, inode);
138
139 key.objectid = inode->i_ino;
140 key.offset = start;
141 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400142 datasize = btrfs_file_extent_calc_inline_size(cur_size);
143
144 inode_add_bytes(inode, size);
145 ret = btrfs_insert_empty_item(trans, root, path, &key,
146 datasize);
147 BUG_ON(ret);
148 if (ret) {
149 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400150 goto fail;
151 }
152 leaf = path->nodes[0];
153 ei = btrfs_item_ptr(leaf, path->slots[0],
154 struct btrfs_file_extent_item);
155 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
156 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
157 btrfs_set_file_extent_encryption(leaf, ei, 0);
158 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
159 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
160 ptr = btrfs_file_extent_inline_start(ei);
161
162 if (use_compress) {
163 struct page *cpage;
164 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500165 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400166 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500167 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400168 PAGE_CACHE_SIZE);
169
Chris Masonb9473432009-03-13 11:00:37 -0400170 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400171 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400172 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400173
174 i++;
175 ptr += cur_size;
176 compressed_size -= cur_size;
177 }
178 btrfs_set_file_extent_compression(leaf, ei,
179 BTRFS_COMPRESS_ZLIB);
180 } else {
181 page = find_get_page(inode->i_mapping,
182 start >> PAGE_CACHE_SHIFT);
183 btrfs_set_file_extent_compression(leaf, ei, 0);
184 kaddr = kmap_atomic(page, KM_USER0);
185 offset = start & (PAGE_CACHE_SIZE - 1);
186 write_extent_buffer(leaf, kaddr + offset, ptr, size);
187 kunmap_atomic(kaddr, KM_USER0);
188 page_cache_release(page);
189 }
190 btrfs_mark_buffer_dirty(leaf);
191 btrfs_free_path(path);
192
Yan, Zhengc2167752009-11-12 09:34:21 +0000193 /*
194 * we're an inline extent, so nobody can
195 * extend the file past i_size without locking
196 * a page we already have locked.
197 *
198 * We must do any isize and inode updates
199 * before we unlock the pages. Otherwise we
200 * could end up racing with unlink.
201 */
Chris Masonc8b97812008-10-29 14:49:59 -0400202 BTRFS_I(inode)->disk_i_size = inode->i_size;
203 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000204
Chris Masonc8b97812008-10-29 14:49:59 -0400205 return 0;
206fail:
207 btrfs_free_path(path);
208 return err;
209}
210
211
212/*
213 * conditionally insert an inline extent into the file. This
214 * does the checks required to make sure the data is small enough
215 * to fit as an inline extent.
216 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400217static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400218 struct btrfs_root *root,
219 struct inode *inode, u64 start, u64 end,
220 size_t compressed_size,
221 struct page **compressed_pages)
222{
223 u64 isize = i_size_read(inode);
224 u64 actual_end = min(end + 1, isize);
225 u64 inline_len = actual_end - start;
226 u64 aligned_end = (end + root->sectorsize - 1) &
227 ~((u64)root->sectorsize - 1);
228 u64 hint_byte;
229 u64 data_len = inline_len;
230 int ret;
231
232 if (compressed_size)
233 data_len = compressed_size;
234
235 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400236 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400237 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
238 (!compressed_size &&
239 (actual_end & (root->sectorsize - 1)) == 0) ||
240 end + 1 < isize ||
241 data_len > root->fs_info->max_inline) {
242 return 1;
243 }
244
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000245 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400246 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400247 BUG_ON(ret);
248
249 if (isize > actual_end)
250 inline_len = min_t(u64, isize, actual_end);
251 ret = insert_inline_extent(trans, root, inode, start,
252 inline_len, compressed_size,
253 compressed_pages);
254 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -0400255 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400256 return 0;
257}
258
Chris Mason771ed682008-11-06 22:02:51 -0500259struct async_extent {
260 u64 start;
261 u64 ram_size;
262 u64 compressed_size;
263 struct page **pages;
264 unsigned long nr_pages;
265 struct list_head list;
266};
267
268struct async_cow {
269 struct inode *inode;
270 struct btrfs_root *root;
271 struct page *locked_page;
272 u64 start;
273 u64 end;
274 struct list_head extents;
275 struct btrfs_work work;
276};
277
278static noinline int add_async_extent(struct async_cow *cow,
279 u64 start, u64 ram_size,
280 u64 compressed_size,
281 struct page **pages,
282 unsigned long nr_pages)
283{
284 struct async_extent *async_extent;
285
286 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
287 async_extent->start = start;
288 async_extent->ram_size = ram_size;
289 async_extent->compressed_size = compressed_size;
290 async_extent->pages = pages;
291 async_extent->nr_pages = nr_pages;
292 list_add_tail(&async_extent->list, &cow->extents);
293 return 0;
294}
295
Chris Masonc8b97812008-10-29 14:49:59 -0400296/*
Chris Mason771ed682008-11-06 22:02:51 -0500297 * we create compressed extents in two phases. The first
298 * phase compresses a range of pages that have already been
299 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400300 *
Chris Mason771ed682008-11-06 22:02:51 -0500301 * This is done inside an ordered work queue, and the compression
302 * is spread across many cpus. The actual IO submission is step
303 * two, and the ordered work queue takes care of making sure that
304 * happens in the same order things were put onto the queue by
305 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400306 *
Chris Mason771ed682008-11-06 22:02:51 -0500307 * If this code finds it can't get good compression, it puts an
308 * entry onto the work queue to write the uncompressed bytes. This
309 * makes sure that both compressed inodes and uncompressed inodes
310 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400311 */
Chris Mason771ed682008-11-06 22:02:51 -0500312static noinline int compress_file_range(struct inode *inode,
313 struct page *locked_page,
314 u64 start, u64 end,
315 struct async_cow *async_cow,
316 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400317{
318 struct btrfs_root *root = BTRFS_I(inode)->root;
319 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400320 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -0400321 u64 orig_start;
322 u64 disk_num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400323 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400324 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500325 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400326 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400327 struct page **pages = NULL;
328 unsigned long nr_pages;
329 unsigned long nr_pages_ret = 0;
330 unsigned long total_compressed = 0;
331 unsigned long total_in = 0;
332 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500333 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400334 int i;
335 int will_compress;
Chris Masonb888db22007-08-27 16:49:44 -0400336
Chris Masonc8b97812008-10-29 14:49:59 -0400337 orig_start = start;
Chris Masonbe20aa92007-12-17 20:14:01 -0500338
Chris Mason42dc7ba2008-12-15 11:44:56 -0500339 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400340again:
341 will_compress = 0;
342 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
343 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
344
Chris Masonf03d9301f2009-02-04 09:31:06 -0500345 /*
346 * we don't want to send crud past the end of i_size through
347 * compression, that's just a waste of CPU time. So, if the
348 * end of the file is before the start of our current
349 * requested range of bytes, we bail out to the uncompressed
350 * cleanup code that can deal with all of this.
351 *
352 * It isn't really the fastest way to fix things, but this is a
353 * very uncommon corner.
354 */
355 if (actual_end <= start)
356 goto cleanup_and_bail_uncompressed;
357
Chris Masonc8b97812008-10-29 14:49:59 -0400358 total_compressed = actual_end - start;
359
360 /* we want to make sure that amount of ram required to uncompress
361 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500362 * of a compressed extent to 128k. This is a crucial number
363 * because it also controls how easily we can spread reads across
364 * cpus for decompression.
365 *
366 * We also want to make sure the amount of IO required to do
367 * a random read is reasonably small, so we limit the size of
368 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400369 */
370 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400371 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500372 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400373 disk_num_bytes = num_bytes;
374 total_in = 0;
375 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400376
Chris Mason771ed682008-11-06 22:02:51 -0500377 /*
378 * we do compression for mount -o compress and when the
379 * inode has not been flagged as nocompress. This flag can
380 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400381 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200382 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500383 (btrfs_test_opt(root, COMPRESS) ||
384 (BTRFS_I(inode)->force_compress))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400385 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400386 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400387
Chris Masonc8b97812008-10-29 14:49:59 -0400388 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
389 total_compressed, pages,
390 nr_pages, &nr_pages_ret,
391 &total_in,
392 &total_compressed,
393 max_compressed);
394
395 if (!ret) {
396 unsigned long offset = total_compressed &
397 (PAGE_CACHE_SIZE - 1);
398 struct page *page = pages[nr_pages_ret - 1];
399 char *kaddr;
400
401 /* zero the tail end of the last page, we might be
402 * sending it down to disk
403 */
404 if (offset) {
405 kaddr = kmap_atomic(page, KM_USER0);
406 memset(kaddr + offset, 0,
407 PAGE_CACHE_SIZE - offset);
408 kunmap_atomic(kaddr, KM_USER0);
409 }
410 will_compress = 1;
411 }
412 }
413 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500414 trans = btrfs_join_transaction(root, 1);
415 BUG_ON(!trans);
416 btrfs_set_trans_block_group(trans, inode);
417
Chris Masonc8b97812008-10-29 14:49:59 -0400418 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500419 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400420 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500421 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400422 */
423 ret = cow_file_range_inline(trans, root, inode,
424 start, end, 0, NULL);
425 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500426 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400427 ret = cow_file_range_inline(trans, root, inode,
428 start, end,
429 total_compressed, pages);
430 }
431 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500432 /*
433 * inline extent creation worked, we don't need
434 * to create any more async work items. Unlock
435 * and free up our temp pages.
436 */
Chris Masonc8b97812008-10-29 14:49:59 -0400437 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400438 &BTRFS_I(inode)->io_tree,
439 start, end, NULL,
440 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400441 EXTENT_CLEAR_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -0400442 EXTENT_CLEAR_ACCOUNTING |
Chris Masona791e352009-10-08 11:27:10 -0400443 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000444
445 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400446 goto free_pages_out;
447 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000448 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400449 }
450
451 if (will_compress) {
452 /*
453 * we aren't doing an inline extent round the compressed size
454 * up to a block size boundary so the allocator does sane
455 * things
456 */
457 total_compressed = (total_compressed + blocksize - 1) &
458 ~(blocksize - 1);
459
460 /*
461 * one last check to make sure the compression is really a
462 * win, compare the page count read with the blocks on disk
463 */
464 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
465 ~(PAGE_CACHE_SIZE - 1);
466 if (total_compressed >= total_in) {
467 will_compress = 0;
468 } else {
469 disk_num_bytes = total_compressed;
470 num_bytes = total_in;
471 }
472 }
473 if (!will_compress && pages) {
474 /*
475 * the compression code ran but failed to make things smaller,
476 * free any pages it allocated and our page pointer array
477 */
478 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400479 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400480 page_cache_release(pages[i]);
481 }
482 kfree(pages);
483 pages = NULL;
484 total_compressed = 0;
485 nr_pages_ret = 0;
486
487 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500488 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
489 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500490 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500491 }
Chris Masonc8b97812008-10-29 14:49:59 -0400492 }
Chris Mason771ed682008-11-06 22:02:51 -0500493 if (will_compress) {
494 *num_added += 1;
495
496 /* the async work queues will take care of doing actual
497 * allocation on disk for these compressed pages,
498 * and will submit them to the elevator.
499 */
500 add_async_extent(async_cow, start, num_bytes,
501 total_compressed, pages, nr_pages_ret);
502
Chris Mason42dc7ba2008-12-15 11:44:56 -0500503 if (start + num_bytes < end && start + num_bytes < actual_end) {
Chris Mason771ed682008-11-06 22:02:51 -0500504 start += num_bytes;
505 pages = NULL;
506 cond_resched();
507 goto again;
508 }
509 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500510cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500511 /*
512 * No compression, but we still need to write the pages in
513 * the file we've been given so far. redirty the locked
514 * page if it corresponds to our extent and set things up
515 * for the async work queue to run cow_file_range to do
516 * the normal delalloc dance
517 */
518 if (page_offset(locked_page) >= start &&
519 page_offset(locked_page) <= end) {
520 __set_page_dirty_nobuffers(locked_page);
521 /* unlocked later on in the async handlers */
522 }
523 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
524 *num_added += 1;
525 }
526
527out:
528 return 0;
529
530free_pages_out:
531 for (i = 0; i < nr_pages_ret; i++) {
532 WARN_ON(pages[i]->mapping);
533 page_cache_release(pages[i]);
534 }
Chris Masond3977122009-01-05 21:25:51 -0500535 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500536
537 goto out;
538}
539
540/*
541 * phase two of compressed writeback. This is the ordered portion
542 * of the code, which only gets called in the order the work was
543 * queued. We walk all the async extents created by compress_file_range
544 * and send them down to the disk.
545 */
546static noinline int submit_compressed_extents(struct inode *inode,
547 struct async_cow *async_cow)
548{
549 struct async_extent *async_extent;
550 u64 alloc_hint = 0;
551 struct btrfs_trans_handle *trans;
552 struct btrfs_key ins;
553 struct extent_map *em;
554 struct btrfs_root *root = BTRFS_I(inode)->root;
555 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
556 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500557 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500558
559 if (list_empty(&async_cow->extents))
560 return 0;
561
Chris Mason771ed682008-11-06 22:02:51 -0500562
Chris Masond3977122009-01-05 21:25:51 -0500563 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500564 async_extent = list_entry(async_cow->extents.next,
565 struct async_extent, list);
566 list_del(&async_extent->list);
567
568 io_tree = &BTRFS_I(inode)->io_tree;
569
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500570retry:
Chris Mason771ed682008-11-06 22:02:51 -0500571 /* did the compression code fall back to uncompressed IO? */
572 if (!async_extent->pages) {
573 int page_started = 0;
574 unsigned long nr_written = 0;
575
576 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000577 async_extent->start +
578 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500579
580 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500581 ret = cow_file_range(inode, async_cow->locked_page,
582 async_extent->start,
583 async_extent->start +
584 async_extent->ram_size - 1,
585 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500586
587 /*
588 * if page_started, cow_file_range inserted an
589 * inline extent and took care of all the unlocking
590 * and IO for us. Otherwise, we need to submit
591 * all those pages down to the drive.
592 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500593 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500594 extent_write_locked_range(io_tree,
595 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500596 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500597 async_extent->ram_size - 1,
598 btrfs_get_extent,
599 WB_SYNC_ALL);
600 kfree(async_extent);
601 cond_resched();
602 continue;
603 }
604
605 lock_extent(io_tree, async_extent->start,
606 async_extent->start + async_extent->ram_size - 1,
607 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500608
Yan, Zhengc2167752009-11-12 09:34:21 +0000609 trans = btrfs_join_transaction(root, 1);
Chris Mason771ed682008-11-06 22:02:51 -0500610 ret = btrfs_reserve_extent(trans, root,
611 async_extent->compressed_size,
612 async_extent->compressed_size,
613 0, alloc_hint,
614 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000615 btrfs_end_transaction(trans, root);
616
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500617 if (ret) {
618 int i;
619 for (i = 0; i < async_extent->nr_pages; i++) {
620 WARN_ON(async_extent->pages[i]->mapping);
621 page_cache_release(async_extent->pages[i]);
622 }
623 kfree(async_extent->pages);
624 async_extent->nr_pages = 0;
625 async_extent->pages = NULL;
626 unlock_extent(io_tree, async_extent->start,
627 async_extent->start +
628 async_extent->ram_size - 1, GFP_NOFS);
629 goto retry;
630 }
631
Yan, Zhengc2167752009-11-12 09:34:21 +0000632 /*
633 * here we're doing allocation and writeback of the
634 * compressed pages
635 */
636 btrfs_drop_extent_cache(inode, async_extent->start,
637 async_extent->start +
638 async_extent->ram_size - 1, 0);
639
Chris Mason771ed682008-11-06 22:02:51 -0500640 em = alloc_extent_map(GFP_NOFS);
641 em->start = async_extent->start;
642 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500643 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500644
645 em->block_start = ins.objectid;
646 em->block_len = ins.offset;
647 em->bdev = root->fs_info->fs_devices->latest_bdev;
648 set_bit(EXTENT_FLAG_PINNED, &em->flags);
649 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
650
Chris Masond3977122009-01-05 21:25:51 -0500651 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400652 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500653 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400654 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500655 if (ret != -EEXIST) {
656 free_extent_map(em);
657 break;
658 }
659 btrfs_drop_extent_cache(inode, async_extent->start,
660 async_extent->start +
661 async_extent->ram_size - 1, 0);
662 }
663
664 ret = btrfs_add_ordered_extent(inode, async_extent->start,
665 ins.objectid,
666 async_extent->ram_size,
667 ins.offset,
668 BTRFS_ORDERED_COMPRESSED);
669 BUG_ON(ret);
670
Chris Mason771ed682008-11-06 22:02:51 -0500671 /*
672 * clear dirty, set writeback and unlock the pages.
673 */
674 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400675 &BTRFS_I(inode)->io_tree,
676 async_extent->start,
677 async_extent->start +
678 async_extent->ram_size - 1,
679 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
680 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400681 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400682 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500683
684 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500685 async_extent->start,
686 async_extent->ram_size,
687 ins.objectid,
688 ins.offset, async_extent->pages,
689 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500690
691 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500692 alloc_hint = ins.objectid + ins.offset;
693 kfree(async_extent);
694 cond_resched();
695 }
696
Chris Mason771ed682008-11-06 22:02:51 -0500697 return 0;
698}
699
700/*
701 * when extent_io.c finds a delayed allocation range in the file,
702 * the call backs end up in this code. The basic idea is to
703 * allocate extents on disk for the range, and create ordered data structs
704 * in ram to track those extents.
705 *
706 * locked_page is the page that writepage had locked already. We use
707 * it to make sure we don't do extra locks or unlocks.
708 *
709 * *page_started is set to one if we unlock locked_page and do everything
710 * required to start IO on it. It may be clean and already done with
711 * IO when we return.
712 */
713static noinline int cow_file_range(struct inode *inode,
714 struct page *locked_page,
715 u64 start, u64 end, int *page_started,
716 unsigned long *nr_written,
717 int unlock)
718{
719 struct btrfs_root *root = BTRFS_I(inode)->root;
720 struct btrfs_trans_handle *trans;
721 u64 alloc_hint = 0;
722 u64 num_bytes;
723 unsigned long ram_size;
724 u64 disk_num_bytes;
725 u64 cur_alloc_size;
726 u64 blocksize = root->sectorsize;
727 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500728 u64 isize = i_size_read(inode);
Chris Mason771ed682008-11-06 22:02:51 -0500729 struct btrfs_key ins;
730 struct extent_map *em;
731 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
732 int ret = 0;
733
734 trans = btrfs_join_transaction(root, 1);
735 BUG_ON(!trans);
736 btrfs_set_trans_block_group(trans, inode);
737
Chris Mason42dc7ba2008-12-15 11:44:56 -0500738 actual_end = min_t(u64, isize, end + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500739
740 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
741 num_bytes = max(blocksize, num_bytes);
742 disk_num_bytes = num_bytes;
743 ret = 0;
744
745 if (start == 0) {
746 /* lets try to make an inline extent */
747 ret = cow_file_range_inline(trans, root, inode,
748 start, end, 0, NULL);
749 if (ret == 0) {
750 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400751 &BTRFS_I(inode)->io_tree,
752 start, end, NULL,
753 EXTENT_CLEAR_UNLOCK_PAGE |
754 EXTENT_CLEAR_UNLOCK |
755 EXTENT_CLEAR_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -0400756 EXTENT_CLEAR_ACCOUNTING |
Chris Masona791e352009-10-08 11:27:10 -0400757 EXTENT_CLEAR_DIRTY |
758 EXTENT_SET_WRITEBACK |
759 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000760
Chris Mason771ed682008-11-06 22:02:51 -0500761 *nr_written = *nr_written +
762 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
763 *page_started = 1;
764 ret = 0;
765 goto out;
766 }
767 }
Chris Masonc8b97812008-10-29 14:49:59 -0400768
769 BUG_ON(disk_num_bytes >
770 btrfs_super_total_bytes(&root->fs_info->super_copy));
771
Chris Masonb917b7c2009-09-18 16:07:03 -0400772
773 read_lock(&BTRFS_I(inode)->extent_tree.lock);
774 em = search_extent_mapping(&BTRFS_I(inode)->extent_tree,
775 start, num_bytes);
776 if (em) {
Josef Bacik6346c932009-11-10 21:23:47 -0500777 /*
778 * if block start isn't an actual block number then find the
779 * first block in this inode and use that as a hint. If that
780 * block is also bogus then just don't worry about it.
781 */
782 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
783 free_extent_map(em);
784 em = search_extent_mapping(em_tree, 0, 0);
785 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
786 alloc_hint = em->block_start;
787 if (em)
788 free_extent_map(em);
789 } else {
790 alloc_hint = em->block_start;
791 free_extent_map(em);
792 }
Chris Masonb917b7c2009-09-18 16:07:03 -0400793 }
794 read_unlock(&BTRFS_I(inode)->extent_tree.lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400795 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400796
Chris Masond3977122009-01-05 21:25:51 -0500797 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400798 unsigned long op;
799
Chris Masonc8b97812008-10-29 14:49:59 -0400800 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400801 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500802 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400803 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500804 BUG_ON(ret);
805
Chris Masone6dcd2d2008-07-17 12:53:50 -0400806 em = alloc_extent_map(GFP_NOFS);
807 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500808 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500809 ram_size = ins.offset;
810 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400811
Chris Masone6dcd2d2008-07-17 12:53:50 -0400812 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400813 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400814 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400815 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400816
Chris Masond3977122009-01-05 21:25:51 -0500817 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400818 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400819 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400820 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400821 if (ret != -EEXIST) {
822 free_extent_map(em);
823 break;
824 }
825 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400826 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400827 }
828
Chris Mason98d20f62008-04-14 09:46:10 -0400829 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400830 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500831 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400832 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400833
Yan Zheng17d217f2008-12-12 10:03:38 -0500834 if (root->root_key.objectid ==
835 BTRFS_DATA_RELOC_TREE_OBJECTID) {
836 ret = btrfs_reloc_clone_csums(inode, start,
837 cur_alloc_size);
838 BUG_ON(ret);
839 }
840
Chris Masond3977122009-01-05 21:25:51 -0500841 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400842 break;
Chris Masond3977122009-01-05 21:25:51 -0500843
Chris Masonc8b97812008-10-29 14:49:59 -0400844 /* we're not doing compressed IO, don't unlock the first
845 * page (which the caller expects to stay locked), don't
846 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400847 *
848 * Do set the Private2 bit so we know this page was properly
849 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400850 */
Chris Masona791e352009-10-08 11:27:10 -0400851 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
852 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
853 EXTENT_SET_PRIVATE2;
854
Chris Masonc8b97812008-10-29 14:49:59 -0400855 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
856 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400857 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400858 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500859 num_bytes -= cur_alloc_size;
860 alloc_hint = ins.objectid + ins.offset;
861 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400862 }
Chris Masonb888db22007-08-27 16:49:44 -0400863out:
Chris Mason771ed682008-11-06 22:02:51 -0500864 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400865 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400866
Chris Masonbe20aa92007-12-17 20:14:01 -0500867 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500868}
Chris Masonc8b97812008-10-29 14:49:59 -0400869
Chris Mason771ed682008-11-06 22:02:51 -0500870/*
871 * work queue call back to started compression on a file and pages
872 */
873static noinline void async_cow_start(struct btrfs_work *work)
874{
875 struct async_cow *async_cow;
876 int num_added = 0;
877 async_cow = container_of(work, struct async_cow, work);
878
879 compress_file_range(async_cow->inode, async_cow->locked_page,
880 async_cow->start, async_cow->end, async_cow,
881 &num_added);
882 if (num_added == 0)
883 async_cow->inode = NULL;
884}
885
886/*
887 * work queue call back to submit previously compressed pages
888 */
889static noinline void async_cow_submit(struct btrfs_work *work)
890{
891 struct async_cow *async_cow;
892 struct btrfs_root *root;
893 unsigned long nr_pages;
894
895 async_cow = container_of(work, struct async_cow, work);
896
897 root = async_cow->root;
898 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
899 PAGE_CACHE_SHIFT;
900
901 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
902
903 if (atomic_read(&root->fs_info->async_delalloc_pages) <
904 5 * 1042 * 1024 &&
905 waitqueue_active(&root->fs_info->async_submit_wait))
906 wake_up(&root->fs_info->async_submit_wait);
907
Chris Masond3977122009-01-05 21:25:51 -0500908 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500909 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500910}
Chris Masonc8b97812008-10-29 14:49:59 -0400911
Chris Mason771ed682008-11-06 22:02:51 -0500912static noinline void async_cow_free(struct btrfs_work *work)
913{
914 struct async_cow *async_cow;
915 async_cow = container_of(work, struct async_cow, work);
916 kfree(async_cow);
917}
918
919static int cow_file_range_async(struct inode *inode, struct page *locked_page,
920 u64 start, u64 end, int *page_started,
921 unsigned long *nr_written)
922{
923 struct async_cow *async_cow;
924 struct btrfs_root *root = BTRFS_I(inode)->root;
925 unsigned long nr_pages;
926 u64 cur_end;
927 int limit = 10 * 1024 * 1042;
928
Chris Masona3429ab2009-10-08 12:30:20 -0400929 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
930 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500931 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500932 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
933 async_cow->inode = inode;
934 async_cow->root = root;
935 async_cow->locked_page = locked_page;
936 async_cow->start = start;
937
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200938 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500939 cur_end = end;
940 else
941 cur_end = min(end, start + 512 * 1024 - 1);
942
943 async_cow->end = cur_end;
944 INIT_LIST_HEAD(&async_cow->extents);
945
946 async_cow->work.func = async_cow_start;
947 async_cow->work.ordered_func = async_cow_submit;
948 async_cow->work.ordered_free = async_cow_free;
949 async_cow->work.flags = 0;
950
Chris Mason771ed682008-11-06 22:02:51 -0500951 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
952 PAGE_CACHE_SHIFT;
953 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
954
955 btrfs_queue_worker(&root->fs_info->delalloc_workers,
956 &async_cow->work);
957
958 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
959 wait_event(root->fs_info->async_submit_wait,
960 (atomic_read(&root->fs_info->async_delalloc_pages) <
961 limit));
962 }
963
Chris Masond3977122009-01-05 21:25:51 -0500964 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500965 atomic_read(&root->fs_info->async_delalloc_pages)) {
966 wait_event(root->fs_info->async_submit_wait,
967 (atomic_read(&root->fs_info->async_delalloc_pages) ==
968 0));
969 }
970
971 *nr_written += nr_pages;
972 start = cur_end + 1;
973 }
974 *page_started = 1;
975 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500976}
977
Chris Masond3977122009-01-05 21:25:51 -0500978static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500979 u64 bytenr, u64 num_bytes)
980{
981 int ret;
982 struct btrfs_ordered_sum *sums;
983 LIST_HEAD(list);
984
Yan Zheng07d400a2009-01-06 11:42:00 -0500985 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
986 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500987 if (ret == 0 && list_empty(&list))
988 return 0;
989
990 while (!list_empty(&list)) {
991 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
992 list_del(&sums->list);
993 kfree(sums);
994 }
995 return 1;
996}
997
Chris Masond352ac62008-09-29 15:18:18 -0400998/*
999 * when nowcow writeback call back. This checks for snapshots or COW copies
1000 * of the extents that exist in the file, and COWs the file as required.
1001 *
1002 * If no cow copies or snapshots exist, we write directly to the existing
1003 * blocks on disk
1004 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001005static noinline int run_delalloc_nocow(struct inode *inode,
1006 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001007 u64 start, u64 end, int *page_started, int force,
1008 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001009{
Chris Masonbe20aa92007-12-17 20:14:01 -05001010 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001011 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001012 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001013 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001014 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001015 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001016 u64 cow_start;
1017 u64 cur_offset;
1018 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001019 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001020 u64 disk_bytenr;
1021 u64 num_bytes;
1022 int extent_type;
1023 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001024 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001025 int nocow;
1026 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -05001027
1028 path = btrfs_alloc_path();
1029 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001030 trans = btrfs_join_transaction(root, 1);
1031 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -05001032
Yan Zheng80ff3852008-10-30 14:20:02 -04001033 cow_start = (u64)-1;
1034 cur_offset = start;
1035 while (1) {
1036 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1037 cur_offset, 0);
1038 BUG_ON(ret < 0);
1039 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1040 leaf = path->nodes[0];
1041 btrfs_item_key_to_cpu(leaf, &found_key,
1042 path->slots[0] - 1);
1043 if (found_key.objectid == inode->i_ino &&
1044 found_key.type == BTRFS_EXTENT_DATA_KEY)
1045 path->slots[0]--;
1046 }
1047 check_prev = 0;
1048next_slot:
1049 leaf = path->nodes[0];
1050 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1051 ret = btrfs_next_leaf(root, path);
1052 if (ret < 0)
1053 BUG_ON(1);
1054 if (ret > 0)
1055 break;
1056 leaf = path->nodes[0];
1057 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001058
Yan Zheng80ff3852008-10-30 14:20:02 -04001059 nocow = 0;
1060 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001061 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001062 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001063
Yan Zheng80ff3852008-10-30 14:20:02 -04001064 if (found_key.objectid > inode->i_ino ||
1065 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1066 found_key.offset > end)
1067 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001068
Yan Zheng80ff3852008-10-30 14:20:02 -04001069 if (found_key.offset > cur_offset) {
1070 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001071 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001072 goto out_check;
1073 }
Chris Masonc31f8832008-01-08 15:46:31 -05001074
Yan Zheng80ff3852008-10-30 14:20:02 -04001075 fi = btrfs_item_ptr(leaf, path->slots[0],
1076 struct btrfs_file_extent_item);
1077 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001078
Yan Zhengd899e052008-10-30 14:25:28 -04001079 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1080 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001081 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001082 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001083 extent_end = found_key.offset +
1084 btrfs_file_extent_num_bytes(leaf, fi);
1085 if (extent_end <= start) {
1086 path->slots[0]++;
1087 goto next_slot;
1088 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001089 if (disk_bytenr == 0)
1090 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001091 if (btrfs_file_extent_compression(leaf, fi) ||
1092 btrfs_file_extent_encryption(leaf, fi) ||
1093 btrfs_file_extent_other_encoding(leaf, fi))
1094 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001095 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1096 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001097 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001098 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001099 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001100 found_key.offset -
1101 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001102 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001103 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001104 disk_bytenr += cur_offset - found_key.offset;
1105 num_bytes = min(end + 1, extent_end) - cur_offset;
1106 /*
1107 * force cow if csum exists in the range.
1108 * this ensure that csum for a given extent are
1109 * either valid or do not exist.
1110 */
1111 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1112 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001113 nocow = 1;
1114 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1115 extent_end = found_key.offset +
1116 btrfs_file_extent_inline_len(leaf, fi);
1117 extent_end = ALIGN(extent_end, root->sectorsize);
1118 } else {
1119 BUG_ON(1);
1120 }
1121out_check:
1122 if (extent_end <= start) {
1123 path->slots[0]++;
1124 goto next_slot;
1125 }
1126 if (!nocow) {
1127 if (cow_start == (u64)-1)
1128 cow_start = cur_offset;
1129 cur_offset = extent_end;
1130 if (cur_offset > end)
1131 break;
1132 path->slots[0]++;
1133 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001134 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001135
Yan Zheng7ea394f2008-08-05 13:05:02 -04001136 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001137 if (cow_start != (u64)-1) {
1138 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001139 found_key.offset - 1, page_started,
1140 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001141 BUG_ON(ret);
1142 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001143 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001144
Yan Zhengd899e052008-10-30 14:25:28 -04001145 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1146 struct extent_map *em;
1147 struct extent_map_tree *em_tree;
1148 em_tree = &BTRFS_I(inode)->extent_tree;
1149 em = alloc_extent_map(GFP_NOFS);
1150 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001151 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001152 em->len = num_bytes;
1153 em->block_len = num_bytes;
1154 em->block_start = disk_bytenr;
1155 em->bdev = root->fs_info->fs_devices->latest_bdev;
1156 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1157 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001158 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001159 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001160 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001161 if (ret != -EEXIST) {
1162 free_extent_map(em);
1163 break;
1164 }
1165 btrfs_drop_extent_cache(inode, em->start,
1166 em->start + em->len - 1, 0);
1167 }
1168 type = BTRFS_ORDERED_PREALLOC;
1169 } else {
1170 type = BTRFS_ORDERED_NOCOW;
1171 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001172
1173 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001174 num_bytes, num_bytes, type);
1175 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001176
Yan Zhengd899e052008-10-30 14:25:28 -04001177 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001178 cur_offset, cur_offset + num_bytes - 1,
1179 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1180 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1181 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001182 cur_offset = extent_end;
1183 if (cur_offset > end)
1184 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001185 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001186 btrfs_release_path(root, path);
1187
1188 if (cur_offset <= end && cow_start == (u64)-1)
1189 cow_start = cur_offset;
1190 if (cow_start != (u64)-1) {
1191 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001192 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001193 BUG_ON(ret);
1194 }
1195
1196 ret = btrfs_end_transaction(trans, root);
1197 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001198 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001199 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001200}
1201
Chris Masond352ac62008-09-29 15:18:18 -04001202/*
1203 * extent_io.c call back to do delayed allocation processing
1204 */
Chris Masonc8b97812008-10-29 14:49:59 -04001205static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001206 u64 start, u64 end, int *page_started,
1207 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001208{
Chris Masonbe20aa92007-12-17 20:14:01 -05001209 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001210 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001211
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001212 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001213 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001214 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001215 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001216 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001217 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001218 else if (!btrfs_test_opt(root, COMPRESS) &&
1219 !(BTRFS_I(inode)->force_compress))
Chris Mason7f366cf2009-03-12 20:12:45 -04001220 ret = cow_file_range(inode, locked_page, start, end,
1221 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001222 else
Chris Mason771ed682008-11-06 22:02:51 -05001223 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001224 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001225 return ret;
1226}
1227
Josef Bacik9ed74f22009-09-11 16:12:44 -04001228static int btrfs_split_extent_hook(struct inode *inode,
1229 struct extent_state *orig, u64 split)
1230{
1231 struct btrfs_root *root = BTRFS_I(inode)->root;
1232 u64 size;
1233
1234 if (!(orig->state & EXTENT_DELALLOC))
1235 return 0;
1236
1237 size = orig->end - orig->start + 1;
1238 if (size > root->fs_info->max_extent) {
1239 u64 num_extents;
1240 u64 new_size;
1241
1242 new_size = orig->end - split + 1;
1243 num_extents = div64_u64(size + root->fs_info->max_extent - 1,
1244 root->fs_info->max_extent);
1245
1246 /*
Josef Bacik32c00af2009-10-08 13:34:05 -04001247 * if we break a large extent up then leave oustanding_extents
1248 * be, since we've already accounted for the large extent.
Josef Bacik9ed74f22009-09-11 16:12:44 -04001249 */
1250 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1251 root->fs_info->max_extent) < num_extents)
1252 return 0;
1253 }
1254
Josef Bacik32c00af2009-10-08 13:34:05 -04001255 spin_lock(&BTRFS_I(inode)->accounting_lock);
1256 BTRFS_I(inode)->outstanding_extents++;
1257 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001258
1259 return 0;
1260}
1261
1262/*
1263 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1264 * extents so we can keep track of new extents that are just merged onto old
1265 * extents, such as when we are doing sequential writes, so we can properly
1266 * account for the metadata space we'll need.
1267 */
1268static int btrfs_merge_extent_hook(struct inode *inode,
1269 struct extent_state *new,
1270 struct extent_state *other)
1271{
1272 struct btrfs_root *root = BTRFS_I(inode)->root;
1273 u64 new_size, old_size;
1274 u64 num_extents;
1275
1276 /* not delalloc, ignore it */
1277 if (!(other->state & EXTENT_DELALLOC))
1278 return 0;
1279
1280 old_size = other->end - other->start + 1;
1281 if (new->start < other->start)
1282 new_size = other->end - new->start + 1;
1283 else
1284 new_size = new->end - other->start + 1;
1285
1286 /* we're not bigger than the max, unreserve the space and go */
1287 if (new_size <= root->fs_info->max_extent) {
Josef Bacik32c00af2009-10-08 13:34:05 -04001288 spin_lock(&BTRFS_I(inode)->accounting_lock);
1289 BTRFS_I(inode)->outstanding_extents--;
1290 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001291 return 0;
1292 }
1293
1294 /*
1295 * If we grew by another max_extent, just return, we want to keep that
1296 * reserved amount.
1297 */
1298 num_extents = div64_u64(old_size + root->fs_info->max_extent - 1,
1299 root->fs_info->max_extent);
1300 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1301 root->fs_info->max_extent) > num_extents)
1302 return 0;
1303
Josef Bacik32c00af2009-10-08 13:34:05 -04001304 spin_lock(&BTRFS_I(inode)->accounting_lock);
1305 BTRFS_I(inode)->outstanding_extents--;
1306 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001307
1308 return 0;
1309}
1310
Chris Masond352ac62008-09-29 15:18:18 -04001311/*
1312 * extent_io.c set_bit_hook, used to track delayed allocation
1313 * bytes in this file, and to maintain the list of inodes that
1314 * have pending delalloc work to be done.
1315 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001316static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001317 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001318{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001319
Chris Mason75eff682008-12-15 15:54:40 -05001320 /*
1321 * set_bit and clear bit hooks normally require _irqsave/restore
1322 * but in this case, we are only testeing for the DELALLOC
1323 * bit, which is only set or cleared with irqs on
1324 */
Chris Masonb0c68f82008-01-31 11:05:37 -05001325 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001326 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001327
Josef Bacik32c00af2009-10-08 13:34:05 -04001328 spin_lock(&BTRFS_I(inode)->accounting_lock);
1329 BTRFS_I(inode)->outstanding_extents++;
1330 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik6a632092009-02-20 11:00:09 -05001331 btrfs_delalloc_reserve_space(root, inode, end - start + 1);
Chris Mason75eff682008-12-15 15:54:40 -05001332 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -05001333 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001334 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001335 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1336 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1337 &root->fs_info->delalloc_inodes);
1338 }
Chris Mason75eff682008-12-15 15:54:40 -05001339 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001340 }
1341 return 0;
1342}
1343
Chris Masond352ac62008-09-29 15:18:18 -04001344/*
1345 * extent_io.c clear_bit_hook, see set_bit_hook for why
1346 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001347static int btrfs_clear_bit_hook(struct inode *inode,
1348 struct extent_state *state, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001349{
Chris Mason75eff682008-12-15 15:54:40 -05001350 /*
1351 * set_bit and clear bit hooks normally require _irqsave/restore
1352 * but in this case, we are only testeing for the DELALLOC
1353 * bit, which is only set or cleared with irqs on
1354 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001355 if ((state->state & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001356 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001357
Josef Bacik32c00af2009-10-08 13:34:05 -04001358 if (bits & EXTENT_DO_ACCOUNTING) {
1359 spin_lock(&BTRFS_I(inode)->accounting_lock);
1360 BTRFS_I(inode)->outstanding_extents--;
1361 spin_unlock(&BTRFS_I(inode)->accounting_lock);
1362 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
1363 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04001364
Chris Mason75eff682008-12-15 15:54:40 -05001365 spin_lock(&root->fs_info->delalloc_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001366 if (state->end - state->start + 1 >
1367 root->fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05001368 printk(KERN_INFO "btrfs warning: delalloc account "
1369 "%llu %llu\n",
Josef Bacik9ed74f22009-09-11 16:12:44 -04001370 (unsigned long long)
1371 state->end - state->start + 1,
Chris Masond3977122009-01-05 21:25:51 -05001372 (unsigned long long)
1373 root->fs_info->delalloc_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001374 btrfs_delalloc_free_space(root, inode, (u64)-1);
Chris Masonb0c68f82008-01-31 11:05:37 -05001375 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001376 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001377 } else {
Josef Bacik6a632092009-02-20 11:00:09 -05001378 btrfs_delalloc_free_space(root, inode,
Josef Bacik9ed74f22009-09-11 16:12:44 -04001379 state->end -
1380 state->start + 1);
1381 root->fs_info->delalloc_bytes -= state->end -
1382 state->start + 1;
1383 BTRFS_I(inode)->delalloc_bytes -= state->end -
1384 state->start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001385 }
Chris Masonea8c2812008-08-04 23:17:27 -04001386 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1387 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1388 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1389 }
Chris Mason75eff682008-12-15 15:54:40 -05001390 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001391 }
1392 return 0;
1393}
1394
Chris Masond352ac62008-09-29 15:18:18 -04001395/*
1396 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1397 * we don't create bios that span stripes or chunks
1398 */
Chris Mason239b14b2008-03-24 15:02:07 -04001399int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001400 size_t size, struct bio *bio,
1401 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001402{
1403 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1404 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001405 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001406 u64 length = 0;
1407 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001408 int ret;
1409
Chris Mason771ed682008-11-06 22:02:51 -05001410 if (bio_flags & EXTENT_BIO_COMPRESSED)
1411 return 0;
1412
Chris Masonf2d8d742008-04-21 10:03:05 -04001413 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001414 map_tree = &root->fs_info->mapping_tree;
1415 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001416 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001417 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001418
Chris Masond3977122009-01-05 21:25:51 -05001419 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001420 return 1;
Chris Mason239b14b2008-03-24 15:02:07 -04001421 return 0;
1422}
1423
Chris Masond352ac62008-09-29 15:18:18 -04001424/*
1425 * in order to insert checksums into the metadata in large chunks,
1426 * we wait until bio submission time. All the pages in the bio are
1427 * checksummed and sums are attached onto the ordered extent record.
1428 *
1429 * At IO completion time the cums attached on the ordered extent record
1430 * are inserted into the btree
1431 */
Chris Masond3977122009-01-05 21:25:51 -05001432static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1433 struct bio *bio, int mirror_num,
1434 unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001435{
Chris Mason065631f2008-02-20 12:07:25 -05001436 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001437 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001438
Chris Masond20f7042008-12-08 16:58:54 -05001439 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001440 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001441 return 0;
1442}
Chris Masone0156402008-04-16 11:15:20 -04001443
Chris Mason4a69a412008-11-06 22:03:00 -05001444/*
1445 * in order to insert checksums into the metadata in large chunks,
1446 * we wait until bio submission time. All the pages in the bio are
1447 * checksummed and sums are attached onto the ordered extent record.
1448 *
1449 * At IO completion time the cums attached on the ordered extent record
1450 * are inserted into the btree
1451 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001452static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Mason4a69a412008-11-06 22:03:00 -05001453 int mirror_num, unsigned long bio_flags)
1454{
1455 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001456 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001457}
1458
Chris Masond352ac62008-09-29 15:18:18 -04001459/*
Chris Masoncad321a2008-12-17 14:51:42 -05001460 * extent_io.c submission hook. This does the right thing for csum calculation
1461 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001462 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001463static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001464 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001465{
1466 struct btrfs_root *root = BTRFS_I(inode)->root;
1467 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001468 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001469
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001470 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001471
Chris Masone6dcd2d2008-07-17 12:53:50 -04001472 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1473 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001474
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001475 if (!(rw & (1 << BIO_RW))) {
Chris Masond20f7042008-12-08 16:58:54 -05001476 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001477 return btrfs_submit_compressed_read(inode, bio,
1478 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001479 } else if (!skip_sum)
1480 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001481 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001482 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001483 /* csum items have already been cloned */
1484 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1485 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001486 /* we're doing a write, do the async checksumming */
1487 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001488 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001489 bio_flags, __btrfs_submit_bio_start,
1490 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001491 }
1492
Chris Mason0b86a832008-03-24 15:01:56 -04001493mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001494 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001495}
Chris Mason6885f302008-02-20 16:11:05 -05001496
Chris Masond352ac62008-09-29 15:18:18 -04001497/*
1498 * given a list of ordered sums record them in the inode. This happens
1499 * at IO completion time based on sums calculated at bio submission time.
1500 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001501static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001502 struct inode *inode, u64 file_offset,
1503 struct list_head *list)
1504{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001505 struct btrfs_ordered_sum *sum;
1506
1507 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001508
1509 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001510 btrfs_csum_file_blocks(trans,
1511 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001512 }
1513 return 0;
1514}
1515
Josef Bacik2ac55d42010-02-03 19:33:23 +00001516int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1517 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001518{
Chris Masond3977122009-01-05 21:25:51 -05001519 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001520 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001521 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001522 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001523}
1524
Chris Masond352ac62008-09-29 15:18:18 -04001525/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001526struct btrfs_writepage_fixup {
1527 struct page *page;
1528 struct btrfs_work work;
1529};
1530
Christoph Hellwigb2950862008-12-02 09:54:17 -05001531static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001532{
1533 struct btrfs_writepage_fixup *fixup;
1534 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001535 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001536 struct page *page;
1537 struct inode *inode;
1538 u64 page_start;
1539 u64 page_end;
1540
1541 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1542 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001543again:
Chris Mason247e7432008-07-17 12:53:51 -04001544 lock_page(page);
1545 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1546 ClearPageChecked(page);
1547 goto out_page;
1548 }
1549
1550 inode = page->mapping->host;
1551 page_start = page_offset(page);
1552 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1553
Josef Bacik2ac55d42010-02-03 19:33:23 +00001554 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1555 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001556
1557 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001558 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001559 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001560
1561 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1562 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001563 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1564 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001565 unlock_page(page);
1566 btrfs_start_ordered_extent(inode, ordered, 1);
1567 goto again;
1568 }
Chris Mason247e7432008-07-17 12:53:51 -04001569
Josef Bacik2ac55d42010-02-03 19:33:23 +00001570 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001571 ClearPageChecked(page);
1572out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001573 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1574 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001575out_page:
1576 unlock_page(page);
1577 page_cache_release(page);
1578}
1579
1580/*
1581 * There are a few paths in the higher layers of the kernel that directly
1582 * set the page dirty bit without asking the filesystem if it is a
1583 * good idea. This causes problems because we want to make sure COW
1584 * properly happens and the data=ordered rules are followed.
1585 *
Chris Masonc8b97812008-10-29 14:49:59 -04001586 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001587 * hasn't been properly setup for IO. We kick off an async process
1588 * to fix it up. The async helper will wait for ordered extents, set
1589 * the delalloc bit and make it safe to write the page.
1590 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001591static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001592{
1593 struct inode *inode = page->mapping->host;
1594 struct btrfs_writepage_fixup *fixup;
1595 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001596
Chris Mason8b62b722009-09-02 16:53:46 -04001597 /* this page is properly in the ordered list */
1598 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001599 return 0;
1600
1601 if (PageChecked(page))
1602 return -EAGAIN;
1603
1604 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1605 if (!fixup)
1606 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001607
Chris Mason247e7432008-07-17 12:53:51 -04001608 SetPageChecked(page);
1609 page_cache_get(page);
1610 fixup->work.func = btrfs_writepage_fixup_worker;
1611 fixup->page = page;
1612 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1613 return -EAGAIN;
1614}
1615
Yan Zhengd899e052008-10-30 14:25:28 -04001616static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1617 struct inode *inode, u64 file_pos,
1618 u64 disk_bytenr, u64 disk_num_bytes,
1619 u64 num_bytes, u64 ram_bytes,
1620 u8 compression, u8 encryption,
1621 u16 other_encoding, int extent_type)
1622{
1623 struct btrfs_root *root = BTRFS_I(inode)->root;
1624 struct btrfs_file_extent_item *fi;
1625 struct btrfs_path *path;
1626 struct extent_buffer *leaf;
1627 struct btrfs_key ins;
1628 u64 hint;
1629 int ret;
1630
1631 path = btrfs_alloc_path();
1632 BUG_ON(!path);
1633
Chris Masonb9473432009-03-13 11:00:37 -04001634 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001635
1636 /*
1637 * we may be replacing one extent in the tree with another.
1638 * The new extent is pinned in the extent map, and we don't want
1639 * to drop it from the cache until it is completely in the btree.
1640 *
1641 * So, tell btrfs_drop_extents to leave this extent in the cache.
1642 * the caller is expected to unpin it and allow it to be merged
1643 * with the others.
1644 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001645 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1646 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001647 BUG_ON(ret);
1648
1649 ins.objectid = inode->i_ino;
1650 ins.offset = file_pos;
1651 ins.type = BTRFS_EXTENT_DATA_KEY;
1652 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1653 BUG_ON(ret);
1654 leaf = path->nodes[0];
1655 fi = btrfs_item_ptr(leaf, path->slots[0],
1656 struct btrfs_file_extent_item);
1657 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1658 btrfs_set_file_extent_type(leaf, fi, extent_type);
1659 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1660 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1661 btrfs_set_file_extent_offset(leaf, fi, 0);
1662 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1663 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1664 btrfs_set_file_extent_compression(leaf, fi, compression);
1665 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1666 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001667
1668 btrfs_unlock_up_safe(path, 1);
1669 btrfs_set_lock_blocking(leaf);
1670
Yan Zhengd899e052008-10-30 14:25:28 -04001671 btrfs_mark_buffer_dirty(leaf);
1672
1673 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001674
1675 ins.objectid = disk_bytenr;
1676 ins.offset = disk_num_bytes;
1677 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001678 ret = btrfs_alloc_reserved_file_extent(trans, root,
1679 root->root_key.objectid,
1680 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001681 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001682 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001683
Yan Zhengd899e052008-10-30 14:25:28 -04001684 return 0;
1685}
1686
Chris Mason5d13a982009-03-13 11:41:46 -04001687/*
1688 * helper function for btrfs_finish_ordered_io, this
1689 * just reads in some of the csum leaves to prime them into ram
1690 * before we start the transaction. It limits the amount of btree
1691 * reads required while inside the transaction.
1692 */
Chris Masond352ac62008-09-29 15:18:18 -04001693/* as ordered data IO finishes, this gets called so we can finish
1694 * an ordered extent if the range of bytes in the file it covers are
1695 * fully written.
1696 */
Chris Mason211f90e2008-07-18 11:56:15 -04001697static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001698{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001699 struct btrfs_root *root = BTRFS_I(inode)->root;
1700 struct btrfs_trans_handle *trans;
Chris Mason5d13a982009-03-13 11:41:46 -04001701 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001702 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001703 struct extent_state *cached_state = NULL;
Yan Zhengd899e052008-10-30 14:25:28 -04001704 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001705 int ret;
1706
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001707 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1708 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001709 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001710 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001711 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001712
Yan, Zhengc2167752009-11-12 09:34:21 +00001713 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1714 BUG_ON(!list_empty(&ordered_extent->list));
1715 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1716 if (!ret) {
1717 trans = btrfs_join_transaction(root, 1);
1718 ret = btrfs_update_inode(trans, root, inode);
1719 BUG_ON(ret);
1720 btrfs_end_transaction(trans, root);
1721 }
1722 goto out;
1723 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001724
Josef Bacik2ac55d42010-02-03 19:33:23 +00001725 lock_extent_bits(io_tree, ordered_extent->file_offset,
1726 ordered_extent->file_offset + ordered_extent->len - 1,
1727 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001728
Yan, Zhengc2167752009-11-12 09:34:21 +00001729 trans = btrfs_join_transaction(root, 1);
1730
Chris Masonc8b97812008-10-29 14:49:59 -04001731 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001732 compressed = 1;
1733 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1734 BUG_ON(compressed);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001735 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001736 ordered_extent->file_offset,
1737 ordered_extent->file_offset +
1738 ordered_extent->len);
1739 BUG_ON(ret);
1740 } else {
1741 ret = insert_reserved_file_extent(trans, inode,
1742 ordered_extent->file_offset,
1743 ordered_extent->start,
1744 ordered_extent->disk_len,
1745 ordered_extent->len,
1746 ordered_extent->len,
1747 compressed, 0, 0,
1748 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001749 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1750 ordered_extent->file_offset,
1751 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001752 BUG_ON(ret);
1753 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001754 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1755 ordered_extent->file_offset +
1756 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1757
Chris Masone6dcd2d2008-07-17 12:53:50 -04001758 add_pending_csums(trans, inode, ordered_extent->file_offset,
1759 &ordered_extent->list);
1760
Yan, Zhengc2167752009-11-12 09:34:21 +00001761 /* this also removes the ordered extent from the tree */
1762 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1763 ret = btrfs_update_inode(trans, root, inode);
1764 BUG_ON(ret);
1765 btrfs_end_transaction(trans, root);
1766out:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001767 /* once for us */
1768 btrfs_put_ordered_extent(ordered_extent);
1769 /* once for the tree */
1770 btrfs_put_ordered_extent(ordered_extent);
1771
Chris Masone6dcd2d2008-07-17 12:53:50 -04001772 return 0;
1773}
1774
Christoph Hellwigb2950862008-12-02 09:54:17 -05001775static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001776 struct extent_state *state, int uptodate)
1777{
Chris Mason8b62b722009-09-02 16:53:46 -04001778 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001779 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1780}
1781
Chris Masond352ac62008-09-29 15:18:18 -04001782/*
1783 * When IO fails, either with EIO or csum verification fails, we
1784 * try other mirrors that might have a good copy of the data. This
1785 * io_failure_record is used to record state as we go through all the
1786 * mirrors. If another mirror has good data, the page is set up to date
1787 * and things continue. If a good mirror can't be found, the original
1788 * bio end_io callback is called to indicate things have failed.
1789 */
Chris Mason7e383262008-04-09 16:28:12 -04001790struct io_failure_record {
1791 struct page *page;
1792 u64 start;
1793 u64 len;
1794 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001795 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001796 int last_mirror;
1797};
1798
Christoph Hellwigb2950862008-12-02 09:54:17 -05001799static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001800 struct page *page, u64 start, u64 end,
1801 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001802{
1803 struct io_failure_record *failrec = NULL;
1804 u64 private;
1805 struct extent_map *em;
1806 struct inode *inode = page->mapping->host;
1807 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001808 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001809 struct bio *bio;
1810 int num_copies;
1811 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001812 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001813 u64 logical;
1814
1815 ret = get_state_private(failure_tree, start, &private);
1816 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001817 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1818 if (!failrec)
1819 return -ENOMEM;
1820 failrec->start = start;
1821 failrec->len = end - start + 1;
1822 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001823 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001824
Chris Mason890871b2009-09-02 16:24:52 -04001825 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001826 em = lookup_extent_mapping(em_tree, start, failrec->len);
1827 if (em->start > start || em->start + em->len < start) {
1828 free_extent_map(em);
1829 em = NULL;
1830 }
Chris Mason890871b2009-09-02 16:24:52 -04001831 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001832
1833 if (!em || IS_ERR(em)) {
1834 kfree(failrec);
1835 return -EIO;
1836 }
1837 logical = start - em->start;
1838 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001839 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1840 logical = em->block_start;
1841 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1842 }
Chris Mason7e383262008-04-09 16:28:12 -04001843 failrec->logical = logical;
1844 free_extent_map(em);
1845 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1846 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001847 set_state_private(failure_tree, start,
1848 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001849 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001850 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001851 }
1852 num_copies = btrfs_num_copies(
1853 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1854 failrec->logical, failrec->len);
1855 failrec->last_mirror++;
1856 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001857 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001858 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1859 failrec->start,
1860 EXTENT_LOCKED);
1861 if (state && state->start != failrec->start)
1862 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001863 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001864 }
1865 if (!state || failrec->last_mirror > num_copies) {
1866 set_state_private(failure_tree, failrec->start, 0);
1867 clear_extent_bits(failure_tree, failrec->start,
1868 failrec->start + failrec->len - 1,
1869 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1870 kfree(failrec);
1871 return -EIO;
1872 }
1873 bio = bio_alloc(GFP_NOFS, 1);
1874 bio->bi_private = state;
1875 bio->bi_end_io = failed_bio->bi_end_io;
1876 bio->bi_sector = failrec->logical >> 9;
1877 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001878 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001879
Chris Mason7e383262008-04-09 16:28:12 -04001880 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001881 if (failed_bio->bi_rw & (1 << BIO_RW))
1882 rw = WRITE;
1883 else
1884 rw = READ;
1885
1886 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001887 failrec->last_mirror,
Chris Masond20f7042008-12-08 16:58:54 -05001888 failrec->bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001889 return 0;
1890}
1891
Chris Masond352ac62008-09-29 15:18:18 -04001892/*
1893 * each time an IO finishes, we do a fast check in the IO failure tree
1894 * to see if we need to process or clean up an io_failure_record
1895 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001896static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001897{
1898 u64 private;
1899 u64 private_failure;
1900 struct io_failure_record *failure;
1901 int ret;
1902
1903 private = 0;
1904 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1905 (u64)-1, 1, EXTENT_DIRTY)) {
1906 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1907 start, &private_failure);
1908 if (ret == 0) {
1909 failure = (struct io_failure_record *)(unsigned long)
1910 private_failure;
1911 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1912 failure->start, 0);
1913 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1914 failure->start,
1915 failure->start + failure->len - 1,
1916 EXTENT_DIRTY | EXTENT_LOCKED,
1917 GFP_NOFS);
1918 kfree(failure);
1919 }
1920 }
Chris Mason7e383262008-04-09 16:28:12 -04001921 return 0;
1922}
1923
Chris Masond352ac62008-09-29 15:18:18 -04001924/*
1925 * when reads are done, we need to check csums to verify the data is correct
1926 * if there's a match, we allow the bio to finish. If not, we go through
1927 * the io_failure_record routines to find good copies
1928 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001929static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001930 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001931{
Chris Mason35ebb932007-10-30 16:56:53 -04001932 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001933 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001934 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001935 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001936 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001937 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001938 struct btrfs_root *root = BTRFS_I(inode)->root;
1939 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001940
Chris Masond20f7042008-12-08 16:58:54 -05001941 if (PageChecked(page)) {
1942 ClearPageChecked(page);
1943 goto good;
1944 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001945
1946 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001947 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001948
Yan Zheng17d217f2008-12-12 10:03:38 -05001949 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001950 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001951 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1952 GFP_NOFS);
1953 return 0;
1954 }
1955
Yanc2e639f2008-02-04 08:57:25 -05001956 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001957 private = state->private;
1958 ret = 0;
1959 } else {
1960 ret = get_state_private(io_tree, start, &private);
1961 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001962 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001963 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001964 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001965
Chris Masonff79f812007-10-15 16:22:25 -04001966 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1967 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001968 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001969 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001970
Chris Mason9ab86c82009-01-07 09:48:51 -05001971 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001972good:
Chris Mason7e383262008-04-09 16:28:12 -04001973 /* if the io failure tree for this inode is non-empty,
1974 * check to see if we've recovered from a failed IO
1975 */
Chris Mason1259ab72008-05-12 13:39:03 -04001976 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001977 return 0;
1978
1979zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001980 if (printk_ratelimit()) {
1981 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1982 "private %llu\n", page->mapping->host->i_ino,
1983 (unsigned long long)start, csum,
1984 (unsigned long long)private);
1985 }
Chris Masondb945352007-10-15 16:15:53 -04001986 memset(kaddr + offset, 1, end - start + 1);
1987 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001988 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001989 if (private == 0)
1990 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001991 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001992}
Chris Masonb888db22007-08-27 16:49:44 -04001993
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001994struct delayed_iput {
1995 struct list_head list;
1996 struct inode *inode;
1997};
1998
1999void btrfs_add_delayed_iput(struct inode *inode)
2000{
2001 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2002 struct delayed_iput *delayed;
2003
2004 if (atomic_add_unless(&inode->i_count, -1, 1))
2005 return;
2006
2007 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2008 delayed->inode = inode;
2009
2010 spin_lock(&fs_info->delayed_iput_lock);
2011 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2012 spin_unlock(&fs_info->delayed_iput_lock);
2013}
2014
2015void btrfs_run_delayed_iputs(struct btrfs_root *root)
2016{
2017 LIST_HEAD(list);
2018 struct btrfs_fs_info *fs_info = root->fs_info;
2019 struct delayed_iput *delayed;
2020 int empty;
2021
2022 spin_lock(&fs_info->delayed_iput_lock);
2023 empty = list_empty(&fs_info->delayed_iputs);
2024 spin_unlock(&fs_info->delayed_iput_lock);
2025 if (empty)
2026 return;
2027
2028 down_read(&root->fs_info->cleanup_work_sem);
2029 spin_lock(&fs_info->delayed_iput_lock);
2030 list_splice_init(&fs_info->delayed_iputs, &list);
2031 spin_unlock(&fs_info->delayed_iput_lock);
2032
2033 while (!list_empty(&list)) {
2034 delayed = list_entry(list.next, struct delayed_iput, list);
2035 list_del(&delayed->list);
2036 iput(delayed->inode);
2037 kfree(delayed);
2038 }
2039 up_read(&root->fs_info->cleanup_work_sem);
2040}
2041
Josef Bacik7b128762008-07-24 12:17:14 -04002042/*
2043 * This creates an orphan entry for the given inode in case something goes
2044 * wrong in the middle of an unlink/truncate.
2045 */
2046int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2047{
2048 struct btrfs_root *root = BTRFS_I(inode)->root;
2049 int ret = 0;
2050
Yanbcc63ab2008-07-30 16:29:20 -04002051 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002052
2053 /* already on the orphan list, we're good */
2054 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04002055 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002056 return 0;
2057 }
2058
2059 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2060
Yanbcc63ab2008-07-30 16:29:20 -04002061 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002062
2063 /*
2064 * insert an orphan item to track this unlinked/truncated file
2065 */
2066 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2067
2068 return ret;
2069}
2070
2071/*
2072 * We have done the truncate/delete so we can go ahead and remove the orphan
2073 * item for this particular inode.
2074 */
2075int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2076{
2077 struct btrfs_root *root = BTRFS_I(inode)->root;
2078 int ret = 0;
2079
Yanbcc63ab2008-07-30 16:29:20 -04002080 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002081
2082 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04002083 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002084 return 0;
2085 }
2086
2087 list_del_init(&BTRFS_I(inode)->i_orphan);
2088 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04002089 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002090 return 0;
2091 }
2092
Yanbcc63ab2008-07-30 16:29:20 -04002093 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002094
2095 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2096
2097 return ret;
2098}
2099
2100/*
2101 * this cleans up any orphans that may be left on the list from the last use
2102 * of this root.
2103 */
2104void btrfs_orphan_cleanup(struct btrfs_root *root)
2105{
2106 struct btrfs_path *path;
2107 struct extent_buffer *leaf;
2108 struct btrfs_item *item;
2109 struct btrfs_key key, found_key;
2110 struct btrfs_trans_handle *trans;
2111 struct inode *inode;
2112 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2113
Yan, Zhengc71bf092009-11-12 09:34:40 +00002114 if (!xchg(&root->clean_orphans, 0))
Josef Bacik7b128762008-07-24 12:17:14 -04002115 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002116
2117 path = btrfs_alloc_path();
2118 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002119 path->reada = -1;
2120
2121 key.objectid = BTRFS_ORPHAN_OBJECTID;
2122 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2123 key.offset = (u64)-1;
2124
Josef Bacik7b128762008-07-24 12:17:14 -04002125 while (1) {
2126 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2127 if (ret < 0) {
2128 printk(KERN_ERR "Error searching slot for orphan: %d"
2129 "\n", ret);
2130 break;
2131 }
2132
2133 /*
2134 * if ret == 0 means we found what we were searching for, which
2135 * is weird, but possible, so only screw with path if we didnt
2136 * find the key and see if we have stuff that matches
2137 */
2138 if (ret > 0) {
2139 if (path->slots[0] == 0)
2140 break;
2141 path->slots[0]--;
2142 }
2143
2144 /* pull out the item */
2145 leaf = path->nodes[0];
2146 item = btrfs_item_nr(leaf, path->slots[0]);
2147 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2148
2149 /* make sure the item matches what we want */
2150 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2151 break;
2152 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2153 break;
2154
2155 /* release the path since we're done with it */
2156 btrfs_release_path(root, path);
2157
2158 /*
2159 * this is where we are basically btrfs_lookup, without the
2160 * crossing root thing. we store the inode number in the
2161 * offset of the orphan item.
2162 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002163 found_key.objectid = found_key.offset;
2164 found_key.type = BTRFS_INODE_ITEM_KEY;
2165 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002166 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002167 if (IS_ERR(inode))
Josef Bacik7b128762008-07-24 12:17:14 -04002168 break;
2169
Josef Bacik7b128762008-07-24 12:17:14 -04002170 /*
2171 * add this inode to the orphan list so btrfs_orphan_del does
2172 * the proper thing when we hit it
2173 */
Yanbcc63ab2008-07-30 16:29:20 -04002174 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002175 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04002176 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002177
2178 /*
2179 * if this is a bad inode, means we actually succeeded in
2180 * removing the inode, but not the orphan record, which means
2181 * we need to manually delete the orphan since iput will just
2182 * do a destroy_inode
2183 */
2184 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002185 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04002186 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002187 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002188 iput(inode);
2189 continue;
2190 }
2191
2192 /* if we have links, this was a truncate, lets do that */
2193 if (inode->i_nlink) {
2194 nr_truncate++;
2195 btrfs_truncate(inode);
2196 } else {
2197 nr_unlink++;
2198 }
2199
2200 /* this will do delete_inode and everything for us */
2201 iput(inode);
2202 }
2203
2204 if (nr_unlink)
2205 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2206 if (nr_truncate)
2207 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
2208
2209 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002210}
2211
Chris Masond352ac62008-09-29 15:18:18 -04002212/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002213 * very simple check to peek ahead in the leaf looking for xattrs. If we
2214 * don't find any xattrs, we know there can't be any acls.
2215 *
2216 * slot is the slot the inode is in, objectid is the objectid of the inode
2217 */
2218static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2219 int slot, u64 objectid)
2220{
2221 u32 nritems = btrfs_header_nritems(leaf);
2222 struct btrfs_key found_key;
2223 int scanned = 0;
2224
2225 slot++;
2226 while (slot < nritems) {
2227 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2228
2229 /* we found a different objectid, there must not be acls */
2230 if (found_key.objectid != objectid)
2231 return 0;
2232
2233 /* we found an xattr, assume we've got an acl */
2234 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2235 return 1;
2236
2237 /*
2238 * we found a key greater than an xattr key, there can't
2239 * be any acls later on
2240 */
2241 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2242 return 0;
2243
2244 slot++;
2245 scanned++;
2246
2247 /*
2248 * it goes inode, inode backrefs, xattrs, extents,
2249 * so if there are a ton of hard links to an inode there can
2250 * be a lot of backrefs. Don't waste time searching too hard,
2251 * this is just an optimization
2252 */
2253 if (scanned >= 8)
2254 break;
2255 }
2256 /* we hit the end of the leaf before we found an xattr or
2257 * something larger than an xattr. We have to assume the inode
2258 * has acls
2259 */
2260 return 1;
2261}
2262
2263/*
Chris Masond352ac62008-09-29 15:18:18 -04002264 * read an inode from the btree into the in-memory inode
2265 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002266static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002267{
2268 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002269 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002270 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002271 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002272 struct btrfs_root *root = BTRFS_I(inode)->root;
2273 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002274 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002275 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002276 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002277 int ret;
2278
2279 path = btrfs_alloc_path();
2280 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002281 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002282
Chris Mason39279cc2007-06-12 06:35:45 -04002283 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002284 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002285 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002286
Chris Mason5f39d392007-10-15 16:14:19 -04002287 leaf = path->nodes[0];
2288 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2289 struct btrfs_inode_item);
2290
2291 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2292 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2293 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2294 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002295 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002296
2297 tspec = btrfs_inode_atime(inode_item);
2298 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2299 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2300
2301 tspec = btrfs_inode_mtime(inode_item);
2302 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2303 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2304
2305 tspec = btrfs_inode_ctime(inode_item);
2306 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2307 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2308
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002309 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002310 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002311 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002312 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002313 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002314 rdev = btrfs_inode_rdev(leaf, inode_item);
2315
Josef Bacikaec74772008-07-24 12:12:38 -04002316 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002317 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002318
Chris Mason5f39d392007-10-15 16:14:19 -04002319 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002320
Chris Mason46a53cc2009-04-27 11:47:50 -04002321 /*
2322 * try to precache a NULL acl entry for files that don't have
2323 * any xattrs or acls
2324 */
2325 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002326 if (!maybe_acls)
2327 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002328
Yan Zhengd2fb3432008-12-11 16:30:39 -05002329 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2330 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002331 btrfs_free_path(path);
2332 inode_item = NULL;
2333
Chris Mason39279cc2007-06-12 06:35:45 -04002334 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002335 case S_IFREG:
2336 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002337 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002338 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002339 inode->i_fop = &btrfs_file_operations;
2340 inode->i_op = &btrfs_file_inode_operations;
2341 break;
2342 case S_IFDIR:
2343 inode->i_fop = &btrfs_dir_file_operations;
2344 if (root == root->fs_info->tree_root)
2345 inode->i_op = &btrfs_dir_ro_inode_operations;
2346 else
2347 inode->i_op = &btrfs_dir_inode_operations;
2348 break;
2349 case S_IFLNK:
2350 inode->i_op = &btrfs_symlink_inode_operations;
2351 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002352 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002353 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002354 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002355 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002356 init_special_inode(inode, inode->i_mode, rdev);
2357 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002358 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002359
2360 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002361 return;
2362
2363make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002364 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002365 make_bad_inode(inode);
2366}
2367
Chris Masond352ac62008-09-29 15:18:18 -04002368/*
2369 * given a leaf and an inode, copy the inode fields into the leaf
2370 */
Chris Masone02119d2008-09-05 16:13:11 -04002371static void fill_inode_item(struct btrfs_trans_handle *trans,
2372 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002373 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002374 struct inode *inode)
2375{
Chris Mason5f39d392007-10-15 16:14:19 -04002376 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2377 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002378 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002379 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2380 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2381
2382 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2383 inode->i_atime.tv_sec);
2384 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2385 inode->i_atime.tv_nsec);
2386
2387 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2388 inode->i_mtime.tv_sec);
2389 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2390 inode->i_mtime.tv_nsec);
2391
2392 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2393 inode->i_ctime.tv_sec);
2394 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2395 inode->i_ctime.tv_nsec);
2396
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002397 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002398 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002399 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002400 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002401 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002402 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002403 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002404}
2405
Chris Masond352ac62008-09-29 15:18:18 -04002406/*
2407 * copy everything in the in-memory inode into the btree.
2408 */
Chris Masond3977122009-01-05 21:25:51 -05002409noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2410 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002411{
2412 struct btrfs_inode_item *inode_item;
2413 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002414 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002415 int ret;
2416
2417 path = btrfs_alloc_path();
2418 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002419 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002420 ret = btrfs_lookup_inode(trans, root, path,
2421 &BTRFS_I(inode)->location, 1);
2422 if (ret) {
2423 if (ret > 0)
2424 ret = -ENOENT;
2425 goto failed;
2426 }
2427
Chris Masonb4ce94d2009-02-04 09:25:08 -05002428 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002429 leaf = path->nodes[0];
2430 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002431 struct btrfs_inode_item);
2432
Chris Masone02119d2008-09-05 16:13:11 -04002433 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002434 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002435 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002436 ret = 0;
2437failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002438 btrfs_free_path(path);
2439 return ret;
2440}
2441
2442
Chris Masond352ac62008-09-29 15:18:18 -04002443/*
2444 * unlink helper that gets used here in inode.c and in the tree logging
2445 * recovery code. It remove a link in a directory with a given name, and
2446 * also drops the back refs in the inode to the directory
2447 */
Chris Masone02119d2008-09-05 16:13:11 -04002448int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2449 struct btrfs_root *root,
2450 struct inode *dir, struct inode *inode,
2451 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002452{
2453 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002454 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002455 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002456 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002457 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002458 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002459
2460 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002461 if (!path) {
2462 ret = -ENOMEM;
2463 goto err;
2464 }
2465
Chris Masonb9473432009-03-13 11:00:37 -04002466 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002467 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2468 name, name_len, -1);
2469 if (IS_ERR(di)) {
2470 ret = PTR_ERR(di);
2471 goto err;
2472 }
2473 if (!di) {
2474 ret = -ENOENT;
2475 goto err;
2476 }
Chris Mason5f39d392007-10-15 16:14:19 -04002477 leaf = path->nodes[0];
2478 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002479 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002480 if (ret)
2481 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002482 btrfs_release_path(root, path);
2483
Josef Bacikaec74772008-07-24 12:12:38 -04002484 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002485 inode->i_ino,
2486 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002487 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002488 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002489 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002490 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002491 goto err;
2492 }
2493
Chris Mason39279cc2007-06-12 06:35:45 -04002494 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002495 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002496 if (IS_ERR(di)) {
2497 ret = PTR_ERR(di);
2498 goto err;
2499 }
2500 if (!di) {
2501 ret = -ENOENT;
2502 goto err;
2503 }
2504 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002505 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002506
Chris Masone02119d2008-09-05 16:13:11 -04002507 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2508 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002509 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002510
2511 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2512 dir, index);
2513 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002514err:
2515 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002516 if (ret)
2517 goto out;
2518
2519 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2520 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2521 btrfs_update_inode(trans, root, dir);
2522 btrfs_drop_nlink(inode);
2523 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002524out:
Chris Mason39279cc2007-06-12 06:35:45 -04002525 return ret;
2526}
2527
2528static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2529{
2530 struct btrfs_root *root;
2531 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002532 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002533 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002534 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002535
2536 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002537
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002538 /*
2539 * 5 items for unlink inode
2540 * 1 for orphan
2541 */
2542 ret = btrfs_reserve_metadata_space(root, 6);
2543 if (ret)
2544 return ret;
2545
Chris Mason39279cc2007-06-12 06:35:45 -04002546 trans = btrfs_start_transaction(root, 1);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002547 if (IS_ERR(trans)) {
2548 btrfs_unreserve_metadata_space(root, 6);
2549 return PTR_ERR(trans);
2550 }
Chris Mason5f39d392007-10-15 16:14:19 -04002551
Chris Mason39279cc2007-06-12 06:35:45 -04002552 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002553
2554 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2555
Chris Masone02119d2008-09-05 16:13:11 -04002556 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2557 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002558
2559 if (inode->i_nlink == 0)
2560 ret = btrfs_orphan_add(trans, inode);
2561
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002562 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002563
Chris Mason89ce8a62008-06-25 16:01:31 -04002564 btrfs_end_transaction_throttle(trans, root);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002565 btrfs_unreserve_metadata_space(root, 6);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002566 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002567 return ret;
2568}
2569
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002570int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2571 struct btrfs_root *root,
2572 struct inode *dir, u64 objectid,
2573 const char *name, int name_len)
2574{
2575 struct btrfs_path *path;
2576 struct extent_buffer *leaf;
2577 struct btrfs_dir_item *di;
2578 struct btrfs_key key;
2579 u64 index;
2580 int ret;
2581
2582 path = btrfs_alloc_path();
2583 if (!path)
2584 return -ENOMEM;
2585
2586 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2587 name, name_len, -1);
2588 BUG_ON(!di || IS_ERR(di));
2589
2590 leaf = path->nodes[0];
2591 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2592 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2593 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2594 BUG_ON(ret);
2595 btrfs_release_path(root, path);
2596
2597 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2598 objectid, root->root_key.objectid,
2599 dir->i_ino, &index, name, name_len);
2600 if (ret < 0) {
2601 BUG_ON(ret != -ENOENT);
2602 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2603 name, name_len);
2604 BUG_ON(!di || IS_ERR(di));
2605
2606 leaf = path->nodes[0];
2607 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2608 btrfs_release_path(root, path);
2609 index = key.offset;
2610 }
2611
2612 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2613 index, name, name_len, -1);
2614 BUG_ON(!di || IS_ERR(di));
2615
2616 leaf = path->nodes[0];
2617 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2618 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2619 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2620 BUG_ON(ret);
2621 btrfs_release_path(root, path);
2622
2623 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2624 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2625 ret = btrfs_update_inode(trans, root, dir);
2626 BUG_ON(ret);
2627 dir->i_sb->s_dirt = 1;
2628
2629 btrfs_free_path(path);
2630 return 0;
2631}
2632
Chris Mason39279cc2007-06-12 06:35:45 -04002633static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2634{
2635 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002636 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002637 int ret;
2638 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002639 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002640 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002641
Chris Mason3394e162008-11-17 20:42:26 -05002642 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002643 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002644 return -ENOTEMPTY;
2645
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002646 ret = btrfs_reserve_metadata_space(root, 5);
2647 if (ret)
2648 return ret;
2649
Chris Mason39279cc2007-06-12 06:35:45 -04002650 trans = btrfs_start_transaction(root, 1);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002651 if (IS_ERR(trans)) {
2652 btrfs_unreserve_metadata_space(root, 5);
2653 return PTR_ERR(trans);
2654 }
2655
Chris Mason39279cc2007-06-12 06:35:45 -04002656 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002657
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002658 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
2659 err = btrfs_unlink_subvol(trans, root, dir,
2660 BTRFS_I(inode)->location.objectid,
2661 dentry->d_name.name,
2662 dentry->d_name.len);
2663 goto out;
2664 }
2665
Josef Bacik7b128762008-07-24 12:17:14 -04002666 err = btrfs_orphan_add(trans, inode);
2667 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002668 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002669
Chris Mason39279cc2007-06-12 06:35:45 -04002670 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002671 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2672 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002673 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002674 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002675out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002676 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002677 ret = btrfs_end_transaction_throttle(trans, root);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002678 btrfs_unreserve_metadata_space(root, 5);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002679 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002680
Chris Mason39279cc2007-06-12 06:35:45 -04002681 if (ret && !err)
2682 err = ret;
2683 return err;
2684}
2685
Chris Masond20f7042008-12-08 16:58:54 -05002686#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002687/*
Chris Mason323ac952008-10-01 19:05:46 -04002688 * when truncating bytes in a file, it is possible to avoid reading
2689 * the leaves that contain only checksum items. This can be the
2690 * majority of the IO required to delete a large file, but it must
2691 * be done carefully.
2692 *
2693 * The keys in the level just above the leaves are checked to make sure
2694 * the lowest key in a given leaf is a csum key, and starts at an offset
2695 * after the new size.
2696 *
2697 * Then the key for the next leaf is checked to make sure it also has
2698 * a checksum item for the same file. If it does, we know our target leaf
2699 * contains only checksum items, and it can be safely freed without reading
2700 * it.
2701 *
2702 * This is just an optimization targeted at large files. It may do
2703 * nothing. It will return 0 unless things went badly.
2704 */
2705static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2706 struct btrfs_root *root,
2707 struct btrfs_path *path,
2708 struct inode *inode, u64 new_size)
2709{
2710 struct btrfs_key key;
2711 int ret;
2712 int nritems;
2713 struct btrfs_key found_key;
2714 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002715 struct btrfs_leaf_ref *ref;
2716 u64 leaf_gen;
2717 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002718
2719 path->lowest_level = 1;
2720 key.objectid = inode->i_ino;
2721 key.type = BTRFS_CSUM_ITEM_KEY;
2722 key.offset = new_size;
2723again:
2724 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2725 if (ret < 0)
2726 goto out;
2727
2728 if (path->nodes[1] == NULL) {
2729 ret = 0;
2730 goto out;
2731 }
2732 ret = 0;
2733 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2734 nritems = btrfs_header_nritems(path->nodes[1]);
2735
2736 if (!nritems)
2737 goto out;
2738
2739 if (path->slots[1] >= nritems)
2740 goto next_node;
2741
2742 /* did we find a key greater than anything we want to delete? */
2743 if (found_key.objectid > inode->i_ino ||
2744 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2745 goto out;
2746
2747 /* we check the next key in the node to make sure the leave contains
2748 * only checksum items. This comparison doesn't work if our
2749 * leaf is the last one in the node
2750 */
2751 if (path->slots[1] + 1 >= nritems) {
2752next_node:
2753 /* search forward from the last key in the node, this
2754 * will bring us into the next node in the tree
2755 */
2756 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2757
2758 /* unlikely, but we inc below, so check to be safe */
2759 if (found_key.offset == (u64)-1)
2760 goto out;
2761
2762 /* search_forward needs a path with locks held, do the
2763 * search again for the original key. It is possible
2764 * this will race with a balance and return a path that
2765 * we could modify, but this drop is just an optimization
2766 * and is allowed to miss some leaves.
2767 */
2768 btrfs_release_path(root, path);
2769 found_key.offset++;
2770
2771 /* setup a max key for search_forward */
2772 other_key.offset = (u64)-1;
2773 other_key.type = key.type;
2774 other_key.objectid = key.objectid;
2775
2776 path->keep_locks = 1;
2777 ret = btrfs_search_forward(root, &found_key, &other_key,
2778 path, 0, 0);
2779 path->keep_locks = 0;
2780 if (ret || found_key.objectid != key.objectid ||
2781 found_key.type != key.type) {
2782 ret = 0;
2783 goto out;
2784 }
2785
2786 key.offset = found_key.offset;
2787 btrfs_release_path(root, path);
2788 cond_resched();
2789 goto again;
2790 }
2791
2792 /* we know there's one more slot after us in the tree,
2793 * read that key so we can verify it is also a checksum item
2794 */
2795 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2796
2797 if (found_key.objectid < inode->i_ino)
2798 goto next_key;
2799
2800 if (found_key.type != key.type || found_key.offset < new_size)
2801 goto next_key;
2802
2803 /*
2804 * if the key for the next leaf isn't a csum key from this objectid,
2805 * we can't be sure there aren't good items inside this leaf.
2806 * Bail out
2807 */
2808 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2809 goto out;
2810
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002811 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2812 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002813 /*
2814 * it is safe to delete this leaf, it contains only
2815 * csum items from this inode at an offset >= new_size
2816 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002817 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002818 BUG_ON(ret);
2819
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002820 if (root->ref_cows && leaf_gen < trans->transid) {
2821 ref = btrfs_alloc_leaf_ref(root, 0);
2822 if (ref) {
2823 ref->root_gen = root->root_key.offset;
2824 ref->bytenr = leaf_start;
2825 ref->owner = 0;
2826 ref->generation = leaf_gen;
2827 ref->nritems = 0;
2828
Chris Masonbd56b302009-02-04 09:27:02 -05002829 btrfs_sort_leaf_ref(ref);
2830
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002831 ret = btrfs_add_leaf_ref(root, ref, 0);
2832 WARN_ON(ret);
2833 btrfs_free_leaf_ref(root, ref);
2834 } else {
2835 WARN_ON(1);
2836 }
2837 }
Chris Mason323ac952008-10-01 19:05:46 -04002838next_key:
2839 btrfs_release_path(root, path);
2840
2841 if (other_key.objectid == inode->i_ino &&
2842 other_key.type == key.type && other_key.offset > key.offset) {
2843 key.offset = other_key.offset;
2844 cond_resched();
2845 goto again;
2846 }
2847 ret = 0;
2848out:
2849 /* fixup any changes we've made to the path */
2850 path->lowest_level = 0;
2851 path->keep_locks = 0;
2852 btrfs_release_path(root, path);
2853 return ret;
2854}
2855
Chris Masond20f7042008-12-08 16:58:54 -05002856#endif
2857
Chris Mason323ac952008-10-01 19:05:46 -04002858/*
Chris Mason39279cc2007-06-12 06:35:45 -04002859 * this can truncate away extent items, csum items and directory items.
2860 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002861 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002862 *
2863 * csum items that cross the new i_size are truncated to the new size
2864 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002865 *
2866 * min_type is the minimum key type to truncate down to. If set to 0, this
2867 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002868 */
Yan, Zheng80825102009-11-12 09:35:36 +00002869int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2870 struct btrfs_root *root,
2871 struct inode *inode,
2872 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002873{
Chris Mason39279cc2007-06-12 06:35:45 -04002874 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002875 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002876 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00002877 struct btrfs_key key;
2878 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002879 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002880 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002881 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002882 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00002883 u64 mask = root->sectorsize - 1;
2884 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04002885 int found_extent;
2886 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002887 int pending_del_nr = 0;
2888 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002889 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002890 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00002891 int ret;
2892 int err = 0;
2893
2894 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002895
Chris Masone02119d2008-09-05 16:13:11 -04002896 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002897 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00002898
Chris Mason39279cc2007-06-12 06:35:45 -04002899 path = btrfs_alloc_path();
2900 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04002901 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04002902
Chris Mason39279cc2007-06-12 06:35:45 -04002903 key.objectid = inode->i_ino;
2904 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002905 key.type = (u8)-1;
2906
Chris Mason85e21ba2008-01-29 15:11:36 -05002907search_again:
Chris Masonb9473432009-03-13 11:00:37 -04002908 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05002909 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00002910 if (ret < 0) {
2911 err = ret;
2912 goto out;
2913 }
Chris Masond3977122009-01-05 21:25:51 -05002914
Chris Mason85e21ba2008-01-29 15:11:36 -05002915 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002916 /* there are no items in the tree for us to truncate, we're
2917 * done
2918 */
Yan, Zheng80825102009-11-12 09:35:36 +00002919 if (path->slots[0] == 0)
2920 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05002921 path->slots[0]--;
2922 }
2923
Chris Masond3977122009-01-05 21:25:51 -05002924 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002925 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002926 leaf = path->nodes[0];
2927 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2928 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002929 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002930
Chris Mason5f39d392007-10-15 16:14:19 -04002931 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002932 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002933
Chris Mason85e21ba2008-01-29 15:11:36 -05002934 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002935 break;
2936
Chris Mason5f39d392007-10-15 16:14:19 -04002937 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002938 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002939 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002940 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002941 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002942 encoding = btrfs_file_extent_compression(leaf, fi);
2943 encoding |= btrfs_file_extent_encryption(leaf, fi);
2944 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2945
Chris Mason179e29e2007-11-01 11:28:41 -04002946 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002947 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002948 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002949 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002950 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002951 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002952 }
Yan008630c2007-11-07 13:31:09 -05002953 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002954 }
Yan, Zheng80825102009-11-12 09:35:36 +00002955 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04002956 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00002957 } else {
2958 if (item_end < new_size)
2959 break;
2960 if (found_key.offset >= new_size)
2961 del_item = 1;
2962 else
2963 del_item = 0;
2964 }
Chris Mason39279cc2007-06-12 06:35:45 -04002965 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002966 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002967 if (found_type != BTRFS_EXTENT_DATA_KEY)
2968 goto delete;
2969
2970 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002971 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002972 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002973 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002974 u64 orig_num_bytes =
2975 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002976 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002977 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002978 extent_num_bytes = extent_num_bytes &
2979 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002980 btrfs_set_file_extent_num_bytes(leaf, fi,
2981 extent_num_bytes);
2982 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002983 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002984 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002985 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002986 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002987 } else {
Chris Masondb945352007-10-15 16:15:53 -04002988 extent_num_bytes =
2989 btrfs_file_extent_disk_num_bytes(leaf,
2990 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002991 extent_offset = found_key.offset -
2992 btrfs_file_extent_offset(leaf, fi);
2993
Chris Mason39279cc2007-06-12 06:35:45 -04002994 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002995 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002996 if (extent_start != 0) {
2997 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002998 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002999 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003000 }
3001 }
Chris Mason90692182008-02-08 13:49:28 -05003002 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003003 /*
3004 * we can't truncate inline items that have had
3005 * special encodings
3006 */
3007 if (!del_item &&
3008 btrfs_file_extent_compression(leaf, fi) == 0 &&
3009 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3010 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003011 u32 size = new_size - found_key.offset;
3012
3013 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003014 inode_sub_bytes(inode, item_end + 1 -
3015 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003016 }
3017 size =
3018 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003019 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003020 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003021 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003022 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003023 inode_sub_bytes(inode, item_end + 1 -
3024 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003025 }
Chris Mason39279cc2007-06-12 06:35:45 -04003026 }
Chris Mason179e29e2007-11-01 11:28:41 -04003027delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003028 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003029 if (!pending_del_nr) {
3030 /* no pending yet, add ourselves */
3031 pending_del_slot = path->slots[0];
3032 pending_del_nr = 1;
3033 } else if (pending_del_nr &&
3034 path->slots[0] + 1 == pending_del_slot) {
3035 /* hop on the pending chunk */
3036 pending_del_nr++;
3037 pending_del_slot = path->slots[0];
3038 } else {
Chris Masond3977122009-01-05 21:25:51 -05003039 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003040 }
Chris Mason39279cc2007-06-12 06:35:45 -04003041 } else {
3042 break;
3043 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003044 if (found_extent && root->ref_cows) {
Chris Masonb9473432009-03-13 11:00:37 -04003045 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003046 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003047 extent_num_bytes, 0,
3048 btrfs_header_owner(leaf),
3049 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003050 BUG_ON(ret);
3051 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003052
Yan, Zheng80825102009-11-12 09:35:36 +00003053 if (found_type == BTRFS_INODE_ITEM_KEY)
3054 break;
3055
3056 if (path->slots[0] == 0 ||
3057 path->slots[0] != pending_del_slot) {
3058 if (root->ref_cows) {
3059 err = -EAGAIN;
3060 goto out;
3061 }
3062 if (pending_del_nr) {
3063 ret = btrfs_del_items(trans, root, path,
3064 pending_del_slot,
3065 pending_del_nr);
3066 BUG_ON(ret);
3067 pending_del_nr = 0;
3068 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003069 btrfs_release_path(root, path);
3070 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003071 } else {
3072 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003073 }
Chris Mason39279cc2007-06-12 06:35:45 -04003074 }
Yan, Zheng80825102009-11-12 09:35:36 +00003075out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003076 if (pending_del_nr) {
3077 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3078 pending_del_nr);
3079 }
Chris Mason39279cc2007-06-12 06:35:45 -04003080 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003081 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003082}
3083
Chris Masona52d9a82007-08-27 16:49:44 -04003084/*
3085 * taken from block_truncate_page, but does cow as it zeros out
3086 * any bytes left in the last page in the file.
3087 */
3088static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3089{
3090 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003091 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003092 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3093 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003094 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003095 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003096 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003097 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3098 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3099 struct page *page;
3100 int ret = 0;
3101 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003102 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003103
3104 if ((offset & (blocksize - 1)) == 0)
3105 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003106 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
3107 if (ret)
3108 goto out;
3109
3110 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
3111 if (ret)
3112 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003113
3114 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003115again:
Chris Masona52d9a82007-08-27 16:49:44 -04003116 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003117 if (!page) {
3118 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
3119 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Masona52d9a82007-08-27 16:49:44 -04003120 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003121 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003122
3123 page_start = page_offset(page);
3124 page_end = page_start + PAGE_CACHE_SIZE - 1;
3125
Chris Masona52d9a82007-08-27 16:49:44 -04003126 if (!PageUptodate(page)) {
3127 ret = btrfs_readpage(NULL, page);
3128 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003129 if (page->mapping != mapping) {
3130 unlock_page(page);
3131 page_cache_release(page);
3132 goto again;
3133 }
Chris Masona52d9a82007-08-27 16:49:44 -04003134 if (!PageUptodate(page)) {
3135 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003136 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003137 }
3138 }
Chris Mason211c17f2008-05-15 09:13:45 -04003139 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003140
Josef Bacik2ac55d42010-02-03 19:33:23 +00003141 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3142 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003143 set_page_extent_mapped(page);
3144
3145 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3146 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003147 unlock_extent_cached(io_tree, page_start, page_end,
3148 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003149 unlock_page(page);
3150 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003151 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003152 btrfs_put_ordered_extent(ordered);
3153 goto again;
3154 }
3155
Josef Bacik2ac55d42010-02-03 19:33:23 +00003156 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003157 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003158 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003159
Josef Bacik2ac55d42010-02-03 19:33:23 +00003160 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3161 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003162 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003163 unlock_extent_cached(io_tree, page_start, page_end,
3164 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003165 goto out_unlock;
3166 }
3167
Chris Masone6dcd2d2008-07-17 12:53:50 -04003168 ret = 0;
3169 if (offset != PAGE_CACHE_SIZE) {
3170 kaddr = kmap(page);
3171 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3172 flush_dcache_page(page);
3173 kunmap(page);
3174 }
Chris Mason247e7432008-07-17 12:53:51 -04003175 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003176 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003177 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3178 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003179
Chris Mason89642222008-07-24 09:41:53 -04003180out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003181 if (ret)
3182 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
3183 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003184 unlock_page(page);
3185 page_cache_release(page);
3186out:
3187 return ret;
3188}
3189
Yan Zheng9036c102008-10-30 14:19:41 -04003190int btrfs_cont_expand(struct inode *inode, loff_t size)
3191{
3192 struct btrfs_trans_handle *trans;
3193 struct btrfs_root *root = BTRFS_I(inode)->root;
3194 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3195 struct extent_map *em;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003196 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003197 u64 mask = root->sectorsize - 1;
3198 u64 hole_start = (inode->i_size + mask) & ~mask;
3199 u64 block_end = (size + mask) & ~mask;
3200 u64 last_byte;
3201 u64 cur_offset;
3202 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003203 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003204
3205 if (size <= hole_start)
3206 return 0;
3207
Yan Zheng9036c102008-10-30 14:19:41 -04003208 while (1) {
3209 struct btrfs_ordered_extent *ordered;
3210 btrfs_wait_ordered_range(inode, hole_start,
3211 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003212 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3213 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003214 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3215 if (!ordered)
3216 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003217 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3218 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003219 btrfs_put_ordered_extent(ordered);
3220 }
3221
Yan Zheng9036c102008-10-30 14:19:41 -04003222 cur_offset = hole_start;
3223 while (1) {
3224 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3225 block_end - cur_offset, 0);
3226 BUG_ON(IS_ERR(em) || !em);
3227 last_byte = min(extent_map_end(em), block_end);
3228 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003229 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003230 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003231 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003232
3233 err = btrfs_reserve_metadata_space(root, 2);
Chris Mason771ed682008-11-06 22:02:51 -05003234 if (err)
3235 break;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003236
Yan, Zheng80825102009-11-12 09:35:36 +00003237 trans = btrfs_start_transaction(root, 1);
3238 btrfs_set_trans_block_group(trans, inode);
3239
3240 err = btrfs_drop_extents(trans, inode, cur_offset,
3241 cur_offset + hole_size,
3242 &hint_byte, 1);
3243 BUG_ON(err);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003244
Yan Zheng9036c102008-10-30 14:19:41 -04003245 err = btrfs_insert_file_extent(trans, root,
3246 inode->i_ino, cur_offset, 0,
3247 0, hole_size, 0, hole_size,
3248 0, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003249 BUG_ON(err);
3250
Yan Zheng9036c102008-10-30 14:19:41 -04003251 btrfs_drop_extent_cache(inode, hole_start,
3252 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003253
3254 btrfs_end_transaction(trans, root);
3255 btrfs_unreserve_metadata_space(root, 2);
Yan Zheng9036c102008-10-30 14:19:41 -04003256 }
3257 free_extent_map(em);
3258 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003259 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003260 break;
3261 }
3262
Josef Bacik2ac55d42010-02-03 19:33:23 +00003263 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3264 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003265 return err;
3266}
3267
Yan, Zheng80825102009-11-12 09:35:36 +00003268static int btrfs_setattr_size(struct inode *inode, struct iattr *attr)
3269{
3270 struct btrfs_root *root = BTRFS_I(inode)->root;
3271 struct btrfs_trans_handle *trans;
3272 unsigned long nr;
3273 int ret;
3274
3275 if (attr->ia_size == inode->i_size)
3276 return 0;
3277
3278 if (attr->ia_size > inode->i_size) {
3279 unsigned long limit;
3280 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
3281 if (attr->ia_size > inode->i_sb->s_maxbytes)
3282 return -EFBIG;
3283 if (limit != RLIM_INFINITY && attr->ia_size > limit) {
3284 send_sig(SIGXFSZ, current, 0);
3285 return -EFBIG;
3286 }
3287 }
3288
3289 ret = btrfs_reserve_metadata_space(root, 1);
3290 if (ret)
3291 return ret;
3292
3293 trans = btrfs_start_transaction(root, 1);
3294 btrfs_set_trans_block_group(trans, inode);
3295
3296 ret = btrfs_orphan_add(trans, inode);
3297 BUG_ON(ret);
3298
3299 nr = trans->blocks_used;
3300 btrfs_end_transaction(trans, root);
3301 btrfs_unreserve_metadata_space(root, 1);
3302 btrfs_btree_balance_dirty(root, nr);
3303
3304 if (attr->ia_size > inode->i_size) {
3305 ret = btrfs_cont_expand(inode, attr->ia_size);
3306 if (ret) {
3307 btrfs_truncate(inode);
3308 return ret;
3309 }
3310
3311 i_size_write(inode, attr->ia_size);
3312 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
3313
3314 trans = btrfs_start_transaction(root, 1);
3315 btrfs_set_trans_block_group(trans, inode);
3316
3317 ret = btrfs_update_inode(trans, root, inode);
3318 BUG_ON(ret);
3319 if (inode->i_nlink > 0) {
3320 ret = btrfs_orphan_del(trans, inode);
3321 BUG_ON(ret);
3322 }
3323 nr = trans->blocks_used;
3324 btrfs_end_transaction(trans, root);
3325 btrfs_btree_balance_dirty(root, nr);
3326 return 0;
3327 }
3328
3329 /*
3330 * We're truncating a file that used to have good data down to
3331 * zero. Make sure it gets into the ordered flush list so that
3332 * any new writes get down to disk quickly.
3333 */
3334 if (attr->ia_size == 0)
3335 BTRFS_I(inode)->ordered_data_close = 1;
3336
3337 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3338 ret = vmtruncate(inode, attr->ia_size);
3339 BUG_ON(ret);
3340
3341 return 0;
3342}
3343
Chris Mason39279cc2007-06-12 06:35:45 -04003344static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3345{
3346 struct inode *inode = dentry->d_inode;
3347 int err;
3348
3349 err = inode_change_ok(inode, attr);
3350 if (err)
3351 return err;
3352
Chris Mason5a3f23d2009-03-31 13:27:11 -04003353 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Yan, Zheng80825102009-11-12 09:35:36 +00003354 err = btrfs_setattr_size(inode, attr);
3355 if (err)
3356 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003357 }
Yan, Zheng80825102009-11-12 09:35:36 +00003358 attr->ia_valid &= ~ATTR_SIZE;
Yan Zheng9036c102008-10-30 14:19:41 -04003359
Yan, Zheng80825102009-11-12 09:35:36 +00003360 if (attr->ia_valid)
3361 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04003362
3363 if (!err && ((attr->ia_valid & ATTR_MODE)))
3364 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003365 return err;
3366}
Chris Mason61295eb2008-01-14 16:24:38 -05003367
Chris Mason39279cc2007-06-12 06:35:45 -04003368void btrfs_delete_inode(struct inode *inode)
3369{
3370 struct btrfs_trans_handle *trans;
3371 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003372 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003373 int ret;
3374
3375 truncate_inode_pages(&inode->i_data, 0);
3376 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003377 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003378 goto no_delete;
3379 }
Chris Mason4a096752008-07-21 10:29:44 -04003380 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003381
Yan, Zhengc71bf092009-11-12 09:34:40 +00003382 if (root->fs_info->log_root_recovering) {
3383 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3384 goto no_delete;
3385 }
3386
Yan, Zheng76dda932009-09-21 16:00:26 -04003387 if (inode->i_nlink > 0) {
3388 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3389 goto no_delete;
3390 }
3391
Chris Masondbe674a2008-07-17 12:54:05 -04003392 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003393
Yan, Zheng80825102009-11-12 09:35:36 +00003394 while (1) {
3395 trans = btrfs_start_transaction(root, 1);
3396 btrfs_set_trans_block_group(trans, inode);
3397 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
3398
3399 if (ret != -EAGAIN)
3400 break;
3401
3402 nr = trans->blocks_used;
3403 btrfs_end_transaction(trans, root);
3404 trans = NULL;
3405 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003406 }
3407
Yan, Zheng80825102009-11-12 09:35:36 +00003408 if (ret == 0) {
3409 ret = btrfs_orphan_del(trans, inode);
3410 BUG_ON(ret);
3411 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003412
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003413 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003414 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003415 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003416no_delete:
3417 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003418 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003419}
3420
3421/*
3422 * this returns the key found in the dir entry in the location pointer.
3423 * If no dir entries were found, location->objectid is 0.
3424 */
3425static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3426 struct btrfs_key *location)
3427{
3428 const char *name = dentry->d_name.name;
3429 int namelen = dentry->d_name.len;
3430 struct btrfs_dir_item *di;
3431 struct btrfs_path *path;
3432 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003433 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003434
3435 path = btrfs_alloc_path();
3436 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003437
Chris Mason39279cc2007-06-12 06:35:45 -04003438 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3439 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003440 if (IS_ERR(di))
3441 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003442
3443 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003444 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003445
Chris Mason5f39d392007-10-15 16:14:19 -04003446 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003447out:
Chris Mason39279cc2007-06-12 06:35:45 -04003448 btrfs_free_path(path);
3449 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003450out_err:
3451 location->objectid = 0;
3452 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003453}
3454
3455/*
3456 * when we hit a tree root in a directory, the btrfs part of the inode
3457 * needs to be changed to reflect the root directory of the tree root. This
3458 * is kind of like crossing a mount point.
3459 */
3460static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003461 struct inode *dir,
3462 struct dentry *dentry,
3463 struct btrfs_key *location,
3464 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003465{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003466 struct btrfs_path *path;
3467 struct btrfs_root *new_root;
3468 struct btrfs_root_ref *ref;
3469 struct extent_buffer *leaf;
3470 int ret;
3471 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003472
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003473 path = btrfs_alloc_path();
3474 if (!path) {
3475 err = -ENOMEM;
3476 goto out;
3477 }
Chris Mason39279cc2007-06-12 06:35:45 -04003478
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003479 err = -ENOENT;
3480 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3481 BTRFS_I(dir)->root->root_key.objectid,
3482 location->objectid);
3483 if (ret) {
3484 if (ret < 0)
3485 err = ret;
3486 goto out;
3487 }
Chris Mason39279cc2007-06-12 06:35:45 -04003488
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003489 leaf = path->nodes[0];
3490 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3491 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3492 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3493 goto out;
3494
3495 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3496 (unsigned long)(ref + 1),
3497 dentry->d_name.len);
3498 if (ret)
3499 goto out;
3500
3501 btrfs_release_path(root->fs_info->tree_root, path);
3502
3503 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3504 if (IS_ERR(new_root)) {
3505 err = PTR_ERR(new_root);
3506 goto out;
3507 }
3508
3509 if (btrfs_root_refs(&new_root->root_item) == 0) {
3510 err = -ENOENT;
3511 goto out;
3512 }
3513
3514 *sub_root = new_root;
3515 location->objectid = btrfs_root_dirid(&new_root->root_item);
3516 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003517 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003518 err = 0;
3519out:
3520 btrfs_free_path(path);
3521 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003522}
3523
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003524static void inode_tree_add(struct inode *inode)
3525{
3526 struct btrfs_root *root = BTRFS_I(inode)->root;
3527 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003528 struct rb_node **p;
3529 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003530again:
3531 p = &root->inode_tree.rb_node;
3532 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003533
Yan, Zheng76dda932009-09-21 16:00:26 -04003534 if (hlist_unhashed(&inode->i_hash))
3535 return;
3536
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003537 spin_lock(&root->inode_lock);
3538 while (*p) {
3539 parent = *p;
3540 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3541
3542 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003543 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003544 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003545 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003546 else {
3547 WARN_ON(!(entry->vfs_inode.i_state &
3548 (I_WILL_FREE | I_FREEING | I_CLEAR)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003549 rb_erase(parent, &root->inode_tree);
3550 RB_CLEAR_NODE(parent);
3551 spin_unlock(&root->inode_lock);
3552 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003553 }
3554 }
3555 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3556 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3557 spin_unlock(&root->inode_lock);
3558}
3559
3560static void inode_tree_del(struct inode *inode)
3561{
3562 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003563 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003564
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003565 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003566 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003567 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003568 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003569 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003570 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003571 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003572
3573 if (empty && btrfs_root_refs(&root->root_item) == 0) {
3574 synchronize_srcu(&root->fs_info->subvol_srcu);
3575 spin_lock(&root->inode_lock);
3576 empty = RB_EMPTY_ROOT(&root->inode_tree);
3577 spin_unlock(&root->inode_lock);
3578 if (empty)
3579 btrfs_add_dead_root(root);
3580 }
3581}
3582
3583int btrfs_invalidate_inodes(struct btrfs_root *root)
3584{
3585 struct rb_node *node;
3586 struct rb_node *prev;
3587 struct btrfs_inode *entry;
3588 struct inode *inode;
3589 u64 objectid = 0;
3590
3591 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3592
3593 spin_lock(&root->inode_lock);
3594again:
3595 node = root->inode_tree.rb_node;
3596 prev = NULL;
3597 while (node) {
3598 prev = node;
3599 entry = rb_entry(node, struct btrfs_inode, rb_node);
3600
3601 if (objectid < entry->vfs_inode.i_ino)
3602 node = node->rb_left;
3603 else if (objectid > entry->vfs_inode.i_ino)
3604 node = node->rb_right;
3605 else
3606 break;
3607 }
3608 if (!node) {
3609 while (prev) {
3610 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3611 if (objectid <= entry->vfs_inode.i_ino) {
3612 node = prev;
3613 break;
3614 }
3615 prev = rb_next(prev);
3616 }
3617 }
3618 while (node) {
3619 entry = rb_entry(node, struct btrfs_inode, rb_node);
3620 objectid = entry->vfs_inode.i_ino + 1;
3621 inode = igrab(&entry->vfs_inode);
3622 if (inode) {
3623 spin_unlock(&root->inode_lock);
3624 if (atomic_read(&inode->i_count) > 1)
3625 d_prune_aliases(inode);
3626 /*
3627 * btrfs_drop_inode will remove it from
3628 * the inode cache when its usage count
3629 * hits zero.
3630 */
3631 iput(inode);
3632 cond_resched();
3633 spin_lock(&root->inode_lock);
3634 goto again;
3635 }
3636
3637 if (cond_resched_lock(&root->inode_lock))
3638 goto again;
3639
3640 node = rb_next(node);
3641 }
3642 spin_unlock(&root->inode_lock);
3643 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003644}
3645
Chris Masone02119d2008-09-05 16:13:11 -04003646static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003647{
Chris Masone02119d2008-09-05 16:13:11 -04003648 struct btrfs_inode *bi = BTRFS_I(inode);
3649
Chris Masone02119d2008-09-05 16:13:11 -04003650 bi->generation = 0;
Chris Masonc3027eb2008-12-08 16:40:21 -05003651 bi->sequence = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003652 bi->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04003653 bi->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003654 bi->logged_trans = 0;
3655 bi->delalloc_bytes = 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003656 bi->reserved_bytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003657 bi->disk_i_size = 0;
3658 bi->flags = 0;
3659 bi->index_cnt = (u64)-1;
Chris Mason12fcfd22009-03-24 10:24:20 -04003660 bi->last_unlink_trans = 0;
Chris Mason27574952009-05-14 13:10:02 -04003661 bi->ordered_data_close = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05003662 bi->force_compress = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003663 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3664 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04003665 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003666 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3667 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04003668 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04003669 INIT_LIST_HEAD(&BTRFS_I(inode)->ordered_operations);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003670 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Chris Masonba1da2f2008-07-17 12:54:15 -04003671 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masone02119d2008-09-05 16:13:11 -04003672 mutex_init(&BTRFS_I(inode)->log_mutex);
3673}
3674
3675static int btrfs_init_locked_inode(struct inode *inode, void *p)
3676{
3677 struct btrfs_iget_args *args = p;
3678 inode->i_ino = args->ino;
3679 init_btrfs_i(inode);
3680 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003681 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003682 return 0;
3683}
3684
3685static int btrfs_find_actor(struct inode *inode, void *opaque)
3686{
3687 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05003688 return args->ino == inode->i_ino &&
3689 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003690}
3691
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003692static struct inode *btrfs_iget_locked(struct super_block *s,
3693 u64 objectid,
3694 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003695{
3696 struct inode *inode;
3697 struct btrfs_iget_args args;
3698 args.ino = objectid;
3699 args.root = root;
3700
3701 inode = iget5_locked(s, objectid, btrfs_find_actor,
3702 btrfs_init_locked_inode,
3703 (void *)&args);
3704 return inode;
3705}
3706
Balaji Rao1a54ef82008-07-21 02:01:04 +05303707/* Get an inode object given its location and corresponding root.
3708 * Returns in *is_new if the inode was read from disk
3709 */
3710struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00003711 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303712{
3713 struct inode *inode;
3714
3715 inode = btrfs_iget_locked(s, location->objectid, root);
3716 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003717 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303718
3719 if (inode->i_state & I_NEW) {
3720 BTRFS_I(inode)->root = root;
3721 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3722 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003723
3724 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303725 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00003726 if (new)
3727 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05303728 }
3729
3730 return inode;
3731}
3732
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003733static struct inode *new_simple_dir(struct super_block *s,
3734 struct btrfs_key *key,
3735 struct btrfs_root *root)
3736{
3737 struct inode *inode = new_inode(s);
3738
3739 if (!inode)
3740 return ERR_PTR(-ENOMEM);
3741
3742 init_btrfs_i(inode);
3743
3744 BTRFS_I(inode)->root = root;
3745 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3746 BTRFS_I(inode)->dummy_inode = 1;
3747
3748 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3749 inode->i_op = &simple_dir_inode_operations;
3750 inode->i_fop = &simple_dir_operations;
3751 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3752 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3753
3754 return inode;
3755}
3756
Chris Mason3de45862008-11-17 21:02:50 -05003757struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003758{
Chris Masond3977122009-01-05 21:25:51 -05003759 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003760 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003761 struct btrfs_root *sub_root = root;
3762 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04003763 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003764 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003765
Yan, Zheng76dda932009-09-21 16:00:26 -04003766 dentry->d_op = &btrfs_dentry_operations;
3767
Chris Mason39279cc2007-06-12 06:35:45 -04003768 if (dentry->d_name.len > BTRFS_NAME_LEN)
3769 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003770
Chris Mason39279cc2007-06-12 06:35:45 -04003771 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003772
Chris Mason39279cc2007-06-12 06:35:45 -04003773 if (ret < 0)
3774 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003775
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003776 if (location.objectid == 0)
3777 return NULL;
3778
3779 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00003780 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003781 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003782 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003783
3784 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
3785
Yan, Zheng76dda932009-09-21 16:00:26 -04003786 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003787 ret = fixup_tree_root_location(root, dir, dentry,
3788 &location, &sub_root);
3789 if (ret < 0) {
3790 if (ret != -ENOENT)
3791 inode = ERR_PTR(ret);
3792 else
3793 inode = new_simple_dir(dir->i_sb, &location, sub_root);
3794 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00003795 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003796 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003797 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
3798
Yan, Zhengc71bf092009-11-12 09:34:40 +00003799 if (root != sub_root) {
3800 down_read(&root->fs_info->cleanup_work_sem);
3801 if (!(inode->i_sb->s_flags & MS_RDONLY))
3802 btrfs_orphan_cleanup(sub_root);
3803 up_read(&root->fs_info->cleanup_work_sem);
3804 }
3805
Chris Mason3de45862008-11-17 21:02:50 -05003806 return inode;
3807}
3808
Yan, Zheng76dda932009-09-21 16:00:26 -04003809static int btrfs_dentry_delete(struct dentry *dentry)
3810{
3811 struct btrfs_root *root;
3812
Yan, Zhengefefb142009-10-09 09:25:16 -04003813 if (!dentry->d_inode && !IS_ROOT(dentry))
3814 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04003815
Yan, Zhengefefb142009-10-09 09:25:16 -04003816 if (dentry->d_inode) {
3817 root = BTRFS_I(dentry->d_inode)->root;
3818 if (btrfs_root_refs(&root->root_item) == 0)
3819 return 1;
3820 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003821 return 0;
3822}
3823
Chris Mason3de45862008-11-17 21:02:50 -05003824static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3825 struct nameidata *nd)
3826{
3827 struct inode *inode;
3828
Chris Mason3de45862008-11-17 21:02:50 -05003829 inode = btrfs_lookup_dentry(dir, dentry);
3830 if (IS_ERR(inode))
3831 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003832
Chris Mason39279cc2007-06-12 06:35:45 -04003833 return d_splice_alias(inode, dentry);
3834}
3835
Chris Mason39279cc2007-06-12 06:35:45 -04003836static unsigned char btrfs_filetype_table[] = {
3837 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3838};
3839
David Woodhousecbdf5a22008-08-06 19:42:33 +01003840static int btrfs_real_readdir(struct file *filp, void *dirent,
3841 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003842{
Chris Mason6da6aba2007-12-18 16:15:09 -05003843 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003844 struct btrfs_root *root = BTRFS_I(inode)->root;
3845 struct btrfs_item *item;
3846 struct btrfs_dir_item *di;
3847 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003848 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003849 struct btrfs_path *path;
3850 int ret;
3851 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003852 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003853 int slot;
3854 int advance;
3855 unsigned char d_type;
3856 int over = 0;
3857 u32 di_cur;
3858 u32 di_total;
3859 u32 di_len;
3860 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003861 char tmp_name[32];
3862 char *name_ptr;
3863 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003864
3865 /* FIXME, use a real flag for deciding about the key type */
3866 if (root->fs_info->tree_root == root)
3867 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003868
Chris Mason39544012007-12-12 14:38:19 -05003869 /* special case for "." */
3870 if (filp->f_pos == 0) {
3871 over = filldir(dirent, ".", 1,
3872 1, inode->i_ino,
3873 DT_DIR);
3874 if (over)
3875 return 0;
3876 filp->f_pos = 1;
3877 }
Chris Mason39544012007-12-12 14:38:19 -05003878 /* special case for .., just use the back ref */
3879 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003880 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003881 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003882 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003883 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003884 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003885 filp->f_pos = 2;
3886 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003887 path = btrfs_alloc_path();
3888 path->reada = 2;
3889
Chris Mason39279cc2007-06-12 06:35:45 -04003890 btrfs_set_key_type(&key, key_type);
3891 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003892 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003893
Chris Mason39279cc2007-06-12 06:35:45 -04003894 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3895 if (ret < 0)
3896 goto err;
3897 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003898
3899 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003900 leaf = path->nodes[0];
3901 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003902 slot = path->slots[0];
3903 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003904 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003905 ret = btrfs_next_leaf(root, path);
3906 if (ret)
3907 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003908 leaf = path->nodes[0];
3909 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003910 slot = path->slots[0];
3911 } else {
3912 slot++;
3913 path->slots[0]++;
3914 }
3915 }
Chris Mason3de45862008-11-17 21:02:50 -05003916
Chris Mason39279cc2007-06-12 06:35:45 -04003917 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003918 item = btrfs_item_nr(leaf, slot);
3919 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3920
3921 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003922 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003923 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003924 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003925 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003926 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003927
3928 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003929
Chris Mason39279cc2007-06-12 06:35:45 -04003930 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3931 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003932 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003933
3934 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003935 struct btrfs_key location;
3936
3937 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003938 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003939 name_ptr = tmp_name;
3940 } else {
3941 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003942 if (!name_ptr) {
3943 ret = -ENOMEM;
3944 goto err;
3945 }
Chris Mason5f39d392007-10-15 16:14:19 -04003946 }
3947 read_extent_buffer(leaf, name_ptr,
3948 (unsigned long)(di + 1), name_len);
3949
3950 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3951 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05003952
3953 /* is this a reference to our own snapshot? If so
3954 * skip it
3955 */
3956 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3957 location.objectid == root->root_key.objectid) {
3958 over = 0;
3959 goto skip;
3960 }
Chris Mason5f39d392007-10-15 16:14:19 -04003961 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003962 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003963 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003964
Chris Mason3de45862008-11-17 21:02:50 -05003965skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003966 if (name_ptr != tmp_name)
3967 kfree(name_ptr);
3968
Chris Mason39279cc2007-06-12 06:35:45 -04003969 if (over)
3970 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003971 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003972 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003973 di_cur += di_len;
3974 di = (struct btrfs_dir_item *)((char *)di + di_len);
3975 }
3976 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003977
3978 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003979 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00003980 /*
3981 * 32-bit glibc will use getdents64, but then strtol -
3982 * so the last number we can serve is this.
3983 */
3984 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05003985 else
3986 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003987nopos:
3988 ret = 0;
3989err:
Chris Mason39279cc2007-06-12 06:35:45 -04003990 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003991 return ret;
3992}
3993
Christoph Hellwiga9185b42010-03-05 09:21:37 +01003994int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04003995{
3996 struct btrfs_root *root = BTRFS_I(inode)->root;
3997 struct btrfs_trans_handle *trans;
3998 int ret = 0;
3999
Yan Zhengc146afa2008-11-12 14:34:12 -05004000 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004001 return 0;
4002
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004003 if (wbc->sync_mode == WB_SYNC_ALL) {
Chris Masonf9295742008-07-17 12:54:14 -04004004 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004005 btrfs_set_trans_block_group(trans, inode);
4006 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004007 }
4008 return ret;
4009}
4010
4011/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004012 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004013 * inode changes. But, it is most likely to find the inode in cache.
4014 * FIXME, needs more benchmarking...there are no reasons other than performance
4015 * to keep or drop this code.
4016 */
4017void btrfs_dirty_inode(struct inode *inode)
4018{
4019 struct btrfs_root *root = BTRFS_I(inode)->root;
4020 struct btrfs_trans_handle *trans;
4021
Chris Masonf9295742008-07-17 12:54:14 -04004022 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004023 btrfs_set_trans_block_group(trans, inode);
4024 btrfs_update_inode(trans, root, inode);
4025 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004026}
4027
Chris Masond352ac62008-09-29 15:18:18 -04004028/*
4029 * find the highest existing sequence number in a directory
4030 * and then set the in-memory index_cnt variable to reflect
4031 * free sequence numbers
4032 */
Josef Bacikaec74772008-07-24 12:12:38 -04004033static int btrfs_set_inode_index_count(struct inode *inode)
4034{
4035 struct btrfs_root *root = BTRFS_I(inode)->root;
4036 struct btrfs_key key, found_key;
4037 struct btrfs_path *path;
4038 struct extent_buffer *leaf;
4039 int ret;
4040
4041 key.objectid = inode->i_ino;
4042 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4043 key.offset = (u64)-1;
4044
4045 path = btrfs_alloc_path();
4046 if (!path)
4047 return -ENOMEM;
4048
4049 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4050 if (ret < 0)
4051 goto out;
4052 /* FIXME: we should be able to handle this */
4053 if (ret == 0)
4054 goto out;
4055 ret = 0;
4056
4057 /*
4058 * MAGIC NUMBER EXPLANATION:
4059 * since we search a directory based on f_pos we have to start at 2
4060 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4061 * else has to start at 2
4062 */
4063 if (path->slots[0] == 0) {
4064 BTRFS_I(inode)->index_cnt = 2;
4065 goto out;
4066 }
4067
4068 path->slots[0]--;
4069
4070 leaf = path->nodes[0];
4071 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4072
4073 if (found_key.objectid != inode->i_ino ||
4074 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4075 BTRFS_I(inode)->index_cnt = 2;
4076 goto out;
4077 }
4078
4079 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4080out:
4081 btrfs_free_path(path);
4082 return ret;
4083}
4084
Chris Masond352ac62008-09-29 15:18:18 -04004085/*
4086 * helper to find a free sequence number in a given directory. This current
4087 * code is very simple, later versions will do smarter things in the btree
4088 */
Chris Mason3de45862008-11-17 21:02:50 -05004089int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004090{
4091 int ret = 0;
4092
4093 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4094 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004095 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004096 return ret;
4097 }
4098
Chris Mason00e4e6b2008-08-05 11:18:09 -04004099 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004100 BTRFS_I(dir)->index_cnt++;
4101
4102 return ret;
4103}
4104
Chris Mason39279cc2007-06-12 06:35:45 -04004105static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4106 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004107 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004108 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004109 u64 ref_objectid, u64 objectid,
4110 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004111{
4112 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004113 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004114 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004115 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004116 struct btrfs_inode_ref *ref;
4117 struct btrfs_key key[2];
4118 u32 sizes[2];
4119 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004120 int ret;
4121 int owner;
4122
Chris Mason5f39d392007-10-15 16:14:19 -04004123 path = btrfs_alloc_path();
4124 BUG_ON(!path);
4125
Chris Mason39279cc2007-06-12 06:35:45 -04004126 inode = new_inode(root->fs_info->sb);
4127 if (!inode)
4128 return ERR_PTR(-ENOMEM);
4129
Josef Bacikaec74772008-07-24 12:12:38 -04004130 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004131 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004132 if (ret) {
4133 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004134 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004135 }
Josef Bacikaec74772008-07-24 12:12:38 -04004136 }
4137 /*
4138 * index_cnt is ignored for everything but a dir,
4139 * btrfs_get_inode_index_count has an explanation for the magic
4140 * number
4141 */
Chris Masone02119d2008-09-05 16:13:11 -04004142 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004143 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004144 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004145 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik6a632092009-02-20 11:00:09 -05004146 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004147
Chris Mason39279cc2007-06-12 06:35:45 -04004148 if (mode & S_IFDIR)
4149 owner = 0;
4150 else
4151 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004152 BTRFS_I(inode)->block_group =
4153 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004154
4155 key[0].objectid = objectid;
4156 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4157 key[0].offset = 0;
4158
4159 key[1].objectid = objectid;
4160 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4161 key[1].offset = ref_objectid;
4162
4163 sizes[0] = sizeof(struct btrfs_inode_item);
4164 sizes[1] = name_len + sizeof(*ref);
4165
Chris Masonb9473432009-03-13 11:00:37 -04004166 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004167 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4168 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004169 goto fail;
4170
Chris Mason79683f22008-11-19 22:00:53 -05004171 inode->i_uid = current_fsuid();
Chris Ball8c087b52009-02-04 09:29:54 -05004172
Chris Mason42f15d72009-02-06 11:35:57 -05004173 if (dir && (dir->i_mode & S_ISGID)) {
Chris Ball8c087b52009-02-04 09:29:54 -05004174 inode->i_gid = dir->i_gid;
4175 if (S_ISDIR(mode))
4176 mode |= S_ISGID;
4177 } else
4178 inode->i_gid = current_fsgid();
4179
Chris Mason39279cc2007-06-12 06:35:45 -04004180 inode->i_mode = mode;
4181 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004182 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004183 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004184 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4185 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004186 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004187
4188 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4189 struct btrfs_inode_ref);
4190 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004191 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004192 ptr = (unsigned long)(ref + 1);
4193 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4194
Chris Mason5f39d392007-10-15 16:14:19 -04004195 btrfs_mark_buffer_dirty(path->nodes[0]);
4196 btrfs_free_path(path);
4197
Chris Mason39279cc2007-06-12 06:35:45 -04004198 location = &BTRFS_I(inode)->location;
4199 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004200 location->offset = 0;
4201 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4202
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004203 btrfs_inherit_iflags(inode, dir);
4204
Chris Mason94272162009-07-02 12:26:06 -04004205 if ((mode & S_IFREG)) {
4206 if (btrfs_test_opt(root, NODATASUM))
4207 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4208 if (btrfs_test_opt(root, NODATACOW))
4209 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4210 }
4211
Chris Mason39279cc2007-06-12 06:35:45 -04004212 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004213 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004214 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004215fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004216 if (dir)
4217 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004218 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004219 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004220 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004221}
4222
4223static inline u8 btrfs_inode_type(struct inode *inode)
4224{
4225 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4226}
4227
Chris Masond352ac62008-09-29 15:18:18 -04004228/*
4229 * utility function to add 'inode' into 'parent_inode' with
4230 * a give name and a given sequence number.
4231 * if 'add_backref' is true, also insert a backref from the
4232 * inode to the parent directory.
4233 */
Chris Masone02119d2008-09-05 16:13:11 -04004234int btrfs_add_link(struct btrfs_trans_handle *trans,
4235 struct inode *parent_inode, struct inode *inode,
4236 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004237{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004238 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004239 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004240 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004241
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004242 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4243 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4244 } else {
4245 key.objectid = inode->i_ino;
4246 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4247 key.offset = 0;
4248 }
Chris Mason39279cc2007-06-12 06:35:45 -04004249
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004250 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4251 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4252 key.objectid, root->root_key.objectid,
4253 parent_inode->i_ino,
4254 index, name, name_len);
4255 } else if (add_backref) {
4256 ret = btrfs_insert_inode_ref(trans, root,
4257 name, name_len, inode->i_ino,
4258 parent_inode->i_ino, index);
4259 }
4260
Chris Mason39279cc2007-06-12 06:35:45 -04004261 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004262 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4263 parent_inode->i_ino, &key,
4264 btrfs_inode_type(inode), index);
4265 BUG_ON(ret);
4266
Chris Masondbe674a2008-07-17 12:54:05 -04004267 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004268 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004269 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004270 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004271 }
4272 return ret;
4273}
4274
4275static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05004276 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004277 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004278{
Chris Masone02119d2008-09-05 16:13:11 -04004279 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4280 inode, dentry->d_name.name,
4281 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004282 if (!err) {
4283 d_instantiate(dentry, inode);
4284 return 0;
4285 }
4286 if (err > 0)
4287 err = -EEXIST;
4288 return err;
4289}
4290
Josef Bacik618e21d2007-07-11 10:18:17 -04004291static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4292 int mode, dev_t rdev)
4293{
4294 struct btrfs_trans_handle *trans;
4295 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004296 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004297 int err;
4298 int drop_inode = 0;
4299 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004300 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004301 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004302
4303 if (!new_valid_dev(rdev))
4304 return -EINVAL;
4305
Josef Bacik9ed74f22009-09-11 16:12:44 -04004306 /*
4307 * 2 for inode item and ref
4308 * 2 for dir items
4309 * 1 for xattr if selinux is on
4310 */
4311 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004312 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004313 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004314
Josef Bacik618e21d2007-07-11 10:18:17 -04004315 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004316 if (!trans)
4317 goto fail;
Josef Bacik618e21d2007-07-11 10:18:17 -04004318 btrfs_set_trans_block_group(trans, dir);
4319
4320 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4321 if (err) {
4322 err = -ENOSPC;
4323 goto out_unlock;
4324 }
4325
Josef Bacikaec74772008-07-24 12:12:38 -04004326 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004327 dentry->d_name.len,
4328 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004329 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004330 err = PTR_ERR(inode);
4331 if (IS_ERR(inode))
4332 goto out_unlock;
4333
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004334 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004335 if (err) {
4336 drop_inode = 1;
4337 goto out_unlock;
4338 }
4339
Josef Bacik618e21d2007-07-11 10:18:17 -04004340 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004341 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004342 if (err)
4343 drop_inode = 1;
4344 else {
4345 inode->i_op = &btrfs_special_inode_operations;
4346 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004347 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004348 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004349 btrfs_update_inode_block_group(trans, inode);
4350 btrfs_update_inode_block_group(trans, dir);
4351out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004352 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004353 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004354fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004355 btrfs_unreserve_metadata_space(root, 5);
Josef Bacik618e21d2007-07-11 10:18:17 -04004356 if (drop_inode) {
4357 inode_dec_link_count(inode);
4358 iput(inode);
4359 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004360 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004361 return err;
4362}
4363
Chris Mason39279cc2007-06-12 06:35:45 -04004364static int btrfs_create(struct inode *dir, struct dentry *dentry,
4365 int mode, struct nameidata *nd)
4366{
4367 struct btrfs_trans_handle *trans;
4368 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004369 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004370 int err;
4371 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05004372 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004373 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004374 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004375
Josef Bacik9ed74f22009-09-11 16:12:44 -04004376 /*
4377 * 2 for inode item and ref
4378 * 2 for dir items
4379 * 1 for xattr if selinux is on
4380 */
4381 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004382 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004383 return err;
4384
Chris Mason39279cc2007-06-12 06:35:45 -04004385 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004386 if (!trans)
4387 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04004388 btrfs_set_trans_block_group(trans, dir);
4389
4390 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4391 if (err) {
4392 err = -ENOSPC;
4393 goto out_unlock;
4394 }
4395
Josef Bacikaec74772008-07-24 12:12:38 -04004396 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004397 dentry->d_name.len,
4398 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004399 objectid, BTRFS_I(dir)->block_group, mode,
4400 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004401 err = PTR_ERR(inode);
4402 if (IS_ERR(inode))
4403 goto out_unlock;
4404
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004405 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004406 if (err) {
4407 drop_inode = 1;
4408 goto out_unlock;
4409 }
4410
Chris Mason39279cc2007-06-12 06:35:45 -04004411 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004412 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004413 if (err)
4414 drop_inode = 1;
4415 else {
4416 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004417 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004418 inode->i_fop = &btrfs_file_operations;
4419 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004420 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004421 }
Chris Mason39279cc2007-06-12 06:35:45 -04004422 btrfs_update_inode_block_group(trans, inode);
4423 btrfs_update_inode_block_group(trans, dir);
4424out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004425 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004426 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004427fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004428 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004429 if (drop_inode) {
4430 inode_dec_link_count(inode);
4431 iput(inode);
4432 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004433 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004434 return err;
4435}
4436
4437static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4438 struct dentry *dentry)
4439{
4440 struct btrfs_trans_handle *trans;
4441 struct btrfs_root *root = BTRFS_I(dir)->root;
4442 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004443 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004444 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004445 int err;
4446 int drop_inode = 0;
4447
4448 if (inode->i_nlink == 0)
4449 return -ENOENT;
4450
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004451 /* do not allow sys_link's with other subvols of the same device */
4452 if (root->objectid != BTRFS_I(inode)->root->objectid)
4453 return -EPERM;
4454
Josef Bacik9ed74f22009-09-11 16:12:44 -04004455 /*
4456 * 1 item for inode ref
4457 * 2 items for dir items
4458 */
4459 err = btrfs_reserve_metadata_space(root, 3);
Chris Mason1832a6d2007-12-21 16:27:21 -05004460 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004461 return err;
4462
4463 btrfs_inc_nlink(inode);
4464
Chris Mason3de45862008-11-17 21:02:50 -05004465 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004466 if (err)
4467 goto fail;
4468
Chris Mason39279cc2007-06-12 06:35:45 -04004469 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004470
Chris Mason39279cc2007-06-12 06:35:45 -04004471 btrfs_set_trans_block_group(trans, dir);
4472 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04004473
Chris Mason00e4e6b2008-08-05 11:18:09 -04004474 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004475
Yan, Zhenga5719522009-09-24 09:17:31 -04004476 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004477 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004478 } else {
4479 btrfs_update_inode_block_group(trans, dir);
4480 err = btrfs_update_inode(trans, root, inode);
4481 BUG_ON(err);
4482 btrfs_log_new_name(trans, inode, NULL, dentry->d_parent);
4483 }
Chris Mason39279cc2007-06-12 06:35:45 -04004484
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004485 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004486 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004487fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004488 btrfs_unreserve_metadata_space(root, 3);
Chris Mason39279cc2007-06-12 06:35:45 -04004489 if (drop_inode) {
4490 inode_dec_link_count(inode);
4491 iput(inode);
4492 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004493 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004494 return err;
4495}
4496
Chris Mason39279cc2007-06-12 06:35:45 -04004497static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4498{
Chris Masonb9d86662008-05-02 16:13:49 -04004499 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004500 struct btrfs_trans_handle *trans;
4501 struct btrfs_root *root = BTRFS_I(dir)->root;
4502 int err = 0;
4503 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004504 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004505 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004506 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004507
Josef Bacik9ed74f22009-09-11 16:12:44 -04004508 /*
4509 * 2 items for inode and ref
4510 * 2 items for dir items
4511 * 1 for xattr if selinux is on
4512 */
4513 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004514 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004515 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004516
Chris Mason39279cc2007-06-12 06:35:45 -04004517 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004518 if (!trans) {
4519 err = -ENOMEM;
Chris Mason39279cc2007-06-12 06:35:45 -04004520 goto out_unlock;
4521 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04004522 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004523
4524 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4525 if (err) {
4526 err = -ENOSPC;
Miao Xie0be2e982010-02-11 08:06:58 +00004527 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04004528 }
4529
Josef Bacikaec74772008-07-24 12:12:38 -04004530 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004531 dentry->d_name.len,
4532 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004533 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4534 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004535 if (IS_ERR(inode)) {
4536 err = PTR_ERR(inode);
4537 goto out_fail;
4538 }
Chris Mason5f39d392007-10-15 16:14:19 -04004539
Chris Mason39279cc2007-06-12 06:35:45 -04004540 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004541
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004542 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004543 if (err)
4544 goto out_fail;
4545
Chris Mason39279cc2007-06-12 06:35:45 -04004546 inode->i_op = &btrfs_dir_inode_operations;
4547 inode->i_fop = &btrfs_dir_file_operations;
4548 btrfs_set_trans_block_group(trans, inode);
4549
Chris Masondbe674a2008-07-17 12:54:05 -04004550 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004551 err = btrfs_update_inode(trans, root, inode);
4552 if (err)
4553 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004554
Chris Masone02119d2008-09-05 16:13:11 -04004555 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4556 inode, dentry->d_name.name,
4557 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004558 if (err)
4559 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004560
Chris Mason39279cc2007-06-12 06:35:45 -04004561 d_instantiate(dentry, inode);
4562 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004563 btrfs_update_inode_block_group(trans, inode);
4564 btrfs_update_inode_block_group(trans, dir);
4565
4566out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004567 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004568 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04004569
Chris Mason39279cc2007-06-12 06:35:45 -04004570out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004571 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004572 if (drop_on_err)
4573 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004574 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004575 return err;
4576}
4577
Chris Masond352ac62008-09-29 15:18:18 -04004578/* helper for btfs_get_extent. Given an existing extent in the tree,
4579 * and an extent that you want to insert, deal with overlap and insert
4580 * the new extent into the tree.
4581 */
Chris Mason3b951512008-04-17 11:29:12 -04004582static int merge_extent_mapping(struct extent_map_tree *em_tree,
4583 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004584 struct extent_map *em,
4585 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004586{
4587 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004588
Chris Masone6dcd2d2008-07-17 12:53:50 -04004589 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4590 start_diff = map_start - em->start;
4591 em->start = map_start;
4592 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004593 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4594 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004595 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004596 em->block_len -= start_diff;
4597 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004598 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004599}
4600
Chris Masonc8b97812008-10-29 14:49:59 -04004601static noinline int uncompress_inline(struct btrfs_path *path,
4602 struct inode *inode, struct page *page,
4603 size_t pg_offset, u64 extent_offset,
4604 struct btrfs_file_extent_item *item)
4605{
4606 int ret;
4607 struct extent_buffer *leaf = path->nodes[0];
4608 char *tmp;
4609 size_t max_size;
4610 unsigned long inline_size;
4611 unsigned long ptr;
4612
4613 WARN_ON(pg_offset != 0);
4614 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4615 inline_size = btrfs_file_extent_inline_item_len(leaf,
4616 btrfs_item_nr(leaf, path->slots[0]));
4617 tmp = kmalloc(inline_size, GFP_NOFS);
4618 ptr = btrfs_file_extent_inline_start(item);
4619
4620 read_extent_buffer(leaf, tmp, ptr, inline_size);
4621
Chris Mason5b050f02008-11-11 09:34:41 -05004622 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004623 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
4624 inline_size, max_size);
4625 if (ret) {
4626 char *kaddr = kmap_atomic(page, KM_USER0);
4627 unsigned long copy_size = min_t(u64,
4628 PAGE_CACHE_SIZE - pg_offset,
4629 max_size - extent_offset);
4630 memset(kaddr + pg_offset, 0, copy_size);
4631 kunmap_atomic(kaddr, KM_USER0);
4632 }
4633 kfree(tmp);
4634 return 0;
4635}
4636
Chris Masond352ac62008-09-29 15:18:18 -04004637/*
4638 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004639 * the ugly parts come from merging extents from the disk with the in-ram
4640 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004641 * where the in-ram extents might be locked pending data=ordered completion.
4642 *
4643 * This also copies inline extents directly into the page.
4644 */
Chris Masond3977122009-01-05 21:25:51 -05004645
Chris Masona52d9a82007-08-27 16:49:44 -04004646struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004647 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004648 int create)
4649{
4650 int ret;
4651 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004652 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004653 u64 extent_start = 0;
4654 u64 extent_end = 0;
4655 u64 objectid = inode->i_ino;
4656 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004657 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004658 struct btrfs_root *root = BTRFS_I(inode)->root;
4659 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004660 struct extent_buffer *leaf;
4661 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004662 struct extent_map *em = NULL;
4663 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004664 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004665 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004666 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04004667
Chris Masona52d9a82007-08-27 16:49:44 -04004668again:
Chris Mason890871b2009-09-02 16:24:52 -04004669 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004670 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004671 if (em)
4672 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004673 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004674
Chris Masona52d9a82007-08-27 16:49:44 -04004675 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004676 if (em->start > start || em->start + em->len <= start)
4677 free_extent_map(em);
4678 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004679 free_extent_map(em);
4680 else
4681 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004682 }
Chris Masond1310b22008-01-24 16:13:08 -05004683 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004684 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004685 err = -ENOMEM;
4686 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004687 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004688 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004689 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004690 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004691 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004692 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004693
4694 if (!path) {
4695 path = btrfs_alloc_path();
4696 BUG_ON(!path);
4697 }
4698
Chris Mason179e29e2007-11-01 11:28:41 -04004699 ret = btrfs_lookup_file_extent(trans, root, path,
4700 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004701 if (ret < 0) {
4702 err = ret;
4703 goto out;
4704 }
4705
4706 if (ret != 0) {
4707 if (path->slots[0] == 0)
4708 goto not_found;
4709 path->slots[0]--;
4710 }
4711
Chris Mason5f39d392007-10-15 16:14:19 -04004712 leaf = path->nodes[0];
4713 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04004714 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04004715 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04004716 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4717 found_type = btrfs_key_type(&found_key);
4718 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04004719 found_type != BTRFS_EXTENT_DATA_KEY) {
4720 goto not_found;
4721 }
4722
Chris Mason5f39d392007-10-15 16:14:19 -04004723 found_type = btrfs_file_extent_type(leaf, item);
4724 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04004725 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04004726 if (found_type == BTRFS_FILE_EXTENT_REG ||
4727 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04004728 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04004729 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04004730 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
4731 size_t size;
4732 size = btrfs_file_extent_inline_len(leaf, item);
4733 extent_end = (extent_start + size + root->sectorsize - 1) &
4734 ~((u64)root->sectorsize - 1);
4735 }
4736
4737 if (start >= extent_end) {
4738 path->slots[0]++;
4739 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
4740 ret = btrfs_next_leaf(root, path);
4741 if (ret < 0) {
4742 err = ret;
4743 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004744 }
Yan Zheng9036c102008-10-30 14:19:41 -04004745 if (ret > 0)
4746 goto not_found;
4747 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04004748 }
Yan Zheng9036c102008-10-30 14:19:41 -04004749 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4750 if (found_key.objectid != objectid ||
4751 found_key.type != BTRFS_EXTENT_DATA_KEY)
4752 goto not_found;
4753 if (start + len <= found_key.offset)
4754 goto not_found;
4755 em->start = start;
4756 em->len = found_key.offset - start;
4757 goto not_found_em;
4758 }
4759
Yan Zhengd899e052008-10-30 14:25:28 -04004760 if (found_type == BTRFS_FILE_EXTENT_REG ||
4761 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04004762 em->start = extent_start;
4763 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004764 em->orig_start = extent_start -
4765 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04004766 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4767 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004768 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04004769 goto insert;
4770 }
Chris Masonc8b97812008-10-29 14:49:59 -04004771 if (compressed) {
4772 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
4773 em->block_start = bytenr;
4774 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
4775 item);
4776 } else {
4777 bytenr += btrfs_file_extent_offset(leaf, item);
4778 em->block_start = bytenr;
4779 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04004780 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
4781 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04004782 }
Chris Masona52d9a82007-08-27 16:49:44 -04004783 goto insert;
4784 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004785 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04004786 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04004787 size_t size;
4788 size_t extent_offset;
4789 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04004790
Chris Masona52d9a82007-08-27 16:49:44 -04004791 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004792 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04004793 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04004794 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04004795 goto out;
4796 }
4797
Yan Zheng9036c102008-10-30 14:19:41 -04004798 size = btrfs_file_extent_inline_len(leaf, item);
4799 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05004800 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04004801 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04004802 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05004803 em->len = (copy_size + root->sectorsize - 1) &
4804 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004805 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004806 if (compressed)
4807 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004808 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004809 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004810 if (btrfs_file_extent_compression(leaf, item) ==
4811 BTRFS_COMPRESS_ZLIB) {
4812 ret = uncompress_inline(path, inode, page,
4813 pg_offset,
4814 extent_offset, item);
4815 BUG_ON(ret);
4816 } else {
4817 map = kmap(page);
4818 read_extent_buffer(leaf, map + pg_offset, ptr,
4819 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04004820 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
4821 memset(map + pg_offset + copy_size, 0,
4822 PAGE_CACHE_SIZE - pg_offset -
4823 copy_size);
4824 }
Chris Masonc8b97812008-10-29 14:49:59 -04004825 kunmap(page);
4826 }
Chris Mason179e29e2007-11-01 11:28:41 -04004827 flush_dcache_page(page);
4828 } else if (create && PageUptodate(page)) {
4829 if (!trans) {
4830 kunmap(page);
4831 free_extent_map(em);
4832 em = NULL;
4833 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004834 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004835 goto again;
4836 }
Chris Masonc8b97812008-10-29 14:49:59 -04004837 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004838 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004839 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004840 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004841 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004842 }
Chris Masond1310b22008-01-24 16:13:08 -05004843 set_extent_uptodate(io_tree, em->start,
4844 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004845 goto insert;
4846 } else {
Chris Masond3977122009-01-05 21:25:51 -05004847 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04004848 WARN_ON(1);
4849 }
4850not_found:
4851 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004852 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004853not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004854 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004855 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004856insert:
4857 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004858 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05004859 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
4860 "[%llu %llu]\n", (unsigned long long)em->start,
4861 (unsigned long long)em->len,
4862 (unsigned long long)start,
4863 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04004864 err = -EIO;
4865 goto out;
4866 }
Chris Masond1310b22008-01-24 16:13:08 -05004867
4868 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04004869 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004870 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004871 /* it is possible that someone inserted the extent into the tree
4872 * while we had the lock dropped. It is also possible that
4873 * an overlapping map exists in the tree
4874 */
Chris Masona52d9a82007-08-27 16:49:44 -04004875 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004876 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004877
4878 ret = 0;
4879
Chris Mason3b951512008-04-17 11:29:12 -04004880 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004881 if (existing && (existing->start > start ||
4882 existing->start + existing->len <= start)) {
4883 free_extent_map(existing);
4884 existing = NULL;
4885 }
Chris Mason3b951512008-04-17 11:29:12 -04004886 if (!existing) {
4887 existing = lookup_extent_mapping(em_tree, em->start,
4888 em->len);
4889 if (existing) {
4890 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004891 em, start,
4892 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004893 free_extent_map(existing);
4894 if (err) {
4895 free_extent_map(em);
4896 em = NULL;
4897 }
4898 } else {
4899 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04004900 free_extent_map(em);
4901 em = NULL;
4902 }
4903 } else {
4904 free_extent_map(em);
4905 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004906 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004907 }
Chris Masona52d9a82007-08-27 16:49:44 -04004908 }
Chris Mason890871b2009-09-02 16:24:52 -04004909 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004910out:
Chris Masonf4219502008-07-22 11:18:09 -04004911 if (path)
4912 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004913 if (trans) {
4914 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05004915 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04004916 err = ret;
4917 }
Chris Masona52d9a82007-08-27 16:49:44 -04004918 if (err) {
4919 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04004920 return ERR_PTR(err);
4921 }
4922 return em;
4923}
4924
Chris Mason16432982008-04-10 10:23:21 -04004925static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4926 const struct iovec *iov, loff_t offset,
4927 unsigned long nr_segs)
4928{
Chris Masone1c4b742008-04-22 13:26:46 -04004929 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004930}
4931
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004932static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4933 __u64 start, __u64 len)
4934{
4935 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
4936}
4937
Chris Mason9ebefb182007-06-15 13:50:00 -04004938int btrfs_readpage(struct file *file, struct page *page)
4939{
Chris Masond1310b22008-01-24 16:13:08 -05004940 struct extent_io_tree *tree;
4941 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004942 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004943}
Chris Mason1832a6d2007-12-21 16:27:21 -05004944
Chris Mason39279cc2007-06-12 06:35:45 -04004945static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4946{
Chris Masond1310b22008-01-24 16:13:08 -05004947 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004948
4949
4950 if (current->flags & PF_MEMALLOC) {
4951 redirty_page_for_writepage(wbc, page);
4952 unlock_page(page);
4953 return 0;
4954 }
Chris Masond1310b22008-01-24 16:13:08 -05004955 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004956 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4957}
Chris Mason39279cc2007-06-12 06:35:45 -04004958
Chris Masonf4219502008-07-22 11:18:09 -04004959int btrfs_writepages(struct address_space *mapping,
4960 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04004961{
Chris Masond1310b22008-01-24 16:13:08 -05004962 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004963
Chris Masond1310b22008-01-24 16:13:08 -05004964 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04004965 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4966}
4967
Chris Mason3ab2fb52007-11-08 10:59:22 -05004968static int
4969btrfs_readpages(struct file *file, struct address_space *mapping,
4970 struct list_head *pages, unsigned nr_pages)
4971{
Chris Masond1310b22008-01-24 16:13:08 -05004972 struct extent_io_tree *tree;
4973 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004974 return extent_readpages(tree, mapping, pages, nr_pages,
4975 btrfs_get_extent);
4976}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004977static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004978{
Chris Masond1310b22008-01-24 16:13:08 -05004979 struct extent_io_tree *tree;
4980 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004981 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004982
Chris Masond1310b22008-01-24 16:13:08 -05004983 tree = &BTRFS_I(page->mapping->host)->io_tree;
4984 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004985 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004986 if (ret == 1) {
4987 ClearPagePrivate(page);
4988 set_page_private(page, 0);
4989 page_cache_release(page);
4990 }
4991 return ret;
4992}
Chris Mason39279cc2007-06-12 06:35:45 -04004993
Chris Masone6dcd2d2008-07-17 12:53:50 -04004994static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4995{
Chris Mason98509cf2008-09-11 15:51:43 -04004996 if (PageWriteback(page) || PageDirty(page))
4997 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05004998 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004999}
5000
Chris Masona52d9a82007-08-27 16:49:44 -04005001static void btrfs_invalidatepage(struct page *page, unsigned long offset)
5002{
Chris Masond1310b22008-01-24 16:13:08 -05005003 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005004 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00005005 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005006 u64 page_start = page_offset(page);
5007 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04005008
Chris Mason8b62b722009-09-02 16:53:46 -04005009
5010 /*
5011 * we have the page locked, so new writeback can't start,
5012 * and the dirty bit won't be cleared while we are here.
5013 *
5014 * Wait for IO on this page so that we can safely clear
5015 * the PagePrivate2 bit and do ordered accounting
5016 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005017 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04005018
Chris Masond1310b22008-01-24 16:13:08 -05005019 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005020 if (offset) {
5021 btrfs_releasepage(page, GFP_NOFS);
5022 return;
5023 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00005024 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
5025 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005026 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
5027 page_offset(page));
5028 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04005029 /*
5030 * IO on this page will never be started, so we need
5031 * to account for any ordered extents now
5032 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005033 clear_extent_bit(tree, page_start, page_end,
5034 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04005035 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00005036 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04005037 /*
5038 * whoever cleared the private bit is responsible
5039 * for the finish_ordered_io
5040 */
5041 if (TestClearPagePrivate2(page)) {
5042 btrfs_finish_ordered_io(page->mapping->host,
5043 page_start, page_end);
5044 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005045 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00005046 cached_state = NULL;
5047 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
5048 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005049 }
5050 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04005051 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00005052 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005053 __btrfs_releasepage(page, GFP_NOFS);
5054
Chris Mason4a096752008-07-21 10:29:44 -04005055 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04005056 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04005057 ClearPagePrivate(page);
5058 set_page_private(page, 0);
5059 page_cache_release(page);
5060 }
Chris Mason39279cc2007-06-12 06:35:45 -04005061}
5062
Chris Mason9ebefb182007-06-15 13:50:00 -04005063/*
5064 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
5065 * called from a page fault handler when a page is first dirtied. Hence we must
5066 * be careful to check for EOF conditions here. We set the page up correctly
5067 * for a written page which means we get ENOSPC checking when writing into
5068 * holes and correct delalloc and unwritten extent mapping on filesystems that
5069 * support these features.
5070 *
5071 * We are not allowed to take the i_mutex here so we have to play games to
5072 * protect against truncate races as the page could now be beyond EOF. Because
5073 * vmtruncate() writes the inode size before removing pages, once we have the
5074 * page lock we can determine safely if the page is beyond EOF. If it is not
5075 * beyond EOF, then the page is guaranteed safe against truncation until we
5076 * unlock the page.
5077 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07005078int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04005079{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005080 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05005081 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05005082 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005083 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5084 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00005085 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005086 char *kaddr;
5087 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04005088 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05005089 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04005090 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005091 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04005092
Josef Bacik6a632092009-02-20 11:00:09 -05005093 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07005094 if (ret) {
5095 if (ret == -ENOMEM)
5096 ret = VM_FAULT_OOM;
5097 else /* -ENOSPC, -EIO, etc */
5098 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05005099 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07005100 }
Chris Mason1832a6d2007-12-21 16:27:21 -05005101
Josef Bacik9ed74f22009-09-11 16:12:44 -04005102 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
5103 if (ret) {
5104 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
5105 ret = VM_FAULT_SIGBUS;
5106 goto out;
5107 }
5108
Nick Piggin56a76f82009-03-31 15:23:23 -07005109 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005110again:
Chris Mason9ebefb182007-06-15 13:50:00 -04005111 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04005112 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005113 page_start = page_offset(page);
5114 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04005115
Chris Mason9ebefb182007-06-15 13:50:00 -04005116 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04005117 (page_start >= size)) {
Josef Bacik6a632092009-02-20 11:00:09 -05005118 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Chris Mason9ebefb182007-06-15 13:50:00 -04005119 /* page got truncated out from underneath us */
5120 goto out_unlock;
5121 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005122 wait_on_page_writeback(page);
5123
Josef Bacik2ac55d42010-02-03 19:33:23 +00005124 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
5125 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005126 set_page_extent_mapped(page);
5127
Chris Masoneb84ae02008-07-17 13:53:27 -04005128 /*
5129 * we can't set the delalloc bits if there are pending ordered
5130 * extents. Drop our locks and wait for them to finish
5131 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005132 ordered = btrfs_lookup_ordered_extent(inode, page_start);
5133 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00005134 unlock_extent_cached(io_tree, page_start, page_end,
5135 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005136 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04005137 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005138 btrfs_put_ordered_extent(ordered);
5139 goto again;
5140 }
5141
Josef Bacikfbf19082009-10-01 17:10:23 -04005142 /*
5143 * XXX - page_mkwrite gets called every time the page is dirtied, even
5144 * if it was already dirty, so for space accounting reasons we need to
5145 * clear any delalloc bits for the range we are fixing to save. There
5146 * is probably a better way to do this, but for now keep consistent with
5147 * prepare_pages in the normal write path.
5148 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00005149 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04005150 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00005151 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04005152
Josef Bacik2ac55d42010-02-03 19:33:23 +00005153 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
5154 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005155 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00005156 unlock_extent_cached(io_tree, page_start, page_end,
5157 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005158 ret = VM_FAULT_SIGBUS;
Josef Bacikfbf19082009-10-01 17:10:23 -04005159 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005160 goto out_unlock;
5161 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005162 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04005163
5164 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04005165 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005166 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04005167 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04005168 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04005169
Chris Masone6dcd2d2008-07-17 12:53:50 -04005170 if (zero_start != PAGE_CACHE_SIZE) {
5171 kaddr = kmap(page);
5172 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
5173 flush_dcache_page(page);
5174 kunmap(page);
5175 }
Chris Mason247e7432008-07-17 12:53:51 -04005176 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005177 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04005178 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005179
Chris Mason257c62e2009-10-13 13:21:08 -04005180 BTRFS_I(inode)->last_trans = root->fs_info->generation;
5181 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
5182
Josef Bacik2ac55d42010-02-03 19:33:23 +00005183 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04005184
5185out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04005186 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason50a9b212009-09-11 12:33:12 -04005187 if (!ret)
5188 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04005189 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05005190out:
Chris Mason9ebefb182007-06-15 13:50:00 -04005191 return ret;
5192}
5193
Chris Mason39279cc2007-06-12 06:35:45 -04005194static void btrfs_truncate(struct inode *inode)
5195{
5196 struct btrfs_root *root = BTRFS_I(inode)->root;
5197 int ret;
5198 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005199 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04005200 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005201
Yan, Zheng80825102009-11-12 09:35:36 +00005202 if (!S_ISREG(inode->i_mode)) {
5203 WARN_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04005204 return;
Yan, Zheng80825102009-11-12 09:35:36 +00005205 }
Chris Mason39279cc2007-06-12 06:35:45 -04005206
Josef Bacik5d5e1032009-10-13 16:46:49 -04005207 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
5208 if (ret)
5209 return;
Yan, Zheng80825102009-11-12 09:35:36 +00005210
Chris Mason4a096752008-07-21 10:29:44 -04005211 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00005212 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005213
Chris Mason39279cc2007-06-12 06:35:45 -04005214 trans = btrfs_start_transaction(root, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00005215 btrfs_set_trans_block_group(trans, inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005216
5217 /*
5218 * setattr is responsible for setting the ordered_data_close flag,
5219 * but that is only tested during the last file release. That
5220 * could happen well after the next commit, leaving a great big
5221 * window where new writes may get lost if someone chooses to write
5222 * to this file after truncating to zero
5223 *
5224 * The inode doesn't have any dirty data here, and so if we commit
5225 * this is a noop. If someone immediately starts writing to the inode
5226 * it is very likely we'll catch some of their writes in this
5227 * transaction, and the commit will find this file on the ordered
5228 * data list with good things to send down.
5229 *
5230 * This is a best effort solution, there is still a window where
5231 * using truncate to replace the contents of the file will
5232 * end up with a zero length file after a crash.
5233 */
5234 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
5235 btrfs_add_ordered_operation(trans, root, inode);
5236
Yan, Zheng80825102009-11-12 09:35:36 +00005237 while (1) {
5238 ret = btrfs_truncate_inode_items(trans, root, inode,
5239 inode->i_size,
5240 BTRFS_EXTENT_DATA_KEY);
5241 if (ret != -EAGAIN)
5242 break;
Chris Mason39279cc2007-06-12 06:35:45 -04005243
Yan, Zheng80825102009-11-12 09:35:36 +00005244 ret = btrfs_update_inode(trans, root, inode);
5245 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005246
Yan, Zheng80825102009-11-12 09:35:36 +00005247 nr = trans->blocks_used;
5248 btrfs_end_transaction(trans, root);
5249 btrfs_btree_balance_dirty(root, nr);
5250
5251 trans = btrfs_start_transaction(root, 1);
5252 btrfs_set_trans_block_group(trans, inode);
5253 }
5254
5255 if (ret == 0 && inode->i_nlink > 0) {
5256 ret = btrfs_orphan_del(trans, inode);
5257 BUG_ON(ret);
5258 }
5259
5260 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04005261 BUG_ON(ret);
5262
Josef Bacik7b128762008-07-24 12:17:14 -04005263 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04005264 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005265 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005266 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005267}
5268
Sven Wegener3b963622008-06-09 21:57:42 -04005269/*
Chris Masond352ac62008-09-29 15:18:18 -04005270 * create a new subvolume directory/inode (helper for the ioctl).
5271 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05005272int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04005273 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005274 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04005275{
Chris Mason39279cc2007-06-12 06:35:45 -04005276 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005277 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005278 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005279
Josef Bacikaec74772008-07-24 12:12:38 -04005280 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005281 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04005282 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005283 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005284 inode->i_op = &btrfs_dir_inode_operations;
5285 inode->i_fop = &btrfs_dir_file_operations;
5286
Chris Mason39279cc2007-06-12 06:35:45 -04005287 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04005288 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04005289
Yan, Zheng76dda932009-09-21 16:00:26 -04005290 err = btrfs_update_inode(trans, new_root, inode);
5291 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005292
Yan, Zheng76dda932009-09-21 16:00:26 -04005293 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005294 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005295}
5296
Chris Masond352ac62008-09-29 15:18:18 -04005297/* helper function for file defrag and space balancing. This
5298 * forces readahead on a given range of bytes in an inode
5299 */
Chris Masonedbd8d42007-12-21 16:27:24 -05005300unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04005301 struct file_ra_state *ra, struct file *file,
5302 pgoff_t offset, pgoff_t last_index)
5303{
Chris Mason8e7bf942008-04-28 09:02:36 -04005304 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04005305
Chris Mason86479a02007-09-10 19:58:16 -04005306 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
5307 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04005308}
5309
Chris Mason39279cc2007-06-12 06:35:45 -04005310struct inode *btrfs_alloc_inode(struct super_block *sb)
5311{
5312 struct btrfs_inode *ei;
5313
5314 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
5315 if (!ei)
5316 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04005317 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04005318 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04005319 ei->logged_trans = 0;
Josef Bacik32c00af2009-10-08 13:34:05 -04005320 ei->outstanding_extents = 0;
5321 ei->reserved_extents = 0;
Josef Bacika6dbd422009-11-11 15:53:34 -05005322 ei->root = NULL;
Josef Bacik32c00af2009-10-08 13:34:05 -04005323 spin_lock_init(&ei->accounting_lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005324 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04005325 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005326 INIT_LIST_HEAD(&ei->ordered_operations);
Chris Mason39279cc2007-06-12 06:35:45 -04005327 return &ei->vfs_inode;
5328}
5329
5330void btrfs_destroy_inode(struct inode *inode)
5331{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005332 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005333 struct btrfs_root *root = BTRFS_I(inode)->root;
5334
Chris Mason39279cc2007-06-12 06:35:45 -04005335 WARN_ON(!list_empty(&inode->i_dentry));
5336 WARN_ON(inode->i_data.nrpages);
5337
Chris Mason5a3f23d2009-03-31 13:27:11 -04005338 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05005339 * This can happen where we create an inode, but somebody else also
5340 * created the same inode and we need to destroy the one we already
5341 * created.
5342 */
5343 if (!root)
5344 goto free;
5345
5346 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04005347 * Make sure we're properly removed from the ordered operation
5348 * lists.
5349 */
5350 smp_mb();
5351 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
5352 spin_lock(&root->fs_info->ordered_extent_lock);
5353 list_del_init(&BTRFS_I(inode)->ordered_operations);
5354 spin_unlock(&root->fs_info->ordered_extent_lock);
5355 }
5356
5357 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005358 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00005359 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
5360 inode->i_ino);
5361 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04005362 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04005363 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005364
Chris Masond3977122009-01-05 21:25:51 -05005365 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005366 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
5367 if (!ordered)
5368 break;
5369 else {
Chris Masond3977122009-01-05 21:25:51 -05005370 printk(KERN_ERR "btrfs found ordered "
5371 "extent %llu %llu on inode cleanup\n",
5372 (unsigned long long)ordered->file_offset,
5373 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005374 btrfs_remove_ordered_extent(inode, ordered);
5375 btrfs_put_ordered_extent(ordered);
5376 btrfs_put_ordered_extent(ordered);
5377 }
5378 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005379 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005380 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05005381free:
Chris Mason39279cc2007-06-12 06:35:45 -04005382 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
5383}
5384
Yan, Zheng76dda932009-09-21 16:00:26 -04005385void btrfs_drop_inode(struct inode *inode)
5386{
5387 struct btrfs_root *root = BTRFS_I(inode)->root;
5388
5389 if (inode->i_nlink > 0 && btrfs_root_refs(&root->root_item) == 0)
5390 generic_delete_inode(inode);
5391 else
5392 generic_drop_inode(inode);
5393}
5394
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005395static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04005396{
5397 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
5398
5399 inode_init_once(&ei->vfs_inode);
5400}
5401
5402void btrfs_destroy_cachep(void)
5403{
5404 if (btrfs_inode_cachep)
5405 kmem_cache_destroy(btrfs_inode_cachep);
5406 if (btrfs_trans_handle_cachep)
5407 kmem_cache_destroy(btrfs_trans_handle_cachep);
5408 if (btrfs_transaction_cachep)
5409 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04005410 if (btrfs_path_cachep)
5411 kmem_cache_destroy(btrfs_path_cachep);
5412}
5413
5414int btrfs_init_cachep(void)
5415{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005416 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
5417 sizeof(struct btrfs_inode), 0,
5418 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04005419 if (!btrfs_inode_cachep)
5420 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005421
5422 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
5423 sizeof(struct btrfs_trans_handle), 0,
5424 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005425 if (!btrfs_trans_handle_cachep)
5426 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005427
5428 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
5429 sizeof(struct btrfs_transaction), 0,
5430 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005431 if (!btrfs_transaction_cachep)
5432 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005433
5434 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
5435 sizeof(struct btrfs_path), 0,
5436 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005437 if (!btrfs_path_cachep)
5438 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005439
Chris Mason39279cc2007-06-12 06:35:45 -04005440 return 0;
5441fail:
5442 btrfs_destroy_cachep();
5443 return -ENOMEM;
5444}
5445
5446static int btrfs_getattr(struct vfsmount *mnt,
5447 struct dentry *dentry, struct kstat *stat)
5448{
5449 struct inode *inode = dentry->d_inode;
5450 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05005451 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05005452 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04005453 stat->blocks = (inode_get_bytes(inode) +
5454 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04005455 return 0;
5456}
5457
Chris Masond3977122009-01-05 21:25:51 -05005458static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
5459 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005460{
5461 struct btrfs_trans_handle *trans;
5462 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005463 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005464 struct inode *new_inode = new_dentry->d_inode;
5465 struct inode *old_inode = old_dentry->d_inode;
5466 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005467 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005468 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04005469 int ret;
5470
Yan, Zhengf679a842009-09-24 09:17:31 -04005471 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5472 return -EPERM;
5473
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005474 /* we only allow rename subvolume link between subvolumes */
5475 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05005476 return -EXDEV;
5477
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005478 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
5479 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
5480 return -ENOTEMPTY;
5481
Chris Mason39279cc2007-06-12 06:35:45 -04005482 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005483 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04005484 return -ENOTEMPTY;
Chris Mason0660b5a2008-11-17 20:37:39 -05005485
Josef Bacik9ed74f22009-09-11 16:12:44 -04005486 /*
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005487 * We want to reserve the absolute worst case amount of items. So if
5488 * both inodes are subvols and we need to unlink them then that would
5489 * require 4 item modifications, but if they are both normal inodes it
5490 * would require 5 item modifications, so we'll assume their normal
5491 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
5492 * should cover the worst case number of items we'll modify.
Josef Bacik9ed74f22009-09-11 16:12:44 -04005493 */
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005494 ret = btrfs_reserve_metadata_space(root, 11);
Chris Mason1832a6d2007-12-21 16:27:21 -05005495 if (ret)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005496 return ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05005497
Chris Mason5a3f23d2009-03-31 13:27:11 -04005498 /*
5499 * we're using rename to replace one file with another.
5500 * and the replacement file is large. Start IO on it now so
5501 * we don't add too much work to the end of the transaction
5502 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04005503 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04005504 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
5505 filemap_flush(old_inode->i_mapping);
5506
Yan, Zheng76dda932009-09-21 16:00:26 -04005507 /* close the racy window with snapshot create/destroy ioctl */
5508 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5509 down_read(&root->fs_info->subvol_sem);
Chris Mason5f39d392007-10-15 16:14:19 -04005510
Chris Mason39279cc2007-06-12 06:35:45 -04005511 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga5719522009-09-24 09:17:31 -04005512 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04005513
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005514 if (dest != root)
5515 btrfs_record_root_in_trans(trans, dest);
5516
Yan, Zhenga5719522009-09-24 09:17:31 -04005517 ret = btrfs_set_inode_index(new_dir, &index);
5518 if (ret)
5519 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005520
Yan, Zhenga5719522009-09-24 09:17:31 -04005521 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005522 /* force full log commit if subvolume involved. */
5523 root->fs_info->last_trans_log_full_commit = trans->transid;
5524 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04005525 ret = btrfs_insert_inode_ref(trans, dest,
5526 new_dentry->d_name.name,
5527 new_dentry->d_name.len,
5528 old_inode->i_ino,
5529 new_dir->i_ino, index);
5530 if (ret)
5531 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005532 /*
5533 * this is an ugly little race, but the rename is required
5534 * to make sure that if we crash, the inode is either at the
5535 * old name or the new one. pinning the log transaction lets
5536 * us make sure we don't allow a log commit to come in after
5537 * we unlink the name but before we add the new name back in.
5538 */
5539 btrfs_pin_log_trans(root);
5540 }
Chris Mason12fcfd22009-03-24 10:24:20 -04005541 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04005542 * make sure the inode gets flushed if it is replacing
5543 * something.
5544 */
5545 if (new_inode && new_inode->i_size &&
5546 old_inode && S_ISREG(old_inode->i_mode)) {
5547 btrfs_add_ordered_operation(trans, root, old_inode);
5548 }
5549
Chris Mason39279cc2007-06-12 06:35:45 -04005550 old_dir->i_ctime = old_dir->i_mtime = ctime;
5551 new_dir->i_ctime = new_dir->i_mtime = ctime;
5552 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04005553
Chris Mason12fcfd22009-03-24 10:24:20 -04005554 if (old_dentry->d_parent != new_dentry->d_parent)
5555 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
5556
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005557 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
5558 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
5559 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
5560 old_dentry->d_name.name,
5561 old_dentry->d_name.len);
5562 } else {
5563 btrfs_inc_nlink(old_dentry->d_inode);
5564 ret = btrfs_unlink_inode(trans, root, old_dir,
5565 old_dentry->d_inode,
5566 old_dentry->d_name.name,
5567 old_dentry->d_name.len);
5568 }
5569 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005570
5571 if (new_inode) {
5572 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005573 if (unlikely(new_inode->i_ino ==
5574 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
5575 root_objectid = BTRFS_I(new_inode)->location.objectid;
5576 ret = btrfs_unlink_subvol(trans, dest, new_dir,
5577 root_objectid,
5578 new_dentry->d_name.name,
5579 new_dentry->d_name.len);
5580 BUG_ON(new_inode->i_nlink == 0);
5581 } else {
5582 ret = btrfs_unlink_inode(trans, dest, new_dir,
5583 new_dentry->d_inode,
5584 new_dentry->d_name.name,
5585 new_dentry->d_name.len);
5586 }
5587 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005588 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04005589 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005590 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005591 }
Chris Mason39279cc2007-06-12 06:35:45 -04005592 }
Josef Bacikaec74772008-07-24 12:12:38 -04005593
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005594 ret = btrfs_add_link(trans, new_dir, old_inode,
5595 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04005596 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005597 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005598
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005599 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
5600 btrfs_log_new_name(trans, old_inode, old_dir,
5601 new_dentry->d_parent);
5602 btrfs_end_log_trans(root);
5603 }
Chris Mason39279cc2007-06-12 06:35:45 -04005604out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04005605 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005606
Yan, Zheng76dda932009-09-21 16:00:26 -04005607 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5608 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005609
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005610 btrfs_unreserve_metadata_space(root, 11);
Chris Mason39279cc2007-06-12 06:35:45 -04005611 return ret;
5612}
5613
Chris Masond352ac62008-09-29 15:18:18 -04005614/*
5615 * some fairly slow code that needs optimization. This walks the list
5616 * of all the inodes with pending delalloc and forces them to disk.
5617 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00005618int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04005619{
5620 struct list_head *head = &root->fs_info->delalloc_inodes;
5621 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005622 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04005623
Yan Zhengc146afa2008-11-12 14:34:12 -05005624 if (root->fs_info->sb->s_flags & MS_RDONLY)
5625 return -EROFS;
5626
Chris Mason75eff682008-12-15 15:54:40 -05005627 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05005628 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04005629 binode = list_entry(head->next, struct btrfs_inode,
5630 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005631 inode = igrab(&binode->vfs_inode);
5632 if (!inode)
5633 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05005634 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005635 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005636 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00005637 if (delay_iput)
5638 btrfs_add_delayed_iput(inode);
5639 else
5640 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005641 }
5642 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05005643 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04005644 }
Chris Mason75eff682008-12-15 15:54:40 -05005645 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04005646
5647 /* the filemap_flush will queue IO into the worker threads, but
5648 * we have to make sure the IO is actually started and that
5649 * ordered extents get created before we return
5650 */
5651 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05005652 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05005653 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005654 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05005655 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
5656 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04005657 }
5658 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04005659 return 0;
5660}
5661
Chris Mason39279cc2007-06-12 06:35:45 -04005662static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
5663 const char *symname)
5664{
5665 struct btrfs_trans_handle *trans;
5666 struct btrfs_root *root = BTRFS_I(dir)->root;
5667 struct btrfs_path *path;
5668 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05005669 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005670 int err;
5671 int drop_inode = 0;
5672 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005673 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04005674 int name_len;
5675 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04005676 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04005677 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04005678 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05005679 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005680
5681 name_len = strlen(symname) + 1;
5682 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
5683 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05005684
Josef Bacik9ed74f22009-09-11 16:12:44 -04005685 /*
5686 * 2 items for inode item and ref
5687 * 2 items for dir items
5688 * 1 item for xattr if selinux is on
5689 */
5690 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05005691 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04005692 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05005693
Chris Mason39279cc2007-06-12 06:35:45 -04005694 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005695 if (!trans)
5696 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04005697 btrfs_set_trans_block_group(trans, dir);
5698
5699 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
5700 if (err) {
5701 err = -ENOSPC;
5702 goto out_unlock;
5703 }
5704
Josef Bacikaec74772008-07-24 12:12:38 -04005705 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05005706 dentry->d_name.len,
5707 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04005708 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
5709 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005710 err = PTR_ERR(inode);
5711 if (IS_ERR(inode))
5712 goto out_unlock;
5713
Yan, Zhengf34f57a2009-11-12 09:35:27 +00005714 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04005715 if (err) {
5716 drop_inode = 1;
5717 goto out_unlock;
5718 }
5719
Chris Mason39279cc2007-06-12 06:35:45 -04005720 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04005721 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005722 if (err)
5723 drop_inode = 1;
5724 else {
5725 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005726 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04005727 inode->i_fop = &btrfs_file_operations;
5728 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05005729 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04005730 }
Chris Mason39279cc2007-06-12 06:35:45 -04005731 btrfs_update_inode_block_group(trans, inode);
5732 btrfs_update_inode_block_group(trans, dir);
5733 if (drop_inode)
5734 goto out_unlock;
5735
5736 path = btrfs_alloc_path();
5737 BUG_ON(!path);
5738 key.objectid = inode->i_ino;
5739 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005740 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
5741 datasize = btrfs_file_extent_calc_inline_size(name_len);
5742 err = btrfs_insert_empty_item(trans, root, path, &key,
5743 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005744 if (err) {
5745 drop_inode = 1;
5746 goto out_unlock;
5747 }
Chris Mason5f39d392007-10-15 16:14:19 -04005748 leaf = path->nodes[0];
5749 ei = btrfs_item_ptr(leaf, path->slots[0],
5750 struct btrfs_file_extent_item);
5751 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
5752 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04005753 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04005754 btrfs_set_file_extent_encryption(leaf, ei, 0);
5755 btrfs_set_file_extent_compression(leaf, ei, 0);
5756 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
5757 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
5758
Chris Mason39279cc2007-06-12 06:35:45 -04005759 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04005760 write_extent_buffer(leaf, symname, ptr, name_len);
5761 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04005762 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04005763
Chris Mason39279cc2007-06-12 06:35:45 -04005764 inode->i_op = &btrfs_symlink_inode_operations;
5765 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04005766 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04005767 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04005768 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005769 err = btrfs_update_inode(trans, root, inode);
5770 if (err)
5771 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005772
5773out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005774 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04005775 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005776out_fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04005777 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04005778 if (drop_inode) {
5779 inode_dec_link_count(inode);
5780 iput(inode);
5781 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005782 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005783 return err;
5784}
Chris Mason16432982008-04-10 10:23:21 -04005785
Yan, Zheng5a303d52009-11-12 09:34:52 +00005786static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005787 u64 alloc_hint, int mode, loff_t actual_len)
Yan Zhengd899e052008-10-30 14:25:28 -04005788{
Yan, Zheng5a303d52009-11-12 09:34:52 +00005789 struct btrfs_trans_handle *trans;
Yan Zhengd899e052008-10-30 14:25:28 -04005790 struct btrfs_root *root = BTRFS_I(inode)->root;
5791 struct btrfs_key ins;
5792 u64 alloc_size;
5793 u64 cur_offset = start;
5794 u64 num_bytes = end - start;
5795 int ret = 0;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005796 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04005797
Yan Zhengd899e052008-10-30 14:25:28 -04005798 while (num_bytes > 0) {
5799 alloc_size = min(num_bytes, root->fs_info->max_extent);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005800
Chris Mason3a1abec2009-12-17 15:47:17 -05005801 trans = btrfs_start_transaction(root, 1);
5802
Yan Zhengd899e052008-10-30 14:25:28 -04005803 ret = btrfs_reserve_extent(trans, root, alloc_size,
5804 root->sectorsize, 0, alloc_hint,
5805 (u64)-1, &ins, 1);
5806 if (ret) {
5807 WARN_ON(1);
Chris Mason3a1abec2009-12-17 15:47:17 -05005808 goto stop_trans;
Yan Zhengd899e052008-10-30 14:25:28 -04005809 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00005810
5811 ret = btrfs_reserve_metadata_space(root, 3);
5812 if (ret) {
5813 btrfs_free_reserved_extent(root, ins.objectid,
5814 ins.offset);
Chris Mason3a1abec2009-12-17 15:47:17 -05005815 goto stop_trans;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005816 }
5817
Yan Zhengd899e052008-10-30 14:25:28 -04005818 ret = insert_reserved_file_extent(trans, inode,
5819 cur_offset, ins.objectid,
5820 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00005821 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04005822 BTRFS_FILE_EXTENT_PREALLOC);
5823 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04005824 btrfs_drop_extent_cache(inode, cur_offset,
5825 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00005826
Yan Zhengd899e052008-10-30 14:25:28 -04005827 num_bytes -= ins.offset;
5828 cur_offset += ins.offset;
5829 alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005830
Yan Zhengd899e052008-10-30 14:25:28 -04005831 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005832 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04005833 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Aneesh Kumar K.V23b5c502010-02-04 11:33:03 -05005834 (actual_len > inode->i_size) &&
5835 (cur_offset > inode->i_size)) {
5836
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005837 if (cur_offset > actual_len)
5838 i_size = actual_len;
5839 else
5840 i_size = cur_offset;
5841 i_size_write(inode, i_size);
5842 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00005843 }
5844
Yan Zhengd899e052008-10-30 14:25:28 -04005845 ret = btrfs_update_inode(trans, root, inode);
5846 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04005847
Yan, Zheng5a303d52009-11-12 09:34:52 +00005848 btrfs_end_transaction(trans, root);
5849 btrfs_unreserve_metadata_space(root, 3);
5850 }
Yan Zhengd899e052008-10-30 14:25:28 -04005851 return ret;
Chris Mason3a1abec2009-12-17 15:47:17 -05005852
5853stop_trans:
5854 btrfs_end_transaction(trans, root);
5855 return ret;
5856
Yan Zhengd899e052008-10-30 14:25:28 -04005857}
5858
5859static long btrfs_fallocate(struct inode *inode, int mode,
5860 loff_t offset, loff_t len)
5861{
Josef Bacik2ac55d42010-02-03 19:33:23 +00005862 struct extent_state *cached_state = NULL;
Yan Zhengd899e052008-10-30 14:25:28 -04005863 u64 cur_offset;
5864 u64 last_byte;
5865 u64 alloc_start;
5866 u64 alloc_end;
5867 u64 alloc_hint = 0;
Chris Masone980b502009-04-24 14:39:24 -04005868 u64 locked_end;
Yan Zhengd899e052008-10-30 14:25:28 -04005869 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
5870 struct extent_map *em;
5871 int ret;
5872
5873 alloc_start = offset & ~mask;
5874 alloc_end = (offset + len + mask) & ~mask;
5875
Chris Mason546888d2009-04-21 11:53:38 -04005876 /*
5877 * wait for ordered IO before we have any locks. We'll loop again
5878 * below with the locks held.
5879 */
5880 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
5881
Yan Zhengd899e052008-10-30 14:25:28 -04005882 mutex_lock(&inode->i_mutex);
5883 if (alloc_start > inode->i_size) {
5884 ret = btrfs_cont_expand(inode, alloc_start);
5885 if (ret)
5886 goto out;
5887 }
5888
Yan, Zheng5a303d52009-11-12 09:34:52 +00005889 ret = btrfs_check_data_free_space(BTRFS_I(inode)->root, inode,
Josef Bacika970b0a2009-06-27 21:07:34 -04005890 alloc_end - alloc_start);
5891 if (ret)
5892 goto out;
5893
Chris Masone980b502009-04-24 14:39:24 -04005894 locked_end = alloc_end - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04005895 while (1) {
5896 struct btrfs_ordered_extent *ordered;
Chris Mason546888d2009-04-21 11:53:38 -04005897
Chris Mason546888d2009-04-21 11:53:38 -04005898 /* the extent lock is ordered inside the running
5899 * transaction
5900 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00005901 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
5902 locked_end, 0, &cached_state, GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04005903 ordered = btrfs_lookup_first_ordered_extent(inode,
5904 alloc_end - 1);
5905 if (ordered &&
5906 ordered->file_offset + ordered->len > alloc_start &&
5907 ordered->file_offset < alloc_end) {
5908 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00005909 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
5910 alloc_start, locked_end,
5911 &cached_state, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005912 /*
5913 * we can't wait on the range with the transaction
5914 * running or with the extent lock held
5915 */
Yan Zhengd899e052008-10-30 14:25:28 -04005916 btrfs_wait_ordered_range(inode, alloc_start,
5917 alloc_end - alloc_start);
5918 } else {
5919 if (ordered)
5920 btrfs_put_ordered_extent(ordered);
5921 break;
5922 }
5923 }
5924
5925 cur_offset = alloc_start;
5926 while (1) {
5927 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
5928 alloc_end - cur_offset, 0);
5929 BUG_ON(IS_ERR(em) || !em);
5930 last_byte = min(extent_map_end(em), alloc_end);
5931 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005932 if (em->block_start == EXTENT_MAP_HOLE ||
5933 (cur_offset >= inode->i_size &&
5934 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5935 ret = prealloc_file_range(inode,
5936 cur_offset, last_byte,
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00005937 alloc_hint, mode, offset+len);
Yan Zhengd899e052008-10-30 14:25:28 -04005938 if (ret < 0) {
5939 free_extent_map(em);
5940 break;
5941 }
5942 }
5943 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
5944 alloc_hint = em->block_start;
5945 free_extent_map(em);
5946
5947 cur_offset = last_byte;
5948 if (cur_offset >= alloc_end) {
5949 ret = 0;
5950 break;
5951 }
5952 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00005953 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
5954 &cached_state, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005955
Yan, Zheng5a303d52009-11-12 09:34:52 +00005956 btrfs_free_reserved_data_space(BTRFS_I(inode)->root, inode,
5957 alloc_end - alloc_start);
Yan Zhengd899e052008-10-30 14:25:28 -04005958out:
5959 mutex_unlock(&inode->i_mutex);
5960 return ret;
5961}
5962
Chris Masone6dcd2d2008-07-17 12:53:50 -04005963static int btrfs_set_page_dirty(struct page *page)
5964{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005965 return __set_page_dirty_nobuffers(page);
5966}
5967
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005968static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05005969{
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005970 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05005971 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04005972 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05005973}
Chris Mason39279cc2007-06-12 06:35:45 -04005974
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07005975static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05005976 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04005977 .lookup = btrfs_lookup,
5978 .create = btrfs_create,
5979 .unlink = btrfs_unlink,
5980 .link = btrfs_link,
5981 .mkdir = btrfs_mkdir,
5982 .rmdir = btrfs_rmdir,
5983 .rename = btrfs_rename,
5984 .symlink = btrfs_symlink,
5985 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005986 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005987 .setxattr = btrfs_setxattr,
5988 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005989 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005990 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005991 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005992};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07005993static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04005994 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05005995 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005996};
Yan, Zheng76dda932009-09-21 16:00:26 -04005997
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005998static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04005999 .llseek = generic_file_llseek,
6000 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01006001 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04006002 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04006003#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04006004 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04006005#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04006006 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04006007 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04006008};
6009
Chris Masond1310b22008-01-24 16:13:08 -05006010static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04006011 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05006012 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04006013 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04006014 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006015 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04006016 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04006017 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05006018 .set_bit_hook = btrfs_set_bit_hook,
6019 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04006020 .merge_extent_hook = btrfs_merge_extent_hook,
6021 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04006022};
6023
Chris Mason35054392009-01-21 13:11:13 -05006024/*
6025 * btrfs doesn't support the bmap operation because swapfiles
6026 * use bmap to make a mapping of extents in the file. They assume
6027 * these extents won't change over the life of the file and they
6028 * use the bmap result to do IO directly to the drive.
6029 *
6030 * the btrfs bmap call would return logical addresses that aren't
6031 * suitable for IO and they also will change frequently as COW
6032 * operations happen. So, swapfile + btrfs == corruption.
6033 *
6034 * For now we're avoiding this by dropping bmap.
6035 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07006036static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04006037 .readpage = btrfs_readpage,
6038 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04006039 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05006040 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04006041 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04006042 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04006043 .invalidatepage = btrfs_invalidatepage,
6044 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006045 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02006046 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04006047};
6048
Alexey Dobriyan7f094102009-09-21 17:01:10 -07006049static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04006050 .readpage = btrfs_readpage,
6051 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04006052 .invalidatepage = btrfs_invalidatepage,
6053 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04006054};
6055
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006056static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04006057 .truncate = btrfs_truncate,
6058 .getattr = btrfs_getattr,
6059 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006060 .setxattr = btrfs_setxattr,
6061 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05006062 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006063 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05006064 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04006065 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006066 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04006067};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006068static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04006069 .getattr = btrfs_getattr,
6070 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05006071 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006072 .setxattr = btrfs_setxattr,
6073 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04006074 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006075 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04006076};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006077static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04006078 .readlink = generic_readlink,
6079 .follow_link = page_follow_link_light,
6080 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05006081 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05006082 .setxattr = btrfs_setxattr,
6083 .getxattr = btrfs_getxattr,
6084 .listxattr = btrfs_listxattr,
6085 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04006086};
Yan, Zheng76dda932009-09-21 16:00:26 -04006087
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04006088const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04006089 .d_delete = btrfs_dentry_delete,
6090};