blob: dcec42ee8cf22675d6c400ebca4d659e9c36bbdb [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/statfs.h>
34#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040035#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040037#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040038#include <linux/falloc.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050039#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040040#include "ctree.h"
41#include "disk-io.h"
42#include "transaction.h"
43#include "btrfs_inode.h"
44#include "ioctl.h"
45#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040046#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040047#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040048#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040049#include "tree-log.h"
Chris Masonc8b97812008-10-29 14:49:59 -040050#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050051#include "locking.h"
Chris Mason39279cc2007-06-12 06:35:45 -040052
53struct btrfs_iget_args {
54 u64 ino;
55 struct btrfs_root *root;
56};
57
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070058static const struct inode_operations btrfs_dir_inode_operations;
59static const struct inode_operations btrfs_symlink_inode_operations;
60static const struct inode_operations btrfs_dir_ro_inode_operations;
61static const struct inode_operations btrfs_special_inode_operations;
62static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070063static const struct address_space_operations btrfs_aops;
64static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070065static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050066static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040067
68static struct kmem_cache *btrfs_inode_cachep;
69struct kmem_cache *btrfs_trans_handle_cachep;
70struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040071struct kmem_cache *btrfs_path_cachep;
72
73#define S_SHIFT 12
74static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
75 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
76 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
77 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
78 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
79 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
80 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
81 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
82};
83
Josef Bacik7b128762008-07-24 12:17:14 -040084static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040085static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050086static noinline int cow_file_range(struct inode *inode,
87 struct page *locked_page,
88 u64 start, u64 end, int *page_started,
89 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040090
Jim Owens0279b4c2009-02-04 09:29:13 -050091static int btrfs_init_inode_security(struct inode *inode, struct inode *dir)
92{
93 int err;
94
95 err = btrfs_init_acl(inode, dir);
96 if (!err)
97 err = btrfs_xattr_security_init(inode, dir);
98 return err;
99}
100
Chris Masond352ac62008-09-29 15:18:18 -0400101/*
Chris Masonc8b97812008-10-29 14:49:59 -0400102 * this does all the hard work for inserting an inline extent into
103 * the btree. The caller should have done a btrfs_drop_extents so that
104 * no overlapping inline items exist in the btree
105 */
Chris Masond3977122009-01-05 21:25:51 -0500106static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400107 struct btrfs_root *root, struct inode *inode,
108 u64 start, size_t size, size_t compressed_size,
109 struct page **compressed_pages)
110{
111 struct btrfs_key key;
112 struct btrfs_path *path;
113 struct extent_buffer *leaf;
114 struct page *page = NULL;
115 char *kaddr;
116 unsigned long ptr;
117 struct btrfs_file_extent_item *ei;
118 int err = 0;
119 int ret;
120 size_t cur_size = size;
121 size_t datasize;
122 unsigned long offset;
123 int use_compress = 0;
124
125 if (compressed_size && compressed_pages) {
126 use_compress = 1;
127 cur_size = compressed_size;
128 }
129
Chris Masond3977122009-01-05 21:25:51 -0500130 path = btrfs_alloc_path();
131 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400132 return -ENOMEM;
133
Chris Masonb9473432009-03-13 11:00:37 -0400134 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400135 btrfs_set_trans_block_group(trans, inode);
136
137 key.objectid = inode->i_ino;
138 key.offset = start;
139 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400140 datasize = btrfs_file_extent_calc_inline_size(cur_size);
141
142 inode_add_bytes(inode, size);
143 ret = btrfs_insert_empty_item(trans, root, path, &key,
144 datasize);
145 BUG_ON(ret);
146 if (ret) {
147 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400148 goto fail;
149 }
150 leaf = path->nodes[0];
151 ei = btrfs_item_ptr(leaf, path->slots[0],
152 struct btrfs_file_extent_item);
153 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
154 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
155 btrfs_set_file_extent_encryption(leaf, ei, 0);
156 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
157 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
158 ptr = btrfs_file_extent_inline_start(ei);
159
160 if (use_compress) {
161 struct page *cpage;
162 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500163 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400164 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500165 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400166 PAGE_CACHE_SIZE);
167
Chris Masonb9473432009-03-13 11:00:37 -0400168 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400169 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400170 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400171
172 i++;
173 ptr += cur_size;
174 compressed_size -= cur_size;
175 }
176 btrfs_set_file_extent_compression(leaf, ei,
177 BTRFS_COMPRESS_ZLIB);
178 } else {
179 page = find_get_page(inode->i_mapping,
180 start >> PAGE_CACHE_SHIFT);
181 btrfs_set_file_extent_compression(leaf, ei, 0);
182 kaddr = kmap_atomic(page, KM_USER0);
183 offset = start & (PAGE_CACHE_SIZE - 1);
184 write_extent_buffer(leaf, kaddr + offset, ptr, size);
185 kunmap_atomic(kaddr, KM_USER0);
186 page_cache_release(page);
187 }
188 btrfs_mark_buffer_dirty(leaf);
189 btrfs_free_path(path);
190
Yan, Zhengc2167752009-11-12 09:34:21 +0000191 /*
192 * we're an inline extent, so nobody can
193 * extend the file past i_size without locking
194 * a page we already have locked.
195 *
196 * We must do any isize and inode updates
197 * before we unlock the pages. Otherwise we
198 * could end up racing with unlink.
199 */
Chris Masonc8b97812008-10-29 14:49:59 -0400200 BTRFS_I(inode)->disk_i_size = inode->i_size;
201 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000202
Chris Masonc8b97812008-10-29 14:49:59 -0400203 return 0;
204fail:
205 btrfs_free_path(path);
206 return err;
207}
208
209
210/*
211 * conditionally insert an inline extent into the file. This
212 * does the checks required to make sure the data is small enough
213 * to fit as an inline extent.
214 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400215static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400216 struct btrfs_root *root,
217 struct inode *inode, u64 start, u64 end,
218 size_t compressed_size,
219 struct page **compressed_pages)
220{
221 u64 isize = i_size_read(inode);
222 u64 actual_end = min(end + 1, isize);
223 u64 inline_len = actual_end - start;
224 u64 aligned_end = (end + root->sectorsize - 1) &
225 ~((u64)root->sectorsize - 1);
226 u64 hint_byte;
227 u64 data_len = inline_len;
228 int ret;
229
230 if (compressed_size)
231 data_len = compressed_size;
232
233 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400234 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400235 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
236 (!compressed_size &&
237 (actual_end & (root->sectorsize - 1)) == 0) ||
238 end + 1 < isize ||
239 data_len > root->fs_info->max_inline) {
240 return 1;
241 }
242
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000243 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400244 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400245 BUG_ON(ret);
246
247 if (isize > actual_end)
248 inline_len = min_t(u64, isize, actual_end);
249 ret = insert_inline_extent(trans, root, inode, start,
250 inline_len, compressed_size,
251 compressed_pages);
252 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -0400253 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400254 return 0;
255}
256
Chris Mason771ed682008-11-06 22:02:51 -0500257struct async_extent {
258 u64 start;
259 u64 ram_size;
260 u64 compressed_size;
261 struct page **pages;
262 unsigned long nr_pages;
263 struct list_head list;
264};
265
266struct async_cow {
267 struct inode *inode;
268 struct btrfs_root *root;
269 struct page *locked_page;
270 u64 start;
271 u64 end;
272 struct list_head extents;
273 struct btrfs_work work;
274};
275
276static noinline int add_async_extent(struct async_cow *cow,
277 u64 start, u64 ram_size,
278 u64 compressed_size,
279 struct page **pages,
280 unsigned long nr_pages)
281{
282 struct async_extent *async_extent;
283
284 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
285 async_extent->start = start;
286 async_extent->ram_size = ram_size;
287 async_extent->compressed_size = compressed_size;
288 async_extent->pages = pages;
289 async_extent->nr_pages = nr_pages;
290 list_add_tail(&async_extent->list, &cow->extents);
291 return 0;
292}
293
Chris Masonc8b97812008-10-29 14:49:59 -0400294/*
Chris Mason771ed682008-11-06 22:02:51 -0500295 * we create compressed extents in two phases. The first
296 * phase compresses a range of pages that have already been
297 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400298 *
Chris Mason771ed682008-11-06 22:02:51 -0500299 * This is done inside an ordered work queue, and the compression
300 * is spread across many cpus. The actual IO submission is step
301 * two, and the ordered work queue takes care of making sure that
302 * happens in the same order things were put onto the queue by
303 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400304 *
Chris Mason771ed682008-11-06 22:02:51 -0500305 * If this code finds it can't get good compression, it puts an
306 * entry onto the work queue to write the uncompressed bytes. This
307 * makes sure that both compressed inodes and uncompressed inodes
308 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400309 */
Chris Mason771ed682008-11-06 22:02:51 -0500310static noinline int compress_file_range(struct inode *inode,
311 struct page *locked_page,
312 u64 start, u64 end,
313 struct async_cow *async_cow,
314 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400315{
316 struct btrfs_root *root = BTRFS_I(inode)->root;
317 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400318 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -0400319 u64 orig_start;
320 u64 disk_num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400321 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400322 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500323 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400324 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400325 struct page **pages = NULL;
326 unsigned long nr_pages;
327 unsigned long nr_pages_ret = 0;
328 unsigned long total_compressed = 0;
329 unsigned long total_in = 0;
330 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500331 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400332 int i;
333 int will_compress;
Chris Masonb888db22007-08-27 16:49:44 -0400334
Chris Masonc8b97812008-10-29 14:49:59 -0400335 orig_start = start;
Chris Masonbe20aa92007-12-17 20:14:01 -0500336
Chris Mason42dc7ba2008-12-15 11:44:56 -0500337 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400338again:
339 will_compress = 0;
340 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
341 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
342
Chris Masonf03d9301f2009-02-04 09:31:06 -0500343 /*
344 * we don't want to send crud past the end of i_size through
345 * compression, that's just a waste of CPU time. So, if the
346 * end of the file is before the start of our current
347 * requested range of bytes, we bail out to the uncompressed
348 * cleanup code that can deal with all of this.
349 *
350 * It isn't really the fastest way to fix things, but this is a
351 * very uncommon corner.
352 */
353 if (actual_end <= start)
354 goto cleanup_and_bail_uncompressed;
355
Chris Masonc8b97812008-10-29 14:49:59 -0400356 total_compressed = actual_end - start;
357
358 /* we want to make sure that amount of ram required to uncompress
359 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500360 * of a compressed extent to 128k. This is a crucial number
361 * because it also controls how easily we can spread reads across
362 * cpus for decompression.
363 *
364 * We also want to make sure the amount of IO required to do
365 * a random read is reasonably small, so we limit the size of
366 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400367 */
368 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400369 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500370 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400371 disk_num_bytes = num_bytes;
372 total_in = 0;
373 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400374
Chris Mason771ed682008-11-06 22:02:51 -0500375 /*
376 * we do compression for mount -o compress and when the
377 * inode has not been flagged as nocompress. This flag can
378 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400379 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200380 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Masonc8b97812008-10-29 14:49:59 -0400381 btrfs_test_opt(root, COMPRESS)) {
382 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400383 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400384
Chris Masonc8b97812008-10-29 14:49:59 -0400385 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
386 total_compressed, pages,
387 nr_pages, &nr_pages_ret,
388 &total_in,
389 &total_compressed,
390 max_compressed);
391
392 if (!ret) {
393 unsigned long offset = total_compressed &
394 (PAGE_CACHE_SIZE - 1);
395 struct page *page = pages[nr_pages_ret - 1];
396 char *kaddr;
397
398 /* zero the tail end of the last page, we might be
399 * sending it down to disk
400 */
401 if (offset) {
402 kaddr = kmap_atomic(page, KM_USER0);
403 memset(kaddr + offset, 0,
404 PAGE_CACHE_SIZE - offset);
405 kunmap_atomic(kaddr, KM_USER0);
406 }
407 will_compress = 1;
408 }
409 }
410 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500411 trans = btrfs_join_transaction(root, 1);
412 BUG_ON(!trans);
413 btrfs_set_trans_block_group(trans, inode);
414
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 |
Josef Bacik32c00af2009-10-08 13:34:05 -0400439 EXTENT_CLEAR_ACCOUNTING |
Chris Masona791e352009-10-08 11:27:10 -0400440 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000441
442 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400443 goto free_pages_out;
444 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000445 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400446 }
447
448 if (will_compress) {
449 /*
450 * we aren't doing an inline extent round the compressed size
451 * up to a block size boundary so the allocator does sane
452 * things
453 */
454 total_compressed = (total_compressed + blocksize - 1) &
455 ~(blocksize - 1);
456
457 /*
458 * one last check to make sure the compression is really a
459 * win, compare the page count read with the blocks on disk
460 */
461 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
462 ~(PAGE_CACHE_SIZE - 1);
463 if (total_compressed >= total_in) {
464 will_compress = 0;
465 } else {
466 disk_num_bytes = total_compressed;
467 num_bytes = total_in;
468 }
469 }
470 if (!will_compress && pages) {
471 /*
472 * the compression code ran but failed to make things smaller,
473 * free any pages it allocated and our page pointer array
474 */
475 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400476 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400477 page_cache_release(pages[i]);
478 }
479 kfree(pages);
480 pages = NULL;
481 total_compressed = 0;
482 nr_pages_ret = 0;
483
484 /* flag the file so we don't compress in the future */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200485 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Masonc8b97812008-10-29 14:49:59 -0400486 }
Chris Mason771ed682008-11-06 22:02:51 -0500487 if (will_compress) {
488 *num_added += 1;
489
490 /* the async work queues will take care of doing actual
491 * allocation on disk for these compressed pages,
492 * and will submit them to the elevator.
493 */
494 add_async_extent(async_cow, start, num_bytes,
495 total_compressed, pages, nr_pages_ret);
496
Chris Mason42dc7ba2008-12-15 11:44:56 -0500497 if (start + num_bytes < end && start + num_bytes < actual_end) {
Chris Mason771ed682008-11-06 22:02:51 -0500498 start += num_bytes;
499 pages = NULL;
500 cond_resched();
501 goto again;
502 }
503 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500504cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500505 /*
506 * No compression, but we still need to write the pages in
507 * the file we've been given so far. redirty the locked
508 * page if it corresponds to our extent and set things up
509 * for the async work queue to run cow_file_range to do
510 * the normal delalloc dance
511 */
512 if (page_offset(locked_page) >= start &&
513 page_offset(locked_page) <= end) {
514 __set_page_dirty_nobuffers(locked_page);
515 /* unlocked later on in the async handlers */
516 }
517 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
518 *num_added += 1;
519 }
520
521out:
522 return 0;
523
524free_pages_out:
525 for (i = 0; i < nr_pages_ret; i++) {
526 WARN_ON(pages[i]->mapping);
527 page_cache_release(pages[i]);
528 }
Chris Masond3977122009-01-05 21:25:51 -0500529 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500530
531 goto out;
532}
533
534/*
535 * phase two of compressed writeback. This is the ordered portion
536 * of the code, which only gets called in the order the work was
537 * queued. We walk all the async extents created by compress_file_range
538 * and send them down to the disk.
539 */
540static noinline int submit_compressed_extents(struct inode *inode,
541 struct async_cow *async_cow)
542{
543 struct async_extent *async_extent;
544 u64 alloc_hint = 0;
545 struct btrfs_trans_handle *trans;
546 struct btrfs_key ins;
547 struct extent_map *em;
548 struct btrfs_root *root = BTRFS_I(inode)->root;
549 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
550 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500551 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500552
553 if (list_empty(&async_cow->extents))
554 return 0;
555
Chris Mason771ed682008-11-06 22:02:51 -0500556
Chris Masond3977122009-01-05 21:25:51 -0500557 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500558 async_extent = list_entry(async_cow->extents.next,
559 struct async_extent, list);
560 list_del(&async_extent->list);
561
562 io_tree = &BTRFS_I(inode)->io_tree;
563
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500564retry:
Chris Mason771ed682008-11-06 22:02:51 -0500565 /* did the compression code fall back to uncompressed IO? */
566 if (!async_extent->pages) {
567 int page_started = 0;
568 unsigned long nr_written = 0;
569
570 lock_extent(io_tree, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500571 async_extent->start +
572 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500573
574 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500575 ret = cow_file_range(inode, async_cow->locked_page,
576 async_extent->start,
577 async_extent->start +
578 async_extent->ram_size - 1,
579 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500580
581 /*
582 * if page_started, cow_file_range inserted an
583 * inline extent and took care of all the unlocking
584 * and IO for us. Otherwise, we need to submit
585 * all those pages down to the drive.
586 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500587 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500588 extent_write_locked_range(io_tree,
589 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500590 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500591 async_extent->ram_size - 1,
592 btrfs_get_extent,
593 WB_SYNC_ALL);
594 kfree(async_extent);
595 cond_resched();
596 continue;
597 }
598
599 lock_extent(io_tree, async_extent->start,
600 async_extent->start + async_extent->ram_size - 1,
601 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500602
Yan, Zhengc2167752009-11-12 09:34:21 +0000603 trans = btrfs_join_transaction(root, 1);
Chris Mason771ed682008-11-06 22:02:51 -0500604 ret = btrfs_reserve_extent(trans, root,
605 async_extent->compressed_size,
606 async_extent->compressed_size,
607 0, alloc_hint,
608 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000609 btrfs_end_transaction(trans, root);
610
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500611 if (ret) {
612 int i;
613 for (i = 0; i < async_extent->nr_pages; i++) {
614 WARN_ON(async_extent->pages[i]->mapping);
615 page_cache_release(async_extent->pages[i]);
616 }
617 kfree(async_extent->pages);
618 async_extent->nr_pages = 0;
619 async_extent->pages = NULL;
620 unlock_extent(io_tree, async_extent->start,
621 async_extent->start +
622 async_extent->ram_size - 1, GFP_NOFS);
623 goto retry;
624 }
625
Yan, Zhengc2167752009-11-12 09:34:21 +0000626 /*
627 * here we're doing allocation and writeback of the
628 * compressed pages
629 */
630 btrfs_drop_extent_cache(inode, async_extent->start,
631 async_extent->start +
632 async_extent->ram_size - 1, 0);
633
Chris Mason771ed682008-11-06 22:02:51 -0500634 em = alloc_extent_map(GFP_NOFS);
635 em->start = async_extent->start;
636 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500637 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500638
639 em->block_start = ins.objectid;
640 em->block_len = ins.offset;
641 em->bdev = root->fs_info->fs_devices->latest_bdev;
642 set_bit(EXTENT_FLAG_PINNED, &em->flags);
643 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
644
Chris Masond3977122009-01-05 21:25:51 -0500645 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400646 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500647 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400648 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500649 if (ret != -EEXIST) {
650 free_extent_map(em);
651 break;
652 }
653 btrfs_drop_extent_cache(inode, async_extent->start,
654 async_extent->start +
655 async_extent->ram_size - 1, 0);
656 }
657
658 ret = btrfs_add_ordered_extent(inode, async_extent->start,
659 ins.objectid,
660 async_extent->ram_size,
661 ins.offset,
662 BTRFS_ORDERED_COMPRESSED);
663 BUG_ON(ret);
664
Chris Mason771ed682008-11-06 22:02:51 -0500665 /*
666 * clear dirty, set writeback and unlock the pages.
667 */
668 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400669 &BTRFS_I(inode)->io_tree,
670 async_extent->start,
671 async_extent->start +
672 async_extent->ram_size - 1,
673 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
674 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400675 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400676 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500677
678 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500679 async_extent->start,
680 async_extent->ram_size,
681 ins.objectid,
682 ins.offset, async_extent->pages,
683 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500684
685 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500686 alloc_hint = ins.objectid + ins.offset;
687 kfree(async_extent);
688 cond_resched();
689 }
690
Chris Mason771ed682008-11-06 22:02:51 -0500691 return 0;
692}
693
694/*
695 * when extent_io.c finds a delayed allocation range in the file,
696 * the call backs end up in this code. The basic idea is to
697 * allocate extents on disk for the range, and create ordered data structs
698 * in ram to track those extents.
699 *
700 * locked_page is the page that writepage had locked already. We use
701 * it to make sure we don't do extra locks or unlocks.
702 *
703 * *page_started is set to one if we unlock locked_page and do everything
704 * required to start IO on it. It may be clean and already done with
705 * IO when we return.
706 */
707static noinline int cow_file_range(struct inode *inode,
708 struct page *locked_page,
709 u64 start, u64 end, int *page_started,
710 unsigned long *nr_written,
711 int unlock)
712{
713 struct btrfs_root *root = BTRFS_I(inode)->root;
714 struct btrfs_trans_handle *trans;
715 u64 alloc_hint = 0;
716 u64 num_bytes;
717 unsigned long ram_size;
718 u64 disk_num_bytes;
719 u64 cur_alloc_size;
720 u64 blocksize = root->sectorsize;
721 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500722 u64 isize = i_size_read(inode);
Chris Mason771ed682008-11-06 22:02:51 -0500723 struct btrfs_key ins;
724 struct extent_map *em;
725 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
726 int ret = 0;
727
728 trans = btrfs_join_transaction(root, 1);
729 BUG_ON(!trans);
730 btrfs_set_trans_block_group(trans, inode);
731
Chris Mason42dc7ba2008-12-15 11:44:56 -0500732 actual_end = min_t(u64, isize, end + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500733
734 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
735 num_bytes = max(blocksize, num_bytes);
736 disk_num_bytes = num_bytes;
737 ret = 0;
738
739 if (start == 0) {
740 /* lets try to make an inline extent */
741 ret = cow_file_range_inline(trans, root, inode,
742 start, end, 0, NULL);
743 if (ret == 0) {
744 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400745 &BTRFS_I(inode)->io_tree,
746 start, end, NULL,
747 EXTENT_CLEAR_UNLOCK_PAGE |
748 EXTENT_CLEAR_UNLOCK |
749 EXTENT_CLEAR_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -0400750 EXTENT_CLEAR_ACCOUNTING |
Chris Masona791e352009-10-08 11:27:10 -0400751 EXTENT_CLEAR_DIRTY |
752 EXTENT_SET_WRITEBACK |
753 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000754
Chris Mason771ed682008-11-06 22:02:51 -0500755 *nr_written = *nr_written +
756 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
757 *page_started = 1;
758 ret = 0;
759 goto out;
760 }
761 }
Chris Masonc8b97812008-10-29 14:49:59 -0400762
763 BUG_ON(disk_num_bytes >
764 btrfs_super_total_bytes(&root->fs_info->super_copy));
765
Chris Masonb917b7c2009-09-18 16:07:03 -0400766
767 read_lock(&BTRFS_I(inode)->extent_tree.lock);
768 em = search_extent_mapping(&BTRFS_I(inode)->extent_tree,
769 start, num_bytes);
770 if (em) {
Josef Bacik6346c932009-11-10 21:23:47 -0500771 /*
772 * if block start isn't an actual block number then find the
773 * first block in this inode and use that as a hint. If that
774 * block is also bogus then just don't worry about it.
775 */
776 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
777 free_extent_map(em);
778 em = search_extent_mapping(em_tree, 0, 0);
779 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
780 alloc_hint = em->block_start;
781 if (em)
782 free_extent_map(em);
783 } else {
784 alloc_hint = em->block_start;
785 free_extent_map(em);
786 }
Chris Masonb917b7c2009-09-18 16:07:03 -0400787 }
788 read_unlock(&BTRFS_I(inode)->extent_tree.lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400789 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400790
Chris Masond3977122009-01-05 21:25:51 -0500791 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400792 unsigned long op;
793
Chris Masonc8b97812008-10-29 14:49:59 -0400794 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400795 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500796 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400797 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500798 BUG_ON(ret);
799
Chris Masone6dcd2d2008-07-17 12:53:50 -0400800 em = alloc_extent_map(GFP_NOFS);
801 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500802 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500803 ram_size = ins.offset;
804 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400805
Chris Masone6dcd2d2008-07-17 12:53:50 -0400806 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400807 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400808 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400809 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400810
Chris Masond3977122009-01-05 21:25:51 -0500811 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400812 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400813 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400814 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400815 if (ret != -EEXIST) {
816 free_extent_map(em);
817 break;
818 }
819 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400820 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400821 }
822
Chris Mason98d20f62008-04-14 09:46:10 -0400823 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400824 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500825 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400826 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400827
Yan Zheng17d217f2008-12-12 10:03:38 -0500828 if (root->root_key.objectid ==
829 BTRFS_DATA_RELOC_TREE_OBJECTID) {
830 ret = btrfs_reloc_clone_csums(inode, start,
831 cur_alloc_size);
832 BUG_ON(ret);
833 }
834
Chris Masond3977122009-01-05 21:25:51 -0500835 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400836 break;
Chris Masond3977122009-01-05 21:25:51 -0500837
Chris Masonc8b97812008-10-29 14:49:59 -0400838 /* we're not doing compressed IO, don't unlock the first
839 * page (which the caller expects to stay locked), don't
840 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400841 *
842 * Do set the Private2 bit so we know this page was properly
843 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400844 */
Chris Masona791e352009-10-08 11:27:10 -0400845 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
846 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
847 EXTENT_SET_PRIVATE2;
848
Chris Masonc8b97812008-10-29 14:49:59 -0400849 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
850 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400851 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400852 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500853 num_bytes -= cur_alloc_size;
854 alloc_hint = ins.objectid + ins.offset;
855 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400856 }
Chris Masonb888db22007-08-27 16:49:44 -0400857out:
Chris Mason771ed682008-11-06 22:02:51 -0500858 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400859 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400860
Chris Masonbe20aa92007-12-17 20:14:01 -0500861 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500862}
Chris Masonc8b97812008-10-29 14:49:59 -0400863
Chris Mason771ed682008-11-06 22:02:51 -0500864/*
865 * work queue call back to started compression on a file and pages
866 */
867static noinline void async_cow_start(struct btrfs_work *work)
868{
869 struct async_cow *async_cow;
870 int num_added = 0;
871 async_cow = container_of(work, struct async_cow, work);
872
873 compress_file_range(async_cow->inode, async_cow->locked_page,
874 async_cow->start, async_cow->end, async_cow,
875 &num_added);
876 if (num_added == 0)
877 async_cow->inode = NULL;
878}
879
880/*
881 * work queue call back to submit previously compressed pages
882 */
883static noinline void async_cow_submit(struct btrfs_work *work)
884{
885 struct async_cow *async_cow;
886 struct btrfs_root *root;
887 unsigned long nr_pages;
888
889 async_cow = container_of(work, struct async_cow, work);
890
891 root = async_cow->root;
892 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
893 PAGE_CACHE_SHIFT;
894
895 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
896
897 if (atomic_read(&root->fs_info->async_delalloc_pages) <
898 5 * 1042 * 1024 &&
899 waitqueue_active(&root->fs_info->async_submit_wait))
900 wake_up(&root->fs_info->async_submit_wait);
901
Chris Masond3977122009-01-05 21:25:51 -0500902 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500903 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500904}
Chris Masonc8b97812008-10-29 14:49:59 -0400905
Chris Mason771ed682008-11-06 22:02:51 -0500906static noinline void async_cow_free(struct btrfs_work *work)
907{
908 struct async_cow *async_cow;
909 async_cow = container_of(work, struct async_cow, work);
910 kfree(async_cow);
911}
912
913static int cow_file_range_async(struct inode *inode, struct page *locked_page,
914 u64 start, u64 end, int *page_started,
915 unsigned long *nr_written)
916{
917 struct async_cow *async_cow;
918 struct btrfs_root *root = BTRFS_I(inode)->root;
919 unsigned long nr_pages;
920 u64 cur_end;
921 int limit = 10 * 1024 * 1042;
922
Chris Masona3429ab2009-10-08 12:30:20 -0400923 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
924 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500925 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500926 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
927 async_cow->inode = inode;
928 async_cow->root = root;
929 async_cow->locked_page = locked_page;
930 async_cow->start = start;
931
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200932 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500933 cur_end = end;
934 else
935 cur_end = min(end, start + 512 * 1024 - 1);
936
937 async_cow->end = cur_end;
938 INIT_LIST_HEAD(&async_cow->extents);
939
940 async_cow->work.func = async_cow_start;
941 async_cow->work.ordered_func = async_cow_submit;
942 async_cow->work.ordered_free = async_cow_free;
943 async_cow->work.flags = 0;
944
Chris Mason771ed682008-11-06 22:02:51 -0500945 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
946 PAGE_CACHE_SHIFT;
947 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
948
949 btrfs_queue_worker(&root->fs_info->delalloc_workers,
950 &async_cow->work);
951
952 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
953 wait_event(root->fs_info->async_submit_wait,
954 (atomic_read(&root->fs_info->async_delalloc_pages) <
955 limit));
956 }
957
Chris Masond3977122009-01-05 21:25:51 -0500958 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500959 atomic_read(&root->fs_info->async_delalloc_pages)) {
960 wait_event(root->fs_info->async_submit_wait,
961 (atomic_read(&root->fs_info->async_delalloc_pages) ==
962 0));
963 }
964
965 *nr_written += nr_pages;
966 start = cur_end + 1;
967 }
968 *page_started = 1;
969 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500970}
971
Chris Masond3977122009-01-05 21:25:51 -0500972static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500973 u64 bytenr, u64 num_bytes)
974{
975 int ret;
976 struct btrfs_ordered_sum *sums;
977 LIST_HEAD(list);
978
Yan Zheng07d400a2009-01-06 11:42:00 -0500979 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
980 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500981 if (ret == 0 && list_empty(&list))
982 return 0;
983
984 while (!list_empty(&list)) {
985 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
986 list_del(&sums->list);
987 kfree(sums);
988 }
989 return 1;
990}
991
Chris Masond352ac62008-09-29 15:18:18 -0400992/*
993 * when nowcow writeback call back. This checks for snapshots or COW copies
994 * of the extents that exist in the file, and COWs the file as required.
995 *
996 * If no cow copies or snapshots exist, we write directly to the existing
997 * blocks on disk
998 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400999static noinline int run_delalloc_nocow(struct inode *inode,
1000 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001001 u64 start, u64 end, int *page_started, int force,
1002 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001003{
Chris Masonbe20aa92007-12-17 20:14:01 -05001004 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001005 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001006 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001007 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001008 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001009 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001010 u64 cow_start;
1011 u64 cur_offset;
1012 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001013 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001014 u64 disk_bytenr;
1015 u64 num_bytes;
1016 int extent_type;
1017 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001018 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001019 int nocow;
1020 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -05001021
1022 path = btrfs_alloc_path();
1023 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001024 trans = btrfs_join_transaction(root, 1);
1025 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -05001026
Yan Zheng80ff3852008-10-30 14:20:02 -04001027 cow_start = (u64)-1;
1028 cur_offset = start;
1029 while (1) {
1030 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1031 cur_offset, 0);
1032 BUG_ON(ret < 0);
1033 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1034 leaf = path->nodes[0];
1035 btrfs_item_key_to_cpu(leaf, &found_key,
1036 path->slots[0] - 1);
1037 if (found_key.objectid == inode->i_ino &&
1038 found_key.type == BTRFS_EXTENT_DATA_KEY)
1039 path->slots[0]--;
1040 }
1041 check_prev = 0;
1042next_slot:
1043 leaf = path->nodes[0];
1044 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1045 ret = btrfs_next_leaf(root, path);
1046 if (ret < 0)
1047 BUG_ON(1);
1048 if (ret > 0)
1049 break;
1050 leaf = path->nodes[0];
1051 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001052
Yan Zheng80ff3852008-10-30 14:20:02 -04001053 nocow = 0;
1054 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001055 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001056 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001057
Yan Zheng80ff3852008-10-30 14:20:02 -04001058 if (found_key.objectid > inode->i_ino ||
1059 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1060 found_key.offset > end)
1061 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001062
Yan Zheng80ff3852008-10-30 14:20:02 -04001063 if (found_key.offset > cur_offset) {
1064 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001065 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001066 goto out_check;
1067 }
Chris Masonc31f8832008-01-08 15:46:31 -05001068
Yan Zheng80ff3852008-10-30 14:20:02 -04001069 fi = btrfs_item_ptr(leaf, path->slots[0],
1070 struct btrfs_file_extent_item);
1071 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001072
Yan Zhengd899e052008-10-30 14:25:28 -04001073 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1074 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001075 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001076 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001077 extent_end = found_key.offset +
1078 btrfs_file_extent_num_bytes(leaf, fi);
1079 if (extent_end <= start) {
1080 path->slots[0]++;
1081 goto next_slot;
1082 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001083 if (disk_bytenr == 0)
1084 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001085 if (btrfs_file_extent_compression(leaf, fi) ||
1086 btrfs_file_extent_encryption(leaf, fi) ||
1087 btrfs_file_extent_other_encoding(leaf, fi))
1088 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001089 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1090 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001091 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001092 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001093 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001094 found_key.offset -
1095 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001096 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001097 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001098 disk_bytenr += cur_offset - found_key.offset;
1099 num_bytes = min(end + 1, extent_end) - cur_offset;
1100 /*
1101 * force cow if csum exists in the range.
1102 * this ensure that csum for a given extent are
1103 * either valid or do not exist.
1104 */
1105 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1106 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001107 nocow = 1;
1108 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1109 extent_end = found_key.offset +
1110 btrfs_file_extent_inline_len(leaf, fi);
1111 extent_end = ALIGN(extent_end, root->sectorsize);
1112 } else {
1113 BUG_ON(1);
1114 }
1115out_check:
1116 if (extent_end <= start) {
1117 path->slots[0]++;
1118 goto next_slot;
1119 }
1120 if (!nocow) {
1121 if (cow_start == (u64)-1)
1122 cow_start = cur_offset;
1123 cur_offset = extent_end;
1124 if (cur_offset > end)
1125 break;
1126 path->slots[0]++;
1127 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001128 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001129
Yan Zheng7ea394f2008-08-05 13:05:02 -04001130 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001131 if (cow_start != (u64)-1) {
1132 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001133 found_key.offset - 1, page_started,
1134 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001135 BUG_ON(ret);
1136 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001137 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001138
Yan Zhengd899e052008-10-30 14:25:28 -04001139 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1140 struct extent_map *em;
1141 struct extent_map_tree *em_tree;
1142 em_tree = &BTRFS_I(inode)->extent_tree;
1143 em = alloc_extent_map(GFP_NOFS);
1144 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001145 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001146 em->len = num_bytes;
1147 em->block_len = num_bytes;
1148 em->block_start = disk_bytenr;
1149 em->bdev = root->fs_info->fs_devices->latest_bdev;
1150 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1151 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001152 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001153 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001154 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001155 if (ret != -EEXIST) {
1156 free_extent_map(em);
1157 break;
1158 }
1159 btrfs_drop_extent_cache(inode, em->start,
1160 em->start + em->len - 1, 0);
1161 }
1162 type = BTRFS_ORDERED_PREALLOC;
1163 } else {
1164 type = BTRFS_ORDERED_NOCOW;
1165 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001166
1167 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001168 num_bytes, num_bytes, type);
1169 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001170
Yan Zhengd899e052008-10-30 14:25:28 -04001171 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001172 cur_offset, cur_offset + num_bytes - 1,
1173 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1174 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1175 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001176 cur_offset = extent_end;
1177 if (cur_offset > end)
1178 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001179 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001180 btrfs_release_path(root, path);
1181
1182 if (cur_offset <= end && cow_start == (u64)-1)
1183 cow_start = cur_offset;
1184 if (cow_start != (u64)-1) {
1185 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001186 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001187 BUG_ON(ret);
1188 }
1189
1190 ret = btrfs_end_transaction(trans, root);
1191 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001192 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001193 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001194}
1195
Chris Masond352ac62008-09-29 15:18:18 -04001196/*
1197 * extent_io.c call back to do delayed allocation processing
1198 */
Chris Masonc8b97812008-10-29 14:49:59 -04001199static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001200 u64 start, u64 end, int *page_started,
1201 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001202{
Chris Masonbe20aa92007-12-17 20:14:01 -05001203 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001204 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001205
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001206 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001207 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001208 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001209 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001210 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001211 page_started, 0, nr_written);
Chris Mason7f366cf2009-03-12 20:12:45 -04001212 else if (!btrfs_test_opt(root, COMPRESS))
1213 ret = cow_file_range(inode, locked_page, start, end,
1214 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001215 else
Chris Mason771ed682008-11-06 22:02:51 -05001216 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001217 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001218 return ret;
1219}
1220
Josef Bacik9ed74f22009-09-11 16:12:44 -04001221static int btrfs_split_extent_hook(struct inode *inode,
1222 struct extent_state *orig, u64 split)
1223{
1224 struct btrfs_root *root = BTRFS_I(inode)->root;
1225 u64 size;
1226
1227 if (!(orig->state & EXTENT_DELALLOC))
1228 return 0;
1229
1230 size = orig->end - orig->start + 1;
1231 if (size > root->fs_info->max_extent) {
1232 u64 num_extents;
1233 u64 new_size;
1234
1235 new_size = orig->end - split + 1;
1236 num_extents = div64_u64(size + root->fs_info->max_extent - 1,
1237 root->fs_info->max_extent);
1238
1239 /*
Josef Bacik32c00af2009-10-08 13:34:05 -04001240 * if we break a large extent up then leave oustanding_extents
1241 * be, since we've already accounted for the large extent.
Josef Bacik9ed74f22009-09-11 16:12:44 -04001242 */
1243 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1244 root->fs_info->max_extent) < num_extents)
1245 return 0;
1246 }
1247
Josef Bacik32c00af2009-10-08 13:34:05 -04001248 spin_lock(&BTRFS_I(inode)->accounting_lock);
1249 BTRFS_I(inode)->outstanding_extents++;
1250 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001251
1252 return 0;
1253}
1254
1255/*
1256 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1257 * extents so we can keep track of new extents that are just merged onto old
1258 * extents, such as when we are doing sequential writes, so we can properly
1259 * account for the metadata space we'll need.
1260 */
1261static int btrfs_merge_extent_hook(struct inode *inode,
1262 struct extent_state *new,
1263 struct extent_state *other)
1264{
1265 struct btrfs_root *root = BTRFS_I(inode)->root;
1266 u64 new_size, old_size;
1267 u64 num_extents;
1268
1269 /* not delalloc, ignore it */
1270 if (!(other->state & EXTENT_DELALLOC))
1271 return 0;
1272
1273 old_size = other->end - other->start + 1;
1274 if (new->start < other->start)
1275 new_size = other->end - new->start + 1;
1276 else
1277 new_size = new->end - other->start + 1;
1278
1279 /* we're not bigger than the max, unreserve the space and go */
1280 if (new_size <= root->fs_info->max_extent) {
Josef Bacik32c00af2009-10-08 13:34:05 -04001281 spin_lock(&BTRFS_I(inode)->accounting_lock);
1282 BTRFS_I(inode)->outstanding_extents--;
1283 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001284 return 0;
1285 }
1286
1287 /*
1288 * If we grew by another max_extent, just return, we want to keep that
1289 * reserved amount.
1290 */
1291 num_extents = div64_u64(old_size + root->fs_info->max_extent - 1,
1292 root->fs_info->max_extent);
1293 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1294 root->fs_info->max_extent) > num_extents)
1295 return 0;
1296
Josef Bacik32c00af2009-10-08 13:34:05 -04001297 spin_lock(&BTRFS_I(inode)->accounting_lock);
1298 BTRFS_I(inode)->outstanding_extents--;
1299 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001300
1301 return 0;
1302}
1303
Chris Masond352ac62008-09-29 15:18:18 -04001304/*
1305 * extent_io.c set_bit_hook, used to track delayed allocation
1306 * bytes in this file, and to maintain the list of inodes that
1307 * have pending delalloc work to be done.
1308 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001309static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001310 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001311{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001312
Chris Mason75eff682008-12-15 15:54:40 -05001313 /*
1314 * set_bit and clear bit hooks normally require _irqsave/restore
1315 * but in this case, we are only testeing for the DELALLOC
1316 * bit, which is only set or cleared with irqs on
1317 */
Chris Masonb0c68f82008-01-31 11:05:37 -05001318 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001319 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001320
Josef Bacik32c00af2009-10-08 13:34:05 -04001321 spin_lock(&BTRFS_I(inode)->accounting_lock);
1322 BTRFS_I(inode)->outstanding_extents++;
1323 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik6a632092009-02-20 11:00:09 -05001324 btrfs_delalloc_reserve_space(root, inode, end - start + 1);
Chris Mason75eff682008-12-15 15:54:40 -05001325 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -05001326 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001327 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001328 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1329 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1330 &root->fs_info->delalloc_inodes);
1331 }
Chris Mason75eff682008-12-15 15:54:40 -05001332 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001333 }
1334 return 0;
1335}
1336
Chris Masond352ac62008-09-29 15:18:18 -04001337/*
1338 * extent_io.c clear_bit_hook, see set_bit_hook for why
1339 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001340static int btrfs_clear_bit_hook(struct inode *inode,
1341 struct extent_state *state, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001342{
Chris Mason75eff682008-12-15 15:54:40 -05001343 /*
1344 * set_bit and clear bit hooks normally require _irqsave/restore
1345 * but in this case, we are only testeing for the DELALLOC
1346 * bit, which is only set or cleared with irqs on
1347 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001348 if ((state->state & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001349 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001350
Josef Bacik32c00af2009-10-08 13:34:05 -04001351 if (bits & EXTENT_DO_ACCOUNTING) {
1352 spin_lock(&BTRFS_I(inode)->accounting_lock);
1353 BTRFS_I(inode)->outstanding_extents--;
1354 spin_unlock(&BTRFS_I(inode)->accounting_lock);
1355 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
1356 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04001357
Chris Mason75eff682008-12-15 15:54:40 -05001358 spin_lock(&root->fs_info->delalloc_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001359 if (state->end - state->start + 1 >
1360 root->fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05001361 printk(KERN_INFO "btrfs warning: delalloc account "
1362 "%llu %llu\n",
Josef Bacik9ed74f22009-09-11 16:12:44 -04001363 (unsigned long long)
1364 state->end - state->start + 1,
Chris Masond3977122009-01-05 21:25:51 -05001365 (unsigned long long)
1366 root->fs_info->delalloc_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001367 btrfs_delalloc_free_space(root, inode, (u64)-1);
Chris Masonb0c68f82008-01-31 11:05:37 -05001368 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001369 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001370 } else {
Josef Bacik6a632092009-02-20 11:00:09 -05001371 btrfs_delalloc_free_space(root, inode,
Josef Bacik9ed74f22009-09-11 16:12:44 -04001372 state->end -
1373 state->start + 1);
1374 root->fs_info->delalloc_bytes -= state->end -
1375 state->start + 1;
1376 BTRFS_I(inode)->delalloc_bytes -= state->end -
1377 state->start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001378 }
Chris Masonea8c2812008-08-04 23:17:27 -04001379 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1380 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1381 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1382 }
Chris Mason75eff682008-12-15 15:54:40 -05001383 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001384 }
1385 return 0;
1386}
1387
Chris Masond352ac62008-09-29 15:18:18 -04001388/*
1389 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1390 * we don't create bios that span stripes or chunks
1391 */
Chris Mason239b14b2008-03-24 15:02:07 -04001392int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001393 size_t size, struct bio *bio,
1394 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001395{
1396 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1397 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001398 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001399 u64 length = 0;
1400 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001401 int ret;
1402
Chris Mason771ed682008-11-06 22:02:51 -05001403 if (bio_flags & EXTENT_BIO_COMPRESSED)
1404 return 0;
1405
Chris Masonf2d8d742008-04-21 10:03:05 -04001406 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001407 map_tree = &root->fs_info->mapping_tree;
1408 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001409 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001410 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001411
Chris Masond3977122009-01-05 21:25:51 -05001412 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001413 return 1;
Chris Mason239b14b2008-03-24 15:02:07 -04001414 return 0;
1415}
1416
Chris Masond352ac62008-09-29 15:18:18 -04001417/*
1418 * in order to insert checksums into the metadata in large chunks,
1419 * we wait until bio submission time. All the pages in the bio are
1420 * checksummed and sums are attached onto the ordered extent record.
1421 *
1422 * At IO completion time the cums attached on the ordered extent record
1423 * are inserted into the btree
1424 */
Chris Masond3977122009-01-05 21:25:51 -05001425static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1426 struct bio *bio, int mirror_num,
1427 unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001428{
Chris Mason065631f2008-02-20 12:07:25 -05001429 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001430 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001431
Chris Masond20f7042008-12-08 16:58:54 -05001432 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001433 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001434 return 0;
1435}
Chris Masone0156402008-04-16 11:15:20 -04001436
Chris Mason4a69a412008-11-06 22:03:00 -05001437/*
1438 * in order to insert checksums into the metadata in large chunks,
1439 * we wait until bio submission time. All the pages in the bio are
1440 * checksummed and sums are attached onto the ordered extent record.
1441 *
1442 * At IO completion time the cums attached on the ordered extent record
1443 * are inserted into the btree
1444 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001445static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Mason4a69a412008-11-06 22:03:00 -05001446 int mirror_num, unsigned long bio_flags)
1447{
1448 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001449 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001450}
1451
Chris Masond352ac62008-09-29 15:18:18 -04001452/*
Chris Masoncad321a2008-12-17 14:51:42 -05001453 * extent_io.c submission hook. This does the right thing for csum calculation
1454 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001455 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001456static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001457 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001458{
1459 struct btrfs_root *root = BTRFS_I(inode)->root;
1460 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001461 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001462
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001463 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001464
Chris Masone6dcd2d2008-07-17 12:53:50 -04001465 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1466 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001467
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001468 if (!(rw & (1 << BIO_RW))) {
Chris Masond20f7042008-12-08 16:58:54 -05001469 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001470 return btrfs_submit_compressed_read(inode, bio,
1471 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001472 } else if (!skip_sum)
1473 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001474 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001475 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001476 /* csum items have already been cloned */
1477 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1478 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001479 /* we're doing a write, do the async checksumming */
1480 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001481 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001482 bio_flags, __btrfs_submit_bio_start,
1483 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001484 }
1485
Chris Mason0b86a832008-03-24 15:01:56 -04001486mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001487 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001488}
Chris Mason6885f302008-02-20 16:11:05 -05001489
Chris Masond352ac62008-09-29 15:18:18 -04001490/*
1491 * given a list of ordered sums record them in the inode. This happens
1492 * at IO completion time based on sums calculated at bio submission time.
1493 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001494static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001495 struct inode *inode, u64 file_offset,
1496 struct list_head *list)
1497{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001498 struct btrfs_ordered_sum *sum;
1499
1500 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001501
1502 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001503 btrfs_csum_file_blocks(trans,
1504 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001505 }
1506 return 0;
1507}
1508
Chris Masonea8c2812008-08-04 23:17:27 -04001509int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1510{
Chris Masond3977122009-01-05 21:25:51 -05001511 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001512 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001513 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1514 GFP_NOFS);
1515}
1516
Chris Masond352ac62008-09-29 15:18:18 -04001517/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001518struct btrfs_writepage_fixup {
1519 struct page *page;
1520 struct btrfs_work work;
1521};
1522
Christoph Hellwigb2950862008-12-02 09:54:17 -05001523static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001524{
1525 struct btrfs_writepage_fixup *fixup;
1526 struct btrfs_ordered_extent *ordered;
1527 struct page *page;
1528 struct inode *inode;
1529 u64 page_start;
1530 u64 page_end;
1531
1532 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1533 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001534again:
Chris Mason247e7432008-07-17 12:53:51 -04001535 lock_page(page);
1536 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1537 ClearPageChecked(page);
1538 goto out_page;
1539 }
1540
1541 inode = page->mapping->host;
1542 page_start = page_offset(page);
1543 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1544
1545 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001546
1547 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001548 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001549 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001550
1551 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1552 if (ordered) {
1553 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1554 page_end, GFP_NOFS);
1555 unlock_page(page);
1556 btrfs_start_ordered_extent(inode, ordered, 1);
1557 goto again;
1558 }
Chris Mason247e7432008-07-17 12:53:51 -04001559
Chris Masonea8c2812008-08-04 23:17:27 -04001560 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001561 ClearPageChecked(page);
1562out:
1563 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1564out_page:
1565 unlock_page(page);
1566 page_cache_release(page);
1567}
1568
1569/*
1570 * There are a few paths in the higher layers of the kernel that directly
1571 * set the page dirty bit without asking the filesystem if it is a
1572 * good idea. This causes problems because we want to make sure COW
1573 * properly happens and the data=ordered rules are followed.
1574 *
Chris Masonc8b97812008-10-29 14:49:59 -04001575 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001576 * hasn't been properly setup for IO. We kick off an async process
1577 * to fix it up. The async helper will wait for ordered extents, set
1578 * the delalloc bit and make it safe to write the page.
1579 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001580static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001581{
1582 struct inode *inode = page->mapping->host;
1583 struct btrfs_writepage_fixup *fixup;
1584 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001585
Chris Mason8b62b722009-09-02 16:53:46 -04001586 /* this page is properly in the ordered list */
1587 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001588 return 0;
1589
1590 if (PageChecked(page))
1591 return -EAGAIN;
1592
1593 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1594 if (!fixup)
1595 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001596
Chris Mason247e7432008-07-17 12:53:51 -04001597 SetPageChecked(page);
1598 page_cache_get(page);
1599 fixup->work.func = btrfs_writepage_fixup_worker;
1600 fixup->page = page;
1601 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1602 return -EAGAIN;
1603}
1604
Yan Zhengd899e052008-10-30 14:25:28 -04001605static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1606 struct inode *inode, u64 file_pos,
1607 u64 disk_bytenr, u64 disk_num_bytes,
1608 u64 num_bytes, u64 ram_bytes,
1609 u8 compression, u8 encryption,
1610 u16 other_encoding, int extent_type)
1611{
1612 struct btrfs_root *root = BTRFS_I(inode)->root;
1613 struct btrfs_file_extent_item *fi;
1614 struct btrfs_path *path;
1615 struct extent_buffer *leaf;
1616 struct btrfs_key ins;
1617 u64 hint;
1618 int ret;
1619
1620 path = btrfs_alloc_path();
1621 BUG_ON(!path);
1622
Chris Masonb9473432009-03-13 11:00:37 -04001623 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001624
1625 /*
1626 * we may be replacing one extent in the tree with another.
1627 * The new extent is pinned in the extent map, and we don't want
1628 * to drop it from the cache until it is completely in the btree.
1629 *
1630 * So, tell btrfs_drop_extents to leave this extent in the cache.
1631 * the caller is expected to unpin it and allow it to be merged
1632 * with the others.
1633 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001634 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1635 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001636 BUG_ON(ret);
1637
1638 ins.objectid = inode->i_ino;
1639 ins.offset = file_pos;
1640 ins.type = BTRFS_EXTENT_DATA_KEY;
1641 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1642 BUG_ON(ret);
1643 leaf = path->nodes[0];
1644 fi = btrfs_item_ptr(leaf, path->slots[0],
1645 struct btrfs_file_extent_item);
1646 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1647 btrfs_set_file_extent_type(leaf, fi, extent_type);
1648 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1649 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1650 btrfs_set_file_extent_offset(leaf, fi, 0);
1651 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1652 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1653 btrfs_set_file_extent_compression(leaf, fi, compression);
1654 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1655 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001656
1657 btrfs_unlock_up_safe(path, 1);
1658 btrfs_set_lock_blocking(leaf);
1659
Yan Zhengd899e052008-10-30 14:25:28 -04001660 btrfs_mark_buffer_dirty(leaf);
1661
1662 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001663
1664 ins.objectid = disk_bytenr;
1665 ins.offset = disk_num_bytes;
1666 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001667 ret = btrfs_alloc_reserved_file_extent(trans, root,
1668 root->root_key.objectid,
1669 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001670 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001671 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001672
Yan Zhengd899e052008-10-30 14:25:28 -04001673 return 0;
1674}
1675
Chris Mason5d13a982009-03-13 11:41:46 -04001676/*
1677 * helper function for btrfs_finish_ordered_io, this
1678 * just reads in some of the csum leaves to prime them into ram
1679 * before we start the transaction. It limits the amount of btree
1680 * reads required while inside the transaction.
1681 */
1682static noinline void reada_csum(struct btrfs_root *root,
1683 struct btrfs_path *path,
1684 struct btrfs_ordered_extent *ordered_extent)
1685{
1686 struct btrfs_ordered_sum *sum;
1687 u64 bytenr;
1688
1689 sum = list_entry(ordered_extent->list.next, struct btrfs_ordered_sum,
1690 list);
1691 bytenr = sum->sums[0].bytenr;
1692
1693 /*
1694 * we don't care about the results, the point of this search is
1695 * just to get the btree leaves into ram
1696 */
1697 btrfs_lookup_csum(NULL, root->fs_info->csum_root, path, bytenr, 0);
1698}
1699
Chris Masond352ac62008-09-29 15:18:18 -04001700/* as ordered data IO finishes, this gets called so we can finish
1701 * an ordered extent if the range of bytes in the file it covers are
1702 * fully written.
1703 */
Chris Mason211f90e2008-07-18 11:56:15 -04001704static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001705{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001706 struct btrfs_root *root = BTRFS_I(inode)->root;
1707 struct btrfs_trans_handle *trans;
Chris Mason5d13a982009-03-13 11:41:46 -04001708 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001709 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001710 struct btrfs_path *path;
Yan Zhengd899e052008-10-30 14:25:28 -04001711 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001712 int ret;
1713
1714 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001715 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001716 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001717
Chris Masonb7ec40d2009-03-12 20:12:45 -04001718 /*
1719 * before we join the transaction, try to do some of our IO.
1720 * This will limit the amount of IO that we have to do with
1721 * the transaction running. We're unlikely to need to do any
1722 * IO if the file extents are new, the disk_i_size checks
1723 * covers the most common case.
1724 */
1725 if (start < BTRFS_I(inode)->disk_i_size) {
1726 path = btrfs_alloc_path();
1727 if (path) {
1728 ret = btrfs_lookup_file_extent(NULL, root, path,
1729 inode->i_ino,
1730 start, 0);
Chris Mason5d13a982009-03-13 11:41:46 -04001731 ordered_extent = btrfs_lookup_ordered_extent(inode,
1732 start);
1733 if (!list_empty(&ordered_extent->list)) {
1734 btrfs_release_path(root, path);
1735 reada_csum(root, path, ordered_extent);
1736 }
Chris Masonb7ec40d2009-03-12 20:12:45 -04001737 btrfs_free_path(path);
1738 }
1739 }
1740
Chris Mason5d13a982009-03-13 11:41:46 -04001741 if (!ordered_extent)
1742 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001743 BUG_ON(!ordered_extent);
Yan, Zhengc2167752009-11-12 09:34:21 +00001744 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1745 BUG_ON(!list_empty(&ordered_extent->list));
1746 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1747 if (!ret) {
1748 trans = btrfs_join_transaction(root, 1);
1749 ret = btrfs_update_inode(trans, root, inode);
1750 BUG_ON(ret);
1751 btrfs_end_transaction(trans, root);
1752 }
1753 goto out;
1754 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001755
1756 lock_extent(io_tree, ordered_extent->file_offset,
1757 ordered_extent->file_offset + ordered_extent->len - 1,
1758 GFP_NOFS);
1759
Yan, Zhengc2167752009-11-12 09:34:21 +00001760 trans = btrfs_join_transaction(root, 1);
1761
Chris Masonc8b97812008-10-29 14:49:59 -04001762 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001763 compressed = 1;
1764 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1765 BUG_ON(compressed);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001766 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001767 ordered_extent->file_offset,
1768 ordered_extent->file_offset +
1769 ordered_extent->len);
1770 BUG_ON(ret);
1771 } else {
1772 ret = insert_reserved_file_extent(trans, inode,
1773 ordered_extent->file_offset,
1774 ordered_extent->start,
1775 ordered_extent->disk_len,
1776 ordered_extent->len,
1777 ordered_extent->len,
1778 compressed, 0, 0,
1779 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001780 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1781 ordered_extent->file_offset,
1782 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001783 BUG_ON(ret);
1784 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001785 unlock_extent(io_tree, ordered_extent->file_offset,
1786 ordered_extent->file_offset + ordered_extent->len - 1,
1787 GFP_NOFS);
1788 add_pending_csums(trans, inode, ordered_extent->file_offset,
1789 &ordered_extent->list);
1790
Yan, Zhengc2167752009-11-12 09:34:21 +00001791 /* this also removes the ordered extent from the tree */
1792 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1793 ret = btrfs_update_inode(trans, root, inode);
1794 BUG_ON(ret);
1795 btrfs_end_transaction(trans, root);
1796out:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001797 /* once for us */
1798 btrfs_put_ordered_extent(ordered_extent);
1799 /* once for the tree */
1800 btrfs_put_ordered_extent(ordered_extent);
1801
Chris Masone6dcd2d2008-07-17 12:53:50 -04001802 return 0;
1803}
1804
Christoph Hellwigb2950862008-12-02 09:54:17 -05001805static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001806 struct extent_state *state, int uptodate)
1807{
Chris Mason8b62b722009-09-02 16:53:46 -04001808 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001809 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1810}
1811
Chris Masond352ac62008-09-29 15:18:18 -04001812/*
1813 * When IO fails, either with EIO or csum verification fails, we
1814 * try other mirrors that might have a good copy of the data. This
1815 * io_failure_record is used to record state as we go through all the
1816 * mirrors. If another mirror has good data, the page is set up to date
1817 * and things continue. If a good mirror can't be found, the original
1818 * bio end_io callback is called to indicate things have failed.
1819 */
Chris Mason7e383262008-04-09 16:28:12 -04001820struct io_failure_record {
1821 struct page *page;
1822 u64 start;
1823 u64 len;
1824 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001825 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001826 int last_mirror;
1827};
1828
Christoph Hellwigb2950862008-12-02 09:54:17 -05001829static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001830 struct page *page, u64 start, u64 end,
1831 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001832{
1833 struct io_failure_record *failrec = NULL;
1834 u64 private;
1835 struct extent_map *em;
1836 struct inode *inode = page->mapping->host;
1837 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001838 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001839 struct bio *bio;
1840 int num_copies;
1841 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001842 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001843 u64 logical;
1844
1845 ret = get_state_private(failure_tree, start, &private);
1846 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001847 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1848 if (!failrec)
1849 return -ENOMEM;
1850 failrec->start = start;
1851 failrec->len = end - start + 1;
1852 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001853 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001854
Chris Mason890871b2009-09-02 16:24:52 -04001855 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001856 em = lookup_extent_mapping(em_tree, start, failrec->len);
1857 if (em->start > start || em->start + em->len < start) {
1858 free_extent_map(em);
1859 em = NULL;
1860 }
Chris Mason890871b2009-09-02 16:24:52 -04001861 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001862
1863 if (!em || IS_ERR(em)) {
1864 kfree(failrec);
1865 return -EIO;
1866 }
1867 logical = start - em->start;
1868 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001869 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1870 logical = em->block_start;
1871 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1872 }
Chris Mason7e383262008-04-09 16:28:12 -04001873 failrec->logical = logical;
1874 free_extent_map(em);
1875 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1876 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001877 set_state_private(failure_tree, start,
1878 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001879 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001880 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001881 }
1882 num_copies = btrfs_num_copies(
1883 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1884 failrec->logical, failrec->len);
1885 failrec->last_mirror++;
1886 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001887 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001888 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1889 failrec->start,
1890 EXTENT_LOCKED);
1891 if (state && state->start != failrec->start)
1892 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001893 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001894 }
1895 if (!state || failrec->last_mirror > num_copies) {
1896 set_state_private(failure_tree, failrec->start, 0);
1897 clear_extent_bits(failure_tree, failrec->start,
1898 failrec->start + failrec->len - 1,
1899 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1900 kfree(failrec);
1901 return -EIO;
1902 }
1903 bio = bio_alloc(GFP_NOFS, 1);
1904 bio->bi_private = state;
1905 bio->bi_end_io = failed_bio->bi_end_io;
1906 bio->bi_sector = failrec->logical >> 9;
1907 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001908 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001909
Chris Mason7e383262008-04-09 16:28:12 -04001910 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001911 if (failed_bio->bi_rw & (1 << BIO_RW))
1912 rw = WRITE;
1913 else
1914 rw = READ;
1915
1916 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001917 failrec->last_mirror,
Chris Masond20f7042008-12-08 16:58:54 -05001918 failrec->bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001919 return 0;
1920}
1921
Chris Masond352ac62008-09-29 15:18:18 -04001922/*
1923 * each time an IO finishes, we do a fast check in the IO failure tree
1924 * to see if we need to process or clean up an io_failure_record
1925 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001926static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001927{
1928 u64 private;
1929 u64 private_failure;
1930 struct io_failure_record *failure;
1931 int ret;
1932
1933 private = 0;
1934 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1935 (u64)-1, 1, EXTENT_DIRTY)) {
1936 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1937 start, &private_failure);
1938 if (ret == 0) {
1939 failure = (struct io_failure_record *)(unsigned long)
1940 private_failure;
1941 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1942 failure->start, 0);
1943 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1944 failure->start,
1945 failure->start + failure->len - 1,
1946 EXTENT_DIRTY | EXTENT_LOCKED,
1947 GFP_NOFS);
1948 kfree(failure);
1949 }
1950 }
Chris Mason7e383262008-04-09 16:28:12 -04001951 return 0;
1952}
1953
Chris Masond352ac62008-09-29 15:18:18 -04001954/*
1955 * when reads are done, we need to check csums to verify the data is correct
1956 * if there's a match, we allow the bio to finish. If not, we go through
1957 * the io_failure_record routines to find good copies
1958 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001959static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001960 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001961{
Chris Mason35ebb932007-10-30 16:56:53 -04001962 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001963 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001964 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001965 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001966 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001967 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001968 struct btrfs_root *root = BTRFS_I(inode)->root;
1969 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001970
Chris Masond20f7042008-12-08 16:58:54 -05001971 if (PageChecked(page)) {
1972 ClearPageChecked(page);
1973 goto good;
1974 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001975
1976 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001977 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001978
Yan Zheng17d217f2008-12-12 10:03:38 -05001979 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001980 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001981 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1982 GFP_NOFS);
1983 return 0;
1984 }
1985
Yanc2e639f2008-02-04 08:57:25 -05001986 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001987 private = state->private;
1988 ret = 0;
1989 } else {
1990 ret = get_state_private(io_tree, start, &private);
1991 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001992 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001993 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001994 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001995
Chris Masonff79f812007-10-15 16:22:25 -04001996 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1997 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001998 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001999 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002000
Chris Mason9ab86c82009-01-07 09:48:51 -05002001 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05002002good:
Chris Mason7e383262008-04-09 16:28:12 -04002003 /* if the io failure tree for this inode is non-empty,
2004 * check to see if we've recovered from a failed IO
2005 */
Chris Mason1259ab72008-05-12 13:39:03 -04002006 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04002007 return 0;
2008
2009zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04002010 if (printk_ratelimit()) {
2011 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
2012 "private %llu\n", page->mapping->host->i_ino,
2013 (unsigned long long)start, csum,
2014 (unsigned long long)private);
2015 }
Chris Masondb945352007-10-15 16:15:53 -04002016 memset(kaddr + offset, 1, end - start + 1);
2017 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05002018 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04002019 if (private == 0)
2020 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002021 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002022}
Chris Masonb888db22007-08-27 16:49:44 -04002023
Josef Bacik7b128762008-07-24 12:17:14 -04002024/*
2025 * This creates an orphan entry for the given inode in case something goes
2026 * wrong in the middle of an unlink/truncate.
2027 */
2028int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2029{
2030 struct btrfs_root *root = BTRFS_I(inode)->root;
2031 int ret = 0;
2032
Yanbcc63ab2008-07-30 16:29:20 -04002033 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002034
2035 /* already on the orphan list, we're good */
2036 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04002037 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002038 return 0;
2039 }
2040
2041 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2042
Yanbcc63ab2008-07-30 16:29:20 -04002043 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002044
2045 /*
2046 * insert an orphan item to track this unlinked/truncated file
2047 */
2048 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2049
2050 return ret;
2051}
2052
2053/*
2054 * We have done the truncate/delete so we can go ahead and remove the orphan
2055 * item for this particular inode.
2056 */
2057int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2058{
2059 struct btrfs_root *root = BTRFS_I(inode)->root;
2060 int ret = 0;
2061
Yanbcc63ab2008-07-30 16:29:20 -04002062 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002063
2064 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04002065 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002066 return 0;
2067 }
2068
2069 list_del_init(&BTRFS_I(inode)->i_orphan);
2070 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04002071 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002072 return 0;
2073 }
2074
Yanbcc63ab2008-07-30 16:29:20 -04002075 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002076
2077 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2078
2079 return ret;
2080}
2081
2082/*
2083 * this cleans up any orphans that may be left on the list from the last use
2084 * of this root.
2085 */
2086void btrfs_orphan_cleanup(struct btrfs_root *root)
2087{
2088 struct btrfs_path *path;
2089 struct extent_buffer *leaf;
2090 struct btrfs_item *item;
2091 struct btrfs_key key, found_key;
2092 struct btrfs_trans_handle *trans;
2093 struct inode *inode;
2094 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2095
Yan, Zhengc71bf092009-11-12 09:34:40 +00002096 if (!xchg(&root->clean_orphans, 0))
Josef Bacik7b128762008-07-24 12:17:14 -04002097 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002098
2099 path = btrfs_alloc_path();
2100 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002101 path->reada = -1;
2102
2103 key.objectid = BTRFS_ORPHAN_OBJECTID;
2104 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2105 key.offset = (u64)-1;
2106
Josef Bacik7b128762008-07-24 12:17:14 -04002107 while (1) {
2108 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2109 if (ret < 0) {
2110 printk(KERN_ERR "Error searching slot for orphan: %d"
2111 "\n", ret);
2112 break;
2113 }
2114
2115 /*
2116 * if ret == 0 means we found what we were searching for, which
2117 * is weird, but possible, so only screw with path if we didnt
2118 * find the key and see if we have stuff that matches
2119 */
2120 if (ret > 0) {
2121 if (path->slots[0] == 0)
2122 break;
2123 path->slots[0]--;
2124 }
2125
2126 /* pull out the item */
2127 leaf = path->nodes[0];
2128 item = btrfs_item_nr(leaf, path->slots[0]);
2129 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2130
2131 /* make sure the item matches what we want */
2132 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2133 break;
2134 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2135 break;
2136
2137 /* release the path since we're done with it */
2138 btrfs_release_path(root, path);
2139
2140 /*
2141 * this is where we are basically btrfs_lookup, without the
2142 * crossing root thing. we store the inode number in the
2143 * offset of the orphan item.
2144 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002145 found_key.objectid = found_key.offset;
2146 found_key.type = BTRFS_INODE_ITEM_KEY;
2147 found_key.offset = 0;
2148 inode = btrfs_iget(root->fs_info->sb, &found_key, root);
2149 if (IS_ERR(inode))
Josef Bacik7b128762008-07-24 12:17:14 -04002150 break;
2151
Josef Bacik7b128762008-07-24 12:17:14 -04002152 /*
2153 * add this inode to the orphan list so btrfs_orphan_del does
2154 * the proper thing when we hit it
2155 */
Yanbcc63ab2008-07-30 16:29:20 -04002156 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002157 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04002158 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002159
2160 /*
2161 * if this is a bad inode, means we actually succeeded in
2162 * removing the inode, but not the orphan record, which means
2163 * we need to manually delete the orphan since iput will just
2164 * do a destroy_inode
2165 */
2166 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002167 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04002168 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002169 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002170 iput(inode);
2171 continue;
2172 }
2173
2174 /* if we have links, this was a truncate, lets do that */
2175 if (inode->i_nlink) {
2176 nr_truncate++;
2177 btrfs_truncate(inode);
2178 } else {
2179 nr_unlink++;
2180 }
2181
2182 /* this will do delete_inode and everything for us */
2183 iput(inode);
2184 }
2185
2186 if (nr_unlink)
2187 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2188 if (nr_truncate)
2189 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
2190
2191 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002192}
2193
Chris Masond352ac62008-09-29 15:18:18 -04002194/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002195 * very simple check to peek ahead in the leaf looking for xattrs. If we
2196 * don't find any xattrs, we know there can't be any acls.
2197 *
2198 * slot is the slot the inode is in, objectid is the objectid of the inode
2199 */
2200static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2201 int slot, u64 objectid)
2202{
2203 u32 nritems = btrfs_header_nritems(leaf);
2204 struct btrfs_key found_key;
2205 int scanned = 0;
2206
2207 slot++;
2208 while (slot < nritems) {
2209 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2210
2211 /* we found a different objectid, there must not be acls */
2212 if (found_key.objectid != objectid)
2213 return 0;
2214
2215 /* we found an xattr, assume we've got an acl */
2216 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2217 return 1;
2218
2219 /*
2220 * we found a key greater than an xattr key, there can't
2221 * be any acls later on
2222 */
2223 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2224 return 0;
2225
2226 slot++;
2227 scanned++;
2228
2229 /*
2230 * it goes inode, inode backrefs, xattrs, extents,
2231 * so if there are a ton of hard links to an inode there can
2232 * be a lot of backrefs. Don't waste time searching too hard,
2233 * this is just an optimization
2234 */
2235 if (scanned >= 8)
2236 break;
2237 }
2238 /* we hit the end of the leaf before we found an xattr or
2239 * something larger than an xattr. We have to assume the inode
2240 * has acls
2241 */
2242 return 1;
2243}
2244
2245/*
Chris Masond352ac62008-09-29 15:18:18 -04002246 * read an inode from the btree into the in-memory inode
2247 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002248static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002249{
2250 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002251 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002252 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002253 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002254 struct btrfs_root *root = BTRFS_I(inode)->root;
2255 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002256 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002257 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002258 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002259 int ret;
2260
2261 path = btrfs_alloc_path();
2262 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002263 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002264
Chris Mason39279cc2007-06-12 06:35:45 -04002265 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002266 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002267 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002268
Chris Mason5f39d392007-10-15 16:14:19 -04002269 leaf = path->nodes[0];
2270 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2271 struct btrfs_inode_item);
2272
2273 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2274 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2275 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2276 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002277 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002278
2279 tspec = btrfs_inode_atime(inode_item);
2280 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2281 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2282
2283 tspec = btrfs_inode_mtime(inode_item);
2284 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2285 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2286
2287 tspec = btrfs_inode_ctime(inode_item);
2288 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2289 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2290
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002291 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002292 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002293 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002294 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002295 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002296 rdev = btrfs_inode_rdev(leaf, inode_item);
2297
Josef Bacikaec74772008-07-24 12:12:38 -04002298 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002299 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002300
Chris Mason5f39d392007-10-15 16:14:19 -04002301 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002302
Chris Mason46a53cc2009-04-27 11:47:50 -04002303 /*
2304 * try to precache a NULL acl entry for files that don't have
2305 * any xattrs or acls
2306 */
2307 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002308 if (!maybe_acls)
2309 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002310
Yan Zhengd2fb3432008-12-11 16:30:39 -05002311 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2312 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002313 btrfs_free_path(path);
2314 inode_item = NULL;
2315
Chris Mason39279cc2007-06-12 06:35:45 -04002316 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002317 case S_IFREG:
2318 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002319 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002320 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002321 inode->i_fop = &btrfs_file_operations;
2322 inode->i_op = &btrfs_file_inode_operations;
2323 break;
2324 case S_IFDIR:
2325 inode->i_fop = &btrfs_dir_file_operations;
2326 if (root == root->fs_info->tree_root)
2327 inode->i_op = &btrfs_dir_ro_inode_operations;
2328 else
2329 inode->i_op = &btrfs_dir_inode_operations;
2330 break;
2331 case S_IFLNK:
2332 inode->i_op = &btrfs_symlink_inode_operations;
2333 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002334 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002335 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002336 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002337 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002338 init_special_inode(inode, inode->i_mode, rdev);
2339 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002340 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002341
2342 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002343 return;
2344
2345make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002346 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002347 make_bad_inode(inode);
2348}
2349
Chris Masond352ac62008-09-29 15:18:18 -04002350/*
2351 * given a leaf and an inode, copy the inode fields into the leaf
2352 */
Chris Masone02119d2008-09-05 16:13:11 -04002353static void fill_inode_item(struct btrfs_trans_handle *trans,
2354 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002355 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002356 struct inode *inode)
2357{
Chris Mason5f39d392007-10-15 16:14:19 -04002358 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2359 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002360 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002361 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2362 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2363
2364 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2365 inode->i_atime.tv_sec);
2366 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2367 inode->i_atime.tv_nsec);
2368
2369 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2370 inode->i_mtime.tv_sec);
2371 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2372 inode->i_mtime.tv_nsec);
2373
2374 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2375 inode->i_ctime.tv_sec);
2376 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2377 inode->i_ctime.tv_nsec);
2378
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002379 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002380 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002381 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002382 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002383 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002384 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002385 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002386}
2387
Chris Masond352ac62008-09-29 15:18:18 -04002388/*
2389 * copy everything in the in-memory inode into the btree.
2390 */
Chris Masond3977122009-01-05 21:25:51 -05002391noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2392 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002393{
2394 struct btrfs_inode_item *inode_item;
2395 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002396 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002397 int ret;
2398
2399 path = btrfs_alloc_path();
2400 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002401 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002402 ret = btrfs_lookup_inode(trans, root, path,
2403 &BTRFS_I(inode)->location, 1);
2404 if (ret) {
2405 if (ret > 0)
2406 ret = -ENOENT;
2407 goto failed;
2408 }
2409
Chris Masonb4ce94d2009-02-04 09:25:08 -05002410 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002411 leaf = path->nodes[0];
2412 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002413 struct btrfs_inode_item);
2414
Chris Masone02119d2008-09-05 16:13:11 -04002415 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002416 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002417 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002418 ret = 0;
2419failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002420 btrfs_free_path(path);
2421 return ret;
2422}
2423
2424
Chris Masond352ac62008-09-29 15:18:18 -04002425/*
2426 * unlink helper that gets used here in inode.c and in the tree logging
2427 * recovery code. It remove a link in a directory with a given name, and
2428 * also drops the back refs in the inode to the directory
2429 */
Chris Masone02119d2008-09-05 16:13:11 -04002430int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2431 struct btrfs_root *root,
2432 struct inode *dir, struct inode *inode,
2433 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002434{
2435 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002436 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002437 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002438 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002439 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002440 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002441
2442 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002443 if (!path) {
2444 ret = -ENOMEM;
2445 goto err;
2446 }
2447
Chris Masonb9473432009-03-13 11:00:37 -04002448 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002449 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2450 name, name_len, -1);
2451 if (IS_ERR(di)) {
2452 ret = PTR_ERR(di);
2453 goto err;
2454 }
2455 if (!di) {
2456 ret = -ENOENT;
2457 goto err;
2458 }
Chris Mason5f39d392007-10-15 16:14:19 -04002459 leaf = path->nodes[0];
2460 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002461 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002462 if (ret)
2463 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002464 btrfs_release_path(root, path);
2465
Josef Bacikaec74772008-07-24 12:12:38 -04002466 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002467 inode->i_ino,
2468 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002469 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002470 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002471 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002472 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002473 goto err;
2474 }
2475
Chris Mason39279cc2007-06-12 06:35:45 -04002476 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002477 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002478 if (IS_ERR(di)) {
2479 ret = PTR_ERR(di);
2480 goto err;
2481 }
2482 if (!di) {
2483 ret = -ENOENT;
2484 goto err;
2485 }
2486 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002487 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002488
Chris Masone02119d2008-09-05 16:13:11 -04002489 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2490 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002491 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002492
2493 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2494 dir, index);
2495 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002496err:
2497 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002498 if (ret)
2499 goto out;
2500
2501 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2502 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2503 btrfs_update_inode(trans, root, dir);
2504 btrfs_drop_nlink(inode);
2505 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002506out:
Chris Mason39279cc2007-06-12 06:35:45 -04002507 return ret;
2508}
2509
2510static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2511{
2512 struct btrfs_root *root;
2513 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002514 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002515 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002516 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002517
2518 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002519
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002520 /*
2521 * 5 items for unlink inode
2522 * 1 for orphan
2523 */
2524 ret = btrfs_reserve_metadata_space(root, 6);
2525 if (ret)
2526 return ret;
2527
Chris Mason39279cc2007-06-12 06:35:45 -04002528 trans = btrfs_start_transaction(root, 1);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002529 if (IS_ERR(trans)) {
2530 btrfs_unreserve_metadata_space(root, 6);
2531 return PTR_ERR(trans);
2532 }
Chris Mason5f39d392007-10-15 16:14:19 -04002533
Chris Mason39279cc2007-06-12 06:35:45 -04002534 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002535
2536 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2537
Chris Masone02119d2008-09-05 16:13:11 -04002538 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2539 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002540
2541 if (inode->i_nlink == 0)
2542 ret = btrfs_orphan_add(trans, inode);
2543
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002544 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002545
Chris Mason89ce8a62008-06-25 16:01:31 -04002546 btrfs_end_transaction_throttle(trans, root);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002547 btrfs_unreserve_metadata_space(root, 6);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002548 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002549 return ret;
2550}
2551
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002552int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2553 struct btrfs_root *root,
2554 struct inode *dir, u64 objectid,
2555 const char *name, int name_len)
2556{
2557 struct btrfs_path *path;
2558 struct extent_buffer *leaf;
2559 struct btrfs_dir_item *di;
2560 struct btrfs_key key;
2561 u64 index;
2562 int ret;
2563
2564 path = btrfs_alloc_path();
2565 if (!path)
2566 return -ENOMEM;
2567
2568 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2569 name, name_len, -1);
2570 BUG_ON(!di || IS_ERR(di));
2571
2572 leaf = path->nodes[0];
2573 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2574 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2575 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2576 BUG_ON(ret);
2577 btrfs_release_path(root, path);
2578
2579 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2580 objectid, root->root_key.objectid,
2581 dir->i_ino, &index, name, name_len);
2582 if (ret < 0) {
2583 BUG_ON(ret != -ENOENT);
2584 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2585 name, name_len);
2586 BUG_ON(!di || IS_ERR(di));
2587
2588 leaf = path->nodes[0];
2589 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2590 btrfs_release_path(root, path);
2591 index = key.offset;
2592 }
2593
2594 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2595 index, name, name_len, -1);
2596 BUG_ON(!di || IS_ERR(di));
2597
2598 leaf = path->nodes[0];
2599 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2600 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2601 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2602 BUG_ON(ret);
2603 btrfs_release_path(root, path);
2604
2605 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2606 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2607 ret = btrfs_update_inode(trans, root, dir);
2608 BUG_ON(ret);
2609 dir->i_sb->s_dirt = 1;
2610
2611 btrfs_free_path(path);
2612 return 0;
2613}
2614
Chris Mason39279cc2007-06-12 06:35:45 -04002615static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2616{
2617 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002618 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002619 int ret;
2620 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002621 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002622 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002623
Chris Mason3394e162008-11-17 20:42:26 -05002624 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002625 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002626 return -ENOTEMPTY;
2627
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002628 ret = btrfs_reserve_metadata_space(root, 5);
2629 if (ret)
2630 return ret;
2631
Chris Mason39279cc2007-06-12 06:35:45 -04002632 trans = btrfs_start_transaction(root, 1);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002633 if (IS_ERR(trans)) {
2634 btrfs_unreserve_metadata_space(root, 5);
2635 return PTR_ERR(trans);
2636 }
2637
Chris Mason39279cc2007-06-12 06:35:45 -04002638 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002639
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002640 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
2641 err = btrfs_unlink_subvol(trans, root, dir,
2642 BTRFS_I(inode)->location.objectid,
2643 dentry->d_name.name,
2644 dentry->d_name.len);
2645 goto out;
2646 }
2647
Josef Bacik7b128762008-07-24 12:17:14 -04002648 err = btrfs_orphan_add(trans, inode);
2649 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002650 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002651
Chris Mason39279cc2007-06-12 06:35:45 -04002652 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002653 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2654 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002655 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002656 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002657out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002658 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002659 ret = btrfs_end_transaction_throttle(trans, root);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002660 btrfs_unreserve_metadata_space(root, 5);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002661 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002662
Chris Mason39279cc2007-06-12 06:35:45 -04002663 if (ret && !err)
2664 err = ret;
2665 return err;
2666}
2667
Chris Masond20f7042008-12-08 16:58:54 -05002668#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002669/*
Chris Mason323ac952008-10-01 19:05:46 -04002670 * when truncating bytes in a file, it is possible to avoid reading
2671 * the leaves that contain only checksum items. This can be the
2672 * majority of the IO required to delete a large file, but it must
2673 * be done carefully.
2674 *
2675 * The keys in the level just above the leaves are checked to make sure
2676 * the lowest key in a given leaf is a csum key, and starts at an offset
2677 * after the new size.
2678 *
2679 * Then the key for the next leaf is checked to make sure it also has
2680 * a checksum item for the same file. If it does, we know our target leaf
2681 * contains only checksum items, and it can be safely freed without reading
2682 * it.
2683 *
2684 * This is just an optimization targeted at large files. It may do
2685 * nothing. It will return 0 unless things went badly.
2686 */
2687static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2688 struct btrfs_root *root,
2689 struct btrfs_path *path,
2690 struct inode *inode, u64 new_size)
2691{
2692 struct btrfs_key key;
2693 int ret;
2694 int nritems;
2695 struct btrfs_key found_key;
2696 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002697 struct btrfs_leaf_ref *ref;
2698 u64 leaf_gen;
2699 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002700
2701 path->lowest_level = 1;
2702 key.objectid = inode->i_ino;
2703 key.type = BTRFS_CSUM_ITEM_KEY;
2704 key.offset = new_size;
2705again:
2706 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2707 if (ret < 0)
2708 goto out;
2709
2710 if (path->nodes[1] == NULL) {
2711 ret = 0;
2712 goto out;
2713 }
2714 ret = 0;
2715 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2716 nritems = btrfs_header_nritems(path->nodes[1]);
2717
2718 if (!nritems)
2719 goto out;
2720
2721 if (path->slots[1] >= nritems)
2722 goto next_node;
2723
2724 /* did we find a key greater than anything we want to delete? */
2725 if (found_key.objectid > inode->i_ino ||
2726 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2727 goto out;
2728
2729 /* we check the next key in the node to make sure the leave contains
2730 * only checksum items. This comparison doesn't work if our
2731 * leaf is the last one in the node
2732 */
2733 if (path->slots[1] + 1 >= nritems) {
2734next_node:
2735 /* search forward from the last key in the node, this
2736 * will bring us into the next node in the tree
2737 */
2738 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2739
2740 /* unlikely, but we inc below, so check to be safe */
2741 if (found_key.offset == (u64)-1)
2742 goto out;
2743
2744 /* search_forward needs a path with locks held, do the
2745 * search again for the original key. It is possible
2746 * this will race with a balance and return a path that
2747 * we could modify, but this drop is just an optimization
2748 * and is allowed to miss some leaves.
2749 */
2750 btrfs_release_path(root, path);
2751 found_key.offset++;
2752
2753 /* setup a max key for search_forward */
2754 other_key.offset = (u64)-1;
2755 other_key.type = key.type;
2756 other_key.objectid = key.objectid;
2757
2758 path->keep_locks = 1;
2759 ret = btrfs_search_forward(root, &found_key, &other_key,
2760 path, 0, 0);
2761 path->keep_locks = 0;
2762 if (ret || found_key.objectid != key.objectid ||
2763 found_key.type != key.type) {
2764 ret = 0;
2765 goto out;
2766 }
2767
2768 key.offset = found_key.offset;
2769 btrfs_release_path(root, path);
2770 cond_resched();
2771 goto again;
2772 }
2773
2774 /* we know there's one more slot after us in the tree,
2775 * read that key so we can verify it is also a checksum item
2776 */
2777 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2778
2779 if (found_key.objectid < inode->i_ino)
2780 goto next_key;
2781
2782 if (found_key.type != key.type || found_key.offset < new_size)
2783 goto next_key;
2784
2785 /*
2786 * if the key for the next leaf isn't a csum key from this objectid,
2787 * we can't be sure there aren't good items inside this leaf.
2788 * Bail out
2789 */
2790 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2791 goto out;
2792
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002793 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2794 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002795 /*
2796 * it is safe to delete this leaf, it contains only
2797 * csum items from this inode at an offset >= new_size
2798 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002799 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002800 BUG_ON(ret);
2801
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002802 if (root->ref_cows && leaf_gen < trans->transid) {
2803 ref = btrfs_alloc_leaf_ref(root, 0);
2804 if (ref) {
2805 ref->root_gen = root->root_key.offset;
2806 ref->bytenr = leaf_start;
2807 ref->owner = 0;
2808 ref->generation = leaf_gen;
2809 ref->nritems = 0;
2810
Chris Masonbd56b302009-02-04 09:27:02 -05002811 btrfs_sort_leaf_ref(ref);
2812
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002813 ret = btrfs_add_leaf_ref(root, ref, 0);
2814 WARN_ON(ret);
2815 btrfs_free_leaf_ref(root, ref);
2816 } else {
2817 WARN_ON(1);
2818 }
2819 }
Chris Mason323ac952008-10-01 19:05:46 -04002820next_key:
2821 btrfs_release_path(root, path);
2822
2823 if (other_key.objectid == inode->i_ino &&
2824 other_key.type == key.type && other_key.offset > key.offset) {
2825 key.offset = other_key.offset;
2826 cond_resched();
2827 goto again;
2828 }
2829 ret = 0;
2830out:
2831 /* fixup any changes we've made to the path */
2832 path->lowest_level = 0;
2833 path->keep_locks = 0;
2834 btrfs_release_path(root, path);
2835 return ret;
2836}
2837
Chris Masond20f7042008-12-08 16:58:54 -05002838#endif
2839
Chris Mason323ac952008-10-01 19:05:46 -04002840/*
Chris Mason39279cc2007-06-12 06:35:45 -04002841 * this can truncate away extent items, csum items and directory items.
2842 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002843 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002844 *
2845 * csum items that cross the new i_size are truncated to the new size
2846 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002847 *
2848 * min_type is the minimum key type to truncate down to. If set to 0, this
2849 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002850 */
Yan, Zheng80825102009-11-12 09:35:36 +00002851int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2852 struct btrfs_root *root,
2853 struct inode *inode,
2854 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002855{
Chris Mason39279cc2007-06-12 06:35:45 -04002856 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002857 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002858 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00002859 struct btrfs_key key;
2860 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002861 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002862 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002863 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002864 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00002865 u64 mask = root->sectorsize - 1;
2866 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04002867 int found_extent;
2868 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002869 int pending_del_nr = 0;
2870 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002871 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002872 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00002873 int ret;
2874 int err = 0;
2875
2876 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002877
Chris Masone02119d2008-09-05 16:13:11 -04002878 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002879 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00002880
Chris Mason39279cc2007-06-12 06:35:45 -04002881 path = btrfs_alloc_path();
2882 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04002883 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04002884
Chris Mason39279cc2007-06-12 06:35:45 -04002885 key.objectid = inode->i_ino;
2886 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002887 key.type = (u8)-1;
2888
Chris Mason85e21ba2008-01-29 15:11:36 -05002889search_again:
Chris Masonb9473432009-03-13 11:00:37 -04002890 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05002891 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00002892 if (ret < 0) {
2893 err = ret;
2894 goto out;
2895 }
Chris Masond3977122009-01-05 21:25:51 -05002896
Chris Mason85e21ba2008-01-29 15:11:36 -05002897 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002898 /* there are no items in the tree for us to truncate, we're
2899 * done
2900 */
Yan, Zheng80825102009-11-12 09:35:36 +00002901 if (path->slots[0] == 0)
2902 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05002903 path->slots[0]--;
2904 }
2905
Chris Masond3977122009-01-05 21:25:51 -05002906 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002907 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002908 leaf = path->nodes[0];
2909 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2910 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002911 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002912
Chris Mason5f39d392007-10-15 16:14:19 -04002913 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002914 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002915
Chris Mason85e21ba2008-01-29 15:11:36 -05002916 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002917 break;
2918
Chris Mason5f39d392007-10-15 16:14:19 -04002919 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002920 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002921 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002922 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002923 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002924 encoding = btrfs_file_extent_compression(leaf, fi);
2925 encoding |= btrfs_file_extent_encryption(leaf, fi);
2926 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2927
Chris Mason179e29e2007-11-01 11:28:41 -04002928 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002929 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002930 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002931 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002932 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002933 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002934 }
Yan008630c2007-11-07 13:31:09 -05002935 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002936 }
Yan, Zheng80825102009-11-12 09:35:36 +00002937 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04002938 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00002939 } else {
2940 if (item_end < new_size)
2941 break;
2942 if (found_key.offset >= new_size)
2943 del_item = 1;
2944 else
2945 del_item = 0;
2946 }
Chris Mason39279cc2007-06-12 06:35:45 -04002947 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002948 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002949 if (found_type != BTRFS_EXTENT_DATA_KEY)
2950 goto delete;
2951
2952 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002953 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002954 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002955 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002956 u64 orig_num_bytes =
2957 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002958 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002959 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002960 extent_num_bytes = extent_num_bytes &
2961 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002962 btrfs_set_file_extent_num_bytes(leaf, fi,
2963 extent_num_bytes);
2964 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002965 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002966 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002967 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002968 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002969 } else {
Chris Masondb945352007-10-15 16:15:53 -04002970 extent_num_bytes =
2971 btrfs_file_extent_disk_num_bytes(leaf,
2972 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002973 extent_offset = found_key.offset -
2974 btrfs_file_extent_offset(leaf, fi);
2975
Chris Mason39279cc2007-06-12 06:35:45 -04002976 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002977 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002978 if (extent_start != 0) {
2979 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002980 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002981 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002982 }
2983 }
Chris Mason90692182008-02-08 13:49:28 -05002984 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002985 /*
2986 * we can't truncate inline items that have had
2987 * special encodings
2988 */
2989 if (!del_item &&
2990 btrfs_file_extent_compression(leaf, fi) == 0 &&
2991 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2992 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002993 u32 size = new_size - found_key.offset;
2994
2995 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002996 inode_sub_bytes(inode, item_end + 1 -
2997 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04002998 }
2999 size =
3000 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003001 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003002 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003003 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003004 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003005 inode_sub_bytes(inode, item_end + 1 -
3006 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003007 }
Chris Mason39279cc2007-06-12 06:35:45 -04003008 }
Chris Mason179e29e2007-11-01 11:28:41 -04003009delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003010 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003011 if (!pending_del_nr) {
3012 /* no pending yet, add ourselves */
3013 pending_del_slot = path->slots[0];
3014 pending_del_nr = 1;
3015 } else if (pending_del_nr &&
3016 path->slots[0] + 1 == pending_del_slot) {
3017 /* hop on the pending chunk */
3018 pending_del_nr++;
3019 pending_del_slot = path->slots[0];
3020 } else {
Chris Masond3977122009-01-05 21:25:51 -05003021 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003022 }
Chris Mason39279cc2007-06-12 06:35:45 -04003023 } else {
3024 break;
3025 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003026 if (found_extent && root->ref_cows) {
Chris Masonb9473432009-03-13 11:00:37 -04003027 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003028 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003029 extent_num_bytes, 0,
3030 btrfs_header_owner(leaf),
3031 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003032 BUG_ON(ret);
3033 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003034
Yan, Zheng80825102009-11-12 09:35:36 +00003035 if (found_type == BTRFS_INODE_ITEM_KEY)
3036 break;
3037
3038 if (path->slots[0] == 0 ||
3039 path->slots[0] != pending_del_slot) {
3040 if (root->ref_cows) {
3041 err = -EAGAIN;
3042 goto out;
3043 }
3044 if (pending_del_nr) {
3045 ret = btrfs_del_items(trans, root, path,
3046 pending_del_slot,
3047 pending_del_nr);
3048 BUG_ON(ret);
3049 pending_del_nr = 0;
3050 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003051 btrfs_release_path(root, path);
3052 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003053 } else {
3054 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003055 }
Chris Mason39279cc2007-06-12 06:35:45 -04003056 }
Yan, Zheng80825102009-11-12 09:35:36 +00003057out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003058 if (pending_del_nr) {
3059 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3060 pending_del_nr);
3061 }
Chris Mason39279cc2007-06-12 06:35:45 -04003062 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003063 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003064}
3065
Chris Masona52d9a82007-08-27 16:49:44 -04003066/*
3067 * taken from block_truncate_page, but does cow as it zeros out
3068 * any bytes left in the last page in the file.
3069 */
3070static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3071{
3072 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003073 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003074 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3075 struct btrfs_ordered_extent *ordered;
3076 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003077 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003078 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3079 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3080 struct page *page;
3081 int ret = 0;
3082 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003083 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003084
3085 if ((offset & (blocksize - 1)) == 0)
3086 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003087 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
3088 if (ret)
3089 goto out;
3090
3091 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
3092 if (ret)
3093 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003094
3095 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003096again:
Chris Masona52d9a82007-08-27 16:49:44 -04003097 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003098 if (!page) {
3099 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
3100 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Masona52d9a82007-08-27 16:49:44 -04003101 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003102 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003103
3104 page_start = page_offset(page);
3105 page_end = page_start + PAGE_CACHE_SIZE - 1;
3106
Chris Masona52d9a82007-08-27 16:49:44 -04003107 if (!PageUptodate(page)) {
3108 ret = btrfs_readpage(NULL, page);
3109 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003110 if (page->mapping != mapping) {
3111 unlock_page(page);
3112 page_cache_release(page);
3113 goto again;
3114 }
Chris Masona52d9a82007-08-27 16:49:44 -04003115 if (!PageUptodate(page)) {
3116 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003117 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003118 }
3119 }
Chris Mason211c17f2008-05-15 09:13:45 -04003120 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003121
3122 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3123 set_page_extent_mapped(page);
3124
3125 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3126 if (ordered) {
3127 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3128 unlock_page(page);
3129 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003130 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003131 btrfs_put_ordered_extent(ordered);
3132 goto again;
3133 }
3134
Josef Bacik5d5e1032009-10-13 16:46:49 -04003135 clear_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
3136 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
3137 GFP_NOFS);
3138
Josef Bacik9ed74f22009-09-11 16:12:44 -04003139 ret = btrfs_set_extent_delalloc(inode, page_start, page_end);
3140 if (ret) {
3141 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3142 goto out_unlock;
3143 }
3144
Chris Masone6dcd2d2008-07-17 12:53:50 -04003145 ret = 0;
3146 if (offset != PAGE_CACHE_SIZE) {
3147 kaddr = kmap(page);
3148 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3149 flush_dcache_page(page);
3150 kunmap(page);
3151 }
Chris Mason247e7432008-07-17 12:53:51 -04003152 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003153 set_page_dirty(page);
3154 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003155
Chris Mason89642222008-07-24 09:41:53 -04003156out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003157 if (ret)
3158 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
3159 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003160 unlock_page(page);
3161 page_cache_release(page);
3162out:
3163 return ret;
3164}
3165
Yan Zheng9036c102008-10-30 14:19:41 -04003166int btrfs_cont_expand(struct inode *inode, loff_t size)
3167{
3168 struct btrfs_trans_handle *trans;
3169 struct btrfs_root *root = BTRFS_I(inode)->root;
3170 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3171 struct extent_map *em;
3172 u64 mask = root->sectorsize - 1;
3173 u64 hole_start = (inode->i_size + mask) & ~mask;
3174 u64 block_end = (size + mask) & ~mask;
3175 u64 last_byte;
3176 u64 cur_offset;
3177 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003178 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003179
3180 if (size <= hole_start)
3181 return 0;
3182
Yan Zheng9036c102008-10-30 14:19:41 -04003183 while (1) {
3184 struct btrfs_ordered_extent *ordered;
3185 btrfs_wait_ordered_range(inode, hole_start,
3186 block_end - hole_start);
3187 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3188 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3189 if (!ordered)
3190 break;
3191 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3192 btrfs_put_ordered_extent(ordered);
3193 }
3194
Yan Zheng9036c102008-10-30 14:19:41 -04003195 cur_offset = hole_start;
3196 while (1) {
3197 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3198 block_end - cur_offset, 0);
3199 BUG_ON(IS_ERR(em) || !em);
3200 last_byte = min(extent_map_end(em), block_end);
3201 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003202 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003203 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003204 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003205
3206 err = btrfs_reserve_metadata_space(root, 2);
Chris Mason771ed682008-11-06 22:02:51 -05003207 if (err)
3208 break;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003209
Yan, Zheng80825102009-11-12 09:35:36 +00003210 trans = btrfs_start_transaction(root, 1);
3211 btrfs_set_trans_block_group(trans, inode);
3212
3213 err = btrfs_drop_extents(trans, inode, cur_offset,
3214 cur_offset + hole_size,
3215 &hint_byte, 1);
3216 BUG_ON(err);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003217
Yan Zheng9036c102008-10-30 14:19:41 -04003218 err = btrfs_insert_file_extent(trans, root,
3219 inode->i_ino, cur_offset, 0,
3220 0, hole_size, 0, hole_size,
3221 0, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003222 BUG_ON(err);
3223
Yan Zheng9036c102008-10-30 14:19:41 -04003224 btrfs_drop_extent_cache(inode, hole_start,
3225 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003226
3227 btrfs_end_transaction(trans, root);
3228 btrfs_unreserve_metadata_space(root, 2);
Yan Zheng9036c102008-10-30 14:19:41 -04003229 }
3230 free_extent_map(em);
3231 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003232 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003233 break;
3234 }
3235
Yan Zheng9036c102008-10-30 14:19:41 -04003236 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3237 return err;
3238}
3239
Yan, Zheng80825102009-11-12 09:35:36 +00003240static int btrfs_setattr_size(struct inode *inode, struct iattr *attr)
3241{
3242 struct btrfs_root *root = BTRFS_I(inode)->root;
3243 struct btrfs_trans_handle *trans;
3244 unsigned long nr;
3245 int ret;
3246
3247 if (attr->ia_size == inode->i_size)
3248 return 0;
3249
3250 if (attr->ia_size > inode->i_size) {
3251 unsigned long limit;
3252 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
3253 if (attr->ia_size > inode->i_sb->s_maxbytes)
3254 return -EFBIG;
3255 if (limit != RLIM_INFINITY && attr->ia_size > limit) {
3256 send_sig(SIGXFSZ, current, 0);
3257 return -EFBIG;
3258 }
3259 }
3260
3261 ret = btrfs_reserve_metadata_space(root, 1);
3262 if (ret)
3263 return ret;
3264
3265 trans = btrfs_start_transaction(root, 1);
3266 btrfs_set_trans_block_group(trans, inode);
3267
3268 ret = btrfs_orphan_add(trans, inode);
3269 BUG_ON(ret);
3270
3271 nr = trans->blocks_used;
3272 btrfs_end_transaction(trans, root);
3273 btrfs_unreserve_metadata_space(root, 1);
3274 btrfs_btree_balance_dirty(root, nr);
3275
3276 if (attr->ia_size > inode->i_size) {
3277 ret = btrfs_cont_expand(inode, attr->ia_size);
3278 if (ret) {
3279 btrfs_truncate(inode);
3280 return ret;
3281 }
3282
3283 i_size_write(inode, attr->ia_size);
3284 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
3285
3286 trans = btrfs_start_transaction(root, 1);
3287 btrfs_set_trans_block_group(trans, inode);
3288
3289 ret = btrfs_update_inode(trans, root, inode);
3290 BUG_ON(ret);
3291 if (inode->i_nlink > 0) {
3292 ret = btrfs_orphan_del(trans, inode);
3293 BUG_ON(ret);
3294 }
3295 nr = trans->blocks_used;
3296 btrfs_end_transaction(trans, root);
3297 btrfs_btree_balance_dirty(root, nr);
3298 return 0;
3299 }
3300
3301 /*
3302 * We're truncating a file that used to have good data down to
3303 * zero. Make sure it gets into the ordered flush list so that
3304 * any new writes get down to disk quickly.
3305 */
3306 if (attr->ia_size == 0)
3307 BTRFS_I(inode)->ordered_data_close = 1;
3308
3309 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3310 ret = vmtruncate(inode, attr->ia_size);
3311 BUG_ON(ret);
3312
3313 return 0;
3314}
3315
Chris Mason39279cc2007-06-12 06:35:45 -04003316static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3317{
3318 struct inode *inode = dentry->d_inode;
3319 int err;
3320
3321 err = inode_change_ok(inode, attr);
3322 if (err)
3323 return err;
3324
Chris Mason5a3f23d2009-03-31 13:27:11 -04003325 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Yan, Zheng80825102009-11-12 09:35:36 +00003326 err = btrfs_setattr_size(inode, attr);
3327 if (err)
3328 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003329 }
Yan, Zheng80825102009-11-12 09:35:36 +00003330 attr->ia_valid &= ~ATTR_SIZE;
Yan Zheng9036c102008-10-30 14:19:41 -04003331
Yan, Zheng80825102009-11-12 09:35:36 +00003332 if (attr->ia_valid)
3333 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04003334
3335 if (!err && ((attr->ia_valid & ATTR_MODE)))
3336 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003337 return err;
3338}
Chris Mason61295eb2008-01-14 16:24:38 -05003339
Chris Mason39279cc2007-06-12 06:35:45 -04003340void btrfs_delete_inode(struct inode *inode)
3341{
3342 struct btrfs_trans_handle *trans;
3343 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003344 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003345 int ret;
3346
3347 truncate_inode_pages(&inode->i_data, 0);
3348 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003349 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003350 goto no_delete;
3351 }
Chris Mason4a096752008-07-21 10:29:44 -04003352 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003353
Yan, Zhengc71bf092009-11-12 09:34:40 +00003354 if (root->fs_info->log_root_recovering) {
3355 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3356 goto no_delete;
3357 }
3358
Yan, Zheng76dda932009-09-21 16:00:26 -04003359 if (inode->i_nlink > 0) {
3360 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3361 goto no_delete;
3362 }
3363
Chris Masondbe674a2008-07-17 12:54:05 -04003364 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003365
Yan, Zheng80825102009-11-12 09:35:36 +00003366 while (1) {
3367 trans = btrfs_start_transaction(root, 1);
3368 btrfs_set_trans_block_group(trans, inode);
3369 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
3370
3371 if (ret != -EAGAIN)
3372 break;
3373
3374 nr = trans->blocks_used;
3375 btrfs_end_transaction(trans, root);
3376 trans = NULL;
3377 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003378 }
3379
Yan, Zheng80825102009-11-12 09:35:36 +00003380 if (ret == 0) {
3381 ret = btrfs_orphan_del(trans, inode);
3382 BUG_ON(ret);
3383 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003384
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003385 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003386 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003387 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003388no_delete:
3389 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003390 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003391}
3392
3393/*
3394 * this returns the key found in the dir entry in the location pointer.
3395 * If no dir entries were found, location->objectid is 0.
3396 */
3397static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3398 struct btrfs_key *location)
3399{
3400 const char *name = dentry->d_name.name;
3401 int namelen = dentry->d_name.len;
3402 struct btrfs_dir_item *di;
3403 struct btrfs_path *path;
3404 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003405 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003406
3407 path = btrfs_alloc_path();
3408 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003409
Chris Mason39279cc2007-06-12 06:35:45 -04003410 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3411 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003412 if (IS_ERR(di))
3413 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003414
3415 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003416 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003417
Chris Mason5f39d392007-10-15 16:14:19 -04003418 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003419out:
Chris Mason39279cc2007-06-12 06:35:45 -04003420 btrfs_free_path(path);
3421 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003422out_err:
3423 location->objectid = 0;
3424 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003425}
3426
3427/*
3428 * when we hit a tree root in a directory, the btrfs part of the inode
3429 * needs to be changed to reflect the root directory of the tree root. This
3430 * is kind of like crossing a mount point.
3431 */
3432static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003433 struct inode *dir,
3434 struct dentry *dentry,
3435 struct btrfs_key *location,
3436 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003437{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003438 struct btrfs_path *path;
3439 struct btrfs_root *new_root;
3440 struct btrfs_root_ref *ref;
3441 struct extent_buffer *leaf;
3442 int ret;
3443 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003444
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003445 path = btrfs_alloc_path();
3446 if (!path) {
3447 err = -ENOMEM;
3448 goto out;
3449 }
Chris Mason39279cc2007-06-12 06:35:45 -04003450
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003451 err = -ENOENT;
3452 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3453 BTRFS_I(dir)->root->root_key.objectid,
3454 location->objectid);
3455 if (ret) {
3456 if (ret < 0)
3457 err = ret;
3458 goto out;
3459 }
Chris Mason39279cc2007-06-12 06:35:45 -04003460
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003461 leaf = path->nodes[0];
3462 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3463 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3464 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3465 goto out;
3466
3467 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3468 (unsigned long)(ref + 1),
3469 dentry->d_name.len);
3470 if (ret)
3471 goto out;
3472
3473 btrfs_release_path(root->fs_info->tree_root, path);
3474
3475 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3476 if (IS_ERR(new_root)) {
3477 err = PTR_ERR(new_root);
3478 goto out;
3479 }
3480
3481 if (btrfs_root_refs(&new_root->root_item) == 0) {
3482 err = -ENOENT;
3483 goto out;
3484 }
3485
3486 *sub_root = new_root;
3487 location->objectid = btrfs_root_dirid(&new_root->root_item);
3488 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003489 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003490 err = 0;
3491out:
3492 btrfs_free_path(path);
3493 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003494}
3495
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003496static void inode_tree_add(struct inode *inode)
3497{
3498 struct btrfs_root *root = BTRFS_I(inode)->root;
3499 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003500 struct rb_node **p;
3501 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003502again:
3503 p = &root->inode_tree.rb_node;
3504 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003505
Yan, Zheng76dda932009-09-21 16:00:26 -04003506 if (hlist_unhashed(&inode->i_hash))
3507 return;
3508
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003509 spin_lock(&root->inode_lock);
3510 while (*p) {
3511 parent = *p;
3512 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3513
3514 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003515 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003516 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003517 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003518 else {
3519 WARN_ON(!(entry->vfs_inode.i_state &
3520 (I_WILL_FREE | I_FREEING | I_CLEAR)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003521 rb_erase(parent, &root->inode_tree);
3522 RB_CLEAR_NODE(parent);
3523 spin_unlock(&root->inode_lock);
3524 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003525 }
3526 }
3527 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3528 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3529 spin_unlock(&root->inode_lock);
3530}
3531
3532static void inode_tree_del(struct inode *inode)
3533{
3534 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003535 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003536
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003537 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003538 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003539 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003540 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003541 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003542 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003543 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003544
3545 if (empty && btrfs_root_refs(&root->root_item) == 0) {
3546 synchronize_srcu(&root->fs_info->subvol_srcu);
3547 spin_lock(&root->inode_lock);
3548 empty = RB_EMPTY_ROOT(&root->inode_tree);
3549 spin_unlock(&root->inode_lock);
3550 if (empty)
3551 btrfs_add_dead_root(root);
3552 }
3553}
3554
3555int btrfs_invalidate_inodes(struct btrfs_root *root)
3556{
3557 struct rb_node *node;
3558 struct rb_node *prev;
3559 struct btrfs_inode *entry;
3560 struct inode *inode;
3561 u64 objectid = 0;
3562
3563 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3564
3565 spin_lock(&root->inode_lock);
3566again:
3567 node = root->inode_tree.rb_node;
3568 prev = NULL;
3569 while (node) {
3570 prev = node;
3571 entry = rb_entry(node, struct btrfs_inode, rb_node);
3572
3573 if (objectid < entry->vfs_inode.i_ino)
3574 node = node->rb_left;
3575 else if (objectid > entry->vfs_inode.i_ino)
3576 node = node->rb_right;
3577 else
3578 break;
3579 }
3580 if (!node) {
3581 while (prev) {
3582 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3583 if (objectid <= entry->vfs_inode.i_ino) {
3584 node = prev;
3585 break;
3586 }
3587 prev = rb_next(prev);
3588 }
3589 }
3590 while (node) {
3591 entry = rb_entry(node, struct btrfs_inode, rb_node);
3592 objectid = entry->vfs_inode.i_ino + 1;
3593 inode = igrab(&entry->vfs_inode);
3594 if (inode) {
3595 spin_unlock(&root->inode_lock);
3596 if (atomic_read(&inode->i_count) > 1)
3597 d_prune_aliases(inode);
3598 /*
3599 * btrfs_drop_inode will remove it from
3600 * the inode cache when its usage count
3601 * hits zero.
3602 */
3603 iput(inode);
3604 cond_resched();
3605 spin_lock(&root->inode_lock);
3606 goto again;
3607 }
3608
3609 if (cond_resched_lock(&root->inode_lock))
3610 goto again;
3611
3612 node = rb_next(node);
3613 }
3614 spin_unlock(&root->inode_lock);
3615 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003616}
3617
Chris Masone02119d2008-09-05 16:13:11 -04003618static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003619{
Chris Masone02119d2008-09-05 16:13:11 -04003620 struct btrfs_inode *bi = BTRFS_I(inode);
3621
Chris Masone02119d2008-09-05 16:13:11 -04003622 bi->generation = 0;
Chris Masonc3027eb2008-12-08 16:40:21 -05003623 bi->sequence = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003624 bi->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04003625 bi->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003626 bi->logged_trans = 0;
3627 bi->delalloc_bytes = 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003628 bi->reserved_bytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003629 bi->disk_i_size = 0;
3630 bi->flags = 0;
3631 bi->index_cnt = (u64)-1;
Chris Mason12fcfd22009-03-24 10:24:20 -04003632 bi->last_unlink_trans = 0;
Chris Mason27574952009-05-14 13:10:02 -04003633 bi->ordered_data_close = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003634 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3635 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04003636 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003637 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3638 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04003639 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04003640 INIT_LIST_HEAD(&BTRFS_I(inode)->ordered_operations);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003641 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Chris Masonba1da2f2008-07-17 12:54:15 -04003642 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masone02119d2008-09-05 16:13:11 -04003643 mutex_init(&BTRFS_I(inode)->log_mutex);
3644}
3645
3646static int btrfs_init_locked_inode(struct inode *inode, void *p)
3647{
3648 struct btrfs_iget_args *args = p;
3649 inode->i_ino = args->ino;
3650 init_btrfs_i(inode);
3651 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003652 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003653 return 0;
3654}
3655
3656static int btrfs_find_actor(struct inode *inode, void *opaque)
3657{
3658 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05003659 return args->ino == inode->i_ino &&
3660 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003661}
3662
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003663static struct inode *btrfs_iget_locked(struct super_block *s,
3664 u64 objectid,
3665 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003666{
3667 struct inode *inode;
3668 struct btrfs_iget_args args;
3669 args.ino = objectid;
3670 args.root = root;
3671
3672 inode = iget5_locked(s, objectid, btrfs_find_actor,
3673 btrfs_init_locked_inode,
3674 (void *)&args);
3675 return inode;
3676}
3677
Balaji Rao1a54ef82008-07-21 02:01:04 +05303678/* Get an inode object given its location and corresponding root.
3679 * Returns in *is_new if the inode was read from disk
3680 */
3681struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003682 struct btrfs_root *root)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303683{
3684 struct inode *inode;
3685
3686 inode = btrfs_iget_locked(s, location->objectid, root);
3687 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003688 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303689
3690 if (inode->i_state & I_NEW) {
3691 BTRFS_I(inode)->root = root;
3692 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3693 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003694
3695 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303696 unlock_new_inode(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303697 }
3698
3699 return inode;
3700}
3701
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003702static struct inode *new_simple_dir(struct super_block *s,
3703 struct btrfs_key *key,
3704 struct btrfs_root *root)
3705{
3706 struct inode *inode = new_inode(s);
3707
3708 if (!inode)
3709 return ERR_PTR(-ENOMEM);
3710
3711 init_btrfs_i(inode);
3712
3713 BTRFS_I(inode)->root = root;
3714 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3715 BTRFS_I(inode)->dummy_inode = 1;
3716
3717 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3718 inode->i_op = &simple_dir_inode_operations;
3719 inode->i_fop = &simple_dir_operations;
3720 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3721 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3722
3723 return inode;
3724}
3725
Chris Mason3de45862008-11-17 21:02:50 -05003726struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003727{
Chris Masond3977122009-01-05 21:25:51 -05003728 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003729 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003730 struct btrfs_root *sub_root = root;
3731 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04003732 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003733 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003734
Yan, Zheng76dda932009-09-21 16:00:26 -04003735 dentry->d_op = &btrfs_dentry_operations;
3736
Chris Mason39279cc2007-06-12 06:35:45 -04003737 if (dentry->d_name.len > BTRFS_NAME_LEN)
3738 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003739
Chris Mason39279cc2007-06-12 06:35:45 -04003740 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003741
Chris Mason39279cc2007-06-12 06:35:45 -04003742 if (ret < 0)
3743 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003744
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003745 if (location.objectid == 0)
3746 return NULL;
3747
3748 if (location.type == BTRFS_INODE_ITEM_KEY) {
3749 inode = btrfs_iget(dir->i_sb, &location, root);
3750 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003751 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003752
3753 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
3754
Yan, Zheng76dda932009-09-21 16:00:26 -04003755 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003756 ret = fixup_tree_root_location(root, dir, dentry,
3757 &location, &sub_root);
3758 if (ret < 0) {
3759 if (ret != -ENOENT)
3760 inode = ERR_PTR(ret);
3761 else
3762 inode = new_simple_dir(dir->i_sb, &location, sub_root);
3763 } else {
Chris Mason39279cc2007-06-12 06:35:45 -04003764 inode = btrfs_iget(dir->i_sb, &location, sub_root);
Chris Mason39279cc2007-06-12 06:35:45 -04003765 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003766 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
3767
Yan, Zhengc71bf092009-11-12 09:34:40 +00003768 if (root != sub_root) {
3769 down_read(&root->fs_info->cleanup_work_sem);
3770 if (!(inode->i_sb->s_flags & MS_RDONLY))
3771 btrfs_orphan_cleanup(sub_root);
3772 up_read(&root->fs_info->cleanup_work_sem);
3773 }
3774
Chris Mason3de45862008-11-17 21:02:50 -05003775 return inode;
3776}
3777
Yan, Zheng76dda932009-09-21 16:00:26 -04003778static int btrfs_dentry_delete(struct dentry *dentry)
3779{
3780 struct btrfs_root *root;
3781
Yan, Zhengefefb142009-10-09 09:25:16 -04003782 if (!dentry->d_inode && !IS_ROOT(dentry))
3783 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04003784
Yan, Zhengefefb142009-10-09 09:25:16 -04003785 if (dentry->d_inode) {
3786 root = BTRFS_I(dentry->d_inode)->root;
3787 if (btrfs_root_refs(&root->root_item) == 0)
3788 return 1;
3789 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003790 return 0;
3791}
3792
Chris Mason3de45862008-11-17 21:02:50 -05003793static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3794 struct nameidata *nd)
3795{
3796 struct inode *inode;
3797
Chris Mason3de45862008-11-17 21:02:50 -05003798 inode = btrfs_lookup_dentry(dir, dentry);
3799 if (IS_ERR(inode))
3800 return ERR_CAST(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003801
Chris Mason39279cc2007-06-12 06:35:45 -04003802 return d_splice_alias(inode, dentry);
3803}
3804
3805static unsigned char btrfs_filetype_table[] = {
3806 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3807};
3808
David Woodhousecbdf5a22008-08-06 19:42:33 +01003809static int btrfs_real_readdir(struct file *filp, void *dirent,
3810 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003811{
3812 struct inode *inode = filp->f_dentry->d_inode;
3813 struct btrfs_root *root = BTRFS_I(inode)->root;
3814 struct btrfs_item *item;
3815 struct btrfs_dir_item *di;
3816 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003817 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003818 struct btrfs_path *path;
3819 int ret;
3820 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003821 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003822 int slot;
3823 int advance;
3824 unsigned char d_type;
3825 int over = 0;
3826 u32 di_cur;
3827 u32 di_total;
3828 u32 di_len;
3829 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003830 char tmp_name[32];
3831 char *name_ptr;
3832 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003833
3834 /* FIXME, use a real flag for deciding about the key type */
3835 if (root->fs_info->tree_root == root)
3836 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003837
Chris Mason39544012007-12-12 14:38:19 -05003838 /* special case for "." */
3839 if (filp->f_pos == 0) {
3840 over = filldir(dirent, ".", 1,
3841 1, inode->i_ino,
3842 DT_DIR);
3843 if (over)
3844 return 0;
3845 filp->f_pos = 1;
3846 }
Chris Mason39544012007-12-12 14:38:19 -05003847 /* special case for .., just use the back ref */
3848 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003849 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003850 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003851 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003852 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003853 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003854 filp->f_pos = 2;
3855 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003856 path = btrfs_alloc_path();
3857 path->reada = 2;
3858
Chris Mason39279cc2007-06-12 06:35:45 -04003859 btrfs_set_key_type(&key, key_type);
3860 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003861 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003862
Chris Mason39279cc2007-06-12 06:35:45 -04003863 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3864 if (ret < 0)
3865 goto err;
3866 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003867
3868 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003869 leaf = path->nodes[0];
3870 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003871 slot = path->slots[0];
3872 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003873 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003874 ret = btrfs_next_leaf(root, path);
3875 if (ret)
3876 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003877 leaf = path->nodes[0];
3878 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003879 slot = path->slots[0];
3880 } else {
3881 slot++;
3882 path->slots[0]++;
3883 }
3884 }
Chris Mason3de45862008-11-17 21:02:50 -05003885
Chris Mason39279cc2007-06-12 06:35:45 -04003886 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003887 item = btrfs_item_nr(leaf, slot);
3888 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3889
3890 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003891 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003892 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003893 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003894 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003895 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003896
3897 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003898
Chris Mason39279cc2007-06-12 06:35:45 -04003899 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3900 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003901 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003902
3903 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003904 struct btrfs_key location;
3905
3906 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003907 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003908 name_ptr = tmp_name;
3909 } else {
3910 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003911 if (!name_ptr) {
3912 ret = -ENOMEM;
3913 goto err;
3914 }
Chris Mason5f39d392007-10-15 16:14:19 -04003915 }
3916 read_extent_buffer(leaf, name_ptr,
3917 (unsigned long)(di + 1), name_len);
3918
3919 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3920 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05003921
3922 /* is this a reference to our own snapshot? If so
3923 * skip it
3924 */
3925 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3926 location.objectid == root->root_key.objectid) {
3927 over = 0;
3928 goto skip;
3929 }
Chris Mason5f39d392007-10-15 16:14:19 -04003930 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003931 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003932 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003933
Chris Mason3de45862008-11-17 21:02:50 -05003934skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003935 if (name_ptr != tmp_name)
3936 kfree(name_ptr);
3937
Chris Mason39279cc2007-06-12 06:35:45 -04003938 if (over)
3939 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003940 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003941 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003942 di_cur += di_len;
3943 di = (struct btrfs_dir_item *)((char *)di + di_len);
3944 }
3945 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003946
3947 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003948 if (key_type == BTRFS_DIR_INDEX_KEY)
Chris Mason89f135d2009-01-28 15:34:27 -05003949 filp->f_pos = INT_LIMIT(off_t);
Yan Zheng5e591a02008-02-19 11:41:02 -05003950 else
3951 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003952nopos:
3953 ret = 0;
3954err:
Chris Mason39279cc2007-06-12 06:35:45 -04003955 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003956 return ret;
3957}
3958
3959int btrfs_write_inode(struct inode *inode, int wait)
3960{
3961 struct btrfs_root *root = BTRFS_I(inode)->root;
3962 struct btrfs_trans_handle *trans;
3963 int ret = 0;
3964
Yan Zhengc146afa2008-11-12 14:34:12 -05003965 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04003966 return 0;
3967
Chris Mason39279cc2007-06-12 06:35:45 -04003968 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003969 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003970 btrfs_set_trans_block_group(trans, inode);
3971 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003972 }
3973 return ret;
3974}
3975
3976/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003977 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003978 * inode changes. But, it is most likely to find the inode in cache.
3979 * FIXME, needs more benchmarking...there are no reasons other than performance
3980 * to keep or drop this code.
3981 */
3982void btrfs_dirty_inode(struct inode *inode)
3983{
3984 struct btrfs_root *root = BTRFS_I(inode)->root;
3985 struct btrfs_trans_handle *trans;
3986
Chris Masonf9295742008-07-17 12:54:14 -04003987 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003988 btrfs_set_trans_block_group(trans, inode);
3989 btrfs_update_inode(trans, root, inode);
3990 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003991}
3992
Chris Masond352ac62008-09-29 15:18:18 -04003993/*
3994 * find the highest existing sequence number in a directory
3995 * and then set the in-memory index_cnt variable to reflect
3996 * free sequence numbers
3997 */
Josef Bacikaec74772008-07-24 12:12:38 -04003998static int btrfs_set_inode_index_count(struct inode *inode)
3999{
4000 struct btrfs_root *root = BTRFS_I(inode)->root;
4001 struct btrfs_key key, found_key;
4002 struct btrfs_path *path;
4003 struct extent_buffer *leaf;
4004 int ret;
4005
4006 key.objectid = inode->i_ino;
4007 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4008 key.offset = (u64)-1;
4009
4010 path = btrfs_alloc_path();
4011 if (!path)
4012 return -ENOMEM;
4013
4014 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4015 if (ret < 0)
4016 goto out;
4017 /* FIXME: we should be able to handle this */
4018 if (ret == 0)
4019 goto out;
4020 ret = 0;
4021
4022 /*
4023 * MAGIC NUMBER EXPLANATION:
4024 * since we search a directory based on f_pos we have to start at 2
4025 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4026 * else has to start at 2
4027 */
4028 if (path->slots[0] == 0) {
4029 BTRFS_I(inode)->index_cnt = 2;
4030 goto out;
4031 }
4032
4033 path->slots[0]--;
4034
4035 leaf = path->nodes[0];
4036 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4037
4038 if (found_key.objectid != inode->i_ino ||
4039 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4040 BTRFS_I(inode)->index_cnt = 2;
4041 goto out;
4042 }
4043
4044 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4045out:
4046 btrfs_free_path(path);
4047 return ret;
4048}
4049
Chris Masond352ac62008-09-29 15:18:18 -04004050/*
4051 * helper to find a free sequence number in a given directory. This current
4052 * code is very simple, later versions will do smarter things in the btree
4053 */
Chris Mason3de45862008-11-17 21:02:50 -05004054int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004055{
4056 int ret = 0;
4057
4058 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4059 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004060 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004061 return ret;
4062 }
4063
Chris Mason00e4e6b2008-08-05 11:18:09 -04004064 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004065 BTRFS_I(dir)->index_cnt++;
4066
4067 return ret;
4068}
4069
Chris Mason39279cc2007-06-12 06:35:45 -04004070static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4071 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004072 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004073 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004074 u64 ref_objectid, u64 objectid,
4075 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004076{
4077 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004078 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004079 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004080 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004081 struct btrfs_inode_ref *ref;
4082 struct btrfs_key key[2];
4083 u32 sizes[2];
4084 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004085 int ret;
4086 int owner;
4087
Chris Mason5f39d392007-10-15 16:14:19 -04004088 path = btrfs_alloc_path();
4089 BUG_ON(!path);
4090
Chris Mason39279cc2007-06-12 06:35:45 -04004091 inode = new_inode(root->fs_info->sb);
4092 if (!inode)
4093 return ERR_PTR(-ENOMEM);
4094
Josef Bacikaec74772008-07-24 12:12:38 -04004095 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004096 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004097 if (ret) {
4098 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004099 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004100 }
Josef Bacikaec74772008-07-24 12:12:38 -04004101 }
4102 /*
4103 * index_cnt is ignored for everything but a dir,
4104 * btrfs_get_inode_index_count has an explanation for the magic
4105 * number
4106 */
Chris Masone02119d2008-09-05 16:13:11 -04004107 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004108 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004109 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004110 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik6a632092009-02-20 11:00:09 -05004111 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004112
Chris Mason39279cc2007-06-12 06:35:45 -04004113 if (mode & S_IFDIR)
4114 owner = 0;
4115 else
4116 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004117 BTRFS_I(inode)->block_group =
4118 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004119
4120 key[0].objectid = objectid;
4121 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4122 key[0].offset = 0;
4123
4124 key[1].objectid = objectid;
4125 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4126 key[1].offset = ref_objectid;
4127
4128 sizes[0] = sizeof(struct btrfs_inode_item);
4129 sizes[1] = name_len + sizeof(*ref);
4130
Chris Masonb9473432009-03-13 11:00:37 -04004131 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004132 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4133 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004134 goto fail;
4135
Chris Mason79683f22008-11-19 22:00:53 -05004136 inode->i_uid = current_fsuid();
Chris Ball8c087b52009-02-04 09:29:54 -05004137
Chris Mason42f15d72009-02-06 11:35:57 -05004138 if (dir && (dir->i_mode & S_ISGID)) {
Chris Ball8c087b52009-02-04 09:29:54 -05004139 inode->i_gid = dir->i_gid;
4140 if (S_ISDIR(mode))
4141 mode |= S_ISGID;
4142 } else
4143 inode->i_gid = current_fsgid();
4144
Chris Mason39279cc2007-06-12 06:35:45 -04004145 inode->i_mode = mode;
4146 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004147 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004148 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004149 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4150 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004151 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004152
4153 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4154 struct btrfs_inode_ref);
4155 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004156 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004157 ptr = (unsigned long)(ref + 1);
4158 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4159
Chris Mason5f39d392007-10-15 16:14:19 -04004160 btrfs_mark_buffer_dirty(path->nodes[0]);
4161 btrfs_free_path(path);
4162
Chris Mason39279cc2007-06-12 06:35:45 -04004163 location = &BTRFS_I(inode)->location;
4164 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004165 location->offset = 0;
4166 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4167
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004168 btrfs_inherit_iflags(inode, dir);
4169
Chris Mason94272162009-07-02 12:26:06 -04004170 if ((mode & S_IFREG)) {
4171 if (btrfs_test_opt(root, NODATASUM))
4172 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4173 if (btrfs_test_opt(root, NODATACOW))
4174 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4175 }
4176
Chris Mason39279cc2007-06-12 06:35:45 -04004177 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004178 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004179 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004180fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004181 if (dir)
4182 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004183 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004184 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004185 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004186}
4187
4188static inline u8 btrfs_inode_type(struct inode *inode)
4189{
4190 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4191}
4192
Chris Masond352ac62008-09-29 15:18:18 -04004193/*
4194 * utility function to add 'inode' into 'parent_inode' with
4195 * a give name and a given sequence number.
4196 * if 'add_backref' is true, also insert a backref from the
4197 * inode to the parent directory.
4198 */
Chris Masone02119d2008-09-05 16:13:11 -04004199int btrfs_add_link(struct btrfs_trans_handle *trans,
4200 struct inode *parent_inode, struct inode *inode,
4201 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004202{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004203 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004204 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004205 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004206
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004207 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4208 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4209 } else {
4210 key.objectid = inode->i_ino;
4211 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4212 key.offset = 0;
4213 }
Chris Mason39279cc2007-06-12 06:35:45 -04004214
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004215 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4216 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4217 key.objectid, root->root_key.objectid,
4218 parent_inode->i_ino,
4219 index, name, name_len);
4220 } else if (add_backref) {
4221 ret = btrfs_insert_inode_ref(trans, root,
4222 name, name_len, inode->i_ino,
4223 parent_inode->i_ino, index);
4224 }
4225
Chris Mason39279cc2007-06-12 06:35:45 -04004226 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004227 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4228 parent_inode->i_ino, &key,
4229 btrfs_inode_type(inode), index);
4230 BUG_ON(ret);
4231
Chris Masondbe674a2008-07-17 12:54:05 -04004232 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004233 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004234 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004235 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004236 }
4237 return ret;
4238}
4239
4240static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05004241 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004242 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004243{
Chris Masone02119d2008-09-05 16:13:11 -04004244 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4245 inode, dentry->d_name.name,
4246 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004247 if (!err) {
4248 d_instantiate(dentry, inode);
4249 return 0;
4250 }
4251 if (err > 0)
4252 err = -EEXIST;
4253 return err;
4254}
4255
Josef Bacik618e21d2007-07-11 10:18:17 -04004256static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4257 int mode, dev_t rdev)
4258{
4259 struct btrfs_trans_handle *trans;
4260 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004261 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004262 int err;
4263 int drop_inode = 0;
4264 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004265 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004266 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004267
4268 if (!new_valid_dev(rdev))
4269 return -EINVAL;
4270
Josef Bacik9ed74f22009-09-11 16:12:44 -04004271 /*
4272 * 2 for inode item and ref
4273 * 2 for dir items
4274 * 1 for xattr if selinux is on
4275 */
4276 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004277 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004278 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004279
Josef Bacik618e21d2007-07-11 10:18:17 -04004280 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004281 if (!trans)
4282 goto fail;
Josef Bacik618e21d2007-07-11 10:18:17 -04004283 btrfs_set_trans_block_group(trans, dir);
4284
4285 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4286 if (err) {
4287 err = -ENOSPC;
4288 goto out_unlock;
4289 }
4290
Josef Bacikaec74772008-07-24 12:12:38 -04004291 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004292 dentry->d_name.len,
4293 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004294 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004295 err = PTR_ERR(inode);
4296 if (IS_ERR(inode))
4297 goto out_unlock;
4298
Jim Owens0279b4c2009-02-04 09:29:13 -05004299 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004300 if (err) {
4301 drop_inode = 1;
4302 goto out_unlock;
4303 }
4304
Josef Bacik618e21d2007-07-11 10:18:17 -04004305 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004306 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004307 if (err)
4308 drop_inode = 1;
4309 else {
4310 inode->i_op = &btrfs_special_inode_operations;
4311 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004312 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004313 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004314 btrfs_update_inode_block_group(trans, inode);
4315 btrfs_update_inode_block_group(trans, dir);
4316out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004317 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004318 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004319fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004320 btrfs_unreserve_metadata_space(root, 5);
Josef Bacik618e21d2007-07-11 10:18:17 -04004321 if (drop_inode) {
4322 inode_dec_link_count(inode);
4323 iput(inode);
4324 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004325 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004326 return err;
4327}
4328
Chris Mason39279cc2007-06-12 06:35:45 -04004329static int btrfs_create(struct inode *dir, struct dentry *dentry,
4330 int mode, struct nameidata *nd)
4331{
4332 struct btrfs_trans_handle *trans;
4333 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004334 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004335 int err;
4336 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05004337 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004338 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004339 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004340
Josef Bacik9ed74f22009-09-11 16:12:44 -04004341 /*
4342 * 2 for inode item and ref
4343 * 2 for dir items
4344 * 1 for xattr if selinux is on
4345 */
4346 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004347 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004348 return err;
4349
Chris Mason39279cc2007-06-12 06:35:45 -04004350 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004351 if (!trans)
4352 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04004353 btrfs_set_trans_block_group(trans, dir);
4354
4355 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4356 if (err) {
4357 err = -ENOSPC;
4358 goto out_unlock;
4359 }
4360
Josef Bacikaec74772008-07-24 12:12:38 -04004361 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004362 dentry->d_name.len,
4363 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004364 objectid, BTRFS_I(dir)->block_group, mode,
4365 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004366 err = PTR_ERR(inode);
4367 if (IS_ERR(inode))
4368 goto out_unlock;
4369
Jim Owens0279b4c2009-02-04 09:29:13 -05004370 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004371 if (err) {
4372 drop_inode = 1;
4373 goto out_unlock;
4374 }
4375
Chris Mason39279cc2007-06-12 06:35:45 -04004376 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004377 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004378 if (err)
4379 drop_inode = 1;
4380 else {
4381 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004382 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004383 inode->i_fop = &btrfs_file_operations;
4384 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004385 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004386 }
Chris Mason39279cc2007-06-12 06:35:45 -04004387 btrfs_update_inode_block_group(trans, inode);
4388 btrfs_update_inode_block_group(trans, dir);
4389out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004390 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004391 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004392fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004393 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004394 if (drop_inode) {
4395 inode_dec_link_count(inode);
4396 iput(inode);
4397 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004398 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004399 return err;
4400}
4401
4402static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4403 struct dentry *dentry)
4404{
4405 struct btrfs_trans_handle *trans;
4406 struct btrfs_root *root = BTRFS_I(dir)->root;
4407 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004408 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004409 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004410 int err;
4411 int drop_inode = 0;
4412
4413 if (inode->i_nlink == 0)
4414 return -ENOENT;
4415
Josef Bacik9ed74f22009-09-11 16:12:44 -04004416 /*
4417 * 1 item for inode ref
4418 * 2 items for dir items
4419 */
4420 err = btrfs_reserve_metadata_space(root, 3);
Chris Mason1832a6d2007-12-21 16:27:21 -05004421 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004422 return err;
4423
4424 btrfs_inc_nlink(inode);
4425
Chris Mason3de45862008-11-17 21:02:50 -05004426 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004427 if (err)
4428 goto fail;
4429
Chris Mason39279cc2007-06-12 06:35:45 -04004430 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004431
Chris Mason39279cc2007-06-12 06:35:45 -04004432 btrfs_set_trans_block_group(trans, dir);
4433 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04004434
Chris Mason00e4e6b2008-08-05 11:18:09 -04004435 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004436
Yan, Zhenga5719522009-09-24 09:17:31 -04004437 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004438 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004439 } else {
4440 btrfs_update_inode_block_group(trans, dir);
4441 err = btrfs_update_inode(trans, root, inode);
4442 BUG_ON(err);
4443 btrfs_log_new_name(trans, inode, NULL, dentry->d_parent);
4444 }
Chris Mason39279cc2007-06-12 06:35:45 -04004445
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004446 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004447 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004448fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004449 btrfs_unreserve_metadata_space(root, 3);
Chris Mason39279cc2007-06-12 06:35:45 -04004450 if (drop_inode) {
4451 inode_dec_link_count(inode);
4452 iput(inode);
4453 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004454 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004455 return err;
4456}
4457
Chris Mason39279cc2007-06-12 06:35:45 -04004458static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4459{
Chris Masonb9d86662008-05-02 16:13:49 -04004460 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004461 struct btrfs_trans_handle *trans;
4462 struct btrfs_root *root = BTRFS_I(dir)->root;
4463 int err = 0;
4464 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004465 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004466 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004467 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004468
Josef Bacik9ed74f22009-09-11 16:12:44 -04004469 /*
4470 * 2 items for inode and ref
4471 * 2 items for dir items
4472 * 1 for xattr if selinux is on
4473 */
4474 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004475 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004476 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004477
Chris Mason39279cc2007-06-12 06:35:45 -04004478 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004479 if (!trans) {
4480 err = -ENOMEM;
Chris Mason39279cc2007-06-12 06:35:45 -04004481 goto out_unlock;
4482 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04004483 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004484
4485 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4486 if (err) {
4487 err = -ENOSPC;
4488 goto out_unlock;
4489 }
4490
Josef Bacikaec74772008-07-24 12:12:38 -04004491 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004492 dentry->d_name.len,
4493 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004494 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4495 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004496 if (IS_ERR(inode)) {
4497 err = PTR_ERR(inode);
4498 goto out_fail;
4499 }
Chris Mason5f39d392007-10-15 16:14:19 -04004500
Chris Mason39279cc2007-06-12 06:35:45 -04004501 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004502
Jim Owens0279b4c2009-02-04 09:29:13 -05004503 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004504 if (err)
4505 goto out_fail;
4506
Chris Mason39279cc2007-06-12 06:35:45 -04004507 inode->i_op = &btrfs_dir_inode_operations;
4508 inode->i_fop = &btrfs_dir_file_operations;
4509 btrfs_set_trans_block_group(trans, inode);
4510
Chris Masondbe674a2008-07-17 12:54:05 -04004511 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004512 err = btrfs_update_inode(trans, root, inode);
4513 if (err)
4514 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004515
Chris Masone02119d2008-09-05 16:13:11 -04004516 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4517 inode, dentry->d_name.name,
4518 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004519 if (err)
4520 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004521
Chris Mason39279cc2007-06-12 06:35:45 -04004522 d_instantiate(dentry, inode);
4523 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004524 btrfs_update_inode_block_group(trans, inode);
4525 btrfs_update_inode_block_group(trans, dir);
4526
4527out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004528 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004529 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04004530
Chris Mason39279cc2007-06-12 06:35:45 -04004531out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004532 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004533 if (drop_on_err)
4534 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004535 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004536 return err;
4537}
4538
Chris Masond352ac62008-09-29 15:18:18 -04004539/* helper for btfs_get_extent. Given an existing extent in the tree,
4540 * and an extent that you want to insert, deal with overlap and insert
4541 * the new extent into the tree.
4542 */
Chris Mason3b951512008-04-17 11:29:12 -04004543static int merge_extent_mapping(struct extent_map_tree *em_tree,
4544 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004545 struct extent_map *em,
4546 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004547{
4548 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004549
Chris Masone6dcd2d2008-07-17 12:53:50 -04004550 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4551 start_diff = map_start - em->start;
4552 em->start = map_start;
4553 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004554 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4555 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004556 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004557 em->block_len -= start_diff;
4558 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004559 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004560}
4561
Chris Masonc8b97812008-10-29 14:49:59 -04004562static noinline int uncompress_inline(struct btrfs_path *path,
4563 struct inode *inode, struct page *page,
4564 size_t pg_offset, u64 extent_offset,
4565 struct btrfs_file_extent_item *item)
4566{
4567 int ret;
4568 struct extent_buffer *leaf = path->nodes[0];
4569 char *tmp;
4570 size_t max_size;
4571 unsigned long inline_size;
4572 unsigned long ptr;
4573
4574 WARN_ON(pg_offset != 0);
4575 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4576 inline_size = btrfs_file_extent_inline_item_len(leaf,
4577 btrfs_item_nr(leaf, path->slots[0]));
4578 tmp = kmalloc(inline_size, GFP_NOFS);
4579 ptr = btrfs_file_extent_inline_start(item);
4580
4581 read_extent_buffer(leaf, tmp, ptr, inline_size);
4582
Chris Mason5b050f02008-11-11 09:34:41 -05004583 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004584 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
4585 inline_size, max_size);
4586 if (ret) {
4587 char *kaddr = kmap_atomic(page, KM_USER0);
4588 unsigned long copy_size = min_t(u64,
4589 PAGE_CACHE_SIZE - pg_offset,
4590 max_size - extent_offset);
4591 memset(kaddr + pg_offset, 0, copy_size);
4592 kunmap_atomic(kaddr, KM_USER0);
4593 }
4594 kfree(tmp);
4595 return 0;
4596}
4597
Chris Masond352ac62008-09-29 15:18:18 -04004598/*
4599 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004600 * the ugly parts come from merging extents from the disk with the in-ram
4601 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004602 * where the in-ram extents might be locked pending data=ordered completion.
4603 *
4604 * This also copies inline extents directly into the page.
4605 */
Chris Masond3977122009-01-05 21:25:51 -05004606
Chris Masona52d9a82007-08-27 16:49:44 -04004607struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004608 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004609 int create)
4610{
4611 int ret;
4612 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004613 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004614 u64 extent_start = 0;
4615 u64 extent_end = 0;
4616 u64 objectid = inode->i_ino;
4617 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004618 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004619 struct btrfs_root *root = BTRFS_I(inode)->root;
4620 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004621 struct extent_buffer *leaf;
4622 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004623 struct extent_map *em = NULL;
4624 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004625 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004626 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004627 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04004628
Chris Masona52d9a82007-08-27 16:49:44 -04004629again:
Chris Mason890871b2009-09-02 16:24:52 -04004630 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004631 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004632 if (em)
4633 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004634 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004635
Chris Masona52d9a82007-08-27 16:49:44 -04004636 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004637 if (em->start > start || em->start + em->len <= start)
4638 free_extent_map(em);
4639 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004640 free_extent_map(em);
4641 else
4642 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004643 }
Chris Masond1310b22008-01-24 16:13:08 -05004644 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004645 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004646 err = -ENOMEM;
4647 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004648 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004649 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004650 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004651 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004652 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004653 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004654
4655 if (!path) {
4656 path = btrfs_alloc_path();
4657 BUG_ON(!path);
4658 }
4659
Chris Mason179e29e2007-11-01 11:28:41 -04004660 ret = btrfs_lookup_file_extent(trans, root, path,
4661 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004662 if (ret < 0) {
4663 err = ret;
4664 goto out;
4665 }
4666
4667 if (ret != 0) {
4668 if (path->slots[0] == 0)
4669 goto not_found;
4670 path->slots[0]--;
4671 }
4672
Chris Mason5f39d392007-10-15 16:14:19 -04004673 leaf = path->nodes[0];
4674 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04004675 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04004676 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04004677 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4678 found_type = btrfs_key_type(&found_key);
4679 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04004680 found_type != BTRFS_EXTENT_DATA_KEY) {
4681 goto not_found;
4682 }
4683
Chris Mason5f39d392007-10-15 16:14:19 -04004684 found_type = btrfs_file_extent_type(leaf, item);
4685 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04004686 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04004687 if (found_type == BTRFS_FILE_EXTENT_REG ||
4688 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04004689 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04004690 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04004691 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
4692 size_t size;
4693 size = btrfs_file_extent_inline_len(leaf, item);
4694 extent_end = (extent_start + size + root->sectorsize - 1) &
4695 ~((u64)root->sectorsize - 1);
4696 }
4697
4698 if (start >= extent_end) {
4699 path->slots[0]++;
4700 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
4701 ret = btrfs_next_leaf(root, path);
4702 if (ret < 0) {
4703 err = ret;
4704 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004705 }
Yan Zheng9036c102008-10-30 14:19:41 -04004706 if (ret > 0)
4707 goto not_found;
4708 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04004709 }
Yan Zheng9036c102008-10-30 14:19:41 -04004710 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4711 if (found_key.objectid != objectid ||
4712 found_key.type != BTRFS_EXTENT_DATA_KEY)
4713 goto not_found;
4714 if (start + len <= found_key.offset)
4715 goto not_found;
4716 em->start = start;
4717 em->len = found_key.offset - start;
4718 goto not_found_em;
4719 }
4720
Yan Zhengd899e052008-10-30 14:25:28 -04004721 if (found_type == BTRFS_FILE_EXTENT_REG ||
4722 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04004723 em->start = extent_start;
4724 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004725 em->orig_start = extent_start -
4726 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04004727 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4728 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004729 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04004730 goto insert;
4731 }
Chris Masonc8b97812008-10-29 14:49:59 -04004732 if (compressed) {
4733 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
4734 em->block_start = bytenr;
4735 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
4736 item);
4737 } else {
4738 bytenr += btrfs_file_extent_offset(leaf, item);
4739 em->block_start = bytenr;
4740 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04004741 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
4742 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04004743 }
Chris Masona52d9a82007-08-27 16:49:44 -04004744 goto insert;
4745 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004746 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04004747 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04004748 size_t size;
4749 size_t extent_offset;
4750 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04004751
Chris Masona52d9a82007-08-27 16:49:44 -04004752 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004753 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04004754 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04004755 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04004756 goto out;
4757 }
4758
Yan Zheng9036c102008-10-30 14:19:41 -04004759 size = btrfs_file_extent_inline_len(leaf, item);
4760 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05004761 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04004762 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04004763 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05004764 em->len = (copy_size + root->sectorsize - 1) &
4765 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004766 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004767 if (compressed)
4768 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004769 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004770 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004771 if (btrfs_file_extent_compression(leaf, item) ==
4772 BTRFS_COMPRESS_ZLIB) {
4773 ret = uncompress_inline(path, inode, page,
4774 pg_offset,
4775 extent_offset, item);
4776 BUG_ON(ret);
4777 } else {
4778 map = kmap(page);
4779 read_extent_buffer(leaf, map + pg_offset, ptr,
4780 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04004781 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
4782 memset(map + pg_offset + copy_size, 0,
4783 PAGE_CACHE_SIZE - pg_offset -
4784 copy_size);
4785 }
Chris Masonc8b97812008-10-29 14:49:59 -04004786 kunmap(page);
4787 }
Chris Mason179e29e2007-11-01 11:28:41 -04004788 flush_dcache_page(page);
4789 } else if (create && PageUptodate(page)) {
4790 if (!trans) {
4791 kunmap(page);
4792 free_extent_map(em);
4793 em = NULL;
4794 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004795 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004796 goto again;
4797 }
Chris Masonc8b97812008-10-29 14:49:59 -04004798 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004799 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004800 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004801 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004802 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004803 }
Chris Masond1310b22008-01-24 16:13:08 -05004804 set_extent_uptodate(io_tree, em->start,
4805 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004806 goto insert;
4807 } else {
Chris Masond3977122009-01-05 21:25:51 -05004808 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04004809 WARN_ON(1);
4810 }
4811not_found:
4812 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004813 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004814not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004815 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004816 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004817insert:
4818 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004819 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05004820 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
4821 "[%llu %llu]\n", (unsigned long long)em->start,
4822 (unsigned long long)em->len,
4823 (unsigned long long)start,
4824 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04004825 err = -EIO;
4826 goto out;
4827 }
Chris Masond1310b22008-01-24 16:13:08 -05004828
4829 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04004830 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004831 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004832 /* it is possible that someone inserted the extent into the tree
4833 * while we had the lock dropped. It is also possible that
4834 * an overlapping map exists in the tree
4835 */
Chris Masona52d9a82007-08-27 16:49:44 -04004836 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004837 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004838
4839 ret = 0;
4840
Chris Mason3b951512008-04-17 11:29:12 -04004841 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004842 if (existing && (existing->start > start ||
4843 existing->start + existing->len <= start)) {
4844 free_extent_map(existing);
4845 existing = NULL;
4846 }
Chris Mason3b951512008-04-17 11:29:12 -04004847 if (!existing) {
4848 existing = lookup_extent_mapping(em_tree, em->start,
4849 em->len);
4850 if (existing) {
4851 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004852 em, start,
4853 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004854 free_extent_map(existing);
4855 if (err) {
4856 free_extent_map(em);
4857 em = NULL;
4858 }
4859 } else {
4860 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04004861 free_extent_map(em);
4862 em = NULL;
4863 }
4864 } else {
4865 free_extent_map(em);
4866 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004867 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004868 }
Chris Masona52d9a82007-08-27 16:49:44 -04004869 }
Chris Mason890871b2009-09-02 16:24:52 -04004870 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004871out:
Chris Masonf4219502008-07-22 11:18:09 -04004872 if (path)
4873 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004874 if (trans) {
4875 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05004876 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04004877 err = ret;
4878 }
Chris Masona52d9a82007-08-27 16:49:44 -04004879 if (err) {
4880 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04004881 return ERR_PTR(err);
4882 }
4883 return em;
4884}
4885
Chris Mason16432982008-04-10 10:23:21 -04004886static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4887 const struct iovec *iov, loff_t offset,
4888 unsigned long nr_segs)
4889{
Chris Masone1c4b742008-04-22 13:26:46 -04004890 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004891}
4892
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004893static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4894 __u64 start, __u64 len)
4895{
4896 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
4897}
4898
Chris Mason9ebefb182007-06-15 13:50:00 -04004899int btrfs_readpage(struct file *file, struct page *page)
4900{
Chris Masond1310b22008-01-24 16:13:08 -05004901 struct extent_io_tree *tree;
4902 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004903 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004904}
Chris Mason1832a6d2007-12-21 16:27:21 -05004905
Chris Mason39279cc2007-06-12 06:35:45 -04004906static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4907{
Chris Masond1310b22008-01-24 16:13:08 -05004908 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004909
4910
4911 if (current->flags & PF_MEMALLOC) {
4912 redirty_page_for_writepage(wbc, page);
4913 unlock_page(page);
4914 return 0;
4915 }
Chris Masond1310b22008-01-24 16:13:08 -05004916 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004917 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4918}
Chris Mason39279cc2007-06-12 06:35:45 -04004919
Chris Masonf4219502008-07-22 11:18:09 -04004920int btrfs_writepages(struct address_space *mapping,
4921 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04004922{
Chris Masond1310b22008-01-24 16:13:08 -05004923 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004924
Chris Masond1310b22008-01-24 16:13:08 -05004925 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04004926 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4927}
4928
Chris Mason3ab2fb52007-11-08 10:59:22 -05004929static int
4930btrfs_readpages(struct file *file, struct address_space *mapping,
4931 struct list_head *pages, unsigned nr_pages)
4932{
Chris Masond1310b22008-01-24 16:13:08 -05004933 struct extent_io_tree *tree;
4934 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004935 return extent_readpages(tree, mapping, pages, nr_pages,
4936 btrfs_get_extent);
4937}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004938static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004939{
Chris Masond1310b22008-01-24 16:13:08 -05004940 struct extent_io_tree *tree;
4941 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004942 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004943
Chris Masond1310b22008-01-24 16:13:08 -05004944 tree = &BTRFS_I(page->mapping->host)->io_tree;
4945 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004946 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004947 if (ret == 1) {
4948 ClearPagePrivate(page);
4949 set_page_private(page, 0);
4950 page_cache_release(page);
4951 }
4952 return ret;
4953}
Chris Mason39279cc2007-06-12 06:35:45 -04004954
Chris Masone6dcd2d2008-07-17 12:53:50 -04004955static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4956{
Chris Mason98509cf2008-09-11 15:51:43 -04004957 if (PageWriteback(page) || PageDirty(page))
4958 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05004959 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004960}
4961
Chris Masona52d9a82007-08-27 16:49:44 -04004962static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4963{
Chris Masond1310b22008-01-24 16:13:08 -05004964 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004965 struct btrfs_ordered_extent *ordered;
4966 u64 page_start = page_offset(page);
4967 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004968
Chris Mason8b62b722009-09-02 16:53:46 -04004969
4970 /*
4971 * we have the page locked, so new writeback can't start,
4972 * and the dirty bit won't be cleared while we are here.
4973 *
4974 * Wait for IO on this page so that we can safely clear
4975 * the PagePrivate2 bit and do ordered accounting
4976 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004977 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04004978
Chris Masond1310b22008-01-24 16:13:08 -05004979 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004980 if (offset) {
4981 btrfs_releasepage(page, GFP_NOFS);
4982 return;
4983 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004984 lock_extent(tree, page_start, page_end, GFP_NOFS);
4985 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4986 page_offset(page));
4987 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04004988 /*
4989 * IO on this page will never be started, so we need
4990 * to account for any ordered extents now
4991 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004992 clear_extent_bit(tree, page_start, page_end,
4993 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04004994 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
4995 NULL, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04004996 /*
4997 * whoever cleared the private bit is responsible
4998 * for the finish_ordered_io
4999 */
5000 if (TestClearPagePrivate2(page)) {
5001 btrfs_finish_ordered_io(page->mapping->host,
5002 page_start, page_end);
5003 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005004 btrfs_put_ordered_extent(ordered);
5005 lock_extent(tree, page_start, page_end, GFP_NOFS);
5006 }
5007 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04005008 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
5009 EXTENT_DO_ACCOUNTING, 1, 1, NULL, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005010 __btrfs_releasepage(page, GFP_NOFS);
5011
Chris Mason4a096752008-07-21 10:29:44 -04005012 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04005013 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04005014 ClearPagePrivate(page);
5015 set_page_private(page, 0);
5016 page_cache_release(page);
5017 }
Chris Mason39279cc2007-06-12 06:35:45 -04005018}
5019
Chris Mason9ebefb182007-06-15 13:50:00 -04005020/*
5021 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
5022 * called from a page fault handler when a page is first dirtied. Hence we must
5023 * be careful to check for EOF conditions here. We set the page up correctly
5024 * for a written page which means we get ENOSPC checking when writing into
5025 * holes and correct delalloc and unwritten extent mapping on filesystems that
5026 * support these features.
5027 *
5028 * We are not allowed to take the i_mutex here so we have to play games to
5029 * protect against truncate races as the page could now be beyond EOF. Because
5030 * vmtruncate() writes the inode size before removing pages, once we have the
5031 * page lock we can determine safely if the page is beyond EOF. If it is not
5032 * beyond EOF, then the page is guaranteed safe against truncation until we
5033 * unlock the page.
5034 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07005035int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04005036{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005037 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05005038 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05005039 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005040 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
5041 struct btrfs_ordered_extent *ordered;
5042 char *kaddr;
5043 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04005044 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05005045 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04005046 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005047 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04005048
Josef Bacik6a632092009-02-20 11:00:09 -05005049 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07005050 if (ret) {
5051 if (ret == -ENOMEM)
5052 ret = VM_FAULT_OOM;
5053 else /* -ENOSPC, -EIO, etc */
5054 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05005055 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07005056 }
Chris Mason1832a6d2007-12-21 16:27:21 -05005057
Josef Bacik9ed74f22009-09-11 16:12:44 -04005058 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
5059 if (ret) {
5060 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
5061 ret = VM_FAULT_SIGBUS;
5062 goto out;
5063 }
5064
Nick Piggin56a76f82009-03-31 15:23:23 -07005065 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005066again:
Chris Mason9ebefb182007-06-15 13:50:00 -04005067 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04005068 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005069 page_start = page_offset(page);
5070 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04005071
Chris Mason9ebefb182007-06-15 13:50:00 -04005072 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04005073 (page_start >= size)) {
Josef Bacik6a632092009-02-20 11:00:09 -05005074 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Chris Mason9ebefb182007-06-15 13:50:00 -04005075 /* page got truncated out from underneath us */
5076 goto out_unlock;
5077 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005078 wait_on_page_writeback(page);
5079
5080 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
5081 set_page_extent_mapped(page);
5082
Chris Masoneb84ae02008-07-17 13:53:27 -04005083 /*
5084 * we can't set the delalloc bits if there are pending ordered
5085 * extents. Drop our locks and wait for them to finish
5086 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04005087 ordered = btrfs_lookup_ordered_extent(inode, page_start);
5088 if (ordered) {
5089 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
5090 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04005091 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005092 btrfs_put_ordered_extent(ordered);
5093 goto again;
5094 }
5095
Josef Bacikfbf19082009-10-01 17:10:23 -04005096 /*
5097 * XXX - page_mkwrite gets called every time the page is dirtied, even
5098 * if it was already dirty, so for space accounting reasons we need to
5099 * clear any delalloc bits for the range we are fixing to save. There
5100 * is probably a better way to do this, but for now keep consistent with
5101 * prepare_pages in the normal write path.
5102 */
5103 clear_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04005104 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
5105 GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04005106
Josef Bacik9ed74f22009-09-11 16:12:44 -04005107 ret = btrfs_set_extent_delalloc(inode, page_start, page_end);
5108 if (ret) {
5109 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
5110 ret = VM_FAULT_SIGBUS;
Josef Bacikfbf19082009-10-01 17:10:23 -04005111 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005112 goto out_unlock;
5113 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005114 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04005115
5116 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04005117 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005118 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04005119 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04005120 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04005121
Chris Masone6dcd2d2008-07-17 12:53:50 -04005122 if (zero_start != PAGE_CACHE_SIZE) {
5123 kaddr = kmap(page);
5124 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
5125 flush_dcache_page(page);
5126 kunmap(page);
5127 }
Chris Mason247e7432008-07-17 12:53:51 -04005128 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005129 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04005130 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005131
Chris Mason257c62e2009-10-13 13:21:08 -04005132 BTRFS_I(inode)->last_trans = root->fs_info->generation;
5133 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
5134
Chris Masone6dcd2d2008-07-17 12:53:50 -04005135 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04005136
5137out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04005138 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason50a9b212009-09-11 12:33:12 -04005139 if (!ret)
5140 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04005141 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05005142out:
Chris Mason9ebefb182007-06-15 13:50:00 -04005143 return ret;
5144}
5145
Chris Mason39279cc2007-06-12 06:35:45 -04005146static void btrfs_truncate(struct inode *inode)
5147{
5148 struct btrfs_root *root = BTRFS_I(inode)->root;
5149 int ret;
5150 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005151 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04005152 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005153
Yan, Zheng80825102009-11-12 09:35:36 +00005154 if (!S_ISREG(inode->i_mode)) {
5155 WARN_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04005156 return;
Yan, Zheng80825102009-11-12 09:35:36 +00005157 }
Chris Mason39279cc2007-06-12 06:35:45 -04005158
Josef Bacik5d5e1032009-10-13 16:46:49 -04005159 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
5160 if (ret)
5161 return;
Yan, Zheng80825102009-11-12 09:35:36 +00005162
Chris Mason4a096752008-07-21 10:29:44 -04005163 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00005164 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005165
Chris Mason39279cc2007-06-12 06:35:45 -04005166 trans = btrfs_start_transaction(root, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00005167 btrfs_set_trans_block_group(trans, inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005168
5169 /*
5170 * setattr is responsible for setting the ordered_data_close flag,
5171 * but that is only tested during the last file release. That
5172 * could happen well after the next commit, leaving a great big
5173 * window where new writes may get lost if someone chooses to write
5174 * to this file after truncating to zero
5175 *
5176 * The inode doesn't have any dirty data here, and so if we commit
5177 * this is a noop. If someone immediately starts writing to the inode
5178 * it is very likely we'll catch some of their writes in this
5179 * transaction, and the commit will find this file on the ordered
5180 * data list with good things to send down.
5181 *
5182 * This is a best effort solution, there is still a window where
5183 * using truncate to replace the contents of the file will
5184 * end up with a zero length file after a crash.
5185 */
5186 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
5187 btrfs_add_ordered_operation(trans, root, inode);
5188
Yan, Zheng80825102009-11-12 09:35:36 +00005189 while (1) {
5190 ret = btrfs_truncate_inode_items(trans, root, inode,
5191 inode->i_size,
5192 BTRFS_EXTENT_DATA_KEY);
5193 if (ret != -EAGAIN)
5194 break;
Chris Mason39279cc2007-06-12 06:35:45 -04005195
Yan, Zheng80825102009-11-12 09:35:36 +00005196 ret = btrfs_update_inode(trans, root, inode);
5197 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005198
Yan, Zheng80825102009-11-12 09:35:36 +00005199 nr = trans->blocks_used;
5200 btrfs_end_transaction(trans, root);
5201 btrfs_btree_balance_dirty(root, nr);
5202
5203 trans = btrfs_start_transaction(root, 1);
5204 btrfs_set_trans_block_group(trans, inode);
5205 }
5206
5207 if (ret == 0 && inode->i_nlink > 0) {
5208 ret = btrfs_orphan_del(trans, inode);
5209 BUG_ON(ret);
5210 }
5211
5212 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04005213 BUG_ON(ret);
5214
Josef Bacik7b128762008-07-24 12:17:14 -04005215 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04005216 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005217 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005218 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005219}
5220
Sven Wegener3b963622008-06-09 21:57:42 -04005221/*
Chris Masond352ac62008-09-29 15:18:18 -04005222 * create a new subvolume directory/inode (helper for the ioctl).
5223 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05005224int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04005225 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005226 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04005227{
Chris Mason39279cc2007-06-12 06:35:45 -04005228 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005229 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005230 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005231
Josef Bacikaec74772008-07-24 12:12:38 -04005232 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005233 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04005234 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005235 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005236 inode->i_op = &btrfs_dir_inode_operations;
5237 inode->i_fop = &btrfs_dir_file_operations;
5238
Chris Mason39279cc2007-06-12 06:35:45 -04005239 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04005240 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04005241
Yan, Zheng76dda932009-09-21 16:00:26 -04005242 err = btrfs_update_inode(trans, new_root, inode);
5243 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005244
Yan, Zheng76dda932009-09-21 16:00:26 -04005245 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005246 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005247}
5248
Chris Masond352ac62008-09-29 15:18:18 -04005249/* helper function for file defrag and space balancing. This
5250 * forces readahead on a given range of bytes in an inode
5251 */
Chris Masonedbd8d42007-12-21 16:27:24 -05005252unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04005253 struct file_ra_state *ra, struct file *file,
5254 pgoff_t offset, pgoff_t last_index)
5255{
Chris Mason8e7bf942008-04-28 09:02:36 -04005256 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04005257
Chris Mason86479a02007-09-10 19:58:16 -04005258 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
5259 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04005260}
5261
Chris Mason39279cc2007-06-12 06:35:45 -04005262struct inode *btrfs_alloc_inode(struct super_block *sb)
5263{
5264 struct btrfs_inode *ei;
5265
5266 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
5267 if (!ei)
5268 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04005269 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04005270 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04005271 ei->logged_trans = 0;
Josef Bacik32c00af2009-10-08 13:34:05 -04005272 ei->outstanding_extents = 0;
5273 ei->reserved_extents = 0;
Josef Bacika6dbd422009-11-11 15:53:34 -05005274 ei->root = NULL;
Josef Bacik32c00af2009-10-08 13:34:05 -04005275 spin_lock_init(&ei->accounting_lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005276 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04005277 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005278 INIT_LIST_HEAD(&ei->ordered_operations);
Chris Mason39279cc2007-06-12 06:35:45 -04005279 return &ei->vfs_inode;
5280}
5281
5282void btrfs_destroy_inode(struct inode *inode)
5283{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005284 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005285 struct btrfs_root *root = BTRFS_I(inode)->root;
5286
Chris Mason39279cc2007-06-12 06:35:45 -04005287 WARN_ON(!list_empty(&inode->i_dentry));
5288 WARN_ON(inode->i_data.nrpages);
5289
Chris Mason5a3f23d2009-03-31 13:27:11 -04005290 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05005291 * This can happen where we create an inode, but somebody else also
5292 * created the same inode and we need to destroy the one we already
5293 * created.
5294 */
5295 if (!root)
5296 goto free;
5297
5298 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04005299 * Make sure we're properly removed from the ordered operation
5300 * lists.
5301 */
5302 smp_mb();
5303 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
5304 spin_lock(&root->fs_info->ordered_extent_lock);
5305 list_del_init(&BTRFS_I(inode)->ordered_operations);
5306 spin_unlock(&root->fs_info->ordered_extent_lock);
5307 }
5308
5309 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005310 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00005311 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
5312 inode->i_ino);
5313 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04005314 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04005315 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005316
Chris Masond3977122009-01-05 21:25:51 -05005317 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005318 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
5319 if (!ordered)
5320 break;
5321 else {
Chris Masond3977122009-01-05 21:25:51 -05005322 printk(KERN_ERR "btrfs found ordered "
5323 "extent %llu %llu on inode cleanup\n",
5324 (unsigned long long)ordered->file_offset,
5325 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005326 btrfs_remove_ordered_extent(inode, ordered);
5327 btrfs_put_ordered_extent(ordered);
5328 btrfs_put_ordered_extent(ordered);
5329 }
5330 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005331 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005332 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05005333free:
Chris Mason39279cc2007-06-12 06:35:45 -04005334 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
5335}
5336
Yan, Zheng76dda932009-09-21 16:00:26 -04005337void btrfs_drop_inode(struct inode *inode)
5338{
5339 struct btrfs_root *root = BTRFS_I(inode)->root;
5340
5341 if (inode->i_nlink > 0 && btrfs_root_refs(&root->root_item) == 0)
5342 generic_delete_inode(inode);
5343 else
5344 generic_drop_inode(inode);
5345}
5346
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005347static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04005348{
5349 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
5350
5351 inode_init_once(&ei->vfs_inode);
5352}
5353
5354void btrfs_destroy_cachep(void)
5355{
5356 if (btrfs_inode_cachep)
5357 kmem_cache_destroy(btrfs_inode_cachep);
5358 if (btrfs_trans_handle_cachep)
5359 kmem_cache_destroy(btrfs_trans_handle_cachep);
5360 if (btrfs_transaction_cachep)
5361 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04005362 if (btrfs_path_cachep)
5363 kmem_cache_destroy(btrfs_path_cachep);
5364}
5365
5366int btrfs_init_cachep(void)
5367{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005368 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
5369 sizeof(struct btrfs_inode), 0,
5370 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04005371 if (!btrfs_inode_cachep)
5372 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005373
5374 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
5375 sizeof(struct btrfs_trans_handle), 0,
5376 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005377 if (!btrfs_trans_handle_cachep)
5378 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005379
5380 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
5381 sizeof(struct btrfs_transaction), 0,
5382 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005383 if (!btrfs_transaction_cachep)
5384 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005385
5386 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
5387 sizeof(struct btrfs_path), 0,
5388 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005389 if (!btrfs_path_cachep)
5390 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005391
Chris Mason39279cc2007-06-12 06:35:45 -04005392 return 0;
5393fail:
5394 btrfs_destroy_cachep();
5395 return -ENOMEM;
5396}
5397
5398static int btrfs_getattr(struct vfsmount *mnt,
5399 struct dentry *dentry, struct kstat *stat)
5400{
5401 struct inode *inode = dentry->d_inode;
5402 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05005403 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05005404 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04005405 stat->blocks = (inode_get_bytes(inode) +
5406 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04005407 return 0;
5408}
5409
Chris Masond3977122009-01-05 21:25:51 -05005410static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
5411 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005412{
5413 struct btrfs_trans_handle *trans;
5414 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005415 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005416 struct inode *new_inode = new_dentry->d_inode;
5417 struct inode *old_inode = old_dentry->d_inode;
5418 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005419 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005420 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04005421 int ret;
5422
Yan, Zhengf679a842009-09-24 09:17:31 -04005423 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5424 return -EPERM;
5425
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005426 /* we only allow rename subvolume link between subvolumes */
5427 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05005428 return -EXDEV;
5429
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005430 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
5431 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
5432 return -ENOTEMPTY;
5433
Chris Mason39279cc2007-06-12 06:35:45 -04005434 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005435 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04005436 return -ENOTEMPTY;
Chris Mason0660b5a2008-11-17 20:37:39 -05005437
Josef Bacik9ed74f22009-09-11 16:12:44 -04005438 /*
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005439 * We want to reserve the absolute worst case amount of items. So if
5440 * both inodes are subvols and we need to unlink them then that would
5441 * require 4 item modifications, but if they are both normal inodes it
5442 * would require 5 item modifications, so we'll assume their normal
5443 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
5444 * should cover the worst case number of items we'll modify.
Josef Bacik9ed74f22009-09-11 16:12:44 -04005445 */
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005446 ret = btrfs_reserve_metadata_space(root, 11);
Chris Mason1832a6d2007-12-21 16:27:21 -05005447 if (ret)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005448 return ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05005449
Chris Mason5a3f23d2009-03-31 13:27:11 -04005450 /*
5451 * we're using rename to replace one file with another.
5452 * and the replacement file is large. Start IO on it now so
5453 * we don't add too much work to the end of the transaction
5454 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04005455 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04005456 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
5457 filemap_flush(old_inode->i_mapping);
5458
Yan, Zheng76dda932009-09-21 16:00:26 -04005459 /* close the racy window with snapshot create/destroy ioctl */
5460 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5461 down_read(&root->fs_info->subvol_sem);
Chris Mason5f39d392007-10-15 16:14:19 -04005462
Chris Mason39279cc2007-06-12 06:35:45 -04005463 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga5719522009-09-24 09:17:31 -04005464 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04005465
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005466 if (dest != root)
5467 btrfs_record_root_in_trans(trans, dest);
5468
Yan, Zhenga5719522009-09-24 09:17:31 -04005469 ret = btrfs_set_inode_index(new_dir, &index);
5470 if (ret)
5471 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005472
Yan, Zhenga5719522009-09-24 09:17:31 -04005473 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005474 /* force full log commit if subvolume involved. */
5475 root->fs_info->last_trans_log_full_commit = trans->transid;
5476 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04005477 ret = btrfs_insert_inode_ref(trans, dest,
5478 new_dentry->d_name.name,
5479 new_dentry->d_name.len,
5480 old_inode->i_ino,
5481 new_dir->i_ino, index);
5482 if (ret)
5483 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005484 /*
5485 * this is an ugly little race, but the rename is required
5486 * to make sure that if we crash, the inode is either at the
5487 * old name or the new one. pinning the log transaction lets
5488 * us make sure we don't allow a log commit to come in after
5489 * we unlink the name but before we add the new name back in.
5490 */
5491 btrfs_pin_log_trans(root);
5492 }
Chris Mason12fcfd22009-03-24 10:24:20 -04005493 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04005494 * make sure the inode gets flushed if it is replacing
5495 * something.
5496 */
5497 if (new_inode && new_inode->i_size &&
5498 old_inode && S_ISREG(old_inode->i_mode)) {
5499 btrfs_add_ordered_operation(trans, root, old_inode);
5500 }
5501
Chris Mason39279cc2007-06-12 06:35:45 -04005502 old_dir->i_ctime = old_dir->i_mtime = ctime;
5503 new_dir->i_ctime = new_dir->i_mtime = ctime;
5504 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04005505
Chris Mason12fcfd22009-03-24 10:24:20 -04005506 if (old_dentry->d_parent != new_dentry->d_parent)
5507 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
5508
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005509 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
5510 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
5511 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
5512 old_dentry->d_name.name,
5513 old_dentry->d_name.len);
5514 } else {
5515 btrfs_inc_nlink(old_dentry->d_inode);
5516 ret = btrfs_unlink_inode(trans, root, old_dir,
5517 old_dentry->d_inode,
5518 old_dentry->d_name.name,
5519 old_dentry->d_name.len);
5520 }
5521 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005522
5523 if (new_inode) {
5524 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005525 if (unlikely(new_inode->i_ino ==
5526 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
5527 root_objectid = BTRFS_I(new_inode)->location.objectid;
5528 ret = btrfs_unlink_subvol(trans, dest, new_dir,
5529 root_objectid,
5530 new_dentry->d_name.name,
5531 new_dentry->d_name.len);
5532 BUG_ON(new_inode->i_nlink == 0);
5533 } else {
5534 ret = btrfs_unlink_inode(trans, dest, new_dir,
5535 new_dentry->d_inode,
5536 new_dentry->d_name.name,
5537 new_dentry->d_name.len);
5538 }
5539 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005540 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04005541 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005542 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005543 }
Chris Mason39279cc2007-06-12 06:35:45 -04005544 }
Josef Bacikaec74772008-07-24 12:12:38 -04005545
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005546 ret = btrfs_add_link(trans, new_dir, old_inode,
5547 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04005548 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005549 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005550
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005551 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
5552 btrfs_log_new_name(trans, old_inode, old_dir,
5553 new_dentry->d_parent);
5554 btrfs_end_log_trans(root);
5555 }
Chris Mason39279cc2007-06-12 06:35:45 -04005556out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04005557 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005558
Yan, Zheng76dda932009-09-21 16:00:26 -04005559 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5560 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005561
Josef Bacik5df6a9f2009-11-10 21:23:48 -05005562 btrfs_unreserve_metadata_space(root, 11);
Chris Mason39279cc2007-06-12 06:35:45 -04005563 return ret;
5564}
5565
Chris Masond352ac62008-09-29 15:18:18 -04005566/*
5567 * some fairly slow code that needs optimization. This walks the list
5568 * of all the inodes with pending delalloc and forces them to disk.
5569 */
Chris Masonea8c2812008-08-04 23:17:27 -04005570int btrfs_start_delalloc_inodes(struct btrfs_root *root)
5571{
5572 struct list_head *head = &root->fs_info->delalloc_inodes;
5573 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005574 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04005575
Yan Zhengc146afa2008-11-12 14:34:12 -05005576 if (root->fs_info->sb->s_flags & MS_RDONLY)
5577 return -EROFS;
5578
Chris Mason75eff682008-12-15 15:54:40 -05005579 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05005580 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04005581 binode = list_entry(head->next, struct btrfs_inode,
5582 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005583 inode = igrab(&binode->vfs_inode);
5584 if (!inode)
5585 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05005586 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005587 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005588 filemap_flush(inode->i_mapping);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005589 iput(inode);
5590 }
5591 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05005592 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04005593 }
Chris Mason75eff682008-12-15 15:54:40 -05005594 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04005595
5596 /* the filemap_flush will queue IO into the worker threads, but
5597 * we have to make sure the IO is actually started and that
5598 * ordered extents get created before we return
5599 */
5600 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05005601 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05005602 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005603 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05005604 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
5605 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04005606 }
5607 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04005608 return 0;
5609}
5610
Chris Mason39279cc2007-06-12 06:35:45 -04005611static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
5612 const char *symname)
5613{
5614 struct btrfs_trans_handle *trans;
5615 struct btrfs_root *root = BTRFS_I(dir)->root;
5616 struct btrfs_path *path;
5617 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05005618 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005619 int err;
5620 int drop_inode = 0;
5621 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005622 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04005623 int name_len;
5624 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04005625 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04005626 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04005627 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05005628 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005629
5630 name_len = strlen(symname) + 1;
5631 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
5632 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05005633
Josef Bacik9ed74f22009-09-11 16:12:44 -04005634 /*
5635 * 2 items for inode item and ref
5636 * 2 items for dir items
5637 * 1 item for xattr if selinux is on
5638 */
5639 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05005640 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04005641 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05005642
Chris Mason39279cc2007-06-12 06:35:45 -04005643 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005644 if (!trans)
5645 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04005646 btrfs_set_trans_block_group(trans, dir);
5647
5648 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
5649 if (err) {
5650 err = -ENOSPC;
5651 goto out_unlock;
5652 }
5653
Josef Bacikaec74772008-07-24 12:12:38 -04005654 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05005655 dentry->d_name.len,
5656 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04005657 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
5658 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005659 err = PTR_ERR(inode);
5660 if (IS_ERR(inode))
5661 goto out_unlock;
5662
Jim Owens0279b4c2009-02-04 09:29:13 -05005663 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04005664 if (err) {
5665 drop_inode = 1;
5666 goto out_unlock;
5667 }
5668
Chris Mason39279cc2007-06-12 06:35:45 -04005669 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04005670 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005671 if (err)
5672 drop_inode = 1;
5673 else {
5674 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005675 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04005676 inode->i_fop = &btrfs_file_operations;
5677 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05005678 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04005679 }
Chris Mason39279cc2007-06-12 06:35:45 -04005680 btrfs_update_inode_block_group(trans, inode);
5681 btrfs_update_inode_block_group(trans, dir);
5682 if (drop_inode)
5683 goto out_unlock;
5684
5685 path = btrfs_alloc_path();
5686 BUG_ON(!path);
5687 key.objectid = inode->i_ino;
5688 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005689 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
5690 datasize = btrfs_file_extent_calc_inline_size(name_len);
5691 err = btrfs_insert_empty_item(trans, root, path, &key,
5692 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005693 if (err) {
5694 drop_inode = 1;
5695 goto out_unlock;
5696 }
Chris Mason5f39d392007-10-15 16:14:19 -04005697 leaf = path->nodes[0];
5698 ei = btrfs_item_ptr(leaf, path->slots[0],
5699 struct btrfs_file_extent_item);
5700 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
5701 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04005702 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04005703 btrfs_set_file_extent_encryption(leaf, ei, 0);
5704 btrfs_set_file_extent_compression(leaf, ei, 0);
5705 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
5706 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
5707
Chris Mason39279cc2007-06-12 06:35:45 -04005708 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04005709 write_extent_buffer(leaf, symname, ptr, name_len);
5710 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04005711 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04005712
Chris Mason39279cc2007-06-12 06:35:45 -04005713 inode->i_op = &btrfs_symlink_inode_operations;
5714 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04005715 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04005716 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04005717 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005718 err = btrfs_update_inode(trans, root, inode);
5719 if (err)
5720 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005721
5722out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005723 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04005724 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005725out_fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04005726 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04005727 if (drop_inode) {
5728 inode_dec_link_count(inode);
5729 iput(inode);
5730 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005731 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005732 return err;
5733}
Chris Mason16432982008-04-10 10:23:21 -04005734
Yan, Zheng5a303d52009-11-12 09:34:52 +00005735static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00005736 u64 alloc_hint, int mode)
Yan Zhengd899e052008-10-30 14:25:28 -04005737{
Yan, Zheng5a303d52009-11-12 09:34:52 +00005738 struct btrfs_trans_handle *trans;
Yan Zhengd899e052008-10-30 14:25:28 -04005739 struct btrfs_root *root = BTRFS_I(inode)->root;
5740 struct btrfs_key ins;
5741 u64 alloc_size;
5742 u64 cur_offset = start;
5743 u64 num_bytes = end - start;
5744 int ret = 0;
5745
Yan Zhengd899e052008-10-30 14:25:28 -04005746 while (num_bytes > 0) {
5747 alloc_size = min(num_bytes, root->fs_info->max_extent);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005748
Yan Zhengd899e052008-10-30 14:25:28 -04005749 ret = btrfs_reserve_extent(trans, root, alloc_size,
5750 root->sectorsize, 0, alloc_hint,
5751 (u64)-1, &ins, 1);
5752 if (ret) {
5753 WARN_ON(1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00005754 break;
Yan Zhengd899e052008-10-30 14:25:28 -04005755 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00005756
5757 ret = btrfs_reserve_metadata_space(root, 3);
5758 if (ret) {
5759 btrfs_free_reserved_extent(root, ins.objectid,
5760 ins.offset);
5761 break;
5762 }
5763
5764 trans = btrfs_start_transaction(root, 1);
5765
Yan Zhengd899e052008-10-30 14:25:28 -04005766 ret = insert_reserved_file_extent(trans, inode,
5767 cur_offset, ins.objectid,
5768 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00005769 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04005770 BTRFS_FILE_EXTENT_PREALLOC);
5771 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04005772 btrfs_drop_extent_cache(inode, cur_offset,
5773 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00005774
Yan Zhengd899e052008-10-30 14:25:28 -04005775 num_bytes -= ins.offset;
5776 cur_offset += ins.offset;
5777 alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005778
Yan Zhengd899e052008-10-30 14:25:28 -04005779 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005780 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04005781 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zheng5a303d52009-11-12 09:34:52 +00005782 cur_offset > inode->i_size) {
5783 i_size_write(inode, cur_offset);
5784 btrfs_ordered_update_i_size(inode, cur_offset, NULL);
5785 }
5786
Yan Zhengd899e052008-10-30 14:25:28 -04005787 ret = btrfs_update_inode(trans, root, inode);
5788 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04005789
Yan, Zheng5a303d52009-11-12 09:34:52 +00005790 btrfs_end_transaction(trans, root);
5791 btrfs_unreserve_metadata_space(root, 3);
5792 }
Yan Zhengd899e052008-10-30 14:25:28 -04005793 return ret;
5794}
5795
5796static long btrfs_fallocate(struct inode *inode, int mode,
5797 loff_t offset, loff_t len)
5798{
5799 u64 cur_offset;
5800 u64 last_byte;
5801 u64 alloc_start;
5802 u64 alloc_end;
5803 u64 alloc_hint = 0;
Chris Masone980b502009-04-24 14:39:24 -04005804 u64 locked_end;
Yan Zhengd899e052008-10-30 14:25:28 -04005805 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
5806 struct extent_map *em;
5807 int ret;
5808
5809 alloc_start = offset & ~mask;
5810 alloc_end = (offset + len + mask) & ~mask;
5811
Chris Mason546888d2009-04-21 11:53:38 -04005812 /*
5813 * wait for ordered IO before we have any locks. We'll loop again
5814 * below with the locks held.
5815 */
5816 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
5817
Yan Zhengd899e052008-10-30 14:25:28 -04005818 mutex_lock(&inode->i_mutex);
5819 if (alloc_start > inode->i_size) {
5820 ret = btrfs_cont_expand(inode, alloc_start);
5821 if (ret)
5822 goto out;
5823 }
5824
Yan, Zheng5a303d52009-11-12 09:34:52 +00005825 ret = btrfs_check_data_free_space(BTRFS_I(inode)->root, inode,
Josef Bacika970b0a2009-06-27 21:07:34 -04005826 alloc_end - alloc_start);
5827 if (ret)
5828 goto out;
5829
Chris Masone980b502009-04-24 14:39:24 -04005830 locked_end = alloc_end - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04005831 while (1) {
5832 struct btrfs_ordered_extent *ordered;
Chris Mason546888d2009-04-21 11:53:38 -04005833
Chris Mason546888d2009-04-21 11:53:38 -04005834 /* the extent lock is ordered inside the running
5835 * transaction
5836 */
Chris Masone980b502009-04-24 14:39:24 -04005837 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
5838 GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04005839 ordered = btrfs_lookup_first_ordered_extent(inode,
5840 alloc_end - 1);
5841 if (ordered &&
5842 ordered->file_offset + ordered->len > alloc_start &&
5843 ordered->file_offset < alloc_end) {
5844 btrfs_put_ordered_extent(ordered);
5845 unlock_extent(&BTRFS_I(inode)->io_tree,
Chris Masone980b502009-04-24 14:39:24 -04005846 alloc_start, locked_end, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005847 /*
5848 * we can't wait on the range with the transaction
5849 * running or with the extent lock held
5850 */
Yan Zhengd899e052008-10-30 14:25:28 -04005851 btrfs_wait_ordered_range(inode, alloc_start,
5852 alloc_end - alloc_start);
5853 } else {
5854 if (ordered)
5855 btrfs_put_ordered_extent(ordered);
5856 break;
5857 }
5858 }
5859
5860 cur_offset = alloc_start;
5861 while (1) {
5862 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
5863 alloc_end - cur_offset, 0);
5864 BUG_ON(IS_ERR(em) || !em);
5865 last_byte = min(extent_map_end(em), alloc_end);
5866 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng5a303d52009-11-12 09:34:52 +00005867 if (em->block_start == EXTENT_MAP_HOLE ||
5868 (cur_offset >= inode->i_size &&
5869 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5870 ret = prealloc_file_range(inode,
5871 cur_offset, last_byte,
5872 alloc_hint, mode);
Yan Zhengd899e052008-10-30 14:25:28 -04005873 if (ret < 0) {
5874 free_extent_map(em);
5875 break;
5876 }
5877 }
5878 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
5879 alloc_hint = em->block_start;
5880 free_extent_map(em);
5881
5882 cur_offset = last_byte;
5883 if (cur_offset >= alloc_end) {
5884 ret = 0;
5885 break;
5886 }
5887 }
Chris Masone980b502009-04-24 14:39:24 -04005888 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
Yan Zhengd899e052008-10-30 14:25:28 -04005889 GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005890
Yan, Zheng5a303d52009-11-12 09:34:52 +00005891 btrfs_free_reserved_data_space(BTRFS_I(inode)->root, inode,
5892 alloc_end - alloc_start);
Yan Zhengd899e052008-10-30 14:25:28 -04005893out:
5894 mutex_unlock(&inode->i_mutex);
5895 return ret;
5896}
5897
Chris Masone6dcd2d2008-07-17 12:53:50 -04005898static int btrfs_set_page_dirty(struct page *page)
5899{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005900 return __set_page_dirty_nobuffers(page);
5901}
5902
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005903static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05005904{
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005905 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05005906 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04005907 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05005908}
Chris Mason39279cc2007-06-12 06:35:45 -04005909
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07005910static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05005911 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04005912 .lookup = btrfs_lookup,
5913 .create = btrfs_create,
5914 .unlink = btrfs_unlink,
5915 .link = btrfs_link,
5916 .mkdir = btrfs_mkdir,
5917 .rmdir = btrfs_rmdir,
5918 .rename = btrfs_rename,
5919 .symlink = btrfs_symlink,
5920 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005921 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005922 .setxattr = btrfs_setxattr,
5923 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005924 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005925 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005926 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005927};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07005928static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04005929 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05005930 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005931};
Yan, Zheng76dda932009-09-21 16:00:26 -04005932
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005933static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04005934 .llseek = generic_file_llseek,
5935 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01005936 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04005937 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04005938#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04005939 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04005940#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04005941 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04005942 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04005943};
5944
Chris Masond1310b22008-01-24 16:13:08 -05005945static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04005946 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05005947 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04005948 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005949 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005950 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04005951 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04005952 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05005953 .set_bit_hook = btrfs_set_bit_hook,
5954 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005955 .merge_extent_hook = btrfs_merge_extent_hook,
5956 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005957};
5958
Chris Mason35054392009-01-21 13:11:13 -05005959/*
5960 * btrfs doesn't support the bmap operation because swapfiles
5961 * use bmap to make a mapping of extents in the file. They assume
5962 * these extents won't change over the life of the file and they
5963 * use the bmap result to do IO directly to the drive.
5964 *
5965 * the btrfs bmap call would return logical addresses that aren't
5966 * suitable for IO and they also will change frequently as COW
5967 * operations happen. So, swapfile + btrfs == corruption.
5968 *
5969 * For now we're avoiding this by dropping bmap.
5970 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07005971static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04005972 .readpage = btrfs_readpage,
5973 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04005974 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05005975 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04005976 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04005977 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04005978 .invalidatepage = btrfs_invalidatepage,
5979 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005980 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02005981 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04005982};
5983
Alexey Dobriyan7f094102009-09-21 17:01:10 -07005984static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04005985 .readpage = btrfs_readpage,
5986 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04005987 .invalidatepage = btrfs_invalidatepage,
5988 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04005989};
5990
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07005991static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04005992 .truncate = btrfs_truncate,
5993 .getattr = btrfs_getattr,
5994 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005995 .setxattr = btrfs_setxattr,
5996 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005997 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005998 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005999 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04006000 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006001 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04006002};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006003static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04006004 .getattr = btrfs_getattr,
6005 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05006006 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006007 .setxattr = btrfs_setxattr,
6008 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04006009 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04006010 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04006011};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07006012static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04006013 .readlink = generic_readlink,
6014 .follow_link = page_follow_link_light,
6015 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05006016 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05006017 .setxattr = btrfs_setxattr,
6018 .getxattr = btrfs_getxattr,
6019 .listxattr = btrfs_listxattr,
6020 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04006021};
Yan, Zheng76dda932009-09-21 16:00:26 -04006022
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04006023const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04006024 .d_delete = btrfs_dentry_delete,
6025};