blob: 63e4546b478acd144ad0c73fc886163be876f810 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/statfs.h>
34#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040035#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040037#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040038#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050040#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040041#include "ctree.h"
42#include "disk-io.h"
43#include "transaction.h"
44#include "btrfs_inode.h"
45#include "ioctl.h"
46#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040047#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040048#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040049#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040050#include "tree-log.h"
Chris Masonc8b97812008-10-29 14:49:59 -040051#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050052#include "locking.h"
Chris Mason39279cc2007-06-12 06:35:45 -040053
54struct btrfs_iget_args {
55 u64 ino;
56 struct btrfs_root *root;
57};
58
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070059static const struct inode_operations btrfs_dir_inode_operations;
60static const struct inode_operations btrfs_symlink_inode_operations;
61static const struct inode_operations btrfs_dir_ro_inode_operations;
62static const struct inode_operations btrfs_special_inode_operations;
63static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070064static const struct address_space_operations btrfs_aops;
65static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070066static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050067static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040068
69static struct kmem_cache *btrfs_inode_cachep;
70struct kmem_cache *btrfs_trans_handle_cachep;
71struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040072struct kmem_cache *btrfs_path_cachep;
73
74#define S_SHIFT 12
75static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
76 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
77 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
78 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
79 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
80 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
81 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
82 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
83};
84
Josef Bacik7b128762008-07-24 12:17:14 -040085static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040086static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050087static noinline int cow_file_range(struct inode *inode,
88 struct page *locked_page,
89 u64 start, u64 end, int *page_started,
90 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040091
Yan, Zhengf34f57a2009-11-12 09:35:27 +000092static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
93 struct inode *inode, struct inode *dir)
Jim Owens0279b4c2009-02-04 09:29:13 -050094{
95 int err;
96
Yan, Zhengf34f57a2009-11-12 09:35:27 +000097 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -050098 if (!err)
Yan, Zhengf34f57a2009-11-12 09:35:27 +000099 err = btrfs_xattr_security_init(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500100 return err;
101}
102
Chris Masond352ac62008-09-29 15:18:18 -0400103/*
Chris Masonc8b97812008-10-29 14:49:59 -0400104 * this does all the hard work for inserting an inline extent into
105 * the btree. The caller should have done a btrfs_drop_extents so that
106 * no overlapping inline items exist in the btree
107 */
Chris Masond3977122009-01-05 21:25:51 -0500108static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400109 struct btrfs_root *root, struct inode *inode,
110 u64 start, size_t size, size_t compressed_size,
111 struct page **compressed_pages)
112{
113 struct btrfs_key key;
114 struct btrfs_path *path;
115 struct extent_buffer *leaf;
116 struct page *page = NULL;
117 char *kaddr;
118 unsigned long ptr;
119 struct btrfs_file_extent_item *ei;
120 int err = 0;
121 int ret;
122 size_t cur_size = size;
123 size_t datasize;
124 unsigned long offset;
125 int use_compress = 0;
126
127 if (compressed_size && compressed_pages) {
128 use_compress = 1;
129 cur_size = compressed_size;
130 }
131
Chris Masond3977122009-01-05 21:25:51 -0500132 path = btrfs_alloc_path();
133 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400134 return -ENOMEM;
135
Chris Masonb9473432009-03-13 11:00:37 -0400136 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400137 btrfs_set_trans_block_group(trans, inode);
138
139 key.objectid = inode->i_ino;
140 key.offset = start;
141 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400142 datasize = btrfs_file_extent_calc_inline_size(cur_size);
143
144 inode_add_bytes(inode, size);
145 ret = btrfs_insert_empty_item(trans, root, path, &key,
146 datasize);
147 BUG_ON(ret);
148 if (ret) {
149 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400150 goto fail;
151 }
152 leaf = path->nodes[0];
153 ei = btrfs_item_ptr(leaf, path->slots[0],
154 struct btrfs_file_extent_item);
155 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
156 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
157 btrfs_set_file_extent_encryption(leaf, ei, 0);
158 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
159 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
160 ptr = btrfs_file_extent_inline_start(ei);
161
162 if (use_compress) {
163 struct page *cpage;
164 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500165 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400166 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500167 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400168 PAGE_CACHE_SIZE);
169
Chris Masonb9473432009-03-13 11:00:37 -0400170 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400171 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400172 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400173
174 i++;
175 ptr += cur_size;
176 compressed_size -= cur_size;
177 }
178 btrfs_set_file_extent_compression(leaf, ei,
179 BTRFS_COMPRESS_ZLIB);
180 } else {
181 page = find_get_page(inode->i_mapping,
182 start >> PAGE_CACHE_SHIFT);
183 btrfs_set_file_extent_compression(leaf, ei, 0);
184 kaddr = kmap_atomic(page, KM_USER0);
185 offset = start & (PAGE_CACHE_SIZE - 1);
186 write_extent_buffer(leaf, kaddr + offset, ptr, size);
187 kunmap_atomic(kaddr, KM_USER0);
188 page_cache_release(page);
189 }
190 btrfs_mark_buffer_dirty(leaf);
191 btrfs_free_path(path);
192
Yan, Zhengc2167752009-11-12 09:34:21 +0000193 /*
194 * we're an inline extent, so nobody can
195 * extend the file past i_size without locking
196 * a page we already have locked.
197 *
198 * We must do any isize and inode updates
199 * before we unlock the pages. Otherwise we
200 * could end up racing with unlink.
201 */
Chris Masonc8b97812008-10-29 14:49:59 -0400202 BTRFS_I(inode)->disk_i_size = inode->i_size;
203 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000204
Chris Masonc8b97812008-10-29 14:49:59 -0400205 return 0;
206fail:
207 btrfs_free_path(path);
208 return err;
209}
210
211
212/*
213 * conditionally insert an inline extent into the file. This
214 * does the checks required to make sure the data is small enough
215 * to fit as an inline extent.
216 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400217static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400218 struct btrfs_root *root,
219 struct inode *inode, u64 start, u64 end,
220 size_t compressed_size,
221 struct page **compressed_pages)
222{
223 u64 isize = i_size_read(inode);
224 u64 actual_end = min(end + 1, isize);
225 u64 inline_len = actual_end - start;
226 u64 aligned_end = (end + root->sectorsize - 1) &
227 ~((u64)root->sectorsize - 1);
228 u64 hint_byte;
229 u64 data_len = inline_len;
230 int ret;
231
232 if (compressed_size)
233 data_len = compressed_size;
234
235 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400236 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400237 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
238 (!compressed_size &&
239 (actual_end & (root->sectorsize - 1)) == 0) ||
240 end + 1 < isize ||
241 data_len > root->fs_info->max_inline) {
242 return 1;
243 }
244
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000245 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400246 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400247 BUG_ON(ret);
248
249 if (isize > actual_end)
250 inline_len = min_t(u64, isize, actual_end);
251 ret = insert_inline_extent(trans, root, inode, start,
252 inline_len, compressed_size,
253 compressed_pages);
254 BUG_ON(ret);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400255 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400256 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400257 return 0;
258}
259
Chris Mason771ed682008-11-06 22:02:51 -0500260struct async_extent {
261 u64 start;
262 u64 ram_size;
263 u64 compressed_size;
264 struct page **pages;
265 unsigned long nr_pages;
266 struct list_head list;
267};
268
269struct async_cow {
270 struct inode *inode;
271 struct btrfs_root *root;
272 struct page *locked_page;
273 u64 start;
274 u64 end;
275 struct list_head extents;
276 struct btrfs_work work;
277};
278
279static noinline int add_async_extent(struct async_cow *cow,
280 u64 start, u64 ram_size,
281 u64 compressed_size,
282 struct page **pages,
283 unsigned long nr_pages)
284{
285 struct async_extent *async_extent;
286
287 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
288 async_extent->start = start;
289 async_extent->ram_size = ram_size;
290 async_extent->compressed_size = compressed_size;
291 async_extent->pages = pages;
292 async_extent->nr_pages = nr_pages;
293 list_add_tail(&async_extent->list, &cow->extents);
294 return 0;
295}
296
Chris Masonc8b97812008-10-29 14:49:59 -0400297/*
Chris Mason771ed682008-11-06 22:02:51 -0500298 * we create compressed extents in two phases. The first
299 * phase compresses a range of pages that have already been
300 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400301 *
Chris Mason771ed682008-11-06 22:02:51 -0500302 * This is done inside an ordered work queue, and the compression
303 * is spread across many cpus. The actual IO submission is step
304 * two, and the ordered work queue takes care of making sure that
305 * happens in the same order things were put onto the queue by
306 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400307 *
Chris Mason771ed682008-11-06 22:02:51 -0500308 * If this code finds it can't get good compression, it puts an
309 * entry onto the work queue to write the uncompressed bytes. This
310 * makes sure that both compressed inodes and uncompressed inodes
311 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400312 */
Chris Mason771ed682008-11-06 22:02:51 -0500313static noinline int compress_file_range(struct inode *inode,
314 struct page *locked_page,
315 u64 start, u64 end,
316 struct async_cow *async_cow,
317 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400318{
319 struct btrfs_root *root = BTRFS_I(inode)->root;
320 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400321 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400322 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400323 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500324 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400325 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400326 struct page **pages = NULL;
327 unsigned long nr_pages;
328 unsigned long nr_pages_ret = 0;
329 unsigned long total_compressed = 0;
330 unsigned long total_in = 0;
331 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500332 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400333 int i;
334 int will_compress;
Chris Masonb888db22007-08-27 16:49:44 -0400335
Chris Mason42dc7ba2008-12-15 11:44:56 -0500336 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400337again:
338 will_compress = 0;
339 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
340 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
341
Chris Masonf03d9301f2009-02-04 09:31:06 -0500342 /*
343 * we don't want to send crud past the end of i_size through
344 * compression, that's just a waste of CPU time. So, if the
345 * end of the file is before the start of our current
346 * requested range of bytes, we bail out to the uncompressed
347 * cleanup code that can deal with all of this.
348 *
349 * It isn't really the fastest way to fix things, but this is a
350 * very uncommon corner.
351 */
352 if (actual_end <= start)
353 goto cleanup_and_bail_uncompressed;
354
Chris Masonc8b97812008-10-29 14:49:59 -0400355 total_compressed = actual_end - start;
356
357 /* we want to make sure that amount of ram required to uncompress
358 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500359 * of a compressed extent to 128k. This is a crucial number
360 * because it also controls how easily we can spread reads across
361 * cpus for decompression.
362 *
363 * We also want to make sure the amount of IO required to do
364 * a random read is reasonably small, so we limit the size of
365 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400366 */
367 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400368 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500369 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400370 total_in = 0;
371 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400372
Chris Mason771ed682008-11-06 22:02:51 -0500373 /*
374 * we do compression for mount -o compress and when the
375 * inode has not been flagged as nocompress. This flag can
376 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400377 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200378 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500379 (btrfs_test_opt(root, COMPRESS) ||
380 (BTRFS_I(inode)->force_compress))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400381 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400382 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400383
Chris Masonc8b97812008-10-29 14:49:59 -0400384 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
385 total_compressed, pages,
386 nr_pages, &nr_pages_ret,
387 &total_in,
388 &total_compressed,
389 max_compressed);
390
391 if (!ret) {
392 unsigned long offset = total_compressed &
393 (PAGE_CACHE_SIZE - 1);
394 struct page *page = pages[nr_pages_ret - 1];
395 char *kaddr;
396
397 /* zero the tail end of the last page, we might be
398 * sending it down to disk
399 */
400 if (offset) {
401 kaddr = kmap_atomic(page, KM_USER0);
402 memset(kaddr + offset, 0,
403 PAGE_CACHE_SIZE - offset);
404 kunmap_atomic(kaddr, KM_USER0);
405 }
406 will_compress = 1;
407 }
408 }
409 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500410 trans = btrfs_join_transaction(root, 1);
411 BUG_ON(!trans);
412 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400413 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500414
Chris Masonc8b97812008-10-29 14:49:59 -0400415 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500416 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400417 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500418 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400419 */
420 ret = cow_file_range_inline(trans, root, inode,
421 start, end, 0, NULL);
422 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500423 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400424 ret = cow_file_range_inline(trans, root, inode,
425 start, end,
426 total_compressed, pages);
427 }
428 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500429 /*
430 * inline extent creation worked, we don't need
431 * to create any more async work items. Unlock
432 * and free up our temp pages.
433 */
Chris Masonc8b97812008-10-29 14:49:59 -0400434 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400435 &BTRFS_I(inode)->io_tree,
436 start, end, NULL,
437 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400438 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400439 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000440
441 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400442 goto free_pages_out;
443 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000444 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400445 }
446
447 if (will_compress) {
448 /*
449 * we aren't doing an inline extent round the compressed size
450 * up to a block size boundary so the allocator does sane
451 * things
452 */
453 total_compressed = (total_compressed + blocksize - 1) &
454 ~(blocksize - 1);
455
456 /*
457 * one last check to make sure the compression is really a
458 * win, compare the page count read with the blocks on disk
459 */
460 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
461 ~(PAGE_CACHE_SIZE - 1);
462 if (total_compressed >= total_in) {
463 will_compress = 0;
464 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400465 num_bytes = total_in;
466 }
467 }
468 if (!will_compress && pages) {
469 /*
470 * the compression code ran but failed to make things smaller,
471 * free any pages it allocated and our page pointer array
472 */
473 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400474 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400475 page_cache_release(pages[i]);
476 }
477 kfree(pages);
478 pages = NULL;
479 total_compressed = 0;
480 nr_pages_ret = 0;
481
482 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500483 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
484 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500485 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500486 }
Chris Masonc8b97812008-10-29 14:49:59 -0400487 }
Chris Mason771ed682008-11-06 22:02:51 -0500488 if (will_compress) {
489 *num_added += 1;
490
491 /* the async work queues will take care of doing actual
492 * allocation on disk for these compressed pages,
493 * and will submit them to the elevator.
494 */
495 add_async_extent(async_cow, start, num_bytes,
496 total_compressed, pages, nr_pages_ret);
497
Yan, Zheng24ae6362010-12-06 07:02:36 +0000498 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500499 start += num_bytes;
500 pages = NULL;
501 cond_resched();
502 goto again;
503 }
504 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500505cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500506 /*
507 * No compression, but we still need to write the pages in
508 * the file we've been given so far. redirty the locked
509 * page if it corresponds to our extent and set things up
510 * for the async work queue to run cow_file_range to do
511 * the normal delalloc dance
512 */
513 if (page_offset(locked_page) >= start &&
514 page_offset(locked_page) <= end) {
515 __set_page_dirty_nobuffers(locked_page);
516 /* unlocked later on in the async handlers */
517 }
518 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
519 *num_added += 1;
520 }
521
522out:
523 return 0;
524
525free_pages_out:
526 for (i = 0; i < nr_pages_ret; i++) {
527 WARN_ON(pages[i]->mapping);
528 page_cache_release(pages[i]);
529 }
Chris Masond3977122009-01-05 21:25:51 -0500530 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500531
532 goto out;
533}
534
535/*
536 * phase two of compressed writeback. This is the ordered portion
537 * of the code, which only gets called in the order the work was
538 * queued. We walk all the async extents created by compress_file_range
539 * and send them down to the disk.
540 */
541static noinline int submit_compressed_extents(struct inode *inode,
542 struct async_cow *async_cow)
543{
544 struct async_extent *async_extent;
545 u64 alloc_hint = 0;
546 struct btrfs_trans_handle *trans;
547 struct btrfs_key ins;
548 struct extent_map *em;
549 struct btrfs_root *root = BTRFS_I(inode)->root;
550 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
551 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500552 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500553
554 if (list_empty(&async_cow->extents))
555 return 0;
556
Chris Mason771ed682008-11-06 22:02:51 -0500557
Chris Masond3977122009-01-05 21:25:51 -0500558 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500559 async_extent = list_entry(async_cow->extents.next,
560 struct async_extent, list);
561 list_del(&async_extent->list);
562
563 io_tree = &BTRFS_I(inode)->io_tree;
564
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500565retry:
Chris Mason771ed682008-11-06 22:02:51 -0500566 /* did the compression code fall back to uncompressed IO? */
567 if (!async_extent->pages) {
568 int page_started = 0;
569 unsigned long nr_written = 0;
570
571 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000572 async_extent->start +
573 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500574
575 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500576 ret = cow_file_range(inode, async_cow->locked_page,
577 async_extent->start,
578 async_extent->start +
579 async_extent->ram_size - 1,
580 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500581
582 /*
583 * if page_started, cow_file_range inserted an
584 * inline extent and took care of all the unlocking
585 * and IO for us. Otherwise, we need to submit
586 * all those pages down to the drive.
587 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500588 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500589 extent_write_locked_range(io_tree,
590 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500591 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500592 async_extent->ram_size - 1,
593 btrfs_get_extent,
594 WB_SYNC_ALL);
595 kfree(async_extent);
596 cond_resched();
597 continue;
598 }
599
600 lock_extent(io_tree, async_extent->start,
601 async_extent->start + async_extent->ram_size - 1,
602 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500603
Yan, Zhengc2167752009-11-12 09:34:21 +0000604 trans = btrfs_join_transaction(root, 1);
Chris Mason771ed682008-11-06 22:02:51 -0500605 ret = btrfs_reserve_extent(trans, root,
606 async_extent->compressed_size,
607 async_extent->compressed_size,
608 0, alloc_hint,
609 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000610 btrfs_end_transaction(trans, root);
611
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500612 if (ret) {
613 int i;
614 for (i = 0; i < async_extent->nr_pages; i++) {
615 WARN_ON(async_extent->pages[i]->mapping);
616 page_cache_release(async_extent->pages[i]);
617 }
618 kfree(async_extent->pages);
619 async_extent->nr_pages = 0;
620 async_extent->pages = NULL;
621 unlock_extent(io_tree, async_extent->start,
622 async_extent->start +
623 async_extent->ram_size - 1, GFP_NOFS);
624 goto retry;
625 }
626
Yan, Zhengc2167752009-11-12 09:34:21 +0000627 /*
628 * here we're doing allocation and writeback of the
629 * compressed pages
630 */
631 btrfs_drop_extent_cache(inode, async_extent->start,
632 async_extent->start +
633 async_extent->ram_size - 1, 0);
634
Chris Mason771ed682008-11-06 22:02:51 -0500635 em = alloc_extent_map(GFP_NOFS);
636 em->start = async_extent->start;
637 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500638 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500639
640 em->block_start = ins.objectid;
641 em->block_len = ins.offset;
642 em->bdev = root->fs_info->fs_devices->latest_bdev;
643 set_bit(EXTENT_FLAG_PINNED, &em->flags);
644 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
645
Chris Masond3977122009-01-05 21:25:51 -0500646 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400647 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500648 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400649 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500650 if (ret != -EEXIST) {
651 free_extent_map(em);
652 break;
653 }
654 btrfs_drop_extent_cache(inode, async_extent->start,
655 async_extent->start +
656 async_extent->ram_size - 1, 0);
657 }
658
659 ret = btrfs_add_ordered_extent(inode, async_extent->start,
660 ins.objectid,
661 async_extent->ram_size,
662 ins.offset,
663 BTRFS_ORDERED_COMPRESSED);
664 BUG_ON(ret);
665
Chris Mason771ed682008-11-06 22:02:51 -0500666 /*
667 * clear dirty, set writeback and unlock the pages.
668 */
669 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400670 &BTRFS_I(inode)->io_tree,
671 async_extent->start,
672 async_extent->start +
673 async_extent->ram_size - 1,
674 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
675 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400676 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400677 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500678
679 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500680 async_extent->start,
681 async_extent->ram_size,
682 ins.objectid,
683 ins.offset, async_extent->pages,
684 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500685
686 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500687 alloc_hint = ins.objectid + ins.offset;
688 kfree(async_extent);
689 cond_resched();
690 }
691
Chris Mason771ed682008-11-06 22:02:51 -0500692 return 0;
693}
694
Josef Bacik4b46fce2010-05-23 11:00:55 -0400695static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
696 u64 num_bytes)
697{
698 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
699 struct extent_map *em;
700 u64 alloc_hint = 0;
701
702 read_lock(&em_tree->lock);
703 em = search_extent_mapping(em_tree, start, num_bytes);
704 if (em) {
705 /*
706 * if block start isn't an actual block number then find the
707 * first block in this inode and use that as a hint. If that
708 * block is also bogus then just don't worry about it.
709 */
710 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
711 free_extent_map(em);
712 em = search_extent_mapping(em_tree, 0, 0);
713 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
714 alloc_hint = em->block_start;
715 if (em)
716 free_extent_map(em);
717 } else {
718 alloc_hint = em->block_start;
719 free_extent_map(em);
720 }
721 }
722 read_unlock(&em_tree->lock);
723
724 return alloc_hint;
725}
726
Chris Mason771ed682008-11-06 22:02:51 -0500727/*
728 * when extent_io.c finds a delayed allocation range in the file,
729 * the call backs end up in this code. The basic idea is to
730 * allocate extents on disk for the range, and create ordered data structs
731 * in ram to track those extents.
732 *
733 * locked_page is the page that writepage had locked already. We use
734 * it to make sure we don't do extra locks or unlocks.
735 *
736 * *page_started is set to one if we unlock locked_page and do everything
737 * required to start IO on it. It may be clean and already done with
738 * IO when we return.
739 */
740static noinline int cow_file_range(struct inode *inode,
741 struct page *locked_page,
742 u64 start, u64 end, int *page_started,
743 unsigned long *nr_written,
744 int unlock)
745{
746 struct btrfs_root *root = BTRFS_I(inode)->root;
747 struct btrfs_trans_handle *trans;
748 u64 alloc_hint = 0;
749 u64 num_bytes;
750 unsigned long ram_size;
751 u64 disk_num_bytes;
752 u64 cur_alloc_size;
753 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500754 struct btrfs_key ins;
755 struct extent_map *em;
756 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
757 int ret = 0;
758
Josef Bacik0cb59c92010-07-02 12:14:14 -0400759 BUG_ON(root == root->fs_info->tree_root);
Chris Mason771ed682008-11-06 22:02:51 -0500760 trans = btrfs_join_transaction(root, 1);
761 BUG_ON(!trans);
762 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400763 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500764
Chris Mason771ed682008-11-06 22:02:51 -0500765 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
766 num_bytes = max(blocksize, num_bytes);
767 disk_num_bytes = num_bytes;
768 ret = 0;
769
770 if (start == 0) {
771 /* lets try to make an inline extent */
772 ret = cow_file_range_inline(trans, root, inode,
773 start, end, 0, NULL);
774 if (ret == 0) {
775 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400776 &BTRFS_I(inode)->io_tree,
777 start, end, NULL,
778 EXTENT_CLEAR_UNLOCK_PAGE |
779 EXTENT_CLEAR_UNLOCK |
780 EXTENT_CLEAR_DELALLOC |
781 EXTENT_CLEAR_DIRTY |
782 EXTENT_SET_WRITEBACK |
783 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000784
Chris Mason771ed682008-11-06 22:02:51 -0500785 *nr_written = *nr_written +
786 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
787 *page_started = 1;
788 ret = 0;
789 goto out;
790 }
791 }
Chris Masonc8b97812008-10-29 14:49:59 -0400792
793 BUG_ON(disk_num_bytes >
794 btrfs_super_total_bytes(&root->fs_info->super_copy));
795
Josef Bacik4b46fce2010-05-23 11:00:55 -0400796 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400797 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400798
Chris Masond3977122009-01-05 21:25:51 -0500799 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400800 unsigned long op;
801
Josef Bacik287a0ab2010-03-19 18:07:23 +0000802 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400803 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500804 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400805 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500806 BUG_ON(ret);
807
Chris Masone6dcd2d2008-07-17 12:53:50 -0400808 em = alloc_extent_map(GFP_NOFS);
809 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500810 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500811 ram_size = ins.offset;
812 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400813
Chris Masone6dcd2d2008-07-17 12:53:50 -0400814 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400815 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400816 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400817 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400818
Chris Masond3977122009-01-05 21:25:51 -0500819 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400820 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400821 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400822 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400823 if (ret != -EEXIST) {
824 free_extent_map(em);
825 break;
826 }
827 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400828 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400829 }
830
Chris Mason98d20f62008-04-14 09:46:10 -0400831 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400832 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500833 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400834 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400835
Yan Zheng17d217f2008-12-12 10:03:38 -0500836 if (root->root_key.objectid ==
837 BTRFS_DATA_RELOC_TREE_OBJECTID) {
838 ret = btrfs_reloc_clone_csums(inode, start,
839 cur_alloc_size);
840 BUG_ON(ret);
841 }
842
Chris Masond3977122009-01-05 21:25:51 -0500843 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400844 break;
Chris Masond3977122009-01-05 21:25:51 -0500845
Chris Masonc8b97812008-10-29 14:49:59 -0400846 /* we're not doing compressed IO, don't unlock the first
847 * page (which the caller expects to stay locked), don't
848 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400849 *
850 * Do set the Private2 bit so we know this page was properly
851 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400852 */
Chris Masona791e352009-10-08 11:27:10 -0400853 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
854 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
855 EXTENT_SET_PRIVATE2;
856
Chris Masonc8b97812008-10-29 14:49:59 -0400857 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
858 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400859 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400860 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500861 num_bytes -= cur_alloc_size;
862 alloc_hint = ins.objectid + ins.offset;
863 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400864 }
Chris Masonb888db22007-08-27 16:49:44 -0400865out:
Chris Mason771ed682008-11-06 22:02:51 -0500866 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400867 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400868
Chris Masonbe20aa92007-12-17 20:14:01 -0500869 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500870}
Chris Masonc8b97812008-10-29 14:49:59 -0400871
Chris Mason771ed682008-11-06 22:02:51 -0500872/*
873 * work queue call back to started compression on a file and pages
874 */
875static noinline void async_cow_start(struct btrfs_work *work)
876{
877 struct async_cow *async_cow;
878 int num_added = 0;
879 async_cow = container_of(work, struct async_cow, work);
880
881 compress_file_range(async_cow->inode, async_cow->locked_page,
882 async_cow->start, async_cow->end, async_cow,
883 &num_added);
884 if (num_added == 0)
885 async_cow->inode = NULL;
886}
887
888/*
889 * work queue call back to submit previously compressed pages
890 */
891static noinline void async_cow_submit(struct btrfs_work *work)
892{
893 struct async_cow *async_cow;
894 struct btrfs_root *root;
895 unsigned long nr_pages;
896
897 async_cow = container_of(work, struct async_cow, work);
898
899 root = async_cow->root;
900 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
901 PAGE_CACHE_SHIFT;
902
903 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
904
905 if (atomic_read(&root->fs_info->async_delalloc_pages) <
906 5 * 1042 * 1024 &&
907 waitqueue_active(&root->fs_info->async_submit_wait))
908 wake_up(&root->fs_info->async_submit_wait);
909
Chris Masond3977122009-01-05 21:25:51 -0500910 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500911 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500912}
Chris Masonc8b97812008-10-29 14:49:59 -0400913
Chris Mason771ed682008-11-06 22:02:51 -0500914static noinline void async_cow_free(struct btrfs_work *work)
915{
916 struct async_cow *async_cow;
917 async_cow = container_of(work, struct async_cow, work);
918 kfree(async_cow);
919}
920
921static int cow_file_range_async(struct inode *inode, struct page *locked_page,
922 u64 start, u64 end, int *page_started,
923 unsigned long *nr_written)
924{
925 struct async_cow *async_cow;
926 struct btrfs_root *root = BTRFS_I(inode)->root;
927 unsigned long nr_pages;
928 u64 cur_end;
929 int limit = 10 * 1024 * 1042;
930
Chris Masona3429ab2009-10-08 12:30:20 -0400931 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
932 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500933 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500934 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
935 async_cow->inode = inode;
936 async_cow->root = root;
937 async_cow->locked_page = locked_page;
938 async_cow->start = start;
939
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200940 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500941 cur_end = end;
942 else
943 cur_end = min(end, start + 512 * 1024 - 1);
944
945 async_cow->end = cur_end;
946 INIT_LIST_HEAD(&async_cow->extents);
947
948 async_cow->work.func = async_cow_start;
949 async_cow->work.ordered_func = async_cow_submit;
950 async_cow->work.ordered_free = async_cow_free;
951 async_cow->work.flags = 0;
952
Chris Mason771ed682008-11-06 22:02:51 -0500953 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
954 PAGE_CACHE_SHIFT;
955 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
956
957 btrfs_queue_worker(&root->fs_info->delalloc_workers,
958 &async_cow->work);
959
960 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
961 wait_event(root->fs_info->async_submit_wait,
962 (atomic_read(&root->fs_info->async_delalloc_pages) <
963 limit));
964 }
965
Chris Masond3977122009-01-05 21:25:51 -0500966 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500967 atomic_read(&root->fs_info->async_delalloc_pages)) {
968 wait_event(root->fs_info->async_submit_wait,
969 (atomic_read(&root->fs_info->async_delalloc_pages) ==
970 0));
971 }
972
973 *nr_written += nr_pages;
974 start = cur_end + 1;
975 }
976 *page_started = 1;
977 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500978}
979
Chris Masond3977122009-01-05 21:25:51 -0500980static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500981 u64 bytenr, u64 num_bytes)
982{
983 int ret;
984 struct btrfs_ordered_sum *sums;
985 LIST_HEAD(list);
986
Yan Zheng07d400a2009-01-06 11:42:00 -0500987 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
988 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500989 if (ret == 0 && list_empty(&list))
990 return 0;
991
992 while (!list_empty(&list)) {
993 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
994 list_del(&sums->list);
995 kfree(sums);
996 }
997 return 1;
998}
999
Chris Masond352ac62008-09-29 15:18:18 -04001000/*
1001 * when nowcow writeback call back. This checks for snapshots or COW copies
1002 * of the extents that exist in the file, and COWs the file as required.
1003 *
1004 * If no cow copies or snapshots exist, we write directly to the existing
1005 * blocks on disk
1006 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001007static noinline int run_delalloc_nocow(struct inode *inode,
1008 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001009 u64 start, u64 end, int *page_started, int force,
1010 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001011{
Chris Masonbe20aa92007-12-17 20:14:01 -05001012 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001013 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001014 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001015 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001016 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001017 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001018 u64 cow_start;
1019 u64 cur_offset;
1020 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001021 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001022 u64 disk_bytenr;
1023 u64 num_bytes;
1024 int extent_type;
1025 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001026 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001027 int nocow;
1028 int check_prev = 1;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001029 bool nolock = false;
Chris Masonbe20aa92007-12-17 20:14:01 -05001030
1031 path = btrfs_alloc_path();
1032 BUG_ON(!path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001033 if (root == root->fs_info->tree_root) {
1034 nolock = true;
1035 trans = btrfs_join_transaction_nolock(root, 1);
1036 } else {
1037 trans = btrfs_join_transaction(root, 1);
1038 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001039 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -05001040
Yan Zheng80ff3852008-10-30 14:20:02 -04001041 cow_start = (u64)-1;
1042 cur_offset = start;
1043 while (1) {
1044 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1045 cur_offset, 0);
1046 BUG_ON(ret < 0);
1047 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1048 leaf = path->nodes[0];
1049 btrfs_item_key_to_cpu(leaf, &found_key,
1050 path->slots[0] - 1);
1051 if (found_key.objectid == inode->i_ino &&
1052 found_key.type == BTRFS_EXTENT_DATA_KEY)
1053 path->slots[0]--;
1054 }
1055 check_prev = 0;
1056next_slot:
1057 leaf = path->nodes[0];
1058 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1059 ret = btrfs_next_leaf(root, path);
1060 if (ret < 0)
1061 BUG_ON(1);
1062 if (ret > 0)
1063 break;
1064 leaf = path->nodes[0];
1065 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001066
Yan Zheng80ff3852008-10-30 14:20:02 -04001067 nocow = 0;
1068 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001069 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001070 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001071
Yan Zheng80ff3852008-10-30 14:20:02 -04001072 if (found_key.objectid > inode->i_ino ||
1073 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1074 found_key.offset > end)
1075 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001076
Yan Zheng80ff3852008-10-30 14:20:02 -04001077 if (found_key.offset > cur_offset) {
1078 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001079 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001080 goto out_check;
1081 }
Chris Masonc31f8832008-01-08 15:46:31 -05001082
Yan Zheng80ff3852008-10-30 14:20:02 -04001083 fi = btrfs_item_ptr(leaf, path->slots[0],
1084 struct btrfs_file_extent_item);
1085 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001086
Yan Zhengd899e052008-10-30 14:25:28 -04001087 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1088 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001089 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001090 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001091 extent_end = found_key.offset +
1092 btrfs_file_extent_num_bytes(leaf, fi);
1093 if (extent_end <= start) {
1094 path->slots[0]++;
1095 goto next_slot;
1096 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001097 if (disk_bytenr == 0)
1098 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001099 if (btrfs_file_extent_compression(leaf, fi) ||
1100 btrfs_file_extent_encryption(leaf, fi) ||
1101 btrfs_file_extent_other_encoding(leaf, fi))
1102 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001103 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1104 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001105 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001106 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001107 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001108 found_key.offset -
1109 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001110 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001111 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001112 disk_bytenr += cur_offset - found_key.offset;
1113 num_bytes = min(end + 1, extent_end) - cur_offset;
1114 /*
1115 * force cow if csum exists in the range.
1116 * this ensure that csum for a given extent are
1117 * either valid or do not exist.
1118 */
1119 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1120 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001121 nocow = 1;
1122 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1123 extent_end = found_key.offset +
1124 btrfs_file_extent_inline_len(leaf, fi);
1125 extent_end = ALIGN(extent_end, root->sectorsize);
1126 } else {
1127 BUG_ON(1);
1128 }
1129out_check:
1130 if (extent_end <= start) {
1131 path->slots[0]++;
1132 goto next_slot;
1133 }
1134 if (!nocow) {
1135 if (cow_start == (u64)-1)
1136 cow_start = cur_offset;
1137 cur_offset = extent_end;
1138 if (cur_offset > end)
1139 break;
1140 path->slots[0]++;
1141 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001142 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001143
Yan Zheng7ea394f2008-08-05 13:05:02 -04001144 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001145 if (cow_start != (u64)-1) {
1146 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001147 found_key.offset - 1, page_started,
1148 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001149 BUG_ON(ret);
1150 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001151 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001152
Yan Zhengd899e052008-10-30 14:25:28 -04001153 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1154 struct extent_map *em;
1155 struct extent_map_tree *em_tree;
1156 em_tree = &BTRFS_I(inode)->extent_tree;
1157 em = alloc_extent_map(GFP_NOFS);
1158 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001159 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001160 em->len = num_bytes;
1161 em->block_len = num_bytes;
1162 em->block_start = disk_bytenr;
1163 em->bdev = root->fs_info->fs_devices->latest_bdev;
1164 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1165 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001166 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001167 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001168 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001169 if (ret != -EEXIST) {
1170 free_extent_map(em);
1171 break;
1172 }
1173 btrfs_drop_extent_cache(inode, em->start,
1174 em->start + em->len - 1, 0);
1175 }
1176 type = BTRFS_ORDERED_PREALLOC;
1177 } else {
1178 type = BTRFS_ORDERED_NOCOW;
1179 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001180
1181 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001182 num_bytes, num_bytes, type);
1183 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001184
Yan, Zhengefa56462010-05-16 10:49:59 -04001185 if (root->root_key.objectid ==
1186 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1187 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1188 num_bytes);
1189 BUG_ON(ret);
1190 }
1191
Yan Zhengd899e052008-10-30 14:25:28 -04001192 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001193 cur_offset, cur_offset + num_bytes - 1,
1194 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1195 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1196 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001197 cur_offset = extent_end;
1198 if (cur_offset > end)
1199 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001200 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001201 btrfs_release_path(root, path);
1202
1203 if (cur_offset <= end && cow_start == (u64)-1)
1204 cow_start = cur_offset;
1205 if (cow_start != (u64)-1) {
1206 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001207 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001208 BUG_ON(ret);
1209 }
1210
Josef Bacik0cb59c92010-07-02 12:14:14 -04001211 if (nolock) {
1212 ret = btrfs_end_transaction_nolock(trans, root);
1213 BUG_ON(ret);
1214 } else {
1215 ret = btrfs_end_transaction(trans, root);
1216 BUG_ON(ret);
1217 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001218 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001219 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001220}
1221
Chris Masond352ac62008-09-29 15:18:18 -04001222/*
1223 * extent_io.c call back to do delayed allocation processing
1224 */
Chris Masonc8b97812008-10-29 14:49:59 -04001225static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001226 u64 start, u64 end, int *page_started,
1227 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001228{
Chris Masonbe20aa92007-12-17 20:14:01 -05001229 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001230 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001231
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001232 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001233 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001234 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001235 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001236 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001237 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001238 else if (!btrfs_test_opt(root, COMPRESS) &&
1239 !(BTRFS_I(inode)->force_compress))
Chris Mason7f366cf2009-03-12 20:12:45 -04001240 ret = cow_file_range(inode, locked_page, start, end,
1241 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001242 else
Chris Mason771ed682008-11-06 22:02:51 -05001243 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001244 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001245 return ret;
1246}
1247
Josef Bacik9ed74f22009-09-11 16:12:44 -04001248static int btrfs_split_extent_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001249 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001250{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001251 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001252 if (!(orig->state & EXTENT_DELALLOC))
1253 return 0;
1254
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001255 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001256 return 0;
1257}
1258
1259/*
1260 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1261 * extents so we can keep track of new extents that are just merged onto old
1262 * extents, such as when we are doing sequential writes, so we can properly
1263 * account for the metadata space we'll need.
1264 */
1265static int btrfs_merge_extent_hook(struct inode *inode,
1266 struct extent_state *new,
1267 struct extent_state *other)
1268{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001269 /* not delalloc, ignore it */
1270 if (!(other->state & EXTENT_DELALLOC))
1271 return 0;
1272
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001273 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001274 return 0;
1275}
1276
Chris Masond352ac62008-09-29 15:18:18 -04001277/*
1278 * extent_io.c set_bit_hook, used to track delayed allocation
1279 * bytes in this file, and to maintain the list of inodes that
1280 * have pending delalloc work to be done.
1281 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001282static int btrfs_set_bit_hook(struct inode *inode,
1283 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001284{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001285
Chris Mason75eff682008-12-15 15:54:40 -05001286 /*
1287 * set_bit and clear bit hooks normally require _irqsave/restore
1288 * but in this case, we are only testeing for the DELALLOC
1289 * bit, which is only set or cleared with irqs on
1290 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001291 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001292 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001293 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001294 int do_list = (root->root_key.objectid !=
1295 BTRFS_ROOT_TREE_OBJECTID);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001296
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001297 if (*bits & EXTENT_FIRST_DELALLOC)
1298 *bits &= ~EXTENT_FIRST_DELALLOC;
1299 else
1300 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001301
Chris Mason75eff682008-12-15 15:54:40 -05001302 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001303 BTRFS_I(inode)->delalloc_bytes += len;
1304 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001305 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001306 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1307 &root->fs_info->delalloc_inodes);
1308 }
Chris Mason75eff682008-12-15 15:54:40 -05001309 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001310 }
1311 return 0;
1312}
1313
Chris Masond352ac62008-09-29 15:18:18 -04001314/*
1315 * extent_io.c clear_bit_hook, see set_bit_hook for why
1316 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001317static int btrfs_clear_bit_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001318 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001319{
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 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001325 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001326 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001327 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001328 int do_list = (root->root_key.objectid !=
1329 BTRFS_ROOT_TREE_OBJECTID);
Chris Masonbcbfce82008-04-22 13:26:47 -04001330
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001331 if (*bits & EXTENT_FIRST_DELALLOC)
1332 *bits &= ~EXTENT_FIRST_DELALLOC;
1333 else if (!(*bits & EXTENT_DO_ACCOUNTING))
1334 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
1335
1336 if (*bits & EXTENT_DO_ACCOUNTING)
1337 btrfs_delalloc_release_metadata(inode, len);
1338
Josef Bacik0cb59c92010-07-02 12:14:14 -04001339 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1340 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001341 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001342
Chris Mason75eff682008-12-15 15:54:40 -05001343 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001344 root->fs_info->delalloc_bytes -= len;
1345 BTRFS_I(inode)->delalloc_bytes -= len;
1346
Josef Bacik0cb59c92010-07-02 12:14:14 -04001347 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001348 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1349 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1350 }
Chris Mason75eff682008-12-15 15:54:40 -05001351 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001352 }
1353 return 0;
1354}
1355
Chris Masond352ac62008-09-29 15:18:18 -04001356/*
1357 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1358 * we don't create bios that span stripes or chunks
1359 */
Chris Mason239b14b2008-03-24 15:02:07 -04001360int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001361 size_t size, struct bio *bio,
1362 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001363{
1364 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1365 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001366 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001367 u64 length = 0;
1368 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001369 int ret;
1370
Chris Mason771ed682008-11-06 22:02:51 -05001371 if (bio_flags & EXTENT_BIO_COMPRESSED)
1372 return 0;
1373
Chris Masonf2d8d742008-04-21 10:03:05 -04001374 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001375 map_tree = &root->fs_info->mapping_tree;
1376 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001377 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001378 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001379
Chris Masond3977122009-01-05 21:25:51 -05001380 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001381 return 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04001382 return ret;
Chris Mason239b14b2008-03-24 15:02:07 -04001383}
1384
Chris Masond352ac62008-09-29 15:18:18 -04001385/*
1386 * in order to insert checksums into the metadata in large chunks,
1387 * we wait until bio submission time. All the pages in the bio are
1388 * checksummed and sums are attached onto the ordered extent record.
1389 *
1390 * At IO completion time the cums attached on the ordered extent record
1391 * are inserted into the btree
1392 */
Chris Masond3977122009-01-05 21:25:51 -05001393static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1394 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001395 unsigned long bio_flags,
1396 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001397{
Chris Mason065631f2008-02-20 12:07:25 -05001398 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001399 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001400
Chris Masond20f7042008-12-08 16:58:54 -05001401 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001402 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001403 return 0;
1404}
Chris Masone0156402008-04-16 11:15:20 -04001405
Chris Mason4a69a412008-11-06 22:03:00 -05001406/*
1407 * in order to insert checksums into the metadata in large chunks,
1408 * we wait until bio submission time. All the pages in the bio are
1409 * checksummed and sums are attached onto the ordered extent record.
1410 *
1411 * At IO completion time the cums attached on the ordered extent record
1412 * are inserted into the btree
1413 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001414static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001415 int mirror_num, unsigned long bio_flags,
1416 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001417{
1418 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001419 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001420}
1421
Chris Masond352ac62008-09-29 15:18:18 -04001422/*
Chris Masoncad321a2008-12-17 14:51:42 -05001423 * extent_io.c submission hook. This does the right thing for csum calculation
1424 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001425 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001426static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001427 int mirror_num, unsigned long bio_flags,
1428 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001429{
1430 struct btrfs_root *root = BTRFS_I(inode)->root;
1431 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001432 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001433
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001434 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001435
Josef Bacik0cb59c92010-07-02 12:14:14 -04001436 if (root == root->fs_info->tree_root)
1437 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2);
1438 else
1439 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001440 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001441
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001442 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001443 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001444 return btrfs_submit_compressed_read(inode, bio,
1445 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001446 } else if (!skip_sum)
1447 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001448 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001449 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001450 /* csum items have already been cloned */
1451 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1452 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001453 /* we're doing a write, do the async checksumming */
1454 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001455 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001456 bio_flags, bio_offset,
1457 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001458 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001459 }
1460
Chris Mason0b86a832008-03-24 15:01:56 -04001461mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001462 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001463}
Chris Mason6885f302008-02-20 16:11:05 -05001464
Chris Masond352ac62008-09-29 15:18:18 -04001465/*
1466 * given a list of ordered sums record them in the inode. This happens
1467 * at IO completion time based on sums calculated at bio submission time.
1468 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001469static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001470 struct inode *inode, u64 file_offset,
1471 struct list_head *list)
1472{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001473 struct btrfs_ordered_sum *sum;
1474
1475 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001476
1477 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001478 btrfs_csum_file_blocks(trans,
1479 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001480 }
1481 return 0;
1482}
1483
Josef Bacik2ac55d42010-02-03 19:33:23 +00001484int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1485 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001486{
Chris Masond3977122009-01-05 21:25:51 -05001487 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001488 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001489 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001490 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001491}
1492
Chris Masond352ac62008-09-29 15:18:18 -04001493/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001494struct btrfs_writepage_fixup {
1495 struct page *page;
1496 struct btrfs_work work;
1497};
1498
Christoph Hellwigb2950862008-12-02 09:54:17 -05001499static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001500{
1501 struct btrfs_writepage_fixup *fixup;
1502 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001503 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001504 struct page *page;
1505 struct inode *inode;
1506 u64 page_start;
1507 u64 page_end;
1508
1509 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1510 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001511again:
Chris Mason247e7432008-07-17 12:53:51 -04001512 lock_page(page);
1513 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1514 ClearPageChecked(page);
1515 goto out_page;
1516 }
1517
1518 inode = page->mapping->host;
1519 page_start = page_offset(page);
1520 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1521
Josef Bacik2ac55d42010-02-03 19:33:23 +00001522 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1523 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001524
1525 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001526 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001527 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001528
1529 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1530 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001531 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1532 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001533 unlock_page(page);
1534 btrfs_start_ordered_extent(inode, ordered, 1);
1535 goto again;
1536 }
Chris Mason247e7432008-07-17 12:53:51 -04001537
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001538 BUG();
Josef Bacik2ac55d42010-02-03 19:33:23 +00001539 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001540 ClearPageChecked(page);
1541out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001542 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1543 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001544out_page:
1545 unlock_page(page);
1546 page_cache_release(page);
1547}
1548
1549/*
1550 * There are a few paths in the higher layers of the kernel that directly
1551 * set the page dirty bit without asking the filesystem if it is a
1552 * good idea. This causes problems because we want to make sure COW
1553 * properly happens and the data=ordered rules are followed.
1554 *
Chris Masonc8b97812008-10-29 14:49:59 -04001555 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001556 * hasn't been properly setup for IO. We kick off an async process
1557 * to fix it up. The async helper will wait for ordered extents, set
1558 * the delalloc bit and make it safe to write the page.
1559 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001560static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001561{
1562 struct inode *inode = page->mapping->host;
1563 struct btrfs_writepage_fixup *fixup;
1564 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001565
Chris Mason8b62b722009-09-02 16:53:46 -04001566 /* this page is properly in the ordered list */
1567 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001568 return 0;
1569
1570 if (PageChecked(page))
1571 return -EAGAIN;
1572
1573 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1574 if (!fixup)
1575 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001576
Chris Mason247e7432008-07-17 12:53:51 -04001577 SetPageChecked(page);
1578 page_cache_get(page);
1579 fixup->work.func = btrfs_writepage_fixup_worker;
1580 fixup->page = page;
1581 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1582 return -EAGAIN;
1583}
1584
Yan Zhengd899e052008-10-30 14:25:28 -04001585static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1586 struct inode *inode, u64 file_pos,
1587 u64 disk_bytenr, u64 disk_num_bytes,
1588 u64 num_bytes, u64 ram_bytes,
1589 u8 compression, u8 encryption,
1590 u16 other_encoding, int extent_type)
1591{
1592 struct btrfs_root *root = BTRFS_I(inode)->root;
1593 struct btrfs_file_extent_item *fi;
1594 struct btrfs_path *path;
1595 struct extent_buffer *leaf;
1596 struct btrfs_key ins;
1597 u64 hint;
1598 int ret;
1599
1600 path = btrfs_alloc_path();
1601 BUG_ON(!path);
1602
Chris Masonb9473432009-03-13 11:00:37 -04001603 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001604
1605 /*
1606 * we may be replacing one extent in the tree with another.
1607 * The new extent is pinned in the extent map, and we don't want
1608 * to drop it from the cache until it is completely in the btree.
1609 *
1610 * So, tell btrfs_drop_extents to leave this extent in the cache.
1611 * the caller is expected to unpin it and allow it to be merged
1612 * with the others.
1613 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001614 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1615 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001616 BUG_ON(ret);
1617
1618 ins.objectid = inode->i_ino;
1619 ins.offset = file_pos;
1620 ins.type = BTRFS_EXTENT_DATA_KEY;
1621 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1622 BUG_ON(ret);
1623 leaf = path->nodes[0];
1624 fi = btrfs_item_ptr(leaf, path->slots[0],
1625 struct btrfs_file_extent_item);
1626 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1627 btrfs_set_file_extent_type(leaf, fi, extent_type);
1628 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1629 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1630 btrfs_set_file_extent_offset(leaf, fi, 0);
1631 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1632 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1633 btrfs_set_file_extent_compression(leaf, fi, compression);
1634 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1635 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001636
1637 btrfs_unlock_up_safe(path, 1);
1638 btrfs_set_lock_blocking(leaf);
1639
Yan Zhengd899e052008-10-30 14:25:28 -04001640 btrfs_mark_buffer_dirty(leaf);
1641
1642 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001643
1644 ins.objectid = disk_bytenr;
1645 ins.offset = disk_num_bytes;
1646 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001647 ret = btrfs_alloc_reserved_file_extent(trans, root,
1648 root->root_key.objectid,
1649 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001650 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001651 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001652
Yan Zhengd899e052008-10-30 14:25:28 -04001653 return 0;
1654}
1655
Chris Mason5d13a982009-03-13 11:41:46 -04001656/*
1657 * helper function for btrfs_finish_ordered_io, this
1658 * just reads in some of the csum leaves to prime them into ram
1659 * before we start the transaction. It limits the amount of btree
1660 * reads required while inside the transaction.
1661 */
Chris Masond352ac62008-09-29 15:18:18 -04001662/* as ordered data IO finishes, this gets called so we can finish
1663 * an ordered extent if the range of bytes in the file it covers are
1664 * fully written.
1665 */
Chris Mason211f90e2008-07-18 11:56:15 -04001666static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001667{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001668 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001669 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001670 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001671 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001672 struct extent_state *cached_state = NULL;
Yan Zhengd899e052008-10-30 14:25:28 -04001673 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001674 int ret;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001675 bool nolock = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001676
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001677 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1678 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001679 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001680 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001681 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001682
Josef Bacik0cb59c92010-07-02 12:14:14 -04001683 nolock = (root == root->fs_info->tree_root);
1684
Yan, Zhengc2167752009-11-12 09:34:21 +00001685 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1686 BUG_ON(!list_empty(&ordered_extent->list));
1687 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1688 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001689 if (nolock)
1690 trans = btrfs_join_transaction_nolock(root, 1);
1691 else
1692 trans = btrfs_join_transaction(root, 1);
1693 BUG_ON(!trans);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001694 btrfs_set_trans_block_group(trans, inode);
1695 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001696 ret = btrfs_update_inode(trans, root, inode);
1697 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001698 }
1699 goto out;
1700 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001701
Josef Bacik2ac55d42010-02-03 19:33:23 +00001702 lock_extent_bits(io_tree, ordered_extent->file_offset,
1703 ordered_extent->file_offset + ordered_extent->len - 1,
1704 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001705
Josef Bacik0cb59c92010-07-02 12:14:14 -04001706 if (nolock)
1707 trans = btrfs_join_transaction_nolock(root, 1);
1708 else
1709 trans = btrfs_join_transaction(root, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001710 btrfs_set_trans_block_group(trans, inode);
1711 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001712
Chris Masonc8b97812008-10-29 14:49:59 -04001713 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001714 compressed = 1;
1715 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1716 BUG_ON(compressed);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001717 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001718 ordered_extent->file_offset,
1719 ordered_extent->file_offset +
1720 ordered_extent->len);
1721 BUG_ON(ret);
1722 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001723 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001724 ret = insert_reserved_file_extent(trans, inode,
1725 ordered_extent->file_offset,
1726 ordered_extent->start,
1727 ordered_extent->disk_len,
1728 ordered_extent->len,
1729 ordered_extent->len,
1730 compressed, 0, 0,
1731 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001732 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1733 ordered_extent->file_offset,
1734 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001735 BUG_ON(ret);
1736 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001737 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1738 ordered_extent->file_offset +
1739 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1740
Chris Masone6dcd2d2008-07-17 12:53:50 -04001741 add_pending_csums(trans, inode, ordered_extent->file_offset,
1742 &ordered_extent->list);
1743
Yan, Zhengc2167752009-11-12 09:34:21 +00001744 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1745 ret = btrfs_update_inode(trans, root, inode);
1746 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001747out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001748 if (nolock) {
1749 if (trans)
1750 btrfs_end_transaction_nolock(trans, root);
1751 } else {
1752 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
1753 if (trans)
1754 btrfs_end_transaction(trans, root);
1755 }
1756
Chris Masone6dcd2d2008-07-17 12:53:50 -04001757 /* once for us */
1758 btrfs_put_ordered_extent(ordered_extent);
1759 /* once for the tree */
1760 btrfs_put_ordered_extent(ordered_extent);
1761
Chris Masone6dcd2d2008-07-17 12:53:50 -04001762 return 0;
1763}
1764
Christoph Hellwigb2950862008-12-02 09:54:17 -05001765static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001766 struct extent_state *state, int uptodate)
1767{
Chris Mason8b62b722009-09-02 16:53:46 -04001768 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001769 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1770}
1771
Chris Masond352ac62008-09-29 15:18:18 -04001772/*
1773 * When IO fails, either with EIO or csum verification fails, we
1774 * try other mirrors that might have a good copy of the data. This
1775 * io_failure_record is used to record state as we go through all the
1776 * mirrors. If another mirror has good data, the page is set up to date
1777 * and things continue. If a good mirror can't be found, the original
1778 * bio end_io callback is called to indicate things have failed.
1779 */
Chris Mason7e383262008-04-09 16:28:12 -04001780struct io_failure_record {
1781 struct page *page;
1782 u64 start;
1783 u64 len;
1784 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001785 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001786 int last_mirror;
1787};
1788
Christoph Hellwigb2950862008-12-02 09:54:17 -05001789static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001790 struct page *page, u64 start, u64 end,
1791 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001792{
1793 struct io_failure_record *failrec = NULL;
1794 u64 private;
1795 struct extent_map *em;
1796 struct inode *inode = page->mapping->host;
1797 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001798 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001799 struct bio *bio;
1800 int num_copies;
1801 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001802 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001803 u64 logical;
1804
1805 ret = get_state_private(failure_tree, start, &private);
1806 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001807 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1808 if (!failrec)
1809 return -ENOMEM;
1810 failrec->start = start;
1811 failrec->len = end - start + 1;
1812 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001813 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001814
Chris Mason890871b2009-09-02 16:24:52 -04001815 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001816 em = lookup_extent_mapping(em_tree, start, failrec->len);
1817 if (em->start > start || em->start + em->len < start) {
1818 free_extent_map(em);
1819 em = NULL;
1820 }
Chris Mason890871b2009-09-02 16:24:52 -04001821 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001822
1823 if (!em || IS_ERR(em)) {
1824 kfree(failrec);
1825 return -EIO;
1826 }
1827 logical = start - em->start;
1828 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001829 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1830 logical = em->block_start;
1831 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1832 }
Chris Mason7e383262008-04-09 16:28:12 -04001833 failrec->logical = logical;
1834 free_extent_map(em);
1835 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1836 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001837 set_state_private(failure_tree, start,
1838 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001839 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001840 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001841 }
1842 num_copies = btrfs_num_copies(
1843 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1844 failrec->logical, failrec->len);
1845 failrec->last_mirror++;
1846 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001847 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001848 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1849 failrec->start,
1850 EXTENT_LOCKED);
1851 if (state && state->start != failrec->start)
1852 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001853 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001854 }
1855 if (!state || failrec->last_mirror > num_copies) {
1856 set_state_private(failure_tree, failrec->start, 0);
1857 clear_extent_bits(failure_tree, failrec->start,
1858 failrec->start + failrec->len - 1,
1859 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1860 kfree(failrec);
1861 return -EIO;
1862 }
1863 bio = bio_alloc(GFP_NOFS, 1);
1864 bio->bi_private = state;
1865 bio->bi_end_io = failed_bio->bi_end_io;
1866 bio->bi_sector = failrec->logical >> 9;
1867 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001868 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001869
Chris Mason7e383262008-04-09 16:28:12 -04001870 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001871 if (failed_bio->bi_rw & REQ_WRITE)
Chris Mason1259ab72008-05-12 13:39:03 -04001872 rw = WRITE;
1873 else
1874 rw = READ;
1875
1876 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001877 failrec->last_mirror,
Chris Masoneaf25d92010-05-25 09:48:28 -04001878 failrec->bio_flags, 0);
Chris Mason1259ab72008-05-12 13:39:03 -04001879 return 0;
1880}
1881
Chris Masond352ac62008-09-29 15:18:18 -04001882/*
1883 * each time an IO finishes, we do a fast check in the IO failure tree
1884 * to see if we need to process or clean up an io_failure_record
1885 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001886static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001887{
1888 u64 private;
1889 u64 private_failure;
1890 struct io_failure_record *failure;
1891 int ret;
1892
1893 private = 0;
1894 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1895 (u64)-1, 1, EXTENT_DIRTY)) {
1896 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1897 start, &private_failure);
1898 if (ret == 0) {
1899 failure = (struct io_failure_record *)(unsigned long)
1900 private_failure;
1901 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1902 failure->start, 0);
1903 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1904 failure->start,
1905 failure->start + failure->len - 1,
1906 EXTENT_DIRTY | EXTENT_LOCKED,
1907 GFP_NOFS);
1908 kfree(failure);
1909 }
1910 }
Chris Mason7e383262008-04-09 16:28:12 -04001911 return 0;
1912}
1913
Chris Masond352ac62008-09-29 15:18:18 -04001914/*
1915 * when reads are done, we need to check csums to verify the data is correct
1916 * if there's a match, we allow the bio to finish. If not, we go through
1917 * the io_failure_record routines to find good copies
1918 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001919static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001920 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001921{
Chris Mason35ebb932007-10-30 16:56:53 -04001922 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001923 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001924 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001925 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001926 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001927 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001928 struct btrfs_root *root = BTRFS_I(inode)->root;
1929 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001930
Chris Masond20f7042008-12-08 16:58:54 -05001931 if (PageChecked(page)) {
1932 ClearPageChecked(page);
1933 goto good;
1934 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001935
1936 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001937 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001938
Yan Zheng17d217f2008-12-12 10:03:38 -05001939 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001940 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001941 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1942 GFP_NOFS);
1943 return 0;
1944 }
1945
Yanc2e639f2008-02-04 08:57:25 -05001946 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001947 private = state->private;
1948 ret = 0;
1949 } else {
1950 ret = get_state_private(io_tree, start, &private);
1951 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001952 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001953 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001954 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001955
Chris Masonff79f812007-10-15 16:22:25 -04001956 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1957 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001958 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001959 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001960
Chris Mason9ab86c82009-01-07 09:48:51 -05001961 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001962good:
Chris Mason7e383262008-04-09 16:28:12 -04001963 /* if the io failure tree for this inode is non-empty,
1964 * check to see if we've recovered from a failed IO
1965 */
Chris Mason1259ab72008-05-12 13:39:03 -04001966 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001967 return 0;
1968
1969zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001970 if (printk_ratelimit()) {
1971 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1972 "private %llu\n", page->mapping->host->i_ino,
1973 (unsigned long long)start, csum,
1974 (unsigned long long)private);
1975 }
Chris Masondb945352007-10-15 16:15:53 -04001976 memset(kaddr + offset, 1, end - start + 1);
1977 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001978 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001979 if (private == 0)
1980 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001981 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001982}
Chris Masonb888db22007-08-27 16:49:44 -04001983
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001984struct delayed_iput {
1985 struct list_head list;
1986 struct inode *inode;
1987};
1988
1989void btrfs_add_delayed_iput(struct inode *inode)
1990{
1991 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
1992 struct delayed_iput *delayed;
1993
1994 if (atomic_add_unless(&inode->i_count, -1, 1))
1995 return;
1996
1997 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
1998 delayed->inode = inode;
1999
2000 spin_lock(&fs_info->delayed_iput_lock);
2001 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2002 spin_unlock(&fs_info->delayed_iput_lock);
2003}
2004
2005void btrfs_run_delayed_iputs(struct btrfs_root *root)
2006{
2007 LIST_HEAD(list);
2008 struct btrfs_fs_info *fs_info = root->fs_info;
2009 struct delayed_iput *delayed;
2010 int empty;
2011
2012 spin_lock(&fs_info->delayed_iput_lock);
2013 empty = list_empty(&fs_info->delayed_iputs);
2014 spin_unlock(&fs_info->delayed_iput_lock);
2015 if (empty)
2016 return;
2017
2018 down_read(&root->fs_info->cleanup_work_sem);
2019 spin_lock(&fs_info->delayed_iput_lock);
2020 list_splice_init(&fs_info->delayed_iputs, &list);
2021 spin_unlock(&fs_info->delayed_iput_lock);
2022
2023 while (!list_empty(&list)) {
2024 delayed = list_entry(list.next, struct delayed_iput, list);
2025 list_del(&delayed->list);
2026 iput(delayed->inode);
2027 kfree(delayed);
2028 }
2029 up_read(&root->fs_info->cleanup_work_sem);
2030}
2031
Josef Bacik7b128762008-07-24 12:17:14 -04002032/*
Yan, Zhengd68fc572010-05-16 10:49:58 -04002033 * calculate extra metadata reservation when snapshotting a subvolume
2034 * contains orphan files.
2035 */
2036void btrfs_orphan_pre_snapshot(struct btrfs_trans_handle *trans,
2037 struct btrfs_pending_snapshot *pending,
2038 u64 *bytes_to_reserve)
2039{
2040 struct btrfs_root *root;
2041 struct btrfs_block_rsv *block_rsv;
2042 u64 num_bytes;
2043 int index;
2044
2045 root = pending->root;
2046 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2047 return;
2048
2049 block_rsv = root->orphan_block_rsv;
2050
2051 /* orphan block reservation for the snapshot */
2052 num_bytes = block_rsv->size;
2053
2054 /*
2055 * after the snapshot is created, COWing tree blocks may use more
2056 * space than it frees. So we should make sure there is enough
2057 * reserved space.
2058 */
2059 index = trans->transid & 0x1;
2060 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2061 num_bytes += block_rsv->size -
2062 (block_rsv->reserved + block_rsv->freed[index]);
2063 }
2064
2065 *bytes_to_reserve += num_bytes;
2066}
2067
2068void btrfs_orphan_post_snapshot(struct btrfs_trans_handle *trans,
2069 struct btrfs_pending_snapshot *pending)
2070{
2071 struct btrfs_root *root = pending->root;
2072 struct btrfs_root *snap = pending->snap;
2073 struct btrfs_block_rsv *block_rsv;
2074 u64 num_bytes;
2075 int index;
2076 int ret;
2077
2078 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2079 return;
2080
2081 /* refill source subvolume's orphan block reservation */
2082 block_rsv = root->orphan_block_rsv;
2083 index = trans->transid & 0x1;
2084 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2085 num_bytes = block_rsv->size -
2086 (block_rsv->reserved + block_rsv->freed[index]);
2087 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2088 root->orphan_block_rsv,
2089 num_bytes);
2090 BUG_ON(ret);
2091 }
2092
2093 /* setup orphan block reservation for the snapshot */
2094 block_rsv = btrfs_alloc_block_rsv(snap);
2095 BUG_ON(!block_rsv);
2096
2097 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2098 snap->orphan_block_rsv = block_rsv;
2099
2100 num_bytes = root->orphan_block_rsv->size;
2101 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2102 block_rsv, num_bytes);
2103 BUG_ON(ret);
2104
2105#if 0
2106 /* insert orphan item for the snapshot */
2107 WARN_ON(!root->orphan_item_inserted);
2108 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2109 snap->root_key.objectid);
2110 BUG_ON(ret);
2111 snap->orphan_item_inserted = 1;
2112#endif
2113}
2114
2115enum btrfs_orphan_cleanup_state {
2116 ORPHAN_CLEANUP_STARTED = 1,
2117 ORPHAN_CLEANUP_DONE = 2,
2118};
2119
2120/*
2121 * This is called in transaction commmit time. If there are no orphan
2122 * files in the subvolume, it removes orphan item and frees block_rsv
2123 * structure.
2124 */
2125void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2126 struct btrfs_root *root)
2127{
2128 int ret;
2129
2130 if (!list_empty(&root->orphan_list) ||
2131 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2132 return;
2133
2134 if (root->orphan_item_inserted &&
2135 btrfs_root_refs(&root->root_item) > 0) {
2136 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2137 root->root_key.objectid);
2138 BUG_ON(ret);
2139 root->orphan_item_inserted = 0;
2140 }
2141
2142 if (root->orphan_block_rsv) {
2143 WARN_ON(root->orphan_block_rsv->size > 0);
2144 btrfs_free_block_rsv(root, root->orphan_block_rsv);
2145 root->orphan_block_rsv = NULL;
2146 }
2147}
2148
2149/*
Josef Bacik7b128762008-07-24 12:17:14 -04002150 * This creates an orphan entry for the given inode in case something goes
2151 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002152 *
2153 * NOTE: caller of this function should reserve 5 units of metadata for
2154 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002155 */
2156int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2157{
2158 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002159 struct btrfs_block_rsv *block_rsv = NULL;
2160 int reserve = 0;
2161 int insert = 0;
2162 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002163
Yan, Zhengd68fc572010-05-16 10:49:58 -04002164 if (!root->orphan_block_rsv) {
2165 block_rsv = btrfs_alloc_block_rsv(root);
2166 BUG_ON(!block_rsv);
Josef Bacik7b128762008-07-24 12:17:14 -04002167 }
2168
Yan, Zhengd68fc572010-05-16 10:49:58 -04002169 spin_lock(&root->orphan_lock);
2170 if (!root->orphan_block_rsv) {
2171 root->orphan_block_rsv = block_rsv;
2172 } else if (block_rsv) {
2173 btrfs_free_block_rsv(root, block_rsv);
2174 block_rsv = NULL;
2175 }
Josef Bacik7b128762008-07-24 12:17:14 -04002176
Yan, Zhengd68fc572010-05-16 10:49:58 -04002177 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2178 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2179#if 0
2180 /*
2181 * For proper ENOSPC handling, we should do orphan
2182 * cleanup when mounting. But this introduces backward
2183 * compatibility issue.
2184 */
2185 if (!xchg(&root->orphan_item_inserted, 1))
2186 insert = 2;
2187 else
2188 insert = 1;
2189#endif
2190 insert = 1;
2191 } else {
2192 WARN_ON(!BTRFS_I(inode)->orphan_meta_reserved);
2193 }
Josef Bacik7b128762008-07-24 12:17:14 -04002194
Yan, Zhengd68fc572010-05-16 10:49:58 -04002195 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2196 BTRFS_I(inode)->orphan_meta_reserved = 1;
2197 reserve = 1;
2198 }
2199 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002200
Yan, Zhengd68fc572010-05-16 10:49:58 -04002201 if (block_rsv)
2202 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2203
2204 /* grab metadata reservation from transaction handle */
2205 if (reserve) {
2206 ret = btrfs_orphan_reserve_metadata(trans, inode);
2207 BUG_ON(ret);
2208 }
2209
2210 /* insert an orphan item to track this unlinked/truncated file */
2211 if (insert >= 1) {
2212 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2213 BUG_ON(ret);
2214 }
2215
2216 /* insert an orphan item to track subvolume contains orphan files */
2217 if (insert >= 2) {
2218 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2219 root->root_key.objectid);
2220 BUG_ON(ret);
2221 }
2222 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002223}
2224
2225/*
2226 * We have done the truncate/delete so we can go ahead and remove the orphan
2227 * item for this particular inode.
2228 */
2229int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2230{
2231 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002232 int delete_item = 0;
2233 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002234 int ret = 0;
2235
Yan, Zhengd68fc572010-05-16 10:49:58 -04002236 spin_lock(&root->orphan_lock);
2237 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2238 list_del_init(&BTRFS_I(inode)->i_orphan);
2239 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002240 }
2241
Yan, Zhengd68fc572010-05-16 10:49:58 -04002242 if (BTRFS_I(inode)->orphan_meta_reserved) {
2243 BTRFS_I(inode)->orphan_meta_reserved = 0;
2244 release_rsv = 1;
2245 }
2246 spin_unlock(&root->orphan_lock);
2247
2248 if (trans && delete_item) {
2249 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2250 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002251 }
2252
Yan, Zhengd68fc572010-05-16 10:49:58 -04002253 if (release_rsv)
2254 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002255
Yan, Zhengd68fc572010-05-16 10:49:58 -04002256 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002257}
2258
2259/*
2260 * this cleans up any orphans that may be left on the list from the last use
2261 * of this root.
2262 */
2263void btrfs_orphan_cleanup(struct btrfs_root *root)
2264{
2265 struct btrfs_path *path;
2266 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002267 struct btrfs_key key, found_key;
2268 struct btrfs_trans_handle *trans;
2269 struct inode *inode;
2270 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2271
Yan, Zhengd68fc572010-05-16 10:49:58 -04002272 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik7b128762008-07-24 12:17:14 -04002273 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002274
2275 path = btrfs_alloc_path();
2276 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002277 path->reada = -1;
2278
2279 key.objectid = BTRFS_ORPHAN_OBJECTID;
2280 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2281 key.offset = (u64)-1;
2282
Josef Bacik7b128762008-07-24 12:17:14 -04002283 while (1) {
2284 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2285 if (ret < 0) {
2286 printk(KERN_ERR "Error searching slot for orphan: %d"
2287 "\n", ret);
2288 break;
2289 }
2290
2291 /*
2292 * if ret == 0 means we found what we were searching for, which
2293 * is weird, but possible, so only screw with path if we didnt
2294 * find the key and see if we have stuff that matches
2295 */
2296 if (ret > 0) {
2297 if (path->slots[0] == 0)
2298 break;
2299 path->slots[0]--;
2300 }
2301
2302 /* pull out the item */
2303 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002304 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2305
2306 /* make sure the item matches what we want */
2307 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2308 break;
2309 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2310 break;
2311
2312 /* release the path since we're done with it */
2313 btrfs_release_path(root, path);
2314
2315 /*
2316 * this is where we are basically btrfs_lookup, without the
2317 * crossing root thing. we store the inode number in the
2318 * offset of the orphan item.
2319 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002320 found_key.objectid = found_key.offset;
2321 found_key.type = BTRFS_INODE_ITEM_KEY;
2322 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002323 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002324 BUG_ON(IS_ERR(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04002325
Josef Bacik7b128762008-07-24 12:17:14 -04002326 /*
2327 * add this inode to the orphan list so btrfs_orphan_del does
2328 * the proper thing when we hit it
2329 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002330 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002331 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002332 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002333
2334 /*
2335 * if this is a bad inode, means we actually succeeded in
2336 * removing the inode, but not the orphan record, which means
2337 * we need to manually delete the orphan since iput will just
2338 * do a destroy_inode
2339 */
2340 if (is_bad_inode(inode)) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04002341 trans = btrfs_start_transaction(root, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04002342 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002343 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002344 iput(inode);
2345 continue;
2346 }
2347
2348 /* if we have links, this was a truncate, lets do that */
2349 if (inode->i_nlink) {
2350 nr_truncate++;
2351 btrfs_truncate(inode);
2352 } else {
2353 nr_unlink++;
2354 }
2355
2356 /* this will do delete_inode and everything for us */
2357 iput(inode);
2358 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002359 btrfs_free_path(path);
2360
2361 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2362
2363 if (root->orphan_block_rsv)
2364 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2365 (u64)-1);
2366
2367 if (root->orphan_block_rsv || root->orphan_item_inserted) {
2368 trans = btrfs_join_transaction(root, 1);
2369 btrfs_end_transaction(trans, root);
2370 }
Josef Bacik7b128762008-07-24 12:17:14 -04002371
2372 if (nr_unlink)
2373 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2374 if (nr_truncate)
2375 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik7b128762008-07-24 12:17:14 -04002376}
2377
Chris Masond352ac62008-09-29 15:18:18 -04002378/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002379 * very simple check to peek ahead in the leaf looking for xattrs. If we
2380 * don't find any xattrs, we know there can't be any acls.
2381 *
2382 * slot is the slot the inode is in, objectid is the objectid of the inode
2383 */
2384static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2385 int slot, u64 objectid)
2386{
2387 u32 nritems = btrfs_header_nritems(leaf);
2388 struct btrfs_key found_key;
2389 int scanned = 0;
2390
2391 slot++;
2392 while (slot < nritems) {
2393 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2394
2395 /* we found a different objectid, there must not be acls */
2396 if (found_key.objectid != objectid)
2397 return 0;
2398
2399 /* we found an xattr, assume we've got an acl */
2400 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2401 return 1;
2402
2403 /*
2404 * we found a key greater than an xattr key, there can't
2405 * be any acls later on
2406 */
2407 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2408 return 0;
2409
2410 slot++;
2411 scanned++;
2412
2413 /*
2414 * it goes inode, inode backrefs, xattrs, extents,
2415 * so if there are a ton of hard links to an inode there can
2416 * be a lot of backrefs. Don't waste time searching too hard,
2417 * this is just an optimization
2418 */
2419 if (scanned >= 8)
2420 break;
2421 }
2422 /* we hit the end of the leaf before we found an xattr or
2423 * something larger than an xattr. We have to assume the inode
2424 * has acls
2425 */
2426 return 1;
2427}
2428
2429/*
Chris Masond352ac62008-09-29 15:18:18 -04002430 * read an inode from the btree into the in-memory inode
2431 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002432static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002433{
2434 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002435 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002436 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002437 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002438 struct btrfs_root *root = BTRFS_I(inode)->root;
2439 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002440 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002441 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002442 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002443 int ret;
2444
2445 path = btrfs_alloc_path();
2446 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002447 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002448
Chris Mason39279cc2007-06-12 06:35:45 -04002449 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002450 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002451 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002452
Chris Mason5f39d392007-10-15 16:14:19 -04002453 leaf = path->nodes[0];
2454 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2455 struct btrfs_inode_item);
2456
2457 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2458 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2459 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2460 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002461 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002462
2463 tspec = btrfs_inode_atime(inode_item);
2464 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2465 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2466
2467 tspec = btrfs_inode_mtime(inode_item);
2468 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2469 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2470
2471 tspec = btrfs_inode_ctime(inode_item);
2472 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2473 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2474
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002475 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002476 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002477 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002478 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002479 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002480 rdev = btrfs_inode_rdev(leaf, inode_item);
2481
Josef Bacikaec74772008-07-24 12:12:38 -04002482 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002483 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002484
Chris Mason5f39d392007-10-15 16:14:19 -04002485 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002486
Chris Mason46a53cc2009-04-27 11:47:50 -04002487 /*
2488 * try to precache a NULL acl entry for files that don't have
2489 * any xattrs or acls
2490 */
2491 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002492 if (!maybe_acls)
2493 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002494
Yan Zhengd2fb3432008-12-11 16:30:39 -05002495 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2496 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002497 btrfs_free_path(path);
2498 inode_item = NULL;
2499
Chris Mason39279cc2007-06-12 06:35:45 -04002500 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002501 case S_IFREG:
2502 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002503 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002504 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002505 inode->i_fop = &btrfs_file_operations;
2506 inode->i_op = &btrfs_file_inode_operations;
2507 break;
2508 case S_IFDIR:
2509 inode->i_fop = &btrfs_dir_file_operations;
2510 if (root == root->fs_info->tree_root)
2511 inode->i_op = &btrfs_dir_ro_inode_operations;
2512 else
2513 inode->i_op = &btrfs_dir_inode_operations;
2514 break;
2515 case S_IFLNK:
2516 inode->i_op = &btrfs_symlink_inode_operations;
2517 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002518 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002519 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002520 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002521 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002522 init_special_inode(inode, inode->i_mode, rdev);
2523 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002524 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002525
2526 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002527 return;
2528
2529make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002530 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002531 make_bad_inode(inode);
2532}
2533
Chris Masond352ac62008-09-29 15:18:18 -04002534/*
2535 * given a leaf and an inode, copy the inode fields into the leaf
2536 */
Chris Masone02119d2008-09-05 16:13:11 -04002537static void fill_inode_item(struct btrfs_trans_handle *trans,
2538 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002539 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002540 struct inode *inode)
2541{
Chris Mason5f39d392007-10-15 16:14:19 -04002542 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2543 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002544 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002545 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2546 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2547
2548 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2549 inode->i_atime.tv_sec);
2550 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2551 inode->i_atime.tv_nsec);
2552
2553 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2554 inode->i_mtime.tv_sec);
2555 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2556 inode->i_mtime.tv_nsec);
2557
2558 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2559 inode->i_ctime.tv_sec);
2560 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2561 inode->i_ctime.tv_nsec);
2562
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002563 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002564 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002565 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002566 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002567 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002568 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002569 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002570}
2571
Chris Masond352ac62008-09-29 15:18:18 -04002572/*
2573 * copy everything in the in-memory inode into the btree.
2574 */
Chris Masond3977122009-01-05 21:25:51 -05002575noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2576 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002577{
2578 struct btrfs_inode_item *inode_item;
2579 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002580 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002581 int ret;
2582
2583 path = btrfs_alloc_path();
2584 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002585 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002586 ret = btrfs_lookup_inode(trans, root, path,
2587 &BTRFS_I(inode)->location, 1);
2588 if (ret) {
2589 if (ret > 0)
2590 ret = -ENOENT;
2591 goto failed;
2592 }
2593
Chris Masonb4ce94d2009-02-04 09:25:08 -05002594 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002595 leaf = path->nodes[0];
2596 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002597 struct btrfs_inode_item);
2598
Chris Masone02119d2008-09-05 16:13:11 -04002599 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002600 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002601 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002602 ret = 0;
2603failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002604 btrfs_free_path(path);
2605 return ret;
2606}
2607
2608
Chris Masond352ac62008-09-29 15:18:18 -04002609/*
2610 * unlink helper that gets used here in inode.c and in the tree logging
2611 * recovery code. It remove a link in a directory with a given name, and
2612 * also drops the back refs in the inode to the directory
2613 */
Chris Masone02119d2008-09-05 16:13:11 -04002614int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2615 struct btrfs_root *root,
2616 struct inode *dir, struct inode *inode,
2617 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002618{
2619 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002620 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002621 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002622 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002623 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002624 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002625
2626 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002627 if (!path) {
2628 ret = -ENOMEM;
2629 goto err;
2630 }
2631
Chris Masonb9473432009-03-13 11:00:37 -04002632 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002633 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2634 name, name_len, -1);
2635 if (IS_ERR(di)) {
2636 ret = PTR_ERR(di);
2637 goto err;
2638 }
2639 if (!di) {
2640 ret = -ENOENT;
2641 goto err;
2642 }
Chris Mason5f39d392007-10-15 16:14:19 -04002643 leaf = path->nodes[0];
2644 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002645 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002646 if (ret)
2647 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002648 btrfs_release_path(root, path);
2649
Josef Bacikaec74772008-07-24 12:12:38 -04002650 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002651 inode->i_ino,
2652 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002653 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002654 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002655 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002656 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002657 goto err;
2658 }
2659
Chris Mason39279cc2007-06-12 06:35:45 -04002660 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002661 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002662 if (IS_ERR(di)) {
2663 ret = PTR_ERR(di);
2664 goto err;
2665 }
2666 if (!di) {
2667 ret = -ENOENT;
2668 goto err;
2669 }
2670 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002671 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002672
Chris Masone02119d2008-09-05 16:13:11 -04002673 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2674 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002675 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002676
2677 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2678 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002679 if (ret == -ENOENT)
2680 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002681err:
2682 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002683 if (ret)
2684 goto out;
2685
2686 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2687 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2688 btrfs_update_inode(trans, root, dir);
2689 btrfs_drop_nlink(inode);
2690 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002691out:
Chris Mason39279cc2007-06-12 06:35:45 -04002692 return ret;
2693}
2694
Yan, Zhenga22285a2010-05-16 10:48:46 -04002695/* helper to check if there is any shared block in the path */
2696static int check_path_shared(struct btrfs_root *root,
2697 struct btrfs_path *path)
2698{
2699 struct extent_buffer *eb;
2700 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002701 u64 refs = 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04002702 int uninitialized_var(ret);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002703
2704 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2705 if (!path->nodes[level])
2706 break;
2707 eb = path->nodes[level];
2708 if (!btrfs_block_can_be_shared(root, eb))
2709 continue;
2710 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2711 &refs, NULL);
2712 if (refs > 1)
2713 return 1;
2714 }
Andi Kleen411fc6b2010-10-29 15:14:31 -04002715 return ret; /* XXX callers? */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002716}
2717
2718/*
2719 * helper to start transaction for unlink and rmdir.
2720 *
2721 * unlink and rmdir are special in btrfs, they do not always free space.
2722 * so in enospc case, we should make sure they will free space before
2723 * allowing them to use the global metadata reservation.
2724 */
2725static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2726 struct dentry *dentry)
2727{
2728 struct btrfs_trans_handle *trans;
2729 struct btrfs_root *root = BTRFS_I(dir)->root;
2730 struct btrfs_path *path;
2731 struct btrfs_inode_ref *ref;
2732 struct btrfs_dir_item *di;
2733 struct inode *inode = dentry->d_inode;
2734 u64 index;
2735 int check_link = 1;
2736 int err = -ENOSPC;
2737 int ret;
2738
2739 trans = btrfs_start_transaction(root, 10);
2740 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2741 return trans;
2742
2743 if (inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
2744 return ERR_PTR(-ENOSPC);
2745
2746 /* check if there is someone else holds reference */
2747 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2748 return ERR_PTR(-ENOSPC);
2749
2750 if (atomic_read(&inode->i_count) > 2)
2751 return ERR_PTR(-ENOSPC);
2752
2753 if (xchg(&root->fs_info->enospc_unlink, 1))
2754 return ERR_PTR(-ENOSPC);
2755
2756 path = btrfs_alloc_path();
2757 if (!path) {
2758 root->fs_info->enospc_unlink = 0;
2759 return ERR_PTR(-ENOMEM);
2760 }
2761
2762 trans = btrfs_start_transaction(root, 0);
2763 if (IS_ERR(trans)) {
2764 btrfs_free_path(path);
2765 root->fs_info->enospc_unlink = 0;
2766 return trans;
2767 }
2768
2769 path->skip_locking = 1;
2770 path->search_commit_root = 1;
2771
2772 ret = btrfs_lookup_inode(trans, root, path,
2773 &BTRFS_I(dir)->location, 0);
2774 if (ret < 0) {
2775 err = ret;
2776 goto out;
2777 }
2778 if (ret == 0) {
2779 if (check_path_shared(root, path))
2780 goto out;
2781 } else {
2782 check_link = 0;
2783 }
2784 btrfs_release_path(root, path);
2785
2786 ret = btrfs_lookup_inode(trans, root, path,
2787 &BTRFS_I(inode)->location, 0);
2788 if (ret < 0) {
2789 err = ret;
2790 goto out;
2791 }
2792 if (ret == 0) {
2793 if (check_path_shared(root, path))
2794 goto out;
2795 } else {
2796 check_link = 0;
2797 }
2798 btrfs_release_path(root, path);
2799
2800 if (ret == 0 && S_ISREG(inode->i_mode)) {
2801 ret = btrfs_lookup_file_extent(trans, root, path,
2802 inode->i_ino, (u64)-1, 0);
2803 if (ret < 0) {
2804 err = ret;
2805 goto out;
2806 }
2807 BUG_ON(ret == 0);
2808 if (check_path_shared(root, path))
2809 goto out;
2810 btrfs_release_path(root, path);
2811 }
2812
2813 if (!check_link) {
2814 err = 0;
2815 goto out;
2816 }
2817
2818 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2819 dentry->d_name.name, dentry->d_name.len, 0);
2820 if (IS_ERR(di)) {
2821 err = PTR_ERR(di);
2822 goto out;
2823 }
2824 if (di) {
2825 if (check_path_shared(root, path))
2826 goto out;
2827 } else {
2828 err = 0;
2829 goto out;
2830 }
2831 btrfs_release_path(root, path);
2832
2833 ref = btrfs_lookup_inode_ref(trans, root, path,
2834 dentry->d_name.name, dentry->d_name.len,
2835 inode->i_ino, dir->i_ino, 0);
2836 if (IS_ERR(ref)) {
2837 err = PTR_ERR(ref);
2838 goto out;
2839 }
2840 BUG_ON(!ref);
2841 if (check_path_shared(root, path))
2842 goto out;
2843 index = btrfs_inode_ref_index(path->nodes[0], ref);
2844 btrfs_release_path(root, path);
2845
2846 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino, index,
2847 dentry->d_name.name, dentry->d_name.len, 0);
2848 if (IS_ERR(di)) {
2849 err = PTR_ERR(di);
2850 goto out;
2851 }
2852 BUG_ON(ret == -ENOENT);
2853 if (check_path_shared(root, path))
2854 goto out;
2855
2856 err = 0;
2857out:
2858 btrfs_free_path(path);
2859 if (err) {
2860 btrfs_end_transaction(trans, root);
2861 root->fs_info->enospc_unlink = 0;
2862 return ERR_PTR(err);
2863 }
2864
2865 trans->block_rsv = &root->fs_info->global_block_rsv;
2866 return trans;
2867}
2868
2869static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2870 struct btrfs_root *root)
2871{
2872 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
2873 BUG_ON(!root->fs_info->enospc_unlink);
2874 root->fs_info->enospc_unlink = 0;
2875 }
2876 btrfs_end_transaction_throttle(trans, root);
2877}
2878
Chris Mason39279cc2007-06-12 06:35:45 -04002879static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2880{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002881 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002882 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002883 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002884 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002885 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002886
Yan, Zhenga22285a2010-05-16 10:48:46 -04002887 trans = __unlink_start_trans(dir, dentry);
2888 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002889 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002890
Chris Mason39279cc2007-06-12 06:35:45 -04002891 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002892
2893 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2894
Chris Masone02119d2008-09-05 16:13:11 -04002895 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2896 dentry->d_name.name, dentry->d_name.len);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002897 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002898
Yan, Zhenga22285a2010-05-16 10:48:46 -04002899 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04002900 ret = btrfs_orphan_add(trans, inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002901 BUG_ON(ret);
2902 }
Josef Bacik7b128762008-07-24 12:17:14 -04002903
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002904 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002905 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002906 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002907 return ret;
2908}
2909
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002910int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2911 struct btrfs_root *root,
2912 struct inode *dir, u64 objectid,
2913 const char *name, int name_len)
2914{
2915 struct btrfs_path *path;
2916 struct extent_buffer *leaf;
2917 struct btrfs_dir_item *di;
2918 struct btrfs_key key;
2919 u64 index;
2920 int ret;
2921
2922 path = btrfs_alloc_path();
2923 if (!path)
2924 return -ENOMEM;
2925
2926 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2927 name, name_len, -1);
2928 BUG_ON(!di || IS_ERR(di));
2929
2930 leaf = path->nodes[0];
2931 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2932 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2933 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2934 BUG_ON(ret);
2935 btrfs_release_path(root, path);
2936
2937 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2938 objectid, root->root_key.objectid,
2939 dir->i_ino, &index, name, name_len);
2940 if (ret < 0) {
2941 BUG_ON(ret != -ENOENT);
2942 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2943 name, name_len);
2944 BUG_ON(!di || IS_ERR(di));
2945
2946 leaf = path->nodes[0];
2947 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2948 btrfs_release_path(root, path);
2949 index = key.offset;
2950 }
2951
2952 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2953 index, name, name_len, -1);
2954 BUG_ON(!di || IS_ERR(di));
2955
2956 leaf = path->nodes[0];
2957 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2958 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2959 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2960 BUG_ON(ret);
2961 btrfs_release_path(root, path);
2962
2963 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2964 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2965 ret = btrfs_update_inode(trans, root, dir);
2966 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002967
2968 btrfs_free_path(path);
2969 return 0;
2970}
2971
Chris Mason39279cc2007-06-12 06:35:45 -04002972static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2973{
2974 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002975 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002976 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002977 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002978 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002979
Chris Mason3394e162008-11-17 20:42:26 -05002980 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002981 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002982 return -ENOTEMPTY;
2983
Yan, Zhenga22285a2010-05-16 10:48:46 -04002984 trans = __unlink_start_trans(dir, dentry);
2985 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002986 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002987
Chris Mason39279cc2007-06-12 06:35:45 -04002988 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002989
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002990 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
2991 err = btrfs_unlink_subvol(trans, root, dir,
2992 BTRFS_I(inode)->location.objectid,
2993 dentry->d_name.name,
2994 dentry->d_name.len);
2995 goto out;
2996 }
2997
Josef Bacik7b128762008-07-24 12:17:14 -04002998 err = btrfs_orphan_add(trans, inode);
2999 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003000 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003001
Chris Mason39279cc2007-06-12 06:35:45 -04003002 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003003 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3004 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003005 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003006 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003007out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003008 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003009 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003010 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003011
Chris Mason39279cc2007-06-12 06:35:45 -04003012 return err;
3013}
3014
Chris Masond20f7042008-12-08 16:58:54 -05003015#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04003016/*
Chris Mason323ac952008-10-01 19:05:46 -04003017 * when truncating bytes in a file, it is possible to avoid reading
3018 * the leaves that contain only checksum items. This can be the
3019 * majority of the IO required to delete a large file, but it must
3020 * be done carefully.
3021 *
3022 * The keys in the level just above the leaves are checked to make sure
3023 * the lowest key in a given leaf is a csum key, and starts at an offset
3024 * after the new size.
3025 *
3026 * Then the key for the next leaf is checked to make sure it also has
3027 * a checksum item for the same file. If it does, we know our target leaf
3028 * contains only checksum items, and it can be safely freed without reading
3029 * it.
3030 *
3031 * This is just an optimization targeted at large files. It may do
3032 * nothing. It will return 0 unless things went badly.
3033 */
3034static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
3035 struct btrfs_root *root,
3036 struct btrfs_path *path,
3037 struct inode *inode, u64 new_size)
3038{
3039 struct btrfs_key key;
3040 int ret;
3041 int nritems;
3042 struct btrfs_key found_key;
3043 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003044 struct btrfs_leaf_ref *ref;
3045 u64 leaf_gen;
3046 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04003047
3048 path->lowest_level = 1;
3049 key.objectid = inode->i_ino;
3050 key.type = BTRFS_CSUM_ITEM_KEY;
3051 key.offset = new_size;
3052again:
3053 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3054 if (ret < 0)
3055 goto out;
3056
3057 if (path->nodes[1] == NULL) {
3058 ret = 0;
3059 goto out;
3060 }
3061 ret = 0;
3062 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
3063 nritems = btrfs_header_nritems(path->nodes[1]);
3064
3065 if (!nritems)
3066 goto out;
3067
3068 if (path->slots[1] >= nritems)
3069 goto next_node;
3070
3071 /* did we find a key greater than anything we want to delete? */
3072 if (found_key.objectid > inode->i_ino ||
3073 (found_key.objectid == inode->i_ino && found_key.type > key.type))
3074 goto out;
3075
3076 /* we check the next key in the node to make sure the leave contains
3077 * only checksum items. This comparison doesn't work if our
3078 * leaf is the last one in the node
3079 */
3080 if (path->slots[1] + 1 >= nritems) {
3081next_node:
3082 /* search forward from the last key in the node, this
3083 * will bring us into the next node in the tree
3084 */
3085 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
3086
3087 /* unlikely, but we inc below, so check to be safe */
3088 if (found_key.offset == (u64)-1)
3089 goto out;
3090
3091 /* search_forward needs a path with locks held, do the
3092 * search again for the original key. It is possible
3093 * this will race with a balance and return a path that
3094 * we could modify, but this drop is just an optimization
3095 * and is allowed to miss some leaves.
3096 */
3097 btrfs_release_path(root, path);
3098 found_key.offset++;
3099
3100 /* setup a max key for search_forward */
3101 other_key.offset = (u64)-1;
3102 other_key.type = key.type;
3103 other_key.objectid = key.objectid;
3104
3105 path->keep_locks = 1;
3106 ret = btrfs_search_forward(root, &found_key, &other_key,
3107 path, 0, 0);
3108 path->keep_locks = 0;
3109 if (ret || found_key.objectid != key.objectid ||
3110 found_key.type != key.type) {
3111 ret = 0;
3112 goto out;
3113 }
3114
3115 key.offset = found_key.offset;
3116 btrfs_release_path(root, path);
3117 cond_resched();
3118 goto again;
3119 }
3120
3121 /* we know there's one more slot after us in the tree,
3122 * read that key so we can verify it is also a checksum item
3123 */
3124 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
3125
3126 if (found_key.objectid < inode->i_ino)
3127 goto next_key;
3128
3129 if (found_key.type != key.type || found_key.offset < new_size)
3130 goto next_key;
3131
3132 /*
3133 * if the key for the next leaf isn't a csum key from this objectid,
3134 * we can't be sure there aren't good items inside this leaf.
3135 * Bail out
3136 */
3137 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
3138 goto out;
3139
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003140 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
3141 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04003142 /*
3143 * it is safe to delete this leaf, it contains only
3144 * csum items from this inode at an offset >= new_size
3145 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003146 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04003147 BUG_ON(ret);
3148
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003149 if (root->ref_cows && leaf_gen < trans->transid) {
3150 ref = btrfs_alloc_leaf_ref(root, 0);
3151 if (ref) {
3152 ref->root_gen = root->root_key.offset;
3153 ref->bytenr = leaf_start;
3154 ref->owner = 0;
3155 ref->generation = leaf_gen;
3156 ref->nritems = 0;
3157
Chris Masonbd56b302009-02-04 09:27:02 -05003158 btrfs_sort_leaf_ref(ref);
3159
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003160 ret = btrfs_add_leaf_ref(root, ref, 0);
3161 WARN_ON(ret);
3162 btrfs_free_leaf_ref(root, ref);
3163 } else {
3164 WARN_ON(1);
3165 }
3166 }
Chris Mason323ac952008-10-01 19:05:46 -04003167next_key:
3168 btrfs_release_path(root, path);
3169
3170 if (other_key.objectid == inode->i_ino &&
3171 other_key.type == key.type && other_key.offset > key.offset) {
3172 key.offset = other_key.offset;
3173 cond_resched();
3174 goto again;
3175 }
3176 ret = 0;
3177out:
3178 /* fixup any changes we've made to the path */
3179 path->lowest_level = 0;
3180 path->keep_locks = 0;
3181 btrfs_release_path(root, path);
3182 return ret;
3183}
3184
Chris Masond20f7042008-12-08 16:58:54 -05003185#endif
3186
Chris Mason323ac952008-10-01 19:05:46 -04003187/*
Chris Mason39279cc2007-06-12 06:35:45 -04003188 * this can truncate away extent items, csum items and directory items.
3189 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003190 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003191 *
3192 * csum items that cross the new i_size are truncated to the new size
3193 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003194 *
3195 * min_type is the minimum key type to truncate down to. If set to 0, this
3196 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003197 */
Yan, Zheng80825102009-11-12 09:35:36 +00003198int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3199 struct btrfs_root *root,
3200 struct inode *inode,
3201 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003202{
Chris Mason39279cc2007-06-12 06:35:45 -04003203 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003204 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003205 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003206 struct btrfs_key key;
3207 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003208 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003209 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003210 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003211 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003212 u64 mask = root->sectorsize - 1;
3213 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003214 int found_extent;
3215 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003216 int pending_del_nr = 0;
3217 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003218 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05003219 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00003220 int ret;
3221 int err = 0;
3222
3223 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003224
Josef Bacik0af3d002010-06-21 14:48:16 -04003225 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003226 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003227
Chris Mason39279cc2007-06-12 06:35:45 -04003228 path = btrfs_alloc_path();
3229 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04003230 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04003231
Chris Mason39279cc2007-06-12 06:35:45 -04003232 key.objectid = inode->i_ino;
3233 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003234 key.type = (u8)-1;
3235
Chris Mason85e21ba2008-01-29 15:11:36 -05003236search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003237 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003238 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003239 if (ret < 0) {
3240 err = ret;
3241 goto out;
3242 }
Chris Masond3977122009-01-05 21:25:51 -05003243
Chris Mason85e21ba2008-01-29 15:11:36 -05003244 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003245 /* there are no items in the tree for us to truncate, we're
3246 * done
3247 */
Yan, Zheng80825102009-11-12 09:35:36 +00003248 if (path->slots[0] == 0)
3249 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003250 path->slots[0]--;
3251 }
3252
Chris Masond3977122009-01-05 21:25:51 -05003253 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003254 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003255 leaf = path->nodes[0];
3256 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3257 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05003258 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003259
Chris Mason5f39d392007-10-15 16:14:19 -04003260 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003261 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003262
Chris Mason85e21ba2008-01-29 15:11:36 -05003263 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003264 break;
3265
Chris Mason5f39d392007-10-15 16:14:19 -04003266 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003267 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003268 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003269 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003270 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003271 encoding = btrfs_file_extent_compression(leaf, fi);
3272 encoding |= btrfs_file_extent_encryption(leaf, fi);
3273 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
3274
Chris Mason179e29e2007-11-01 11:28:41 -04003275 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003276 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003277 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003278 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003279 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003280 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003281 }
Yan008630c2007-11-07 13:31:09 -05003282 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003283 }
Yan, Zheng80825102009-11-12 09:35:36 +00003284 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003285 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003286 } else {
3287 if (item_end < new_size)
3288 break;
3289 if (found_key.offset >= new_size)
3290 del_item = 1;
3291 else
3292 del_item = 0;
3293 }
Chris Mason39279cc2007-06-12 06:35:45 -04003294 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003295 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003296 if (found_type != BTRFS_EXTENT_DATA_KEY)
3297 goto delete;
3298
3299 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003300 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003301 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003302 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003303 u64 orig_num_bytes =
3304 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003305 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003306 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003307 extent_num_bytes = extent_num_bytes &
3308 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003309 btrfs_set_file_extent_num_bytes(leaf, fi,
3310 extent_num_bytes);
3311 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003312 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003313 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003314 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003315 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003316 } else {
Chris Masondb945352007-10-15 16:15:53 -04003317 extent_num_bytes =
3318 btrfs_file_extent_disk_num_bytes(leaf,
3319 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003320 extent_offset = found_key.offset -
3321 btrfs_file_extent_offset(leaf, fi);
3322
Chris Mason39279cc2007-06-12 06:35:45 -04003323 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003324 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003325 if (extent_start != 0) {
3326 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003327 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003328 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003329 }
3330 }
Chris Mason90692182008-02-08 13:49:28 -05003331 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003332 /*
3333 * we can't truncate inline items that have had
3334 * special encodings
3335 */
3336 if (!del_item &&
3337 btrfs_file_extent_compression(leaf, fi) == 0 &&
3338 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3339 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003340 u32 size = new_size - found_key.offset;
3341
3342 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003343 inode_sub_bytes(inode, item_end + 1 -
3344 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003345 }
3346 size =
3347 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003348 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003349 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003350 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003351 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003352 inode_sub_bytes(inode, item_end + 1 -
3353 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003354 }
Chris Mason39279cc2007-06-12 06:35:45 -04003355 }
Chris Mason179e29e2007-11-01 11:28:41 -04003356delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003357 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003358 if (!pending_del_nr) {
3359 /* no pending yet, add ourselves */
3360 pending_del_slot = path->slots[0];
3361 pending_del_nr = 1;
3362 } else if (pending_del_nr &&
3363 path->slots[0] + 1 == pending_del_slot) {
3364 /* hop on the pending chunk */
3365 pending_del_nr++;
3366 pending_del_slot = path->slots[0];
3367 } else {
Chris Masond3977122009-01-05 21:25:51 -05003368 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003369 }
Chris Mason39279cc2007-06-12 06:35:45 -04003370 } else {
3371 break;
3372 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003373 if (found_extent && (root->ref_cows ||
3374 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003375 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003376 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003377 extent_num_bytes, 0,
3378 btrfs_header_owner(leaf),
3379 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003380 BUG_ON(ret);
3381 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003382
Yan, Zheng80825102009-11-12 09:35:36 +00003383 if (found_type == BTRFS_INODE_ITEM_KEY)
3384 break;
3385
3386 if (path->slots[0] == 0 ||
3387 path->slots[0] != pending_del_slot) {
3388 if (root->ref_cows) {
3389 err = -EAGAIN;
3390 goto out;
3391 }
3392 if (pending_del_nr) {
3393 ret = btrfs_del_items(trans, root, path,
3394 pending_del_slot,
3395 pending_del_nr);
3396 BUG_ON(ret);
3397 pending_del_nr = 0;
3398 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003399 btrfs_release_path(root, path);
3400 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003401 } else {
3402 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003403 }
Chris Mason39279cc2007-06-12 06:35:45 -04003404 }
Yan, Zheng80825102009-11-12 09:35:36 +00003405out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003406 if (pending_del_nr) {
3407 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3408 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003409 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003410 }
Chris Mason39279cc2007-06-12 06:35:45 -04003411 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003412 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003413}
3414
Chris Masona52d9a82007-08-27 16:49:44 -04003415/*
3416 * taken from block_truncate_page, but does cow as it zeros out
3417 * any bytes left in the last page in the file.
3418 */
3419static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3420{
3421 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003422 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003423 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3424 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003425 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003426 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003427 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003428 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3429 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3430 struct page *page;
3431 int ret = 0;
3432 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003433 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003434
3435 if ((offset & (blocksize - 1)) == 0)
3436 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003437 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003438 if (ret)
3439 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003440
3441 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003442again:
Chris Masona52d9a82007-08-27 16:49:44 -04003443 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003444 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003445 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003446 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003447 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003448
3449 page_start = page_offset(page);
3450 page_end = page_start + PAGE_CACHE_SIZE - 1;
3451
Chris Masona52d9a82007-08-27 16:49:44 -04003452 if (!PageUptodate(page)) {
3453 ret = btrfs_readpage(NULL, page);
3454 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003455 if (page->mapping != mapping) {
3456 unlock_page(page);
3457 page_cache_release(page);
3458 goto again;
3459 }
Chris Masona52d9a82007-08-27 16:49:44 -04003460 if (!PageUptodate(page)) {
3461 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003462 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003463 }
3464 }
Chris Mason211c17f2008-05-15 09:13:45 -04003465 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003466
Josef Bacik2ac55d42010-02-03 19:33:23 +00003467 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3468 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003469 set_page_extent_mapped(page);
3470
3471 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3472 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003473 unlock_extent_cached(io_tree, page_start, page_end,
3474 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003475 unlock_page(page);
3476 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003477 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003478 btrfs_put_ordered_extent(ordered);
3479 goto again;
3480 }
3481
Josef Bacik2ac55d42010-02-03 19:33:23 +00003482 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003483 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003484 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003485
Josef Bacik2ac55d42010-02-03 19:33:23 +00003486 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3487 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003488 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003489 unlock_extent_cached(io_tree, page_start, page_end,
3490 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003491 goto out_unlock;
3492 }
3493
Chris Masone6dcd2d2008-07-17 12:53:50 -04003494 ret = 0;
3495 if (offset != PAGE_CACHE_SIZE) {
3496 kaddr = kmap(page);
3497 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3498 flush_dcache_page(page);
3499 kunmap(page);
3500 }
Chris Mason247e7432008-07-17 12:53:51 -04003501 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003502 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003503 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3504 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003505
Chris Mason89642222008-07-24 09:41:53 -04003506out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003507 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003508 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003509 unlock_page(page);
3510 page_cache_release(page);
3511out:
3512 return ret;
3513}
3514
Yan Zheng9036c102008-10-30 14:19:41 -04003515int btrfs_cont_expand(struct inode *inode, loff_t size)
3516{
3517 struct btrfs_trans_handle *trans;
3518 struct btrfs_root *root = BTRFS_I(inode)->root;
3519 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003520 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003521 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003522 u64 mask = root->sectorsize - 1;
3523 u64 hole_start = (inode->i_size + mask) & ~mask;
3524 u64 block_end = (size + mask) & ~mask;
3525 u64 last_byte;
3526 u64 cur_offset;
3527 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003528 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003529
3530 if (size <= hole_start)
3531 return 0;
3532
Yan Zheng9036c102008-10-30 14:19:41 -04003533 while (1) {
3534 struct btrfs_ordered_extent *ordered;
3535 btrfs_wait_ordered_range(inode, hole_start,
3536 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003537 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3538 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003539 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3540 if (!ordered)
3541 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003542 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3543 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003544 btrfs_put_ordered_extent(ordered);
3545 }
3546
Yan Zheng9036c102008-10-30 14:19:41 -04003547 cur_offset = hole_start;
3548 while (1) {
3549 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3550 block_end - cur_offset, 0);
3551 BUG_ON(IS_ERR(em) || !em);
3552 last_byte = min(extent_map_end(em), block_end);
3553 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003554 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003555 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003556 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003557
Yan, Zhenga22285a2010-05-16 10:48:46 -04003558 trans = btrfs_start_transaction(root, 2);
3559 if (IS_ERR(trans)) {
3560 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003561 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003562 }
Yan, Zheng80825102009-11-12 09:35:36 +00003563 btrfs_set_trans_block_group(trans, inode);
3564
3565 err = btrfs_drop_extents(trans, inode, cur_offset,
3566 cur_offset + hole_size,
3567 &hint_byte, 1);
3568 BUG_ON(err);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003569
Yan Zheng9036c102008-10-30 14:19:41 -04003570 err = btrfs_insert_file_extent(trans, root,
3571 inode->i_ino, cur_offset, 0,
3572 0, hole_size, 0, hole_size,
3573 0, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003574 BUG_ON(err);
3575
Yan Zheng9036c102008-10-30 14:19:41 -04003576 btrfs_drop_extent_cache(inode, hole_start,
3577 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003578
3579 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003580 }
3581 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003582 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003583 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003584 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003585 break;
3586 }
3587
Yan, Zhenga22285a2010-05-16 10:48:46 -04003588 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003589 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3590 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003591 return err;
3592}
3593
Yan, Zheng80825102009-11-12 09:35:36 +00003594static int btrfs_setattr_size(struct inode *inode, struct iattr *attr)
3595{
3596 struct btrfs_root *root = BTRFS_I(inode)->root;
3597 struct btrfs_trans_handle *trans;
3598 unsigned long nr;
3599 int ret;
3600
3601 if (attr->ia_size == inode->i_size)
3602 return 0;
3603
3604 if (attr->ia_size > inode->i_size) {
3605 unsigned long limit;
3606 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
3607 if (attr->ia_size > inode->i_sb->s_maxbytes)
3608 return -EFBIG;
3609 if (limit != RLIM_INFINITY && attr->ia_size > limit) {
3610 send_sig(SIGXFSZ, current, 0);
3611 return -EFBIG;
3612 }
3613 }
3614
Yan, Zhengd68fc572010-05-16 10:49:58 -04003615 trans = btrfs_start_transaction(root, 5);
3616 if (IS_ERR(trans))
3617 return PTR_ERR(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00003618
Yan, Zheng80825102009-11-12 09:35:36 +00003619 btrfs_set_trans_block_group(trans, inode);
3620
3621 ret = btrfs_orphan_add(trans, inode);
3622 BUG_ON(ret);
3623
3624 nr = trans->blocks_used;
3625 btrfs_end_transaction(trans, root);
Yan, Zheng80825102009-11-12 09:35:36 +00003626 btrfs_btree_balance_dirty(root, nr);
3627
3628 if (attr->ia_size > inode->i_size) {
3629 ret = btrfs_cont_expand(inode, attr->ia_size);
3630 if (ret) {
3631 btrfs_truncate(inode);
3632 return ret;
3633 }
3634
3635 i_size_write(inode, attr->ia_size);
3636 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
3637
Yan, Zhengd68fc572010-05-16 10:49:58 -04003638 trans = btrfs_start_transaction(root, 0);
3639 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003640 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003641 trans->block_rsv = root->orphan_block_rsv;
3642 BUG_ON(!trans->block_rsv);
Yan, Zheng80825102009-11-12 09:35:36 +00003643
3644 ret = btrfs_update_inode(trans, root, inode);
3645 BUG_ON(ret);
3646 if (inode->i_nlink > 0) {
3647 ret = btrfs_orphan_del(trans, inode);
3648 BUG_ON(ret);
3649 }
3650 nr = trans->blocks_used;
3651 btrfs_end_transaction(trans, root);
3652 btrfs_btree_balance_dirty(root, nr);
3653 return 0;
3654 }
3655
3656 /*
3657 * We're truncating a file that used to have good data down to
3658 * zero. Make sure it gets into the ordered flush list so that
3659 * any new writes get down to disk quickly.
3660 */
3661 if (attr->ia_size == 0)
3662 BTRFS_I(inode)->ordered_data_close = 1;
3663
3664 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3665 ret = vmtruncate(inode, attr->ia_size);
3666 BUG_ON(ret);
3667
3668 return 0;
3669}
3670
Chris Mason39279cc2007-06-12 06:35:45 -04003671static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3672{
3673 struct inode *inode = dentry->d_inode;
3674 int err;
3675
3676 err = inode_change_ok(inode, attr);
3677 if (err)
3678 return err;
3679
Chris Mason5a3f23d2009-03-31 13:27:11 -04003680 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Yan, Zheng80825102009-11-12 09:35:36 +00003681 err = btrfs_setattr_size(inode, attr);
3682 if (err)
3683 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003684 }
Yan Zheng9036c102008-10-30 14:19:41 -04003685
Christoph Hellwig10257742010-06-04 11:30:02 +02003686 if (attr->ia_valid) {
3687 setattr_copy(inode, attr);
3688 mark_inode_dirty(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003689
Christoph Hellwig10257742010-06-04 11:30:02 +02003690 if (attr->ia_valid & ATTR_MODE)
3691 err = btrfs_acl_chmod(inode);
3692 }
3693
Chris Mason39279cc2007-06-12 06:35:45 -04003694 return err;
3695}
Chris Mason61295eb2008-01-14 16:24:38 -05003696
Al Virobd555972010-06-07 11:35:40 -04003697void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003698{
3699 struct btrfs_trans_handle *trans;
3700 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003701 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003702 int ret;
3703
3704 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003705 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
3706 root == root->fs_info->tree_root))
Al Virobd555972010-06-07 11:35:40 -04003707 goto no_delete;
3708
Chris Mason39279cc2007-06-12 06:35:45 -04003709 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003710 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003711 goto no_delete;
3712 }
Al Virobd555972010-06-07 11:35:40 -04003713 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003714 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003715
Yan, Zhengc71bf092009-11-12 09:34:40 +00003716 if (root->fs_info->log_root_recovering) {
3717 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3718 goto no_delete;
3719 }
3720
Yan, Zheng76dda932009-09-21 16:00:26 -04003721 if (inode->i_nlink > 0) {
3722 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3723 goto no_delete;
3724 }
3725
Chris Masondbe674a2008-07-17 12:54:05 -04003726 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003727
Yan, Zheng80825102009-11-12 09:35:36 +00003728 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003729 trans = btrfs_start_transaction(root, 0);
3730 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003731 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003732 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003733
Yan, Zhengd68fc572010-05-16 10:49:58 -04003734 ret = btrfs_block_rsv_check(trans, root,
3735 root->orphan_block_rsv, 0, 5);
3736 if (ret) {
3737 BUG_ON(ret != -EAGAIN);
3738 ret = btrfs_commit_transaction(trans, root);
3739 BUG_ON(ret);
3740 continue;
3741 }
3742
3743 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003744 if (ret != -EAGAIN)
3745 break;
3746
3747 nr = trans->blocks_used;
3748 btrfs_end_transaction(trans, root);
3749 trans = NULL;
3750 btrfs_btree_balance_dirty(root, nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003751
Josef Bacik7b128762008-07-24 12:17:14 -04003752 }
3753
Yan, Zheng80825102009-11-12 09:35:36 +00003754 if (ret == 0) {
3755 ret = btrfs_orphan_del(trans, inode);
3756 BUG_ON(ret);
3757 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003758
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003759 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003760 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003761 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003762no_delete:
Al Virobd555972010-06-07 11:35:40 -04003763 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003764 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003765}
3766
3767/*
3768 * this returns the key found in the dir entry in the location pointer.
3769 * If no dir entries were found, location->objectid is 0.
3770 */
3771static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3772 struct btrfs_key *location)
3773{
3774 const char *name = dentry->d_name.name;
3775 int namelen = dentry->d_name.len;
3776 struct btrfs_dir_item *di;
3777 struct btrfs_path *path;
3778 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003779 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003780
3781 path = btrfs_alloc_path();
3782 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003783
Chris Mason39279cc2007-06-12 06:35:45 -04003784 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3785 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003786 if (IS_ERR(di))
3787 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003788
3789 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003790 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003791
Chris Mason5f39d392007-10-15 16:14:19 -04003792 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003793out:
Chris Mason39279cc2007-06-12 06:35:45 -04003794 btrfs_free_path(path);
3795 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003796out_err:
3797 location->objectid = 0;
3798 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003799}
3800
3801/*
3802 * when we hit a tree root in a directory, the btrfs part of the inode
3803 * needs to be changed to reflect the root directory of the tree root. This
3804 * is kind of like crossing a mount point.
3805 */
3806static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003807 struct inode *dir,
3808 struct dentry *dentry,
3809 struct btrfs_key *location,
3810 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003811{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003812 struct btrfs_path *path;
3813 struct btrfs_root *new_root;
3814 struct btrfs_root_ref *ref;
3815 struct extent_buffer *leaf;
3816 int ret;
3817 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003818
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003819 path = btrfs_alloc_path();
3820 if (!path) {
3821 err = -ENOMEM;
3822 goto out;
3823 }
Chris Mason39279cc2007-06-12 06:35:45 -04003824
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003825 err = -ENOENT;
3826 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3827 BTRFS_I(dir)->root->root_key.objectid,
3828 location->objectid);
3829 if (ret) {
3830 if (ret < 0)
3831 err = ret;
3832 goto out;
3833 }
Chris Mason39279cc2007-06-12 06:35:45 -04003834
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003835 leaf = path->nodes[0];
3836 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3837 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3838 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3839 goto out;
3840
3841 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3842 (unsigned long)(ref + 1),
3843 dentry->d_name.len);
3844 if (ret)
3845 goto out;
3846
3847 btrfs_release_path(root->fs_info->tree_root, path);
3848
3849 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3850 if (IS_ERR(new_root)) {
3851 err = PTR_ERR(new_root);
3852 goto out;
3853 }
3854
3855 if (btrfs_root_refs(&new_root->root_item) == 0) {
3856 err = -ENOENT;
3857 goto out;
3858 }
3859
3860 *sub_root = new_root;
3861 location->objectid = btrfs_root_dirid(&new_root->root_item);
3862 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003863 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003864 err = 0;
3865out:
3866 btrfs_free_path(path);
3867 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003868}
3869
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003870static void inode_tree_add(struct inode *inode)
3871{
3872 struct btrfs_root *root = BTRFS_I(inode)->root;
3873 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003874 struct rb_node **p;
3875 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003876again:
3877 p = &root->inode_tree.rb_node;
3878 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003879
Al Viro1d3382cb2010-10-23 15:19:20 -04003880 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003881 return;
3882
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003883 spin_lock(&root->inode_lock);
3884 while (*p) {
3885 parent = *p;
3886 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3887
3888 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003889 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003890 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003891 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003892 else {
3893 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003894 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003895 rb_erase(parent, &root->inode_tree);
3896 RB_CLEAR_NODE(parent);
3897 spin_unlock(&root->inode_lock);
3898 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003899 }
3900 }
3901 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3902 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3903 spin_unlock(&root->inode_lock);
3904}
3905
3906static void inode_tree_del(struct inode *inode)
3907{
3908 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003909 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003910
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003911 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003912 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003913 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003914 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003915 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003916 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003917 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003918
Josef Bacik0af3d002010-06-21 14:48:16 -04003919 /*
3920 * Free space cache has inodes in the tree root, but the tree root has a
3921 * root_refs of 0, so this could end up dropping the tree root as a
3922 * snapshot, so we need the extra !root->fs_info->tree_root check to
3923 * make sure we don't drop it.
3924 */
3925 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3926 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003927 synchronize_srcu(&root->fs_info->subvol_srcu);
3928 spin_lock(&root->inode_lock);
3929 empty = RB_EMPTY_ROOT(&root->inode_tree);
3930 spin_unlock(&root->inode_lock);
3931 if (empty)
3932 btrfs_add_dead_root(root);
3933 }
3934}
3935
3936int btrfs_invalidate_inodes(struct btrfs_root *root)
3937{
3938 struct rb_node *node;
3939 struct rb_node *prev;
3940 struct btrfs_inode *entry;
3941 struct inode *inode;
3942 u64 objectid = 0;
3943
3944 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3945
3946 spin_lock(&root->inode_lock);
3947again:
3948 node = root->inode_tree.rb_node;
3949 prev = NULL;
3950 while (node) {
3951 prev = node;
3952 entry = rb_entry(node, struct btrfs_inode, rb_node);
3953
3954 if (objectid < entry->vfs_inode.i_ino)
3955 node = node->rb_left;
3956 else if (objectid > entry->vfs_inode.i_ino)
3957 node = node->rb_right;
3958 else
3959 break;
3960 }
3961 if (!node) {
3962 while (prev) {
3963 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3964 if (objectid <= entry->vfs_inode.i_ino) {
3965 node = prev;
3966 break;
3967 }
3968 prev = rb_next(prev);
3969 }
3970 }
3971 while (node) {
3972 entry = rb_entry(node, struct btrfs_inode, rb_node);
3973 objectid = entry->vfs_inode.i_ino + 1;
3974 inode = igrab(&entry->vfs_inode);
3975 if (inode) {
3976 spin_unlock(&root->inode_lock);
3977 if (atomic_read(&inode->i_count) > 1)
3978 d_prune_aliases(inode);
3979 /*
Al Viro45321ac2010-06-07 13:43:19 -04003980 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04003981 * the inode cache when its usage count
3982 * hits zero.
3983 */
3984 iput(inode);
3985 cond_resched();
3986 spin_lock(&root->inode_lock);
3987 goto again;
3988 }
3989
3990 if (cond_resched_lock(&root->inode_lock))
3991 goto again;
3992
3993 node = rb_next(node);
3994 }
3995 spin_unlock(&root->inode_lock);
3996 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003997}
3998
Chris Masone02119d2008-09-05 16:13:11 -04003999static int btrfs_init_locked_inode(struct inode *inode, void *p)
4000{
4001 struct btrfs_iget_args *args = p;
4002 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004003 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05004004 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004005 return 0;
4006}
4007
4008static int btrfs_find_actor(struct inode *inode, void *opaque)
4009{
4010 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05004011 return args->ino == inode->i_ino &&
4012 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004013}
4014
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004015static struct inode *btrfs_iget_locked(struct super_block *s,
4016 u64 objectid,
4017 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004018{
4019 struct inode *inode;
4020 struct btrfs_iget_args args;
4021 args.ino = objectid;
4022 args.root = root;
4023
4024 inode = iget5_locked(s, objectid, btrfs_find_actor,
4025 btrfs_init_locked_inode,
4026 (void *)&args);
4027 return inode;
4028}
4029
Balaji Rao1a54ef82008-07-21 02:01:04 +05304030/* Get an inode object given its location and corresponding root.
4031 * Returns in *is_new if the inode was read from disk
4032 */
4033struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004034 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304035{
4036 struct inode *inode;
4037
4038 inode = btrfs_iget_locked(s, location->objectid, root);
4039 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004040 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304041
4042 if (inode->i_state & I_NEW) {
4043 BTRFS_I(inode)->root = root;
4044 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4045 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004046
4047 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304048 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00004049 if (new)
4050 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05304051 }
4052
4053 return inode;
4054}
4055
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004056static struct inode *new_simple_dir(struct super_block *s,
4057 struct btrfs_key *key,
4058 struct btrfs_root *root)
4059{
4060 struct inode *inode = new_inode(s);
4061
4062 if (!inode)
4063 return ERR_PTR(-ENOMEM);
4064
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004065 BTRFS_I(inode)->root = root;
4066 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
4067 BTRFS_I(inode)->dummy_inode = 1;
4068
4069 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
4070 inode->i_op = &simple_dir_inode_operations;
4071 inode->i_fop = &simple_dir_operations;
4072 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4073 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4074
4075 return inode;
4076}
4077
Chris Mason3de45862008-11-17 21:02:50 -05004078struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004079{
Chris Masond3977122009-01-05 21:25:51 -05004080 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004081 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004082 struct btrfs_root *sub_root = root;
4083 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004084 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004085 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004086
Nick Pigginfb045ad2011-01-07 17:49:55 +11004087 d_set_d_op(dentry, &btrfs_dentry_operations);
Yan, Zheng76dda932009-09-21 16:00:26 -04004088
Chris Mason39279cc2007-06-12 06:35:45 -04004089 if (dentry->d_name.len > BTRFS_NAME_LEN)
4090 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004091
Chris Mason39279cc2007-06-12 06:35:45 -04004092 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04004093
Chris Mason39279cc2007-06-12 06:35:45 -04004094 if (ret < 0)
4095 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004096
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004097 if (location.objectid == 0)
4098 return NULL;
4099
4100 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004101 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004102 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004103 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004104
4105 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4106
Yan, Zheng76dda932009-09-21 16:00:26 -04004107 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004108 ret = fixup_tree_root_location(root, dir, dentry,
4109 &location, &sub_root);
4110 if (ret < 0) {
4111 if (ret != -ENOENT)
4112 inode = ERR_PTR(ret);
4113 else
4114 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4115 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004116 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004117 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004118 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4119
Yan, Zhengc71bf092009-11-12 09:34:40 +00004120 if (root != sub_root) {
4121 down_read(&root->fs_info->cleanup_work_sem);
4122 if (!(inode->i_sb->s_flags & MS_RDONLY))
4123 btrfs_orphan_cleanup(sub_root);
4124 up_read(&root->fs_info->cleanup_work_sem);
4125 }
4126
Chris Mason3de45862008-11-17 21:02:50 -05004127 return inode;
4128}
4129
Nick Pigginfe15ce42011-01-07 17:49:23 +11004130static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004131{
4132 struct btrfs_root *root;
4133
Yan, Zhengefefb142009-10-09 09:25:16 -04004134 if (!dentry->d_inode && !IS_ROOT(dentry))
4135 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04004136
Yan, Zhengefefb142009-10-09 09:25:16 -04004137 if (dentry->d_inode) {
4138 root = BTRFS_I(dentry->d_inode)->root;
4139 if (btrfs_root_refs(&root->root_item) == 0)
4140 return 1;
4141 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004142 return 0;
4143}
4144
Chris Mason3de45862008-11-17 21:02:50 -05004145static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4146 struct nameidata *nd)
4147{
4148 struct inode *inode;
4149
Chris Mason3de45862008-11-17 21:02:50 -05004150 inode = btrfs_lookup_dentry(dir, dentry);
4151 if (IS_ERR(inode))
4152 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004153
Chris Mason39279cc2007-06-12 06:35:45 -04004154 return d_splice_alias(inode, dentry);
4155}
4156
Chris Mason39279cc2007-06-12 06:35:45 -04004157static unsigned char btrfs_filetype_table[] = {
4158 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4159};
4160
David Woodhousecbdf5a22008-08-06 19:42:33 +01004161static int btrfs_real_readdir(struct file *filp, void *dirent,
4162 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004163{
Chris Mason6da6aba2007-12-18 16:15:09 -05004164 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004165 struct btrfs_root *root = BTRFS_I(inode)->root;
4166 struct btrfs_item *item;
4167 struct btrfs_dir_item *di;
4168 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004169 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004170 struct btrfs_path *path;
4171 int ret;
4172 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04004173 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004174 int slot;
4175 int advance;
4176 unsigned char d_type;
4177 int over = 0;
4178 u32 di_cur;
4179 u32 di_total;
4180 u32 di_len;
4181 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004182 char tmp_name[32];
4183 char *name_ptr;
4184 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04004185
4186 /* FIXME, use a real flag for deciding about the key type */
4187 if (root->fs_info->tree_root == root)
4188 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004189
Chris Mason39544012007-12-12 14:38:19 -05004190 /* special case for "." */
4191 if (filp->f_pos == 0) {
4192 over = filldir(dirent, ".", 1,
4193 1, inode->i_ino,
4194 DT_DIR);
4195 if (over)
4196 return 0;
4197 filp->f_pos = 1;
4198 }
Chris Mason39544012007-12-12 14:38:19 -05004199 /* special case for .., just use the back ref */
4200 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004201 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004202 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004203 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004204 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004205 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004206 filp->f_pos = 2;
4207 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004208 path = btrfs_alloc_path();
4209 path->reada = 2;
4210
Chris Mason39279cc2007-06-12 06:35:45 -04004211 btrfs_set_key_type(&key, key_type);
4212 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01004213 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04004214
Chris Mason39279cc2007-06-12 06:35:45 -04004215 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4216 if (ret < 0)
4217 goto err;
4218 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01004219
4220 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004221 leaf = path->nodes[0];
4222 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004223 slot = path->slots[0];
4224 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01004225 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004226 ret = btrfs_next_leaf(root, path);
4227 if (ret)
4228 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004229 leaf = path->nodes[0];
4230 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004231 slot = path->slots[0];
4232 } else {
4233 slot++;
4234 path->slots[0]++;
4235 }
4236 }
Chris Mason3de45862008-11-17 21:02:50 -05004237
Chris Mason39279cc2007-06-12 06:35:45 -04004238 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004239 item = btrfs_item_nr(leaf, slot);
4240 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4241
4242 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004243 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004244 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004245 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004246 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04004247 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04004248
4249 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01004250
Chris Mason39279cc2007-06-12 06:35:45 -04004251 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4252 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004253 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004254
4255 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004256 struct btrfs_key location;
4257
4258 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004259 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004260 name_ptr = tmp_name;
4261 } else {
4262 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004263 if (!name_ptr) {
4264 ret = -ENOMEM;
4265 goto err;
4266 }
Chris Mason5f39d392007-10-15 16:14:19 -04004267 }
4268 read_extent_buffer(leaf, name_ptr,
4269 (unsigned long)(di + 1), name_len);
4270
4271 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4272 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004273
4274 /* is this a reference to our own snapshot? If so
4275 * skip it
4276 */
4277 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4278 location.objectid == root->root_key.objectid) {
4279 over = 0;
4280 goto skip;
4281 }
Chris Mason5f39d392007-10-15 16:14:19 -04004282 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004283 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004284 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004285
Chris Mason3de45862008-11-17 21:02:50 -05004286skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004287 if (name_ptr != tmp_name)
4288 kfree(name_ptr);
4289
Chris Mason39279cc2007-06-12 06:35:45 -04004290 if (over)
4291 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004292 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004293 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004294 di_cur += di_len;
4295 di = (struct btrfs_dir_item *)((char *)di + di_len);
4296 }
4297 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004298
4299 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004300 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004301 /*
4302 * 32-bit glibc will use getdents64, but then strtol -
4303 * so the last number we can serve is this.
4304 */
4305 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004306 else
4307 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004308nopos:
4309 ret = 0;
4310err:
Chris Mason39279cc2007-06-12 06:35:45 -04004311 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004312 return ret;
4313}
4314
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004315int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004316{
4317 struct btrfs_root *root = BTRFS_I(inode)->root;
4318 struct btrfs_trans_handle *trans;
4319 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004320 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004321
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004322 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004323 return 0;
4324
Josef Bacik0af3d002010-06-21 14:48:16 -04004325 smp_mb();
4326 nolock = (root->fs_info->closing && root == root->fs_info->tree_root);
4327
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004328 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004329 if (nolock)
4330 trans = btrfs_join_transaction_nolock(root, 1);
4331 else
4332 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004333 btrfs_set_trans_block_group(trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04004334 if (nolock)
4335 ret = btrfs_end_transaction_nolock(trans, root);
4336 else
4337 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004338 }
4339 return ret;
4340}
4341
4342/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004343 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004344 * inode changes. But, it is most likely to find the inode in cache.
4345 * FIXME, needs more benchmarking...there are no reasons other than performance
4346 * to keep or drop this code.
4347 */
4348void btrfs_dirty_inode(struct inode *inode)
4349{
4350 struct btrfs_root *root = BTRFS_I(inode)->root;
4351 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004352 int ret;
4353
4354 if (BTRFS_I(inode)->dummy_inode)
4355 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004356
Chris Masonf9295742008-07-17 12:54:14 -04004357 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004358 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004359
4360 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004361 if (ret && ret == -ENOSPC) {
4362 /* whoops, lets try again with the full transaction */
4363 btrfs_end_transaction(trans, root);
4364 trans = btrfs_start_transaction(root, 1);
Chris Mason9aeead72010-05-27 10:23:00 -04004365 if (IS_ERR(trans)) {
4366 if (printk_ratelimit()) {
4367 printk(KERN_ERR "btrfs: fail to "
4368 "dirty inode %lu error %ld\n",
4369 inode->i_ino, PTR_ERR(trans));
4370 }
4371 return;
4372 }
Chris Mason94b60442010-05-26 11:02:00 -04004373 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004374
Chris Mason94b60442010-05-26 11:02:00 -04004375 ret = btrfs_update_inode(trans, root, inode);
4376 if (ret) {
Chris Mason9aeead72010-05-27 10:23:00 -04004377 if (printk_ratelimit()) {
4378 printk(KERN_ERR "btrfs: fail to "
4379 "dirty inode %lu error %d\n",
4380 inode->i_ino, ret);
4381 }
Chris Mason94b60442010-05-26 11:02:00 -04004382 }
4383 }
Chris Mason39279cc2007-06-12 06:35:45 -04004384 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004385}
4386
Chris Masond352ac62008-09-29 15:18:18 -04004387/*
4388 * find the highest existing sequence number in a directory
4389 * and then set the in-memory index_cnt variable to reflect
4390 * free sequence numbers
4391 */
Josef Bacikaec74772008-07-24 12:12:38 -04004392static int btrfs_set_inode_index_count(struct inode *inode)
4393{
4394 struct btrfs_root *root = BTRFS_I(inode)->root;
4395 struct btrfs_key key, found_key;
4396 struct btrfs_path *path;
4397 struct extent_buffer *leaf;
4398 int ret;
4399
4400 key.objectid = inode->i_ino;
4401 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4402 key.offset = (u64)-1;
4403
4404 path = btrfs_alloc_path();
4405 if (!path)
4406 return -ENOMEM;
4407
4408 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4409 if (ret < 0)
4410 goto out;
4411 /* FIXME: we should be able to handle this */
4412 if (ret == 0)
4413 goto out;
4414 ret = 0;
4415
4416 /*
4417 * MAGIC NUMBER EXPLANATION:
4418 * since we search a directory based on f_pos we have to start at 2
4419 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4420 * else has to start at 2
4421 */
4422 if (path->slots[0] == 0) {
4423 BTRFS_I(inode)->index_cnt = 2;
4424 goto out;
4425 }
4426
4427 path->slots[0]--;
4428
4429 leaf = path->nodes[0];
4430 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4431
4432 if (found_key.objectid != inode->i_ino ||
4433 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4434 BTRFS_I(inode)->index_cnt = 2;
4435 goto out;
4436 }
4437
4438 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4439out:
4440 btrfs_free_path(path);
4441 return ret;
4442}
4443
Chris Masond352ac62008-09-29 15:18:18 -04004444/*
4445 * helper to find a free sequence number in a given directory. This current
4446 * code is very simple, later versions will do smarter things in the btree
4447 */
Chris Mason3de45862008-11-17 21:02:50 -05004448int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004449{
4450 int ret = 0;
4451
4452 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4453 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004454 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004455 return ret;
4456 }
4457
Chris Mason00e4e6b2008-08-05 11:18:09 -04004458 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004459 BTRFS_I(dir)->index_cnt++;
4460
4461 return ret;
4462}
4463
Chris Mason39279cc2007-06-12 06:35:45 -04004464static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4465 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004466 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004467 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004468 u64 ref_objectid, u64 objectid,
4469 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004470{
4471 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004472 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004473 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004474 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004475 struct btrfs_inode_ref *ref;
4476 struct btrfs_key key[2];
4477 u32 sizes[2];
4478 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004479 int ret;
4480 int owner;
4481
Chris Mason5f39d392007-10-15 16:14:19 -04004482 path = btrfs_alloc_path();
4483 BUG_ON(!path);
4484
Chris Mason39279cc2007-06-12 06:35:45 -04004485 inode = new_inode(root->fs_info->sb);
4486 if (!inode)
4487 return ERR_PTR(-ENOMEM);
4488
Josef Bacikaec74772008-07-24 12:12:38 -04004489 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004490 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004491 if (ret) {
4492 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004493 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004494 }
Josef Bacikaec74772008-07-24 12:12:38 -04004495 }
4496 /*
4497 * index_cnt is ignored for everything but a dir,
4498 * btrfs_get_inode_index_count has an explanation for the magic
4499 * number
4500 */
4501 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004502 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004503 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004504 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004505 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004506
Chris Mason39279cc2007-06-12 06:35:45 -04004507 if (mode & S_IFDIR)
4508 owner = 0;
4509 else
4510 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004511 BTRFS_I(inode)->block_group =
4512 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004513
4514 key[0].objectid = objectid;
4515 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4516 key[0].offset = 0;
4517
4518 key[1].objectid = objectid;
4519 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4520 key[1].offset = ref_objectid;
4521
4522 sizes[0] = sizeof(struct btrfs_inode_item);
4523 sizes[1] = name_len + sizeof(*ref);
4524
Chris Masonb9473432009-03-13 11:00:37 -04004525 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004526 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4527 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004528 goto fail;
4529
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004530 inode_init_owner(inode, dir, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04004531 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004532 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004533 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004534 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4535 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004536 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004537
4538 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4539 struct btrfs_inode_ref);
4540 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004541 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004542 ptr = (unsigned long)(ref + 1);
4543 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4544
Chris Mason5f39d392007-10-15 16:14:19 -04004545 btrfs_mark_buffer_dirty(path->nodes[0]);
4546 btrfs_free_path(path);
4547
Chris Mason39279cc2007-06-12 06:35:45 -04004548 location = &BTRFS_I(inode)->location;
4549 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004550 location->offset = 0;
4551 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4552
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004553 btrfs_inherit_iflags(inode, dir);
4554
Chris Mason94272162009-07-02 12:26:06 -04004555 if ((mode & S_IFREG)) {
4556 if (btrfs_test_opt(root, NODATASUM))
4557 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4558 if (btrfs_test_opt(root, NODATACOW))
4559 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4560 }
4561
Chris Mason39279cc2007-06-12 06:35:45 -04004562 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004563 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004564 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004565fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004566 if (dir)
4567 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004568 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004569 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004570 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004571}
4572
4573static inline u8 btrfs_inode_type(struct inode *inode)
4574{
4575 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4576}
4577
Chris Masond352ac62008-09-29 15:18:18 -04004578/*
4579 * utility function to add 'inode' into 'parent_inode' with
4580 * a give name and a given sequence number.
4581 * if 'add_backref' is true, also insert a backref from the
4582 * inode to the parent directory.
4583 */
Chris Masone02119d2008-09-05 16:13:11 -04004584int btrfs_add_link(struct btrfs_trans_handle *trans,
4585 struct inode *parent_inode, struct inode *inode,
4586 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004587{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004588 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004589 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004590 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004591
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004592 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4593 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4594 } else {
4595 key.objectid = inode->i_ino;
4596 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4597 key.offset = 0;
4598 }
Chris Mason39279cc2007-06-12 06:35:45 -04004599
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004600 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4601 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4602 key.objectid, root->root_key.objectid,
4603 parent_inode->i_ino,
4604 index, name, name_len);
4605 } else if (add_backref) {
4606 ret = btrfs_insert_inode_ref(trans, root,
4607 name, name_len, inode->i_ino,
4608 parent_inode->i_ino, index);
4609 }
4610
Chris Mason39279cc2007-06-12 06:35:45 -04004611 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004612 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4613 parent_inode->i_ino, &key,
4614 btrfs_inode_type(inode), index);
4615 BUG_ON(ret);
4616
Chris Masondbe674a2008-07-17 12:54:05 -04004617 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004618 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004619 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004620 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004621 }
4622 return ret;
4623}
4624
4625static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004626 struct inode *dir, struct dentry *dentry,
4627 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004628{
Josef Bacika1b075d2010-11-19 20:36:11 +00004629 int err = btrfs_add_link(trans, dir, inode,
4630 dentry->d_name.name, dentry->d_name.len,
4631 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004632 if (!err) {
4633 d_instantiate(dentry, inode);
4634 return 0;
4635 }
4636 if (err > 0)
4637 err = -EEXIST;
4638 return err;
4639}
4640
Josef Bacik618e21d2007-07-11 10:18:17 -04004641static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4642 int mode, dev_t rdev)
4643{
4644 struct btrfs_trans_handle *trans;
4645 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004646 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004647 int err;
4648 int drop_inode = 0;
4649 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004650 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004651 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004652
4653 if (!new_valid_dev(rdev))
4654 return -EINVAL;
4655
Yan, Zhenga22285a2010-05-16 10:48:46 -04004656 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4657 if (err)
4658 return err;
4659
Josef Bacik9ed74f22009-09-11 16:12:44 -04004660 /*
4661 * 2 for inode item and ref
4662 * 2 for dir items
4663 * 1 for xattr if selinux is on
4664 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004665 trans = btrfs_start_transaction(root, 5);
4666 if (IS_ERR(trans))
4667 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004668
Josef Bacik618e21d2007-07-11 10:18:17 -04004669 btrfs_set_trans_block_group(trans, dir);
4670
Josef Bacikaec74772008-07-24 12:12:38 -04004671 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004672 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004673 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004674 err = PTR_ERR(inode);
4675 if (IS_ERR(inode))
4676 goto out_unlock;
4677
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004678 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004679 if (err) {
4680 drop_inode = 1;
4681 goto out_unlock;
4682 }
4683
Josef Bacik618e21d2007-07-11 10:18:17 -04004684 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004685 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004686 if (err)
4687 drop_inode = 1;
4688 else {
4689 inode->i_op = &btrfs_special_inode_operations;
4690 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004691 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004692 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004693 btrfs_update_inode_block_group(trans, inode);
4694 btrfs_update_inode_block_group(trans, dir);
4695out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004696 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004697 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004698 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004699 if (drop_inode) {
4700 inode_dec_link_count(inode);
4701 iput(inode);
4702 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004703 return err;
4704}
4705
Chris Mason39279cc2007-06-12 06:35:45 -04004706static int btrfs_create(struct inode *dir, struct dentry *dentry,
4707 int mode, struct nameidata *nd)
4708{
4709 struct btrfs_trans_handle *trans;
4710 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004711 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004712 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004713 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004714 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004715 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004716 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004717
Yan, Zhenga22285a2010-05-16 10:48:46 -04004718 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4719 if (err)
4720 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004721 /*
4722 * 2 for inode item and ref
4723 * 2 for dir items
4724 * 1 for xattr if selinux is on
4725 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004726 trans = btrfs_start_transaction(root, 5);
4727 if (IS_ERR(trans))
4728 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004729
Chris Mason39279cc2007-06-12 06:35:45 -04004730 btrfs_set_trans_block_group(trans, dir);
4731
Josef Bacikaec74772008-07-24 12:12:38 -04004732 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004733 dentry->d_name.len, dir->i_ino, objectid,
4734 BTRFS_I(dir)->block_group, mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004735 err = PTR_ERR(inode);
4736 if (IS_ERR(inode))
4737 goto out_unlock;
4738
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004739 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004740 if (err) {
4741 drop_inode = 1;
4742 goto out_unlock;
4743 }
4744
Chris Mason39279cc2007-06-12 06:35:45 -04004745 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004746 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004747 if (err)
4748 drop_inode = 1;
4749 else {
4750 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004751 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004752 inode->i_fop = &btrfs_file_operations;
4753 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004754 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004755 }
Chris Mason39279cc2007-06-12 06:35:45 -04004756 btrfs_update_inode_block_group(trans, inode);
4757 btrfs_update_inode_block_group(trans, dir);
4758out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004759 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004760 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004761 if (drop_inode) {
4762 inode_dec_link_count(inode);
4763 iput(inode);
4764 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004765 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004766 return err;
4767}
4768
4769static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4770 struct dentry *dentry)
4771{
4772 struct btrfs_trans_handle *trans;
4773 struct btrfs_root *root = BTRFS_I(dir)->root;
4774 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004775 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004776 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004777 int err;
4778 int drop_inode = 0;
4779
4780 if (inode->i_nlink == 0)
4781 return -ENOENT;
4782
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004783 /* do not allow sys_link's with other subvols of the same device */
4784 if (root->objectid != BTRFS_I(inode)->root->objectid)
4785 return -EPERM;
4786
Josef Bacik9ed74f22009-09-11 16:12:44 -04004787 btrfs_inc_nlink(inode);
Josef Bacikbc1cbf12010-11-23 19:50:59 +00004788 inode->i_ctime = CURRENT_TIME;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004789
Chris Mason3de45862008-11-17 21:02:50 -05004790 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004791 if (err)
4792 goto fail;
4793
Yan, Zhenga22285a2010-05-16 10:48:46 -04004794 /*
4795 * 1 item for inode ref
4796 * 2 items for dir items
4797 */
4798 trans = btrfs_start_transaction(root, 3);
4799 if (IS_ERR(trans)) {
4800 err = PTR_ERR(trans);
4801 goto fail;
4802 }
Chris Mason5f39d392007-10-15 16:14:19 -04004803
Chris Mason39279cc2007-06-12 06:35:45 -04004804 btrfs_set_trans_block_group(trans, dir);
Al Viro7de9c6ee2010-10-23 11:11:40 -04004805 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004806
Josef Bacika1b075d2010-11-19 20:36:11 +00004807 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004808
Yan, Zhenga5719522009-09-24 09:17:31 -04004809 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004810 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004811 } else {
Josef Bacik6a912212010-11-20 09:48:00 +00004812 struct dentry *parent = dget_parent(dentry);
Yan, Zhenga5719522009-09-24 09:17:31 -04004813 btrfs_update_inode_block_group(trans, dir);
4814 err = btrfs_update_inode(trans, root, inode);
4815 BUG_ON(err);
Josef Bacik6a912212010-11-20 09:48:00 +00004816 btrfs_log_new_name(trans, inode, NULL, parent);
4817 dput(parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004818 }
Chris Mason39279cc2007-06-12 06:35:45 -04004819
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004820 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004821 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004822fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004823 if (drop_inode) {
4824 inode_dec_link_count(inode);
4825 iput(inode);
4826 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004827 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004828 return err;
4829}
4830
Chris Mason39279cc2007-06-12 06:35:45 -04004831static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4832{
Chris Masonb9d86662008-05-02 16:13:49 -04004833 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004834 struct btrfs_trans_handle *trans;
4835 struct btrfs_root *root = BTRFS_I(dir)->root;
4836 int err = 0;
4837 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004838 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004839 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004840 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004841
Yan, Zhenga22285a2010-05-16 10:48:46 -04004842 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4843 if (err)
4844 return err;
4845
Josef Bacik9ed74f22009-09-11 16:12:44 -04004846 /*
4847 * 2 items for inode and ref
4848 * 2 items for dir items
4849 * 1 for xattr if selinux is on
4850 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004851 trans = btrfs_start_transaction(root, 5);
4852 if (IS_ERR(trans))
4853 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004854 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004855
Josef Bacikaec74772008-07-24 12:12:38 -04004856 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004857 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004858 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4859 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004860 if (IS_ERR(inode)) {
4861 err = PTR_ERR(inode);
4862 goto out_fail;
4863 }
Chris Mason5f39d392007-10-15 16:14:19 -04004864
Chris Mason39279cc2007-06-12 06:35:45 -04004865 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004866
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004867 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004868 if (err)
4869 goto out_fail;
4870
Chris Mason39279cc2007-06-12 06:35:45 -04004871 inode->i_op = &btrfs_dir_inode_operations;
4872 inode->i_fop = &btrfs_dir_file_operations;
4873 btrfs_set_trans_block_group(trans, inode);
4874
Chris Masondbe674a2008-07-17 12:54:05 -04004875 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004876 err = btrfs_update_inode(trans, root, inode);
4877 if (err)
4878 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004879
Josef Bacika1b075d2010-11-19 20:36:11 +00004880 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4881 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004882 if (err)
4883 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004884
Chris Mason39279cc2007-06-12 06:35:45 -04004885 d_instantiate(dentry, inode);
4886 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004887 btrfs_update_inode_block_group(trans, inode);
4888 btrfs_update_inode_block_group(trans, dir);
4889
4890out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004891 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004892 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004893 if (drop_on_err)
4894 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004895 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004896 return err;
4897}
4898
Chris Masond352ac62008-09-29 15:18:18 -04004899/* helper for btfs_get_extent. Given an existing extent in the tree,
4900 * and an extent that you want to insert, deal with overlap and insert
4901 * the new extent into the tree.
4902 */
Chris Mason3b951512008-04-17 11:29:12 -04004903static int merge_extent_mapping(struct extent_map_tree *em_tree,
4904 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004905 struct extent_map *em,
4906 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004907{
4908 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004909
Chris Masone6dcd2d2008-07-17 12:53:50 -04004910 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4911 start_diff = map_start - em->start;
4912 em->start = map_start;
4913 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004914 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4915 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004916 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004917 em->block_len -= start_diff;
4918 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004919 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004920}
4921
Chris Masonc8b97812008-10-29 14:49:59 -04004922static noinline int uncompress_inline(struct btrfs_path *path,
4923 struct inode *inode, struct page *page,
4924 size_t pg_offset, u64 extent_offset,
4925 struct btrfs_file_extent_item *item)
4926{
4927 int ret;
4928 struct extent_buffer *leaf = path->nodes[0];
4929 char *tmp;
4930 size_t max_size;
4931 unsigned long inline_size;
4932 unsigned long ptr;
4933
4934 WARN_ON(pg_offset != 0);
4935 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4936 inline_size = btrfs_file_extent_inline_item_len(leaf,
4937 btrfs_item_nr(leaf, path->slots[0]));
4938 tmp = kmalloc(inline_size, GFP_NOFS);
4939 ptr = btrfs_file_extent_inline_start(item);
4940
4941 read_extent_buffer(leaf, tmp, ptr, inline_size);
4942
Chris Mason5b050f02008-11-11 09:34:41 -05004943 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004944 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
4945 inline_size, max_size);
4946 if (ret) {
4947 char *kaddr = kmap_atomic(page, KM_USER0);
4948 unsigned long copy_size = min_t(u64,
4949 PAGE_CACHE_SIZE - pg_offset,
4950 max_size - extent_offset);
4951 memset(kaddr + pg_offset, 0, copy_size);
4952 kunmap_atomic(kaddr, KM_USER0);
4953 }
4954 kfree(tmp);
4955 return 0;
4956}
4957
Chris Masond352ac62008-09-29 15:18:18 -04004958/*
4959 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004960 * the ugly parts come from merging extents from the disk with the in-ram
4961 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004962 * where the in-ram extents might be locked pending data=ordered completion.
4963 *
4964 * This also copies inline extents directly into the page.
4965 */
Chris Masond3977122009-01-05 21:25:51 -05004966
Chris Masona52d9a82007-08-27 16:49:44 -04004967struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004968 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004969 int create)
4970{
4971 int ret;
4972 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004973 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004974 u64 extent_start = 0;
4975 u64 extent_end = 0;
4976 u64 objectid = inode->i_ino;
4977 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004978 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004979 struct btrfs_root *root = BTRFS_I(inode)->root;
4980 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004981 struct extent_buffer *leaf;
4982 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004983 struct extent_map *em = NULL;
4984 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004985 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004986 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004987 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04004988
Chris Masona52d9a82007-08-27 16:49:44 -04004989again:
Chris Mason890871b2009-09-02 16:24:52 -04004990 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004991 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004992 if (em)
4993 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004994 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004995
Chris Masona52d9a82007-08-27 16:49:44 -04004996 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004997 if (em->start > start || em->start + em->len <= start)
4998 free_extent_map(em);
4999 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005000 free_extent_map(em);
5001 else
5002 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005003 }
Chris Masond1310b22008-01-24 16:13:08 -05005004 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005005 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005006 err = -ENOMEM;
5007 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005008 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005009 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005010 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005011 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005012 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005013 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005014
5015 if (!path) {
5016 path = btrfs_alloc_path();
5017 BUG_ON(!path);
5018 }
5019
Chris Mason179e29e2007-11-01 11:28:41 -04005020 ret = btrfs_lookup_file_extent(trans, root, path,
5021 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005022 if (ret < 0) {
5023 err = ret;
5024 goto out;
5025 }
5026
5027 if (ret != 0) {
5028 if (path->slots[0] == 0)
5029 goto not_found;
5030 path->slots[0]--;
5031 }
5032
Chris Mason5f39d392007-10-15 16:14:19 -04005033 leaf = path->nodes[0];
5034 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005035 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005036 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005037 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5038 found_type = btrfs_key_type(&found_key);
5039 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005040 found_type != BTRFS_EXTENT_DATA_KEY) {
5041 goto not_found;
5042 }
5043
Chris Mason5f39d392007-10-15 16:14:19 -04005044 found_type = btrfs_file_extent_type(leaf, item);
5045 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04005046 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005047 if (found_type == BTRFS_FILE_EXTENT_REG ||
5048 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005049 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005050 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005051 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5052 size_t size;
5053 size = btrfs_file_extent_inline_len(leaf, item);
5054 extent_end = (extent_start + size + root->sectorsize - 1) &
5055 ~((u64)root->sectorsize - 1);
5056 }
5057
5058 if (start >= extent_end) {
5059 path->slots[0]++;
5060 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5061 ret = btrfs_next_leaf(root, path);
5062 if (ret < 0) {
5063 err = ret;
5064 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005065 }
Yan Zheng9036c102008-10-30 14:19:41 -04005066 if (ret > 0)
5067 goto not_found;
5068 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005069 }
Yan Zheng9036c102008-10-30 14:19:41 -04005070 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5071 if (found_key.objectid != objectid ||
5072 found_key.type != BTRFS_EXTENT_DATA_KEY)
5073 goto not_found;
5074 if (start + len <= found_key.offset)
5075 goto not_found;
5076 em->start = start;
5077 em->len = found_key.offset - start;
5078 goto not_found_em;
5079 }
5080
Yan Zhengd899e052008-10-30 14:25:28 -04005081 if (found_type == BTRFS_FILE_EXTENT_REG ||
5082 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005083 em->start = extent_start;
5084 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005085 em->orig_start = extent_start -
5086 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005087 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5088 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005089 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005090 goto insert;
5091 }
Chris Masonc8b97812008-10-29 14:49:59 -04005092 if (compressed) {
5093 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
5094 em->block_start = bytenr;
5095 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5096 item);
5097 } else {
5098 bytenr += btrfs_file_extent_offset(leaf, item);
5099 em->block_start = bytenr;
5100 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005101 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5102 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005103 }
Chris Masona52d9a82007-08-27 16:49:44 -04005104 goto insert;
5105 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005106 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005107 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005108 size_t size;
5109 size_t extent_offset;
5110 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005111
Chris Masona52d9a82007-08-27 16:49:44 -04005112 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005113 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005114 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005115 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005116 goto out;
5117 }
5118
Yan Zheng9036c102008-10-30 14:19:41 -04005119 size = btrfs_file_extent_inline_len(leaf, item);
5120 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005121 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005122 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005123 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005124 em->len = (copy_size + root->sectorsize - 1) &
5125 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005126 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005127 if (compressed)
5128 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04005129 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005130 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04005131 if (btrfs_file_extent_compression(leaf, item) ==
5132 BTRFS_COMPRESS_ZLIB) {
5133 ret = uncompress_inline(path, inode, page,
5134 pg_offset,
5135 extent_offset, item);
5136 BUG_ON(ret);
5137 } else {
5138 map = kmap(page);
5139 read_extent_buffer(leaf, map + pg_offset, ptr,
5140 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005141 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5142 memset(map + pg_offset + copy_size, 0,
5143 PAGE_CACHE_SIZE - pg_offset -
5144 copy_size);
5145 }
Chris Masonc8b97812008-10-29 14:49:59 -04005146 kunmap(page);
5147 }
Chris Mason179e29e2007-11-01 11:28:41 -04005148 flush_dcache_page(page);
5149 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005150 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005151 if (!trans) {
5152 kunmap(page);
5153 free_extent_map(em);
5154 em = NULL;
5155 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04005156 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04005157 goto again;
5158 }
Chris Masonc8b97812008-10-29 14:49:59 -04005159 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005160 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005161 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005162 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005163 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005164 }
Chris Masond1310b22008-01-24 16:13:08 -05005165 set_extent_uptodate(io_tree, em->start,
5166 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005167 goto insert;
5168 } else {
Chris Masond3977122009-01-05 21:25:51 -05005169 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005170 WARN_ON(1);
5171 }
5172not_found:
5173 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005174 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005175not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005176 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005177 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005178insert:
5179 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05005180 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005181 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5182 "[%llu %llu]\n", (unsigned long long)em->start,
5183 (unsigned long long)em->len,
5184 (unsigned long long)start,
5185 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005186 err = -EIO;
5187 goto out;
5188 }
Chris Masond1310b22008-01-24 16:13:08 -05005189
5190 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005191 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005192 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005193 /* it is possible that someone inserted the extent into the tree
5194 * while we had the lock dropped. It is also possible that
5195 * an overlapping map exists in the tree
5196 */
Chris Masona52d9a82007-08-27 16:49:44 -04005197 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005198 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005199
5200 ret = 0;
5201
Chris Mason3b951512008-04-17 11:29:12 -04005202 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005203 if (existing && (existing->start > start ||
5204 existing->start + existing->len <= start)) {
5205 free_extent_map(existing);
5206 existing = NULL;
5207 }
Chris Mason3b951512008-04-17 11:29:12 -04005208 if (!existing) {
5209 existing = lookup_extent_mapping(em_tree, em->start,
5210 em->len);
5211 if (existing) {
5212 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005213 em, start,
5214 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005215 free_extent_map(existing);
5216 if (err) {
5217 free_extent_map(em);
5218 em = NULL;
5219 }
5220 } else {
5221 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005222 free_extent_map(em);
5223 em = NULL;
5224 }
5225 } else {
5226 free_extent_map(em);
5227 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005228 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005229 }
Chris Masona52d9a82007-08-27 16:49:44 -04005230 }
Chris Mason890871b2009-09-02 16:24:52 -04005231 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005232out:
Chris Masonf4219502008-07-22 11:18:09 -04005233 if (path)
5234 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005235 if (trans) {
5236 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005237 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005238 err = ret;
5239 }
Chris Masona52d9a82007-08-27 16:49:44 -04005240 if (err) {
5241 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005242 return ERR_PTR(err);
5243 }
5244 return em;
5245}
5246
Josef Bacik4b46fce2010-05-23 11:00:55 -04005247static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
5248 u64 start, u64 len)
5249{
5250 struct btrfs_root *root = BTRFS_I(inode)->root;
5251 struct btrfs_trans_handle *trans;
5252 struct extent_map *em;
5253 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5254 struct btrfs_key ins;
5255 u64 alloc_hint;
5256 int ret;
5257
5258 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5259
5260 trans = btrfs_join_transaction(root, 0);
5261 if (!trans)
5262 return ERR_PTR(-ENOMEM);
5263
5264 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5265
5266 alloc_hint = get_extent_allocation_hint(inode, start, len);
5267 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5268 alloc_hint, (u64)-1, &ins, 1);
5269 if (ret) {
5270 em = ERR_PTR(ret);
5271 goto out;
5272 }
5273
5274 em = alloc_extent_map(GFP_NOFS);
5275 if (!em) {
5276 em = ERR_PTR(-ENOMEM);
5277 goto out;
5278 }
5279
5280 em->start = start;
5281 em->orig_start = em->start;
5282 em->len = ins.offset;
5283
5284 em->block_start = ins.objectid;
5285 em->block_len = ins.offset;
5286 em->bdev = root->fs_info->fs_devices->latest_bdev;
5287 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5288
5289 while (1) {
5290 write_lock(&em_tree->lock);
5291 ret = add_extent_mapping(em_tree, em);
5292 write_unlock(&em_tree->lock);
5293 if (ret != -EEXIST)
5294 break;
5295 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5296 }
5297
5298 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5299 ins.offset, ins.offset, 0);
5300 if (ret) {
5301 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5302 em = ERR_PTR(ret);
5303 }
5304out:
5305 btrfs_end_transaction(trans, root);
5306 return em;
5307}
5308
Chris Mason46bfbb52010-05-26 11:04:10 -04005309/*
5310 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5311 * block must be cow'd
5312 */
5313static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5314 struct inode *inode, u64 offset, u64 len)
5315{
5316 struct btrfs_path *path;
5317 int ret;
5318 struct extent_buffer *leaf;
5319 struct btrfs_root *root = BTRFS_I(inode)->root;
5320 struct btrfs_file_extent_item *fi;
5321 struct btrfs_key key;
5322 u64 disk_bytenr;
5323 u64 backref_offset;
5324 u64 extent_end;
5325 u64 num_bytes;
5326 int slot;
5327 int found_type;
5328
5329 path = btrfs_alloc_path();
5330 if (!path)
5331 return -ENOMEM;
5332
5333 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
5334 offset, 0);
5335 if (ret < 0)
5336 goto out;
5337
5338 slot = path->slots[0];
5339 if (ret == 1) {
5340 if (slot == 0) {
5341 /* can't find the item, must cow */
5342 ret = 0;
5343 goto out;
5344 }
5345 slot--;
5346 }
5347 ret = 0;
5348 leaf = path->nodes[0];
5349 btrfs_item_key_to_cpu(leaf, &key, slot);
5350 if (key.objectid != inode->i_ino ||
5351 key.type != BTRFS_EXTENT_DATA_KEY) {
5352 /* not our file or wrong item type, must cow */
5353 goto out;
5354 }
5355
5356 if (key.offset > offset) {
5357 /* Wrong offset, must cow */
5358 goto out;
5359 }
5360
5361 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5362 found_type = btrfs_file_extent_type(leaf, fi);
5363 if (found_type != BTRFS_FILE_EXTENT_REG &&
5364 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5365 /* not a regular extent, must cow */
5366 goto out;
5367 }
5368 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5369 backref_offset = btrfs_file_extent_offset(leaf, fi);
5370
5371 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5372 if (extent_end < offset + len) {
5373 /* extent doesn't include our full range, must cow */
5374 goto out;
5375 }
5376
5377 if (btrfs_extent_readonly(root, disk_bytenr))
5378 goto out;
5379
5380 /*
5381 * look for other files referencing this extent, if we
5382 * find any we must cow
5383 */
5384 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
5385 key.offset - backref_offset, disk_bytenr))
5386 goto out;
5387
5388 /*
5389 * adjust disk_bytenr and num_bytes to cover just the bytes
5390 * in this extent we are about to write. If there
5391 * are any csums in that range we have to cow in order
5392 * to keep the csums correct
5393 */
5394 disk_bytenr += backref_offset;
5395 disk_bytenr += offset - key.offset;
5396 num_bytes = min(offset + len, extent_end) - offset;
5397 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5398 goto out;
5399 /*
5400 * all of the above have passed, it is safe to overwrite this extent
5401 * without cow
5402 */
5403 ret = 1;
5404out:
5405 btrfs_free_path(path);
5406 return ret;
5407}
5408
Josef Bacik4b46fce2010-05-23 11:00:55 -04005409static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5410 struct buffer_head *bh_result, int create)
5411{
5412 struct extent_map *em;
5413 struct btrfs_root *root = BTRFS_I(inode)->root;
5414 u64 start = iblock << inode->i_blkbits;
5415 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005416 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005417
5418 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5419 if (IS_ERR(em))
5420 return PTR_ERR(em);
5421
5422 /*
5423 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5424 * io. INLINE is special, and we could probably kludge it in here, but
5425 * it's still buffered so for safety lets just fall back to the generic
5426 * buffered path.
5427 *
5428 * For COMPRESSED we _have_ to read the entire extent in so we can
5429 * decompress it, so there will be buffering required no matter what we
5430 * do, so go ahead and fallback to buffered.
5431 *
5432 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5433 * to buffered IO. Don't blame me, this is the price we pay for using
5434 * the generic code.
5435 */
5436 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5437 em->block_start == EXTENT_MAP_INLINE) {
5438 free_extent_map(em);
5439 return -ENOTBLK;
5440 }
5441
5442 /* Just a good old fashioned hole, return */
5443 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5444 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5445 free_extent_map(em);
5446 /* DIO will do one hole at a time, so just unlock a sector */
5447 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5448 start + root->sectorsize - 1, GFP_NOFS);
5449 return 0;
5450 }
5451
5452 /*
5453 * We don't allocate a new extent in the following cases
5454 *
5455 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5456 * existing extent.
5457 * 2) The extent is marked as PREALLOC. We're good to go here and can
5458 * just use the extent.
5459 *
5460 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005461 if (!create) {
5462 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005463 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005464 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005465
5466 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5467 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5468 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005469 int type;
5470 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005471 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005472
5473 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5474 type = BTRFS_ORDERED_PREALLOC;
5475 else
5476 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005477 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005478 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005479
5480 /*
5481 * we're not going to log anything, but we do need
5482 * to make sure the current transaction stays open
5483 * while we look for nocow cross refs
5484 */
5485 trans = btrfs_join_transaction(root, 0);
5486 if (!trans)
5487 goto must_cow;
5488
5489 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5490 ret = btrfs_add_ordered_extent_dio(inode, start,
5491 block_start, len, len, type);
5492 btrfs_end_transaction(trans, root);
5493 if (ret) {
5494 free_extent_map(em);
5495 return ret;
5496 }
5497 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005498 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005499 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005500 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005501must_cow:
5502 /*
5503 * this will cow the extent, reset the len in case we changed
5504 * it above
5505 */
5506 len = bh_result->b_size;
5507 free_extent_map(em);
5508 em = btrfs_new_extent_direct(inode, start, len);
5509 if (IS_ERR(em))
5510 return PTR_ERR(em);
5511 len = min(len, em->len - (start - em->start));
5512unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005513 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5514 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5515 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005516map:
5517 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5518 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005519 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005520 bh_result->b_bdev = em->bdev;
5521 set_buffer_mapped(bh_result);
5522 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5523 set_buffer_new(bh_result);
5524
5525 free_extent_map(em);
5526
5527 return 0;
5528}
5529
5530struct btrfs_dio_private {
5531 struct inode *inode;
5532 u64 logical_offset;
5533 u64 disk_bytenr;
5534 u64 bytes;
5535 u32 *csums;
5536 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005537
5538 /* number of bios pending for this dio */
5539 atomic_t pending_bios;
5540
5541 /* IO errors */
5542 int errors;
5543
5544 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005545};
5546
5547static void btrfs_endio_direct_read(struct bio *bio, int err)
5548{
Miao Xiee65e1532010-11-22 03:04:43 +00005549 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005550 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5551 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005552 struct inode *inode = dip->inode;
5553 struct btrfs_root *root = BTRFS_I(inode)->root;
5554 u64 start;
5555 u32 *private = dip->csums;
5556
5557 start = dip->logical_offset;
5558 do {
5559 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5560 struct page *page = bvec->bv_page;
5561 char *kaddr;
5562 u32 csum = ~(u32)0;
5563 unsigned long flags;
5564
5565 local_irq_save(flags);
5566 kaddr = kmap_atomic(page, KM_IRQ0);
5567 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5568 csum, bvec->bv_len);
5569 btrfs_csum_final(csum, (char *)&csum);
5570 kunmap_atomic(kaddr, KM_IRQ0);
5571 local_irq_restore(flags);
5572
5573 flush_dcache_page(bvec->bv_page);
5574 if (csum != *private) {
5575 printk(KERN_ERR "btrfs csum failed ino %lu off"
5576 " %llu csum %u private %u\n",
5577 inode->i_ino, (unsigned long long)start,
5578 csum, *private);
5579 err = -EIO;
5580 }
5581 }
5582
5583 start += bvec->bv_len;
5584 private++;
5585 bvec++;
5586 } while (bvec <= bvec_end);
5587
5588 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5589 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5590 bio->bi_private = dip->private;
5591
5592 kfree(dip->csums);
5593 kfree(dip);
5594 dio_end_io(bio, err);
5595}
5596
5597static void btrfs_endio_direct_write(struct bio *bio, int err)
5598{
5599 struct btrfs_dio_private *dip = bio->bi_private;
5600 struct inode *inode = dip->inode;
5601 struct btrfs_root *root = BTRFS_I(inode)->root;
5602 struct btrfs_trans_handle *trans;
5603 struct btrfs_ordered_extent *ordered = NULL;
5604 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005605 u64 ordered_offset = dip->logical_offset;
5606 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005607 int ret;
5608
5609 if (err)
5610 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005611again:
5612 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5613 &ordered_offset,
5614 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005615 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005616 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005617
5618 BUG_ON(!ordered);
5619
5620 trans = btrfs_join_transaction(root, 1);
5621 if (!trans) {
5622 err = -ENOMEM;
5623 goto out;
5624 }
5625 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5626
5627 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5628 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5629 if (!ret)
5630 ret = btrfs_update_inode(trans, root, inode);
5631 err = ret;
5632 goto out;
5633 }
5634
5635 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5636 ordered->file_offset + ordered->len - 1, 0,
5637 &cached_state, GFP_NOFS);
5638
5639 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5640 ret = btrfs_mark_extent_written(trans, inode,
5641 ordered->file_offset,
5642 ordered->file_offset +
5643 ordered->len);
5644 if (ret) {
5645 err = ret;
5646 goto out_unlock;
5647 }
5648 } else {
5649 ret = insert_reserved_file_extent(trans, inode,
5650 ordered->file_offset,
5651 ordered->start,
5652 ordered->disk_len,
5653 ordered->len,
5654 ordered->len,
5655 0, 0, 0,
5656 BTRFS_FILE_EXTENT_REG);
5657 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5658 ordered->file_offset, ordered->len);
5659 if (ret) {
5660 err = ret;
5661 WARN_ON(1);
5662 goto out_unlock;
5663 }
5664 }
5665
5666 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
5667 btrfs_ordered_update_i_size(inode, 0, ordered);
5668 btrfs_update_inode(trans, root, inode);
5669out_unlock:
5670 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5671 ordered->file_offset + ordered->len - 1,
5672 &cached_state, GFP_NOFS);
5673out:
5674 btrfs_delalloc_release_metadata(inode, ordered->len);
5675 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005676 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005677 btrfs_put_ordered_extent(ordered);
5678 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005679
5680out_test:
5681 /*
5682 * our bio might span multiple ordered extents. If we haven't
5683 * completed the accounting for the whole dio, go back and try again
5684 */
5685 if (ordered_offset < dip->logical_offset + dip->bytes) {
5686 ordered_bytes = dip->logical_offset + dip->bytes -
5687 ordered_offset;
5688 goto again;
5689 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005690out_done:
5691 bio->bi_private = dip->private;
5692
5693 kfree(dip->csums);
5694 kfree(dip);
5695 dio_end_io(bio, err);
5696}
5697
Chris Masoneaf25d92010-05-25 09:48:28 -04005698static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5699 struct bio *bio, int mirror_num,
5700 unsigned long bio_flags, u64 offset)
5701{
5702 int ret;
5703 struct btrfs_root *root = BTRFS_I(inode)->root;
5704 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5705 BUG_ON(ret);
5706 return 0;
5707}
5708
Miao Xiee65e1532010-11-22 03:04:43 +00005709static void btrfs_end_dio_bio(struct bio *bio, int err)
5710{
5711 struct btrfs_dio_private *dip = bio->bi_private;
5712
5713 if (err) {
5714 printk(KERN_ERR "btrfs direct IO failed ino %lu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005715 "sector %#Lx len %u err no %d\n",
5716 dip->inode->i_ino, bio->bi_rw,
5717 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005718 dip->errors = 1;
5719
5720 /*
5721 * before atomic variable goto zero, we must make sure
5722 * dip->errors is perceived to be set.
5723 */
5724 smp_mb__before_atomic_dec();
5725 }
5726
5727 /* if there are more bios still pending for this dio, just exit */
5728 if (!atomic_dec_and_test(&dip->pending_bios))
5729 goto out;
5730
5731 if (dip->errors)
5732 bio_io_error(dip->orig_bio);
5733 else {
5734 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5735 bio_endio(dip->orig_bio, 0);
5736 }
5737out:
5738 bio_put(bio);
5739}
5740
5741static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5742 u64 first_sector, gfp_t gfp_flags)
5743{
5744 int nr_vecs = bio_get_nr_vecs(bdev);
5745 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5746}
5747
5748static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5749 int rw, u64 file_offset, int skip_sum,
5750 u32 *csums)
5751{
5752 int write = rw & REQ_WRITE;
5753 struct btrfs_root *root = BTRFS_I(inode)->root;
5754 int ret;
5755
5756 bio_get(bio);
5757 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5758 if (ret)
5759 goto err;
5760
5761 if (write && !skip_sum) {
5762 ret = btrfs_wq_submit_bio(root->fs_info,
5763 inode, rw, bio, 0, 0,
5764 file_offset,
5765 __btrfs_submit_bio_start_direct_io,
5766 __btrfs_submit_bio_done);
5767 goto err;
5768 } else if (!skip_sum)
5769 btrfs_lookup_bio_sums_dio(root, inode, bio,
5770 file_offset, csums);
5771
5772 ret = btrfs_map_bio(root, rw, bio, 0, 1);
5773err:
5774 bio_put(bio);
5775 return ret;
5776}
5777
5778static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5779 int skip_sum)
5780{
5781 struct inode *inode = dip->inode;
5782 struct btrfs_root *root = BTRFS_I(inode)->root;
5783 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5784 struct bio *bio;
5785 struct bio *orig_bio = dip->orig_bio;
5786 struct bio_vec *bvec = orig_bio->bi_io_vec;
5787 u64 start_sector = orig_bio->bi_sector;
5788 u64 file_offset = dip->logical_offset;
5789 u64 submit_len = 0;
5790 u64 map_length;
5791 int nr_pages = 0;
5792 u32 *csums = dip->csums;
5793 int ret = 0;
5794
5795 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5796 if (!bio)
5797 return -ENOMEM;
5798 bio->bi_private = dip;
5799 bio->bi_end_io = btrfs_end_dio_bio;
5800 atomic_inc(&dip->pending_bios);
5801
5802 map_length = orig_bio->bi_size;
5803 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5804 &map_length, NULL, 0);
5805 if (ret) {
5806 bio_put(bio);
5807 return -EIO;
5808 }
5809
5810 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
5811 if (unlikely(map_length < submit_len + bvec->bv_len ||
5812 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5813 bvec->bv_offset) < bvec->bv_len)) {
5814 /*
5815 * inc the count before we submit the bio so
5816 * we know the end IO handler won't happen before
5817 * we inc the count. Otherwise, the dip might get freed
5818 * before we're done setting it up
5819 */
5820 atomic_inc(&dip->pending_bios);
5821 ret = __btrfs_submit_dio_bio(bio, inode, rw,
5822 file_offset, skip_sum,
5823 csums);
5824 if (ret) {
5825 bio_put(bio);
5826 atomic_dec(&dip->pending_bios);
5827 goto out_err;
5828 }
5829
5830 if (!skip_sum)
5831 csums = csums + nr_pages;
5832 start_sector += submit_len >> 9;
5833 file_offset += submit_len;
5834
5835 submit_len = 0;
5836 nr_pages = 0;
5837
5838 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
5839 start_sector, GFP_NOFS);
5840 if (!bio)
5841 goto out_err;
5842 bio->bi_private = dip;
5843 bio->bi_end_io = btrfs_end_dio_bio;
5844
5845 map_length = orig_bio->bi_size;
5846 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5847 &map_length, NULL, 0);
5848 if (ret) {
5849 bio_put(bio);
5850 goto out_err;
5851 }
5852 } else {
5853 submit_len += bvec->bv_len;
5854 nr_pages ++;
5855 bvec++;
5856 }
5857 }
5858
5859 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
5860 csums);
5861 if (!ret)
5862 return 0;
5863
5864 bio_put(bio);
5865out_err:
5866 dip->errors = 1;
5867 /*
5868 * before atomic variable goto zero, we must
5869 * make sure dip->errors is perceived to be set.
5870 */
5871 smp_mb__before_atomic_dec();
5872 if (atomic_dec_and_test(&dip->pending_bios))
5873 bio_io_error(dip->orig_bio);
5874
5875 /* bio_end_io() will handle error, so we needn't return it */
5876 return 0;
5877}
5878
Josef Bacik4b46fce2010-05-23 11:00:55 -04005879static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
5880 loff_t file_offset)
5881{
5882 struct btrfs_root *root = BTRFS_I(inode)->root;
5883 struct btrfs_dio_private *dip;
5884 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005885 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005886 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005887 int ret = 0;
5888
5889 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
5890
5891 dip = kmalloc(sizeof(*dip), GFP_NOFS);
5892 if (!dip) {
5893 ret = -ENOMEM;
5894 goto free_ordered;
5895 }
5896 dip->csums = NULL;
5897
5898 if (!skip_sum) {
5899 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
5900 if (!dip->csums) {
5901 ret = -ENOMEM;
5902 goto free_ordered;
5903 }
5904 }
5905
5906 dip->private = bio->bi_private;
5907 dip->inode = inode;
5908 dip->logical_offset = file_offset;
5909
Josef Bacik4b46fce2010-05-23 11:00:55 -04005910 dip->bytes = 0;
5911 do {
5912 dip->bytes += bvec->bv_len;
5913 bvec++;
5914 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
5915
Chris Mason46bfbb52010-05-26 11:04:10 -04005916 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005917 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00005918 dip->errors = 0;
5919 dip->orig_bio = bio;
5920 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005921
5922 if (write)
5923 bio->bi_end_io = btrfs_endio_direct_write;
5924 else
5925 bio->bi_end_io = btrfs_endio_direct_read;
5926
Miao Xiee65e1532010-11-22 03:04:43 +00005927 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
5928 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04005929 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005930free_ordered:
5931 /*
5932 * If this is a write, we need to clean up the reserved space and kill
5933 * the ordered extent.
5934 */
5935 if (write) {
5936 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05005937 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005938 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
5939 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
5940 btrfs_free_reserved_extent(root, ordered->start,
5941 ordered->disk_len);
5942 btrfs_put_ordered_extent(ordered);
5943 btrfs_put_ordered_extent(ordered);
5944 }
5945 bio_endio(bio, ret);
5946}
5947
Chris Mason5a5f79b2010-05-26 21:33:37 -04005948static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
5949 const struct iovec *iov, loff_t offset,
5950 unsigned long nr_segs)
5951{
5952 int seg;
5953 size_t size;
5954 unsigned long addr;
5955 unsigned blocksize_mask = root->sectorsize - 1;
5956 ssize_t retval = -EINVAL;
5957 loff_t end = offset;
5958
5959 if (offset & blocksize_mask)
5960 goto out;
5961
5962 /* Check the memory alignment. Blocks cannot straddle pages */
5963 for (seg = 0; seg < nr_segs; seg++) {
5964 addr = (unsigned long)iov[seg].iov_base;
5965 size = iov[seg].iov_len;
5966 end += size;
5967 if ((addr & blocksize_mask) || (size & blocksize_mask))
5968 goto out;
5969 }
5970 retval = 0;
5971out:
5972 return retval;
5973}
Chris Mason16432982008-04-10 10:23:21 -04005974static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
5975 const struct iovec *iov, loff_t offset,
5976 unsigned long nr_segs)
5977{
Josef Bacik4b46fce2010-05-23 11:00:55 -04005978 struct file *file = iocb->ki_filp;
5979 struct inode *inode = file->f_mapping->host;
5980 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04005981 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005982 u64 lockstart, lockend;
5983 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04005984 int writing = rw & WRITE;
5985 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04005986 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005987
Chris Mason5a5f79b2010-05-26 21:33:37 -04005988 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
5989 offset, nr_segs)) {
5990 return 0;
5991 }
5992
Josef Bacik4b46fce2010-05-23 11:00:55 -04005993 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04005994 lockend = offset + count - 1;
5995
5996 if (writing) {
5997 ret = btrfs_delalloc_reserve_space(inode, count);
5998 if (ret)
5999 goto out;
6000 }
Chris Mason4845e442010-05-25 20:56:50 -04006001
Josef Bacik4b46fce2010-05-23 11:00:55 -04006002 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006003 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6004 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006005 /*
6006 * We're concerned with the entire range that we're going to be
6007 * doing DIO to, so we need to make sure theres no ordered
6008 * extents in this range.
6009 */
6010 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6011 lockend - lockstart + 1);
6012 if (!ordered)
6013 break;
Chris Mason4845e442010-05-25 20:56:50 -04006014 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6015 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006016 btrfs_start_ordered_extent(inode, ordered, 1);
6017 btrfs_put_ordered_extent(ordered);
6018 cond_resched();
6019 }
6020
Chris Mason4845e442010-05-25 20:56:50 -04006021 /*
6022 * we don't use btrfs_set_extent_delalloc because we don't want
6023 * the dirty or uptodate bits
6024 */
6025 if (writing) {
6026 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6027 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6028 EXTENT_DELALLOC, 0, NULL, &cached_state,
6029 GFP_NOFS);
6030 if (ret) {
6031 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6032 lockend, EXTENT_LOCKED | write_bits,
6033 1, 0, &cached_state, GFP_NOFS);
6034 goto out;
6035 }
6036 }
6037
6038 free_extent_state(cached_state);
6039 cached_state = NULL;
6040
Chris Mason5a5f79b2010-05-26 21:33:37 -04006041 ret = __blockdev_direct_IO(rw, iocb, inode,
6042 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6043 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6044 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006045
6046 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006047 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6048 offset + iov_length(iov, nr_segs) - 1,
6049 EXTENT_LOCKED | write_bits, 1, 0,
6050 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006051 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6052 /*
6053 * We're falling back to buffered, unlock the section we didn't
6054 * do IO on.
6055 */
Chris Mason4845e442010-05-25 20:56:50 -04006056 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6057 offset + iov_length(iov, nr_segs) - 1,
6058 EXTENT_LOCKED | write_bits, 1, 0,
6059 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006060 }
Chris Mason4845e442010-05-25 20:56:50 -04006061out:
6062 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006063 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006064}
6065
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006066static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6067 __u64 start, __u64 len)
6068{
6069 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
6070}
6071
Chris Mason9ebefb182007-06-15 13:50:00 -04006072int btrfs_readpage(struct file *file, struct page *page)
6073{
Chris Masond1310b22008-01-24 16:13:08 -05006074 struct extent_io_tree *tree;
6075 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006076 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04006077}
Chris Mason1832a6d2007-12-21 16:27:21 -05006078
Chris Mason39279cc2007-06-12 06:35:45 -04006079static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6080{
Chris Masond1310b22008-01-24 16:13:08 -05006081 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006082
6083
6084 if (current->flags & PF_MEMALLOC) {
6085 redirty_page_for_writepage(wbc, page);
6086 unlock_page(page);
6087 return 0;
6088 }
Chris Masond1310b22008-01-24 16:13:08 -05006089 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006090 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6091}
Chris Mason39279cc2007-06-12 06:35:45 -04006092
Chris Masonf4219502008-07-22 11:18:09 -04006093int btrfs_writepages(struct address_space *mapping,
6094 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006095{
Chris Masond1310b22008-01-24 16:13:08 -05006096 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006097
Chris Masond1310b22008-01-24 16:13:08 -05006098 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006099 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6100}
6101
Chris Mason3ab2fb52007-11-08 10:59:22 -05006102static int
6103btrfs_readpages(struct file *file, struct address_space *mapping,
6104 struct list_head *pages, unsigned nr_pages)
6105{
Chris Masond1310b22008-01-24 16:13:08 -05006106 struct extent_io_tree *tree;
6107 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006108 return extent_readpages(tree, mapping, pages, nr_pages,
6109 btrfs_get_extent);
6110}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006111static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006112{
Chris Masond1310b22008-01-24 16:13:08 -05006113 struct extent_io_tree *tree;
6114 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006115 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006116
Chris Masond1310b22008-01-24 16:13:08 -05006117 tree = &BTRFS_I(page->mapping->host)->io_tree;
6118 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006119 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006120 if (ret == 1) {
6121 ClearPagePrivate(page);
6122 set_page_private(page, 0);
6123 page_cache_release(page);
6124 }
6125 return ret;
6126}
Chris Mason39279cc2007-06-12 06:35:45 -04006127
Chris Masone6dcd2d2008-07-17 12:53:50 -04006128static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6129{
Chris Mason98509cf2008-09-11 15:51:43 -04006130 if (PageWriteback(page) || PageDirty(page))
6131 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006132 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006133}
6134
Chris Masona52d9a82007-08-27 16:49:44 -04006135static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6136{
Chris Masond1310b22008-01-24 16:13:08 -05006137 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006138 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006139 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006140 u64 page_start = page_offset(page);
6141 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006142
Chris Mason8b62b722009-09-02 16:53:46 -04006143
6144 /*
6145 * we have the page locked, so new writeback can't start,
6146 * and the dirty bit won't be cleared while we are here.
6147 *
6148 * Wait for IO on this page so that we can safely clear
6149 * the PagePrivate2 bit and do ordered accounting
6150 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006151 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006152
Chris Masond1310b22008-01-24 16:13:08 -05006153 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006154 if (offset) {
6155 btrfs_releasepage(page, GFP_NOFS);
6156 return;
6157 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006158 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6159 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006160 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6161 page_offset(page));
6162 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006163 /*
6164 * IO on this page will never be started, so we need
6165 * to account for any ordered extents now
6166 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006167 clear_extent_bit(tree, page_start, page_end,
6168 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006169 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006170 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006171 /*
6172 * whoever cleared the private bit is responsible
6173 * for the finish_ordered_io
6174 */
6175 if (TestClearPagePrivate2(page)) {
6176 btrfs_finish_ordered_io(page->mapping->host,
6177 page_start, page_end);
6178 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006179 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006180 cached_state = NULL;
6181 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6182 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006183 }
6184 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006185 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006186 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006187 __btrfs_releasepage(page, GFP_NOFS);
6188
Chris Mason4a096752008-07-21 10:29:44 -04006189 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006190 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006191 ClearPagePrivate(page);
6192 set_page_private(page, 0);
6193 page_cache_release(page);
6194 }
Chris Mason39279cc2007-06-12 06:35:45 -04006195}
6196
Chris Mason9ebefb182007-06-15 13:50:00 -04006197/*
6198 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6199 * called from a page fault handler when a page is first dirtied. Hence we must
6200 * be careful to check for EOF conditions here. We set the page up correctly
6201 * for a written page which means we get ENOSPC checking when writing into
6202 * holes and correct delalloc and unwritten extent mapping on filesystems that
6203 * support these features.
6204 *
6205 * We are not allowed to take the i_mutex here so we have to play games to
6206 * protect against truncate races as the page could now be beyond EOF. Because
6207 * vmtruncate() writes the inode size before removing pages, once we have the
6208 * page lock we can determine safely if the page is beyond EOF. If it is not
6209 * beyond EOF, then the page is guaranteed safe against truncation until we
6210 * unlock the page.
6211 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006212int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006213{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006214 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006215 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006216 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006217 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6218 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006219 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006220 char *kaddr;
6221 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006222 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006223 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006224 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006225 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006226
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006227 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07006228 if (ret) {
6229 if (ret == -ENOMEM)
6230 ret = VM_FAULT_OOM;
6231 else /* -ENOSPC, -EIO, etc */
6232 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006233 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006234 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006235
Nick Piggin56a76f82009-03-31 15:23:23 -07006236 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006237again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006238 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006239 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006240 page_start = page_offset(page);
6241 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006242
Chris Mason9ebefb182007-06-15 13:50:00 -04006243 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006244 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006245 /* page got truncated out from underneath us */
6246 goto out_unlock;
6247 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006248 wait_on_page_writeback(page);
6249
Josef Bacik2ac55d42010-02-03 19:33:23 +00006250 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6251 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006252 set_page_extent_mapped(page);
6253
Chris Masoneb84ae02008-07-17 13:53:27 -04006254 /*
6255 * we can't set the delalloc bits if there are pending ordered
6256 * extents. Drop our locks and wait for them to finish
6257 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006258 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6259 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006260 unlock_extent_cached(io_tree, page_start, page_end,
6261 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006262 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006263 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006264 btrfs_put_ordered_extent(ordered);
6265 goto again;
6266 }
6267
Josef Bacikfbf19082009-10-01 17:10:23 -04006268 /*
6269 * XXX - page_mkwrite gets called every time the page is dirtied, even
6270 * if it was already dirty, so for space accounting reasons we need to
6271 * clear any delalloc bits for the range we are fixing to save. There
6272 * is probably a better way to do this, but for now keep consistent with
6273 * prepare_pages in the normal write path.
6274 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006275 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006276 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006277 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006278
Josef Bacik2ac55d42010-02-03 19:33:23 +00006279 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6280 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006281 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006282 unlock_extent_cached(io_tree, page_start, page_end,
6283 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006284 ret = VM_FAULT_SIGBUS;
6285 goto out_unlock;
6286 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006287 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006288
6289 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006290 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006291 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006292 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006293 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006294
Chris Masone6dcd2d2008-07-17 12:53:50 -04006295 if (zero_start != PAGE_CACHE_SIZE) {
6296 kaddr = kmap(page);
6297 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6298 flush_dcache_page(page);
6299 kunmap(page);
6300 }
Chris Mason247e7432008-07-17 12:53:51 -04006301 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006302 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006303 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006304
Chris Mason257c62e2009-10-13 13:21:08 -04006305 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6306 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6307
Josef Bacik2ac55d42010-02-03 19:33:23 +00006308 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006309
6310out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006311 if (!ret)
6312 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006313 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006314 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006315out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006316 return ret;
6317}
6318
Chris Mason39279cc2007-06-12 06:35:45 -04006319static void btrfs_truncate(struct inode *inode)
6320{
6321 struct btrfs_root *root = BTRFS_I(inode)->root;
6322 int ret;
6323 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006324 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006325 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04006326
Yan, Zheng80825102009-11-12 09:35:36 +00006327 if (!S_ISREG(inode->i_mode)) {
6328 WARN_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04006329 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006330 }
Chris Mason39279cc2007-06-12 06:35:45 -04006331
Josef Bacik5d5e1032009-10-13 16:46:49 -04006332 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6333 if (ret)
6334 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006335
Chris Mason4a096752008-07-21 10:29:44 -04006336 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006337 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006338
Yan, Zhengd68fc572010-05-16 10:49:58 -04006339 trans = btrfs_start_transaction(root, 0);
6340 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00006341 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006342 trans->block_rsv = root->orphan_block_rsv;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006343
6344 /*
6345 * setattr is responsible for setting the ordered_data_close flag,
6346 * but that is only tested during the last file release. That
6347 * could happen well after the next commit, leaving a great big
6348 * window where new writes may get lost if someone chooses to write
6349 * to this file after truncating to zero
6350 *
6351 * The inode doesn't have any dirty data here, and so if we commit
6352 * this is a noop. If someone immediately starts writing to the inode
6353 * it is very likely we'll catch some of their writes in this
6354 * transaction, and the commit will find this file on the ordered
6355 * data list with good things to send down.
6356 *
6357 * This is a best effort solution, there is still a window where
6358 * using truncate to replace the contents of the file will
6359 * end up with a zero length file after a crash.
6360 */
6361 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6362 btrfs_add_ordered_operation(trans, root, inode);
6363
Yan, Zheng80825102009-11-12 09:35:36 +00006364 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006365 if (!trans) {
6366 trans = btrfs_start_transaction(root, 0);
6367 BUG_ON(IS_ERR(trans));
6368 btrfs_set_trans_block_group(trans, inode);
6369 trans->block_rsv = root->orphan_block_rsv;
6370 }
6371
6372 ret = btrfs_block_rsv_check(trans, root,
6373 root->orphan_block_rsv, 0, 5);
6374 if (ret) {
6375 BUG_ON(ret != -EAGAIN);
6376 ret = btrfs_commit_transaction(trans, root);
6377 BUG_ON(ret);
6378 trans = NULL;
6379 continue;
6380 }
6381
Yan, Zheng80825102009-11-12 09:35:36 +00006382 ret = btrfs_truncate_inode_items(trans, root, inode,
6383 inode->i_size,
6384 BTRFS_EXTENT_DATA_KEY);
6385 if (ret != -EAGAIN)
6386 break;
Chris Mason39279cc2007-06-12 06:35:45 -04006387
Yan, Zheng80825102009-11-12 09:35:36 +00006388 ret = btrfs_update_inode(trans, root, inode);
6389 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04006390
Yan, Zheng80825102009-11-12 09:35:36 +00006391 nr = trans->blocks_used;
6392 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006393 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006394 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006395 }
6396
6397 if (ret == 0 && inode->i_nlink > 0) {
6398 ret = btrfs_orphan_del(trans, inode);
6399 BUG_ON(ret);
6400 }
6401
6402 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04006403 BUG_ON(ret);
6404
Josef Bacik7b128762008-07-24 12:17:14 -04006405 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04006406 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04006407 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006408 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04006409}
6410
Sven Wegener3b963622008-06-09 21:57:42 -04006411/*
Chris Masond352ac62008-09-29 15:18:18 -04006412 * create a new subvolume directory/inode (helper for the ioctl).
6413 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006414int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04006415 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006416 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04006417{
Chris Mason39279cc2007-06-12 06:35:45 -04006418 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006419 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006420 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006421
Josef Bacikaec74772008-07-24 12:12:38 -04006422 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006423 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006424 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006425 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006426 inode->i_op = &btrfs_dir_inode_operations;
6427 inode->i_fop = &btrfs_dir_file_operations;
6428
Chris Mason39279cc2007-06-12 06:35:45 -04006429 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006430 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006431
Yan, Zheng76dda932009-09-21 16:00:26 -04006432 err = btrfs_update_inode(trans, new_root, inode);
6433 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006434
Yan, Zheng76dda932009-09-21 16:00:26 -04006435 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006436 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006437}
6438
Chris Masond352ac62008-09-29 15:18:18 -04006439/* helper function for file defrag and space balancing. This
6440 * forces readahead on a given range of bytes in an inode
6441 */
Chris Masonedbd8d42007-12-21 16:27:24 -05006442unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04006443 struct file_ra_state *ra, struct file *file,
6444 pgoff_t offset, pgoff_t last_index)
6445{
Chris Mason8e7bf942008-04-28 09:02:36 -04006446 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04006447
Chris Mason86479a02007-09-10 19:58:16 -04006448 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
6449 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04006450}
6451
Chris Mason39279cc2007-06-12 06:35:45 -04006452struct inode *btrfs_alloc_inode(struct super_block *sb)
6453{
6454 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006455 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006456
6457 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6458 if (!ei)
6459 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006460
6461 ei->root = NULL;
6462 ei->space_info = NULL;
6463 ei->generation = 0;
6464 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006465 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006466 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006467 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006468 ei->delalloc_bytes = 0;
6469 ei->reserved_bytes = 0;
6470 ei->disk_i_size = 0;
6471 ei->flags = 0;
6472 ei->index_cnt = (u64)-1;
6473 ei->last_unlink_trans = 0;
6474
Josef Bacik32c00af2009-10-08 13:34:05 -04006475 spin_lock_init(&ei->accounting_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006476 atomic_set(&ei->outstanding_extents, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006477 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006478
6479 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006480 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006481 ei->dummy_inode = 0;
6482 ei->force_compress = 0;
6483
6484 inode = &ei->vfs_inode;
6485 extent_map_tree_init(&ei->extent_tree, GFP_NOFS);
6486 extent_io_tree_init(&ei->io_tree, &inode->i_data, GFP_NOFS);
6487 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data, GFP_NOFS);
6488 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006489 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006490 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006491 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006492 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006493 RB_CLEAR_NODE(&ei->rb_node);
6494
6495 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006496}
6497
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006498static void btrfs_i_callback(struct rcu_head *head)
6499{
6500 struct inode *inode = container_of(head, struct inode, i_rcu);
6501 INIT_LIST_HEAD(&inode->i_dentry);
6502 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6503}
6504
Chris Mason39279cc2007-06-12 06:35:45 -04006505void btrfs_destroy_inode(struct inode *inode)
6506{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006507 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006508 struct btrfs_root *root = BTRFS_I(inode)->root;
6509
Chris Mason39279cc2007-06-12 06:35:45 -04006510 WARN_ON(!list_empty(&inode->i_dentry));
6511 WARN_ON(inode->i_data.nrpages);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006512 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents));
6513 WARN_ON(BTRFS_I(inode)->reserved_extents);
Chris Mason39279cc2007-06-12 06:35:45 -04006514
Chris Mason5a3f23d2009-03-31 13:27:11 -04006515 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006516 * This can happen where we create an inode, but somebody else also
6517 * created the same inode and we need to destroy the one we already
6518 * created.
6519 */
6520 if (!root)
6521 goto free;
6522
6523 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006524 * Make sure we're properly removed from the ordered operation
6525 * lists.
6526 */
6527 smp_mb();
6528 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6529 spin_lock(&root->fs_info->ordered_extent_lock);
6530 list_del_init(&BTRFS_I(inode)->ordered_operations);
6531 spin_unlock(&root->fs_info->ordered_extent_lock);
6532 }
6533
Josef Bacik0af3d002010-06-21 14:48:16 -04006534 if (root == root->fs_info->tree_root) {
6535 struct btrfs_block_group_cache *block_group;
6536
6537 block_group = btrfs_lookup_block_group(root->fs_info,
6538 BTRFS_I(inode)->block_group);
6539 if (block_group && block_group->inode == inode) {
6540 spin_lock(&block_group->lock);
6541 block_group->inode = NULL;
6542 spin_unlock(&block_group->lock);
6543 btrfs_put_block_group(block_group);
6544 } else if (block_group) {
6545 btrfs_put_block_group(block_group);
6546 }
6547 }
6548
Yan, Zhengd68fc572010-05-16 10:49:58 -04006549 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006550 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00006551 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
6552 inode->i_ino);
6553 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006554 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006555 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006556
Chris Masond3977122009-01-05 21:25:51 -05006557 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006558 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6559 if (!ordered)
6560 break;
6561 else {
Chris Masond3977122009-01-05 21:25:51 -05006562 printk(KERN_ERR "btrfs found ordered "
6563 "extent %llu %llu on inode cleanup\n",
6564 (unsigned long long)ordered->file_offset,
6565 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006566 btrfs_remove_ordered_extent(inode, ordered);
6567 btrfs_put_ordered_extent(ordered);
6568 btrfs_put_ordered_extent(ordered);
6569 }
6570 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006571 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006572 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006573free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006574 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006575}
6576
Al Viro45321ac2010-06-07 13:43:19 -04006577int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006578{
6579 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006580
Josef Bacik0af3d002010-06-21 14:48:16 -04006581 if (btrfs_root_refs(&root->root_item) == 0 &&
6582 root != root->fs_info->tree_root)
Al Viro45321ac2010-06-07 13:43:19 -04006583 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006584 else
Al Viro45321ac2010-06-07 13:43:19 -04006585 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006586}
6587
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006588static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006589{
6590 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6591
6592 inode_init_once(&ei->vfs_inode);
6593}
6594
6595void btrfs_destroy_cachep(void)
6596{
6597 if (btrfs_inode_cachep)
6598 kmem_cache_destroy(btrfs_inode_cachep);
6599 if (btrfs_trans_handle_cachep)
6600 kmem_cache_destroy(btrfs_trans_handle_cachep);
6601 if (btrfs_transaction_cachep)
6602 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006603 if (btrfs_path_cachep)
6604 kmem_cache_destroy(btrfs_path_cachep);
6605}
6606
6607int btrfs_init_cachep(void)
6608{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006609 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6610 sizeof(struct btrfs_inode), 0,
6611 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006612 if (!btrfs_inode_cachep)
6613 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006614
6615 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6616 sizeof(struct btrfs_trans_handle), 0,
6617 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006618 if (!btrfs_trans_handle_cachep)
6619 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006620
6621 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6622 sizeof(struct btrfs_transaction), 0,
6623 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006624 if (!btrfs_transaction_cachep)
6625 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006626
6627 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6628 sizeof(struct btrfs_path), 0,
6629 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006630 if (!btrfs_path_cachep)
6631 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006632
Chris Mason39279cc2007-06-12 06:35:45 -04006633 return 0;
6634fail:
6635 btrfs_destroy_cachep();
6636 return -ENOMEM;
6637}
6638
6639static int btrfs_getattr(struct vfsmount *mnt,
6640 struct dentry *dentry, struct kstat *stat)
6641{
6642 struct inode *inode = dentry->d_inode;
6643 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05006644 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05006645 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006646 stat->blocks = (inode_get_bytes(inode) +
6647 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006648 return 0;
6649}
6650
Chris Masond3977122009-01-05 21:25:51 -05006651static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6652 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006653{
6654 struct btrfs_trans_handle *trans;
6655 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006656 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006657 struct inode *new_inode = new_dentry->d_inode;
6658 struct inode *old_inode = old_dentry->d_inode;
6659 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006660 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006661 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006662 int ret;
6663
Yan, Zhengf679a842009-09-24 09:17:31 -04006664 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
6665 return -EPERM;
6666
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006667 /* we only allow rename subvolume link between subvolumes */
6668 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006669 return -EXDEV;
6670
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006671 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6672 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
6673 return -ENOTEMPTY;
6674
Chris Mason39279cc2007-06-12 06:35:45 -04006675 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006676 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006677 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006678 /*
6679 * we're using rename to replace one file with another.
6680 * and the replacement file is large. Start IO on it now so
6681 * we don't add too much work to the end of the transaction
6682 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006683 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006684 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6685 filemap_flush(old_inode->i_mapping);
6686
Yan, Zheng76dda932009-09-21 16:00:26 -04006687 /* close the racy window with snapshot create/destroy ioctl */
6688 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6689 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006690 /*
6691 * We want to reserve the absolute worst case amount of items. So if
6692 * both inodes are subvols and we need to unlink them then that would
6693 * require 4 item modifications, but if they are both normal inodes it
6694 * would require 5 item modifications, so we'll assume their normal
6695 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6696 * should cover the worst case number of items we'll modify.
6697 */
6698 trans = btrfs_start_transaction(root, 20);
6699 if (IS_ERR(trans))
6700 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04006701
Yan, Zhenga5719522009-09-24 09:17:31 -04006702 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04006703
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006704 if (dest != root)
6705 btrfs_record_root_in_trans(trans, dest);
6706
Yan, Zhenga5719522009-09-24 09:17:31 -04006707 ret = btrfs_set_inode_index(new_dir, &index);
6708 if (ret)
6709 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006710
Yan, Zhenga5719522009-09-24 09:17:31 -04006711 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006712 /* force full log commit if subvolume involved. */
6713 root->fs_info->last_trans_log_full_commit = trans->transid;
6714 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04006715 ret = btrfs_insert_inode_ref(trans, dest,
6716 new_dentry->d_name.name,
6717 new_dentry->d_name.len,
6718 old_inode->i_ino,
6719 new_dir->i_ino, index);
6720 if (ret)
6721 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006722 /*
6723 * this is an ugly little race, but the rename is required
6724 * to make sure that if we crash, the inode is either at the
6725 * old name or the new one. pinning the log transaction lets
6726 * us make sure we don't allow a log commit to come in after
6727 * we unlink the name but before we add the new name back in.
6728 */
6729 btrfs_pin_log_trans(root);
6730 }
Chris Mason12fcfd22009-03-24 10:24:20 -04006731 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006732 * make sure the inode gets flushed if it is replacing
6733 * something.
6734 */
6735 if (new_inode && new_inode->i_size &&
6736 old_inode && S_ISREG(old_inode->i_mode)) {
6737 btrfs_add_ordered_operation(trans, root, old_inode);
6738 }
6739
Chris Mason39279cc2007-06-12 06:35:45 -04006740 old_dir->i_ctime = old_dir->i_mtime = ctime;
6741 new_dir->i_ctime = new_dir->i_mtime = ctime;
6742 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04006743
Chris Mason12fcfd22009-03-24 10:24:20 -04006744 if (old_dentry->d_parent != new_dentry->d_parent)
6745 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
6746
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006747 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
6748 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
6749 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
6750 old_dentry->d_name.name,
6751 old_dentry->d_name.len);
6752 } else {
6753 btrfs_inc_nlink(old_dentry->d_inode);
6754 ret = btrfs_unlink_inode(trans, root, old_dir,
6755 old_dentry->d_inode,
6756 old_dentry->d_name.name,
6757 old_dentry->d_name.len);
6758 }
6759 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006760
6761 if (new_inode) {
6762 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006763 if (unlikely(new_inode->i_ino ==
6764 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
6765 root_objectid = BTRFS_I(new_inode)->location.objectid;
6766 ret = btrfs_unlink_subvol(trans, dest, new_dir,
6767 root_objectid,
6768 new_dentry->d_name.name,
6769 new_dentry->d_name.len);
6770 BUG_ON(new_inode->i_nlink == 0);
6771 } else {
6772 ret = btrfs_unlink_inode(trans, dest, new_dir,
6773 new_dentry->d_inode,
6774 new_dentry->d_name.name,
6775 new_dentry->d_name.len);
6776 }
6777 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006778 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04006779 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006780 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006781 }
Chris Mason39279cc2007-06-12 06:35:45 -04006782 }
Josef Bacikaec74772008-07-24 12:12:38 -04006783
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006784 ret = btrfs_add_link(trans, new_dir, old_inode,
6785 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04006786 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006787 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006788
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006789 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik6a912212010-11-20 09:48:00 +00006790 struct dentry *parent = dget_parent(new_dentry);
6791 btrfs_log_new_name(trans, old_inode, old_dir, parent);
6792 dput(parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006793 btrfs_end_log_trans(root);
6794 }
Chris Mason39279cc2007-06-12 06:35:45 -04006795out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04006796 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006797
Yan, Zheng76dda932009-09-21 16:00:26 -04006798 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6799 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006800
Chris Mason39279cc2007-06-12 06:35:45 -04006801 return ret;
6802}
6803
Chris Masond352ac62008-09-29 15:18:18 -04006804/*
6805 * some fairly slow code that needs optimization. This walks the list
6806 * of all the inodes with pending delalloc and forces them to disk.
6807 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00006808int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04006809{
6810 struct list_head *head = &root->fs_info->delalloc_inodes;
6811 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006812 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04006813
Yan Zhengc146afa2008-11-12 14:34:12 -05006814 if (root->fs_info->sb->s_flags & MS_RDONLY)
6815 return -EROFS;
6816
Chris Mason75eff682008-12-15 15:54:40 -05006817 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05006818 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04006819 binode = list_entry(head->next, struct btrfs_inode,
6820 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006821 inode = igrab(&binode->vfs_inode);
6822 if (!inode)
6823 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05006824 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006825 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04006826 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00006827 if (delay_iput)
6828 btrfs_add_delayed_iput(inode);
6829 else
6830 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006831 }
6832 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05006833 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04006834 }
Chris Mason75eff682008-12-15 15:54:40 -05006835 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04006836
6837 /* the filemap_flush will queue IO into the worker threads, but
6838 * we have to make sure the IO is actually started and that
6839 * ordered extents get created before we return
6840 */
6841 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05006842 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05006843 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04006844 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05006845 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
6846 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04006847 }
6848 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04006849 return 0;
6850}
6851
Josef Bacik0019f102010-10-15 15:18:40 -04006852int btrfs_start_one_delalloc_inode(struct btrfs_root *root, int delay_iput,
6853 int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04006854{
6855 struct btrfs_inode *binode;
6856 struct inode *inode = NULL;
6857
6858 spin_lock(&root->fs_info->delalloc_lock);
6859 while (!list_empty(&root->fs_info->delalloc_inodes)) {
6860 binode = list_entry(root->fs_info->delalloc_inodes.next,
6861 struct btrfs_inode, delalloc_inodes);
6862 inode = igrab(&binode->vfs_inode);
6863 if (inode) {
6864 list_move_tail(&binode->delalloc_inodes,
6865 &root->fs_info->delalloc_inodes);
6866 break;
6867 }
6868
6869 list_del_init(&binode->delalloc_inodes);
6870 cond_resched_lock(&root->fs_info->delalloc_lock);
6871 }
6872 spin_unlock(&root->fs_info->delalloc_lock);
6873
6874 if (inode) {
Josef Bacik0019f102010-10-15 15:18:40 -04006875 if (sync) {
6876 filemap_write_and_wait(inode->i_mapping);
6877 /*
6878 * We have to do this because compression doesn't
6879 * actually set PG_writeback until it submits the pages
6880 * for IO, which happens in an async thread, so we could
6881 * race and not actually wait for any writeback pages
6882 * because they've not been submitted yet. Technically
6883 * this could still be the case for the ordered stuff
6884 * since the async thread may not have started to do its
6885 * work yet. If this becomes the case then we need to
6886 * figure out a way to make sure that in writepage we
6887 * wait for any async pages to be submitted before
6888 * returning so that fdatawait does what its supposed to
6889 * do.
6890 */
6891 btrfs_wait_ordered_range(inode, 0, (u64)-1);
6892 } else {
6893 filemap_flush(inode->i_mapping);
6894 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04006895 if (delay_iput)
6896 btrfs_add_delayed_iput(inode);
6897 else
6898 iput(inode);
6899 return 1;
6900 }
6901 return 0;
6902}
6903
Chris Mason39279cc2007-06-12 06:35:45 -04006904static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
6905 const char *symname)
6906{
6907 struct btrfs_trans_handle *trans;
6908 struct btrfs_root *root = BTRFS_I(dir)->root;
6909 struct btrfs_path *path;
6910 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05006911 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04006912 int err;
6913 int drop_inode = 0;
6914 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006915 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04006916 int name_len;
6917 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04006918 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04006919 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04006920 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05006921 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006922
6923 name_len = strlen(symname) + 1;
6924 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
6925 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05006926
Yan, Zhenga22285a2010-05-16 10:48:46 -04006927 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
6928 if (err)
6929 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04006930 /*
6931 * 2 items for inode item and ref
6932 * 2 items for dir items
6933 * 1 item for xattr if selinux is on
6934 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04006935 trans = btrfs_start_transaction(root, 5);
6936 if (IS_ERR(trans))
6937 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05006938
Chris Mason39279cc2007-06-12 06:35:45 -04006939 btrfs_set_trans_block_group(trans, dir);
6940
Josef Bacikaec74772008-07-24 12:12:38 -04006941 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00006942 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04006943 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
6944 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04006945 err = PTR_ERR(inode);
6946 if (IS_ERR(inode))
6947 goto out_unlock;
6948
Yan, Zhengf34f57a2009-11-12 09:35:27 +00006949 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04006950 if (err) {
6951 drop_inode = 1;
6952 goto out_unlock;
6953 }
6954
Chris Mason39279cc2007-06-12 06:35:45 -04006955 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00006956 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04006957 if (err)
6958 drop_inode = 1;
6959 else {
6960 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04006961 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04006962 inode->i_fop = &btrfs_file_operations;
6963 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05006964 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04006965 }
Chris Mason39279cc2007-06-12 06:35:45 -04006966 btrfs_update_inode_block_group(trans, inode);
6967 btrfs_update_inode_block_group(trans, dir);
6968 if (drop_inode)
6969 goto out_unlock;
6970
6971 path = btrfs_alloc_path();
6972 BUG_ON(!path);
6973 key.objectid = inode->i_ino;
6974 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006975 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
6976 datasize = btrfs_file_extent_calc_inline_size(name_len);
6977 err = btrfs_insert_empty_item(trans, root, path, &key,
6978 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04006979 if (err) {
6980 drop_inode = 1;
6981 goto out_unlock;
6982 }
Chris Mason5f39d392007-10-15 16:14:19 -04006983 leaf = path->nodes[0];
6984 ei = btrfs_item_ptr(leaf, path->slots[0],
6985 struct btrfs_file_extent_item);
6986 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
6987 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04006988 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04006989 btrfs_set_file_extent_encryption(leaf, ei, 0);
6990 btrfs_set_file_extent_compression(leaf, ei, 0);
6991 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
6992 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
6993
Chris Mason39279cc2007-06-12 06:35:45 -04006994 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04006995 write_extent_buffer(leaf, symname, ptr, name_len);
6996 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04006997 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04006998
Chris Mason39279cc2007-06-12 06:35:45 -04006999 inode->i_op = &btrfs_symlink_inode_operations;
7000 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007001 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007002 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007003 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007004 err = btrfs_update_inode(trans, root, inode);
7005 if (err)
7006 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007007
7008out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007009 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04007010 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007011 if (drop_inode) {
7012 inode_dec_link_count(inode);
7013 iput(inode);
7014 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007015 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007016 return err;
7017}
Chris Mason16432982008-04-10 10:23:21 -04007018
Josef Bacik0af3d002010-06-21 14:48:16 -04007019static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7020 u64 start, u64 num_bytes, u64 min_size,
7021 loff_t actual_len, u64 *alloc_hint,
7022 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007023{
Yan Zhengd899e052008-10-30 14:25:28 -04007024 struct btrfs_root *root = BTRFS_I(inode)->root;
7025 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007026 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007027 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007028 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007029 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007030
Josef Bacik0af3d002010-06-21 14:48:16 -04007031 if (trans)
7032 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007033 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007034 if (own_trans) {
7035 trans = btrfs_start_transaction(root, 3);
7036 if (IS_ERR(trans)) {
7037 ret = PTR_ERR(trans);
7038 break;
7039 }
Yan Zhengd899e052008-10-30 14:25:28 -04007040 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007041
Yan, Zhengefa56462010-05-16 10:49:59 -04007042 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
7043 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007044 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007045 if (own_trans)
7046 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007047 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007048 }
7049
Yan Zhengd899e052008-10-30 14:25:28 -04007050 ret = insert_reserved_file_extent(trans, inode,
7051 cur_offset, ins.objectid,
7052 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007053 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007054 BTRFS_FILE_EXTENT_PREALLOC);
7055 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04007056 btrfs_drop_extent_cache(inode, cur_offset,
7057 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007058
Yan Zhengd899e052008-10-30 14:25:28 -04007059 num_bytes -= ins.offset;
7060 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007061 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007062
Yan Zhengd899e052008-10-30 14:25:28 -04007063 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007064 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007065 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007066 (actual_len > inode->i_size) &&
7067 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007068 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007069 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007070 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007071 i_size = cur_offset;
7072 i_size_write(inode, i_size);
7073 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007074 }
7075
Yan Zhengd899e052008-10-30 14:25:28 -04007076 ret = btrfs_update_inode(trans, root, inode);
7077 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04007078
Josef Bacik0af3d002010-06-21 14:48:16 -04007079 if (own_trans)
7080 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007081 }
Yan Zhengd899e052008-10-30 14:25:28 -04007082 return ret;
7083}
7084
Josef Bacik0af3d002010-06-21 14:48:16 -04007085int btrfs_prealloc_file_range(struct inode *inode, int mode,
7086 u64 start, u64 num_bytes, u64 min_size,
7087 loff_t actual_len, u64 *alloc_hint)
7088{
7089 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7090 min_size, actual_len, alloc_hint,
7091 NULL);
7092}
7093
7094int btrfs_prealloc_file_range_trans(struct inode *inode,
7095 struct btrfs_trans_handle *trans, int mode,
7096 u64 start, u64 num_bytes, u64 min_size,
7097 loff_t actual_len, u64 *alloc_hint)
7098{
7099 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7100 min_size, actual_len, alloc_hint, trans);
7101}
7102
Yan Zhengd899e052008-10-30 14:25:28 -04007103static long btrfs_fallocate(struct inode *inode, int mode,
7104 loff_t offset, loff_t len)
7105{
Josef Bacik2ac55d42010-02-03 19:33:23 +00007106 struct extent_state *cached_state = NULL;
Yan Zhengd899e052008-10-30 14:25:28 -04007107 u64 cur_offset;
7108 u64 last_byte;
7109 u64 alloc_start;
7110 u64 alloc_end;
7111 u64 alloc_hint = 0;
Chris Masone980b502009-04-24 14:39:24 -04007112 u64 locked_end;
Yan Zhengd899e052008-10-30 14:25:28 -04007113 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
7114 struct extent_map *em;
7115 int ret;
7116
7117 alloc_start = offset & ~mask;
7118 alloc_end = (offset + len + mask) & ~mask;
7119
Chris Mason546888d2009-04-21 11:53:38 -04007120 /*
7121 * wait for ordered IO before we have any locks. We'll loop again
7122 * below with the locks held.
7123 */
7124 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
7125
Yan Zhengd899e052008-10-30 14:25:28 -04007126 mutex_lock(&inode->i_mutex);
Josef Bacik0ed42a62010-11-22 18:55:39 +00007127 ret = inode_newsize_ok(inode, alloc_end);
7128 if (ret)
7129 goto out;
7130
Yan Zhengd899e052008-10-30 14:25:28 -04007131 if (alloc_start > inode->i_size) {
7132 ret = btrfs_cont_expand(inode, alloc_start);
7133 if (ret)
7134 goto out;
7135 }
7136
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04007137 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start);
Josef Bacika970b0a2009-06-27 21:07:34 -04007138 if (ret)
7139 goto out;
7140
Chris Masone980b502009-04-24 14:39:24 -04007141 locked_end = alloc_end - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04007142 while (1) {
7143 struct btrfs_ordered_extent *ordered;
Chris Mason546888d2009-04-21 11:53:38 -04007144
Chris Mason546888d2009-04-21 11:53:38 -04007145 /* the extent lock is ordered inside the running
7146 * transaction
7147 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00007148 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
7149 locked_end, 0, &cached_state, GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04007150 ordered = btrfs_lookup_first_ordered_extent(inode,
7151 alloc_end - 1);
7152 if (ordered &&
7153 ordered->file_offset + ordered->len > alloc_start &&
7154 ordered->file_offset < alloc_end) {
7155 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00007156 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
7157 alloc_start, locked_end,
7158 &cached_state, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04007159 /*
7160 * we can't wait on the range with the transaction
7161 * running or with the extent lock held
7162 */
Yan Zhengd899e052008-10-30 14:25:28 -04007163 btrfs_wait_ordered_range(inode, alloc_start,
7164 alloc_end - alloc_start);
7165 } else {
7166 if (ordered)
7167 btrfs_put_ordered_extent(ordered);
7168 break;
7169 }
7170 }
7171
7172 cur_offset = alloc_start;
7173 while (1) {
7174 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
7175 alloc_end - cur_offset, 0);
7176 BUG_ON(IS_ERR(em) || !em);
7177 last_byte = min(extent_map_end(em), alloc_end);
7178 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007179 if (em->block_start == EXTENT_MAP_HOLE ||
7180 (cur_offset >= inode->i_size &&
7181 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
Josef Bacik83609772010-06-07 18:26:37 +00007182 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
Yan, Zhengefa56462010-05-16 10:49:59 -04007183 last_byte - cur_offset,
7184 1 << inode->i_blkbits,
7185 offset + len,
7186 &alloc_hint);
Yan Zhengd899e052008-10-30 14:25:28 -04007187 if (ret < 0) {
7188 free_extent_map(em);
7189 break;
7190 }
7191 }
Yan Zhengd899e052008-10-30 14:25:28 -04007192 free_extent_map(em);
7193
7194 cur_offset = last_byte;
7195 if (cur_offset >= alloc_end) {
7196 ret = 0;
7197 break;
7198 }
7199 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00007200 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
7201 &cached_state, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04007202
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04007203 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start);
Yan Zhengd899e052008-10-30 14:25:28 -04007204out:
7205 mutex_unlock(&inode->i_mutex);
7206 return ret;
7207}
7208
Chris Masone6dcd2d2008-07-17 12:53:50 -04007209static int btrfs_set_page_dirty(struct page *page)
7210{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007211 return __set_page_dirty_nobuffers(page);
7212}
7213
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007214static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007215{
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007216 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05007217 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04007218 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05007219}
Chris Mason39279cc2007-06-12 06:35:45 -04007220
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007221static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007222 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007223 .lookup = btrfs_lookup,
7224 .create = btrfs_create,
7225 .unlink = btrfs_unlink,
7226 .link = btrfs_link,
7227 .mkdir = btrfs_mkdir,
7228 .rmdir = btrfs_rmdir,
7229 .rename = btrfs_rename,
7230 .symlink = btrfs_symlink,
7231 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007232 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007233 .setxattr = btrfs_setxattr,
7234 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007235 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007236 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007237 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007238};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007239static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007240 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007241 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007242};
Yan, Zheng76dda932009-09-21 16:00:26 -04007243
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007244static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007245 .llseek = generic_file_llseek,
7246 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007247 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007248 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007249#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007250 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007251#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007252 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007253 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007254};
7255
Chris Masond1310b22008-01-24 16:13:08 -05007256static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007257 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007258 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007259 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007260 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007261 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007262 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04007263 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007264 .set_bit_hook = btrfs_set_bit_hook,
7265 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007266 .merge_extent_hook = btrfs_merge_extent_hook,
7267 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007268};
7269
Chris Mason35054392009-01-21 13:11:13 -05007270/*
7271 * btrfs doesn't support the bmap operation because swapfiles
7272 * use bmap to make a mapping of extents in the file. They assume
7273 * these extents won't change over the life of the file and they
7274 * use the bmap result to do IO directly to the drive.
7275 *
7276 * the btrfs bmap call would return logical addresses that aren't
7277 * suitable for IO and they also will change frequently as COW
7278 * operations happen. So, swapfile + btrfs == corruption.
7279 *
7280 * For now we're avoiding this by dropping bmap.
7281 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007282static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007283 .readpage = btrfs_readpage,
7284 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007285 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007286 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04007287 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04007288 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007289 .invalidatepage = btrfs_invalidatepage,
7290 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007291 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007292 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007293};
7294
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007295static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007296 .readpage = btrfs_readpage,
7297 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007298 .invalidatepage = btrfs_invalidatepage,
7299 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007300};
7301
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007302static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007303 .truncate = btrfs_truncate,
7304 .getattr = btrfs_getattr,
7305 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007306 .setxattr = btrfs_setxattr,
7307 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007308 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007309 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007310 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04007311 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007312 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04007313};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007314static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007315 .getattr = btrfs_getattr,
7316 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007317 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007318 .setxattr = btrfs_setxattr,
7319 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007320 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007321 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007322};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007323static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007324 .readlink = generic_readlink,
7325 .follow_link = page_follow_link_light,
7326 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007327 .getattr = btrfs_getattr,
Yanfdebe2b2008-01-14 13:26:08 -05007328 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007329 .setxattr = btrfs_setxattr,
7330 .getxattr = btrfs_getxattr,
7331 .listxattr = btrfs_listxattr,
7332 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007333};
Yan, Zheng76dda932009-09-21 16:00:26 -04007334
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007335const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007336 .d_delete = btrfs_dentry_delete,
7337};