blob: c427011dc4534fee755eef4981b064873095273c [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>
29#include <linux/smp_lock.h>
30#include <linux/backing-dev.h>
31#include <linux/mpage.h>
32#include <linux/swap.h>
33#include <linux/writeback.h>
34#include <linux/statfs.h>
35#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040036#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050037#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040038#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040039#include <linux/falloc.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050040#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040041#include "ctree.h"
42#include "disk-io.h"
43#include "transaction.h"
44#include "btrfs_inode.h"
45#include "ioctl.h"
46#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040047#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040048#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040049#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040050#include "tree-log.h"
Yan Zheng5b84e8d2008-10-09 11:46:19 -040051#include "ref-cache.h"
Chris Masonc8b97812008-10-29 14:49:59 -040052#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050053#include "locking.h"
Chris Mason39279cc2007-06-12 06:35:45 -040054
55struct btrfs_iget_args {
56 u64 ino;
57 struct btrfs_root *root;
58};
59
60static struct inode_operations btrfs_dir_inode_operations;
61static struct inode_operations btrfs_symlink_inode_operations;
62static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040063static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040064static struct inode_operations btrfs_file_inode_operations;
65static struct address_space_operations btrfs_aops;
66static struct address_space_operations btrfs_symlink_aops;
67static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050068static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040069
70static struct kmem_cache *btrfs_inode_cachep;
71struct kmem_cache *btrfs_trans_handle_cachep;
72struct kmem_cache *btrfs_transaction_cachep;
73struct kmem_cache *btrfs_bit_radix_cachep;
74struct kmem_cache *btrfs_path_cachep;
75
76#define S_SHIFT 12
77static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
78 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
79 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
80 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
81 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
82 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
83 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
84 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
85};
86
Josef Bacik7b128762008-07-24 12:17:14 -040087static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040088static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050089static noinline int cow_file_range(struct inode *inode,
90 struct page *locked_page,
91 u64 start, u64 end, int *page_started,
92 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040093
Jim Owens0279b4c2009-02-04 09:29:13 -050094static int btrfs_init_inode_security(struct inode *inode, struct inode *dir)
95{
96 int err;
97
98 err = btrfs_init_acl(inode, dir);
99 if (!err)
100 err = btrfs_xattr_security_init(inode, dir);
101 return err;
102}
103
Chris Masond352ac62008-09-29 15:18:18 -0400104/*
Chris Masonc8b97812008-10-29 14:49:59 -0400105 * this does all the hard work for inserting an inline extent into
106 * the btree. The caller should have done a btrfs_drop_extents so that
107 * no overlapping inline items exist in the btree
108 */
Chris Masond3977122009-01-05 21:25:51 -0500109static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400110 struct btrfs_root *root, struct inode *inode,
111 u64 start, size_t size, size_t compressed_size,
112 struct page **compressed_pages)
113{
114 struct btrfs_key key;
115 struct btrfs_path *path;
116 struct extent_buffer *leaf;
117 struct page *page = NULL;
118 char *kaddr;
119 unsigned long ptr;
120 struct btrfs_file_extent_item *ei;
121 int err = 0;
122 int ret;
123 size_t cur_size = size;
124 size_t datasize;
125 unsigned long offset;
126 int use_compress = 0;
127
128 if (compressed_size && compressed_pages) {
129 use_compress = 1;
130 cur_size = compressed_size;
131 }
132
Chris Masond3977122009-01-05 21:25:51 -0500133 path = btrfs_alloc_path();
134 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400135 return -ENOMEM;
136
137 btrfs_set_trans_block_group(trans, inode);
138
139 key.objectid = inode->i_ino;
140 key.offset = start;
141 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400142 datasize = btrfs_file_extent_calc_inline_size(cur_size);
143
144 inode_add_bytes(inode, size);
145 ret = btrfs_insert_empty_item(trans, root, path, &key,
146 datasize);
147 BUG_ON(ret);
148 if (ret) {
149 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400150 goto fail;
151 }
152 leaf = path->nodes[0];
153 ei = btrfs_item_ptr(leaf, path->slots[0],
154 struct btrfs_file_extent_item);
155 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
156 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
157 btrfs_set_file_extent_encryption(leaf, ei, 0);
158 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
159 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
160 ptr = btrfs_file_extent_inline_start(ei);
161
162 if (use_compress) {
163 struct page *cpage;
164 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500165 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400166 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500167 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400168 PAGE_CACHE_SIZE);
169
170 kaddr = kmap(cpage);
171 write_extent_buffer(leaf, kaddr, ptr, cur_size);
172 kunmap(cpage);
173
174 i++;
175 ptr += cur_size;
176 compressed_size -= cur_size;
177 }
178 btrfs_set_file_extent_compression(leaf, ei,
179 BTRFS_COMPRESS_ZLIB);
180 } else {
181 page = find_get_page(inode->i_mapping,
182 start >> PAGE_CACHE_SHIFT);
183 btrfs_set_file_extent_compression(leaf, ei, 0);
184 kaddr = kmap_atomic(page, KM_USER0);
185 offset = start & (PAGE_CACHE_SIZE - 1);
186 write_extent_buffer(leaf, kaddr + offset, ptr, size);
187 kunmap_atomic(kaddr, KM_USER0);
188 page_cache_release(page);
189 }
190 btrfs_mark_buffer_dirty(leaf);
191 btrfs_free_path(path);
192
193 BTRFS_I(inode)->disk_i_size = inode->i_size;
194 btrfs_update_inode(trans, root, inode);
195 return 0;
196fail:
197 btrfs_free_path(path);
198 return err;
199}
200
201
202/*
203 * conditionally insert an inline extent into the file. This
204 * does the checks required to make sure the data is small enough
205 * to fit as an inline extent.
206 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400207static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400208 struct btrfs_root *root,
209 struct inode *inode, u64 start, u64 end,
210 size_t compressed_size,
211 struct page **compressed_pages)
212{
213 u64 isize = i_size_read(inode);
214 u64 actual_end = min(end + 1, isize);
215 u64 inline_len = actual_end - start;
216 u64 aligned_end = (end + root->sectorsize - 1) &
217 ~((u64)root->sectorsize - 1);
218 u64 hint_byte;
219 u64 data_len = inline_len;
220 int ret;
221
222 if (compressed_size)
223 data_len = compressed_size;
224
225 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400226 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400227 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
228 (!compressed_size &&
229 (actual_end & (root->sectorsize - 1)) == 0) ||
230 end + 1 < isize ||
231 data_len > root->fs_info->max_inline) {
232 return 1;
233 }
234
Chris Masonc8b97812008-10-29 14:49:59 -0400235 ret = btrfs_drop_extents(trans, root, inode, start,
Chris Mason70b99e62008-10-31 12:46:39 -0400236 aligned_end, start, &hint_byte);
Chris Masonc8b97812008-10-29 14:49:59 -0400237 BUG_ON(ret);
238
239 if (isize > actual_end)
240 inline_len = min_t(u64, isize, actual_end);
241 ret = insert_inline_extent(trans, root, inode, start,
242 inline_len, compressed_size,
243 compressed_pages);
244 BUG_ON(ret);
245 btrfs_drop_extent_cache(inode, start, aligned_end, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400246 return 0;
247}
248
Chris Mason771ed682008-11-06 22:02:51 -0500249struct async_extent {
250 u64 start;
251 u64 ram_size;
252 u64 compressed_size;
253 struct page **pages;
254 unsigned long nr_pages;
255 struct list_head list;
256};
257
258struct async_cow {
259 struct inode *inode;
260 struct btrfs_root *root;
261 struct page *locked_page;
262 u64 start;
263 u64 end;
264 struct list_head extents;
265 struct btrfs_work work;
266};
267
268static noinline int add_async_extent(struct async_cow *cow,
269 u64 start, u64 ram_size,
270 u64 compressed_size,
271 struct page **pages,
272 unsigned long nr_pages)
273{
274 struct async_extent *async_extent;
275
276 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
277 async_extent->start = start;
278 async_extent->ram_size = ram_size;
279 async_extent->compressed_size = compressed_size;
280 async_extent->pages = pages;
281 async_extent->nr_pages = nr_pages;
282 list_add_tail(&async_extent->list, &cow->extents);
283 return 0;
284}
285
Chris Masonc8b97812008-10-29 14:49:59 -0400286/*
Chris Mason771ed682008-11-06 22:02:51 -0500287 * we create compressed extents in two phases. The first
288 * phase compresses a range of pages that have already been
289 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400290 *
Chris Mason771ed682008-11-06 22:02:51 -0500291 * This is done inside an ordered work queue, and the compression
292 * is spread across many cpus. The actual IO submission is step
293 * two, and the ordered work queue takes care of making sure that
294 * happens in the same order things were put onto the queue by
295 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400296 *
Chris Mason771ed682008-11-06 22:02:51 -0500297 * If this code finds it can't get good compression, it puts an
298 * entry onto the work queue to write the uncompressed bytes. This
299 * makes sure that both compressed inodes and uncompressed inodes
300 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400301 */
Chris Mason771ed682008-11-06 22:02:51 -0500302static noinline int compress_file_range(struct inode *inode,
303 struct page *locked_page,
304 u64 start, u64 end,
305 struct async_cow *async_cow,
306 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400307{
308 struct btrfs_root *root = BTRFS_I(inode)->root;
309 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400310 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -0400311 u64 orig_start;
312 u64 disk_num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400313 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400314 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500315 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400316 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400317 struct page **pages = NULL;
318 unsigned long nr_pages;
319 unsigned long nr_pages_ret = 0;
320 unsigned long total_compressed = 0;
321 unsigned long total_in = 0;
322 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500323 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400324 int i;
325 int will_compress;
Chris Masonb888db22007-08-27 16:49:44 -0400326
Chris Masonc8b97812008-10-29 14:49:59 -0400327 orig_start = start;
Chris Masonbe20aa92007-12-17 20:14:01 -0500328
Chris Mason42dc7ba2008-12-15 11:44:56 -0500329 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400330again:
331 will_compress = 0;
332 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
333 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
334
Chris Masonf03d9301f2009-02-04 09:31:06 -0500335 /*
336 * we don't want to send crud past the end of i_size through
337 * compression, that's just a waste of CPU time. So, if the
338 * end of the file is before the start of our current
339 * requested range of bytes, we bail out to the uncompressed
340 * cleanup code that can deal with all of this.
341 *
342 * It isn't really the fastest way to fix things, but this is a
343 * very uncommon corner.
344 */
345 if (actual_end <= start)
346 goto cleanup_and_bail_uncompressed;
347
Chris Masonc8b97812008-10-29 14:49:59 -0400348 total_compressed = actual_end - start;
349
350 /* we want to make sure that amount of ram required to uncompress
351 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500352 * of a compressed extent to 128k. This is a crucial number
353 * because it also controls how easily we can spread reads across
354 * cpus for decompression.
355 *
356 * We also want to make sure the amount of IO required to do
357 * a random read is reasonably small, so we limit the size of
358 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400359 */
360 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400361 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500362 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400363 disk_num_bytes = num_bytes;
364 total_in = 0;
365 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400366
Chris Mason771ed682008-11-06 22:02:51 -0500367 /*
368 * we do compression for mount -o compress and when the
369 * inode has not been flagged as nocompress. This flag can
370 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400371 */
372 if (!btrfs_test_flag(inode, NOCOMPRESS) &&
373 btrfs_test_opt(root, COMPRESS)) {
374 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400375 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400376
Chris Masonc8b97812008-10-29 14:49:59 -0400377 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
378 total_compressed, pages,
379 nr_pages, &nr_pages_ret,
380 &total_in,
381 &total_compressed,
382 max_compressed);
383
384 if (!ret) {
385 unsigned long offset = total_compressed &
386 (PAGE_CACHE_SIZE - 1);
387 struct page *page = pages[nr_pages_ret - 1];
388 char *kaddr;
389
390 /* zero the tail end of the last page, we might be
391 * sending it down to disk
392 */
393 if (offset) {
394 kaddr = kmap_atomic(page, KM_USER0);
395 memset(kaddr + offset, 0,
396 PAGE_CACHE_SIZE - offset);
397 kunmap_atomic(kaddr, KM_USER0);
398 }
399 will_compress = 1;
400 }
401 }
402 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500403 trans = btrfs_join_transaction(root, 1);
404 BUG_ON(!trans);
405 btrfs_set_trans_block_group(trans, inode);
406
Chris Masonc8b97812008-10-29 14:49:59 -0400407 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500408 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400409 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500410 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400411 */
412 ret = cow_file_range_inline(trans, root, inode,
413 start, end, 0, NULL);
414 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500415 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400416 ret = cow_file_range_inline(trans, root, inode,
417 start, end,
418 total_compressed, pages);
419 }
Chris Mason771ed682008-11-06 22:02:51 -0500420 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400421 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500422 /*
423 * inline extent creation worked, we don't need
424 * to create any more async work items. Unlock
425 * and free up our temp pages.
426 */
Chris Masonc8b97812008-10-29 14:49:59 -0400427 extent_clear_unlock_delalloc(inode,
428 &BTRFS_I(inode)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -0500429 start, end, NULL, 1, 0,
430 0, 1, 1, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400431 ret = 0;
432 goto free_pages_out;
433 }
434 }
435
436 if (will_compress) {
437 /*
438 * we aren't doing an inline extent round the compressed size
439 * up to a block size boundary so the allocator does sane
440 * things
441 */
442 total_compressed = (total_compressed + blocksize - 1) &
443 ~(blocksize - 1);
444
445 /*
446 * one last check to make sure the compression is really a
447 * win, compare the page count read with the blocks on disk
448 */
449 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
450 ~(PAGE_CACHE_SIZE - 1);
451 if (total_compressed >= total_in) {
452 will_compress = 0;
453 } else {
454 disk_num_bytes = total_compressed;
455 num_bytes = total_in;
456 }
457 }
458 if (!will_compress && pages) {
459 /*
460 * the compression code ran but failed to make things smaller,
461 * free any pages it allocated and our page pointer array
462 */
463 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400464 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400465 page_cache_release(pages[i]);
466 }
467 kfree(pages);
468 pages = NULL;
469 total_compressed = 0;
470 nr_pages_ret = 0;
471
472 /* flag the file so we don't compress in the future */
473 btrfs_set_flag(inode, NOCOMPRESS);
474 }
Chris Mason771ed682008-11-06 22:02:51 -0500475 if (will_compress) {
476 *num_added += 1;
477
478 /* the async work queues will take care of doing actual
479 * allocation on disk for these compressed pages,
480 * and will submit them to the elevator.
481 */
482 add_async_extent(async_cow, start, num_bytes,
483 total_compressed, pages, nr_pages_ret);
484
Chris Mason42dc7ba2008-12-15 11:44:56 -0500485 if (start + num_bytes < end && start + num_bytes < actual_end) {
Chris Mason771ed682008-11-06 22:02:51 -0500486 start += num_bytes;
487 pages = NULL;
488 cond_resched();
489 goto again;
490 }
491 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500492cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500493 /*
494 * No compression, but we still need to write the pages in
495 * the file we've been given so far. redirty the locked
496 * page if it corresponds to our extent and set things up
497 * for the async work queue to run cow_file_range to do
498 * the normal delalloc dance
499 */
500 if (page_offset(locked_page) >= start &&
501 page_offset(locked_page) <= end) {
502 __set_page_dirty_nobuffers(locked_page);
503 /* unlocked later on in the async handlers */
504 }
505 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
506 *num_added += 1;
507 }
508
509out:
510 return 0;
511
512free_pages_out:
513 for (i = 0; i < nr_pages_ret; i++) {
514 WARN_ON(pages[i]->mapping);
515 page_cache_release(pages[i]);
516 }
Chris Masond3977122009-01-05 21:25:51 -0500517 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500518
519 goto out;
520}
521
522/*
523 * phase two of compressed writeback. This is the ordered portion
524 * of the code, which only gets called in the order the work was
525 * queued. We walk all the async extents created by compress_file_range
526 * and send them down to the disk.
527 */
528static noinline int submit_compressed_extents(struct inode *inode,
529 struct async_cow *async_cow)
530{
531 struct async_extent *async_extent;
532 u64 alloc_hint = 0;
533 struct btrfs_trans_handle *trans;
534 struct btrfs_key ins;
535 struct extent_map *em;
536 struct btrfs_root *root = BTRFS_I(inode)->root;
537 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
538 struct extent_io_tree *io_tree;
539 int ret;
540
541 if (list_empty(&async_cow->extents))
542 return 0;
543
544 trans = btrfs_join_transaction(root, 1);
545
Chris Masond3977122009-01-05 21:25:51 -0500546 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500547 async_extent = list_entry(async_cow->extents.next,
548 struct async_extent, list);
549 list_del(&async_extent->list);
550
551 io_tree = &BTRFS_I(inode)->io_tree;
552
553 /* did the compression code fall back to uncompressed IO? */
554 if (!async_extent->pages) {
555 int page_started = 0;
556 unsigned long nr_written = 0;
557
558 lock_extent(io_tree, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500559 async_extent->start +
560 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500561
562 /* allocate blocks */
563 cow_file_range(inode, async_cow->locked_page,
564 async_extent->start,
565 async_extent->start +
566 async_extent->ram_size - 1,
567 &page_started, &nr_written, 0);
568
569 /*
570 * if page_started, cow_file_range inserted an
571 * inline extent and took care of all the unlocking
572 * and IO for us. Otherwise, we need to submit
573 * all those pages down to the drive.
574 */
575 if (!page_started)
576 extent_write_locked_range(io_tree,
577 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500578 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500579 async_extent->ram_size - 1,
580 btrfs_get_extent,
581 WB_SYNC_ALL);
582 kfree(async_extent);
583 cond_resched();
584 continue;
585 }
586
587 lock_extent(io_tree, async_extent->start,
588 async_extent->start + async_extent->ram_size - 1,
589 GFP_NOFS);
590 /*
591 * here we're doing allocation and writeback of the
592 * compressed pages
593 */
594 btrfs_drop_extent_cache(inode, async_extent->start,
595 async_extent->start +
596 async_extent->ram_size - 1, 0);
597
598 ret = btrfs_reserve_extent(trans, root,
599 async_extent->compressed_size,
600 async_extent->compressed_size,
601 0, alloc_hint,
602 (u64)-1, &ins, 1);
603 BUG_ON(ret);
604 em = alloc_extent_map(GFP_NOFS);
605 em->start = async_extent->start;
606 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500607 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500608
609 em->block_start = ins.objectid;
610 em->block_len = ins.offset;
611 em->bdev = root->fs_info->fs_devices->latest_bdev;
612 set_bit(EXTENT_FLAG_PINNED, &em->flags);
613 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
614
Chris Masond3977122009-01-05 21:25:51 -0500615 while (1) {
Chris Mason771ed682008-11-06 22:02:51 -0500616 spin_lock(&em_tree->lock);
617 ret = add_extent_mapping(em_tree, em);
618 spin_unlock(&em_tree->lock);
619 if (ret != -EEXIST) {
620 free_extent_map(em);
621 break;
622 }
623 btrfs_drop_extent_cache(inode, async_extent->start,
624 async_extent->start +
625 async_extent->ram_size - 1, 0);
626 }
627
628 ret = btrfs_add_ordered_extent(inode, async_extent->start,
629 ins.objectid,
630 async_extent->ram_size,
631 ins.offset,
632 BTRFS_ORDERED_COMPRESSED);
633 BUG_ON(ret);
634
635 btrfs_end_transaction(trans, root);
636
637 /*
638 * clear dirty, set writeback and unlock the pages.
639 */
640 extent_clear_unlock_delalloc(inode,
641 &BTRFS_I(inode)->io_tree,
642 async_extent->start,
643 async_extent->start +
644 async_extent->ram_size - 1,
645 NULL, 1, 1, 0, 1, 1, 0);
646
647 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500648 async_extent->start,
649 async_extent->ram_size,
650 ins.objectid,
651 ins.offset, async_extent->pages,
652 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500653
654 BUG_ON(ret);
655 trans = btrfs_join_transaction(root, 1);
656 alloc_hint = ins.objectid + ins.offset;
657 kfree(async_extent);
658 cond_resched();
659 }
660
661 btrfs_end_transaction(trans, root);
662 return 0;
663}
664
665/*
666 * when extent_io.c finds a delayed allocation range in the file,
667 * the call backs end up in this code. The basic idea is to
668 * allocate extents on disk for the range, and create ordered data structs
669 * in ram to track those extents.
670 *
671 * locked_page is the page that writepage had locked already. We use
672 * it to make sure we don't do extra locks or unlocks.
673 *
674 * *page_started is set to one if we unlock locked_page and do everything
675 * required to start IO on it. It may be clean and already done with
676 * IO when we return.
677 */
678static noinline int cow_file_range(struct inode *inode,
679 struct page *locked_page,
680 u64 start, u64 end, int *page_started,
681 unsigned long *nr_written,
682 int unlock)
683{
684 struct btrfs_root *root = BTRFS_I(inode)->root;
685 struct btrfs_trans_handle *trans;
686 u64 alloc_hint = 0;
687 u64 num_bytes;
688 unsigned long ram_size;
689 u64 disk_num_bytes;
690 u64 cur_alloc_size;
691 u64 blocksize = root->sectorsize;
692 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500693 u64 isize = i_size_read(inode);
Chris Mason771ed682008-11-06 22:02:51 -0500694 struct btrfs_key ins;
695 struct extent_map *em;
696 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
697 int ret = 0;
698
699 trans = btrfs_join_transaction(root, 1);
700 BUG_ON(!trans);
701 btrfs_set_trans_block_group(trans, inode);
702
Chris Mason42dc7ba2008-12-15 11:44:56 -0500703 actual_end = min_t(u64, isize, end + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500704
705 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
706 num_bytes = max(blocksize, num_bytes);
707 disk_num_bytes = num_bytes;
708 ret = 0;
709
710 if (start == 0) {
711 /* lets try to make an inline extent */
712 ret = cow_file_range_inline(trans, root, inode,
713 start, end, 0, NULL);
714 if (ret == 0) {
715 extent_clear_unlock_delalloc(inode,
716 &BTRFS_I(inode)->io_tree,
717 start, end, NULL, 1, 1,
718 1, 1, 1, 1);
719 *nr_written = *nr_written +
720 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
721 *page_started = 1;
722 ret = 0;
723 goto out;
724 }
725 }
Chris Masonc8b97812008-10-29 14:49:59 -0400726
727 BUG_ON(disk_num_bytes >
728 btrfs_super_total_bytes(&root->fs_info->super_copy));
729
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400730 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400731
Chris Masond3977122009-01-05 21:25:51 -0500732 while (disk_num_bytes > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400733 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400734 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500735 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400736 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500737 BUG_ON(ret);
738
Chris Masone6dcd2d2008-07-17 12:53:50 -0400739 em = alloc_extent_map(GFP_NOFS);
740 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500741 em->orig_start = em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400742
Chris Mason771ed682008-11-06 22:02:51 -0500743 ram_size = ins.offset;
744 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400745
Chris Masone6dcd2d2008-07-17 12:53:50 -0400746 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400747 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400748 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400749 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400750
Chris Masond3977122009-01-05 21:25:51 -0500751 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400752 spin_lock(&em_tree->lock);
753 ret = add_extent_mapping(em_tree, em);
754 spin_unlock(&em_tree->lock);
755 if (ret != -EEXIST) {
756 free_extent_map(em);
757 break;
758 }
759 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400760 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400761 }
762
Chris Mason98d20f62008-04-14 09:46:10 -0400763 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400764 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500765 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400766 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400767
Yan Zheng17d217f2008-12-12 10:03:38 -0500768 if (root->root_key.objectid ==
769 BTRFS_DATA_RELOC_TREE_OBJECTID) {
770 ret = btrfs_reloc_clone_csums(inode, start,
771 cur_alloc_size);
772 BUG_ON(ret);
773 }
774
Chris Masond3977122009-01-05 21:25:51 -0500775 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400776 break;
Chris Masond3977122009-01-05 21:25:51 -0500777
Chris Masonc8b97812008-10-29 14:49:59 -0400778 /* we're not doing compressed IO, don't unlock the first
779 * page (which the caller expects to stay locked), don't
780 * clear any dirty bits and don't set any writeback bits
781 */
782 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
783 start, start + ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500784 locked_page, unlock, 1,
785 1, 0, 0, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400786 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500787 num_bytes -= cur_alloc_size;
788 alloc_hint = ins.objectid + ins.offset;
789 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400790 }
Chris Masonb888db22007-08-27 16:49:44 -0400791out:
Chris Mason771ed682008-11-06 22:02:51 -0500792 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400793 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400794
Chris Masonbe20aa92007-12-17 20:14:01 -0500795 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500796}
Chris Masonc8b97812008-10-29 14:49:59 -0400797
Chris Mason771ed682008-11-06 22:02:51 -0500798/*
799 * work queue call back to started compression on a file and pages
800 */
801static noinline void async_cow_start(struct btrfs_work *work)
802{
803 struct async_cow *async_cow;
804 int num_added = 0;
805 async_cow = container_of(work, struct async_cow, work);
806
807 compress_file_range(async_cow->inode, async_cow->locked_page,
808 async_cow->start, async_cow->end, async_cow,
809 &num_added);
810 if (num_added == 0)
811 async_cow->inode = NULL;
812}
813
814/*
815 * work queue call back to submit previously compressed pages
816 */
817static noinline void async_cow_submit(struct btrfs_work *work)
818{
819 struct async_cow *async_cow;
820 struct btrfs_root *root;
821 unsigned long nr_pages;
822
823 async_cow = container_of(work, struct async_cow, work);
824
825 root = async_cow->root;
826 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
827 PAGE_CACHE_SHIFT;
828
829 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
830
831 if (atomic_read(&root->fs_info->async_delalloc_pages) <
832 5 * 1042 * 1024 &&
833 waitqueue_active(&root->fs_info->async_submit_wait))
834 wake_up(&root->fs_info->async_submit_wait);
835
Chris Masond3977122009-01-05 21:25:51 -0500836 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500837 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500838}
Chris Masonc8b97812008-10-29 14:49:59 -0400839
Chris Mason771ed682008-11-06 22:02:51 -0500840static noinline void async_cow_free(struct btrfs_work *work)
841{
842 struct async_cow *async_cow;
843 async_cow = container_of(work, struct async_cow, work);
844 kfree(async_cow);
845}
846
847static int cow_file_range_async(struct inode *inode, struct page *locked_page,
848 u64 start, u64 end, int *page_started,
849 unsigned long *nr_written)
850{
851 struct async_cow *async_cow;
852 struct btrfs_root *root = BTRFS_I(inode)->root;
853 unsigned long nr_pages;
854 u64 cur_end;
855 int limit = 10 * 1024 * 1042;
856
Chris Mason771ed682008-11-06 22:02:51 -0500857 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED |
858 EXTENT_DELALLOC, 1, 0, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500859 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500860 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
861 async_cow->inode = inode;
862 async_cow->root = root;
863 async_cow->locked_page = locked_page;
864 async_cow->start = start;
865
866 if (btrfs_test_flag(inode, NOCOMPRESS))
867 cur_end = end;
868 else
869 cur_end = min(end, start + 512 * 1024 - 1);
870
871 async_cow->end = cur_end;
872 INIT_LIST_HEAD(&async_cow->extents);
873
874 async_cow->work.func = async_cow_start;
875 async_cow->work.ordered_func = async_cow_submit;
876 async_cow->work.ordered_free = async_cow_free;
877 async_cow->work.flags = 0;
878
Chris Mason771ed682008-11-06 22:02:51 -0500879 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
880 PAGE_CACHE_SHIFT;
881 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
882
883 btrfs_queue_worker(&root->fs_info->delalloc_workers,
884 &async_cow->work);
885
886 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
887 wait_event(root->fs_info->async_submit_wait,
888 (atomic_read(&root->fs_info->async_delalloc_pages) <
889 limit));
890 }
891
Chris Masond3977122009-01-05 21:25:51 -0500892 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500893 atomic_read(&root->fs_info->async_delalloc_pages)) {
894 wait_event(root->fs_info->async_submit_wait,
895 (atomic_read(&root->fs_info->async_delalloc_pages) ==
896 0));
897 }
898
899 *nr_written += nr_pages;
900 start = cur_end + 1;
901 }
902 *page_started = 1;
903 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500904}
905
Chris Masond3977122009-01-05 21:25:51 -0500906static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500907 u64 bytenr, u64 num_bytes)
908{
909 int ret;
910 struct btrfs_ordered_sum *sums;
911 LIST_HEAD(list);
912
Yan Zheng07d400a2009-01-06 11:42:00 -0500913 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
914 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500915 if (ret == 0 && list_empty(&list))
916 return 0;
917
918 while (!list_empty(&list)) {
919 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
920 list_del(&sums->list);
921 kfree(sums);
922 }
923 return 1;
924}
925
Chris Masond352ac62008-09-29 15:18:18 -0400926/*
927 * when nowcow writeback call back. This checks for snapshots or COW copies
928 * of the extents that exist in the file, and COWs the file as required.
929 *
930 * If no cow copies or snapshots exist, we write directly to the existing
931 * blocks on disk
932 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400933static noinline int run_delalloc_nocow(struct inode *inode,
934 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -0500935 u64 start, u64 end, int *page_started, int force,
936 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -0500937{
Chris Masonbe20aa92007-12-17 20:14:01 -0500938 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400939 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -0500940 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -0500941 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -0400942 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -0500943 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -0400944 u64 cow_start;
945 u64 cur_offset;
946 u64 extent_end;
947 u64 disk_bytenr;
948 u64 num_bytes;
949 int extent_type;
950 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -0400951 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -0400952 int nocow;
953 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500954
955 path = btrfs_alloc_path();
956 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400957 trans = btrfs_join_transaction(root, 1);
958 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500959
Yan Zheng80ff3852008-10-30 14:20:02 -0400960 cow_start = (u64)-1;
961 cur_offset = start;
962 while (1) {
963 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
964 cur_offset, 0);
965 BUG_ON(ret < 0);
966 if (ret > 0 && path->slots[0] > 0 && check_prev) {
967 leaf = path->nodes[0];
968 btrfs_item_key_to_cpu(leaf, &found_key,
969 path->slots[0] - 1);
970 if (found_key.objectid == inode->i_ino &&
971 found_key.type == BTRFS_EXTENT_DATA_KEY)
972 path->slots[0]--;
973 }
974 check_prev = 0;
975next_slot:
976 leaf = path->nodes[0];
977 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
978 ret = btrfs_next_leaf(root, path);
979 if (ret < 0)
980 BUG_ON(1);
981 if (ret > 0)
982 break;
983 leaf = path->nodes[0];
984 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500985
Yan Zheng80ff3852008-10-30 14:20:02 -0400986 nocow = 0;
987 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500988 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -0400989 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500990
Yan Zheng80ff3852008-10-30 14:20:02 -0400991 if (found_key.objectid > inode->i_ino ||
992 found_key.type > BTRFS_EXTENT_DATA_KEY ||
993 found_key.offset > end)
994 break;
Chris Masonbe20aa92007-12-17 20:14:01 -0500995
Yan Zheng80ff3852008-10-30 14:20:02 -0400996 if (found_key.offset > cur_offset) {
997 extent_end = found_key.offset;
998 goto out_check;
999 }
Chris Masonc31f8832008-01-08 15:46:31 -05001000
Yan Zheng80ff3852008-10-30 14:20:02 -04001001 fi = btrfs_item_ptr(leaf, path->slots[0],
1002 struct btrfs_file_extent_item);
1003 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001004
Yan Zhengd899e052008-10-30 14:25:28 -04001005 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1006 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001007 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1008 extent_end = found_key.offset +
1009 btrfs_file_extent_num_bytes(leaf, fi);
1010 if (extent_end <= start) {
1011 path->slots[0]++;
1012 goto next_slot;
1013 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001014 if (disk_bytenr == 0)
1015 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001016 if (btrfs_file_extent_compression(leaf, fi) ||
1017 btrfs_file_extent_encryption(leaf, fi) ||
1018 btrfs_file_extent_other_encoding(leaf, fi))
1019 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001020 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1021 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001022 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001023 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001024 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
1025 disk_bytenr))
1026 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001027 disk_bytenr += btrfs_file_extent_offset(leaf, fi);
Yan Zheng17d217f2008-12-12 10:03:38 -05001028 disk_bytenr += cur_offset - found_key.offset;
1029 num_bytes = min(end + 1, extent_end) - cur_offset;
1030 /*
1031 * force cow if csum exists in the range.
1032 * this ensure that csum for a given extent are
1033 * either valid or do not exist.
1034 */
1035 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1036 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001037 nocow = 1;
1038 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1039 extent_end = found_key.offset +
1040 btrfs_file_extent_inline_len(leaf, fi);
1041 extent_end = ALIGN(extent_end, root->sectorsize);
1042 } else {
1043 BUG_ON(1);
1044 }
1045out_check:
1046 if (extent_end <= start) {
1047 path->slots[0]++;
1048 goto next_slot;
1049 }
1050 if (!nocow) {
1051 if (cow_start == (u64)-1)
1052 cow_start = cur_offset;
1053 cur_offset = extent_end;
1054 if (cur_offset > end)
1055 break;
1056 path->slots[0]++;
1057 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001058 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001059
Yan Zheng7ea394f2008-08-05 13:05:02 -04001060 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001061 if (cow_start != (u64)-1) {
1062 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001063 found_key.offset - 1, page_started,
1064 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001065 BUG_ON(ret);
1066 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001067 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001068
Yan Zhengd899e052008-10-30 14:25:28 -04001069 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1070 struct extent_map *em;
1071 struct extent_map_tree *em_tree;
1072 em_tree = &BTRFS_I(inode)->extent_tree;
1073 em = alloc_extent_map(GFP_NOFS);
1074 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001075 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001076 em->len = num_bytes;
1077 em->block_len = num_bytes;
1078 em->block_start = disk_bytenr;
1079 em->bdev = root->fs_info->fs_devices->latest_bdev;
1080 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1081 while (1) {
1082 spin_lock(&em_tree->lock);
1083 ret = add_extent_mapping(em_tree, em);
1084 spin_unlock(&em_tree->lock);
1085 if (ret != -EEXIST) {
1086 free_extent_map(em);
1087 break;
1088 }
1089 btrfs_drop_extent_cache(inode, em->start,
1090 em->start + em->len - 1, 0);
1091 }
1092 type = BTRFS_ORDERED_PREALLOC;
1093 } else {
1094 type = BTRFS_ORDERED_NOCOW;
1095 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001096
1097 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001098 num_bytes, num_bytes, type);
1099 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001100
Yan Zhengd899e052008-10-30 14:25:28 -04001101 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
1102 cur_offset, cur_offset + num_bytes - 1,
Chris Mason771ed682008-11-06 22:02:51 -05001103 locked_page, 1, 1, 1, 0, 0, 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04001104 cur_offset = extent_end;
1105 if (cur_offset > end)
1106 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001107 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001108 btrfs_release_path(root, path);
1109
1110 if (cur_offset <= end && cow_start == (u64)-1)
1111 cow_start = cur_offset;
1112 if (cow_start != (u64)-1) {
1113 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001114 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001115 BUG_ON(ret);
1116 }
1117
1118 ret = btrfs_end_transaction(trans, root);
1119 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001120 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001121 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001122}
1123
Chris Masond352ac62008-09-29 15:18:18 -04001124/*
1125 * extent_io.c call back to do delayed allocation processing
1126 */
Chris Masonc8b97812008-10-29 14:49:59 -04001127static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001128 u64 start, u64 end, int *page_started,
1129 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001130{
Chris Masonbe20aa92007-12-17 20:14:01 -05001131 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001132 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001133
Yan Zheng17d217f2008-12-12 10:03:38 -05001134 if (btrfs_test_flag(inode, NODATACOW))
Chris Masonc8b97812008-10-29 14:49:59 -04001135 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001136 page_started, 1, nr_written);
Yan Zhengd899e052008-10-30 14:25:28 -04001137 else if (btrfs_test_flag(inode, PREALLOC))
1138 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001139 page_started, 0, nr_written);
Chris Mason7f366cf2009-03-12 20:12:45 -04001140 else if (!btrfs_test_opt(root, COMPRESS))
1141 ret = cow_file_range(inode, locked_page, start, end,
1142 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001143 else
Chris Mason771ed682008-11-06 22:02:51 -05001144 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001145 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001146 return ret;
1147}
1148
Chris Masond352ac62008-09-29 15:18:18 -04001149/*
1150 * extent_io.c set_bit_hook, used to track delayed allocation
1151 * bytes in this file, and to maintain the list of inodes that
1152 * have pending delalloc work to be done.
1153 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001154static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001155 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001156{
Chris Mason75eff682008-12-15 15:54:40 -05001157 /*
1158 * set_bit and clear bit hooks normally require _irqsave/restore
1159 * but in this case, we are only testeing for the DELALLOC
1160 * bit, which is only set or cleared with irqs on
1161 */
Chris Masonb0c68f82008-01-31 11:05:37 -05001162 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001163 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05001164 btrfs_delalloc_reserve_space(root, inode, end - start + 1);
Chris Mason75eff682008-12-15 15:54:40 -05001165 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -05001166 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001167 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001168 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1169 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1170 &root->fs_info->delalloc_inodes);
1171 }
Chris Mason75eff682008-12-15 15:54:40 -05001172 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001173 }
1174 return 0;
1175}
1176
Chris Masond352ac62008-09-29 15:18:18 -04001177/*
1178 * extent_io.c clear_bit_hook, see set_bit_hook for why
1179 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001180static int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001181 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001182{
Chris Mason75eff682008-12-15 15:54:40 -05001183 /*
1184 * set_bit and clear bit hooks normally require _irqsave/restore
1185 * but in this case, we are only testeing for the DELALLOC
1186 * bit, which is only set or cleared with irqs on
1187 */
Chris Masonb0c68f82008-01-31 11:05:37 -05001188 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001189 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001190
Chris Mason75eff682008-12-15 15:54:40 -05001191 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonb0c68f82008-01-31 11:05:37 -05001192 if (end - start + 1 > root->fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05001193 printk(KERN_INFO "btrfs warning: delalloc account "
1194 "%llu %llu\n",
1195 (unsigned long long)end - start + 1,
1196 (unsigned long long)
1197 root->fs_info->delalloc_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001198 btrfs_delalloc_free_space(root, inode, (u64)-1);
Chris Masonb0c68f82008-01-31 11:05:37 -05001199 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001200 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001201 } else {
Josef Bacik6a632092009-02-20 11:00:09 -05001202 btrfs_delalloc_free_space(root, inode,
1203 end - start + 1);
Chris Masonb0c68f82008-01-31 11:05:37 -05001204 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -05001205 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001206 }
Chris Masonea8c2812008-08-04 23:17:27 -04001207 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1208 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1209 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1210 }
Chris Mason75eff682008-12-15 15:54:40 -05001211 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001212 }
1213 return 0;
1214}
1215
Chris Masond352ac62008-09-29 15:18:18 -04001216/*
1217 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1218 * we don't create bios that span stripes or chunks
1219 */
Chris Mason239b14b2008-03-24 15:02:07 -04001220int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001221 size_t size, struct bio *bio,
1222 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001223{
1224 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1225 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001226 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001227 u64 length = 0;
1228 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001229 int ret;
1230
Chris Mason771ed682008-11-06 22:02:51 -05001231 if (bio_flags & EXTENT_BIO_COMPRESSED)
1232 return 0;
1233
Chris Masonf2d8d742008-04-21 10:03:05 -04001234 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001235 map_tree = &root->fs_info->mapping_tree;
1236 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001237 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001238 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001239
Chris Masond3977122009-01-05 21:25:51 -05001240 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001241 return 1;
Chris Mason239b14b2008-03-24 15:02:07 -04001242 return 0;
1243}
1244
Chris Masond352ac62008-09-29 15:18:18 -04001245/*
1246 * in order to insert checksums into the metadata in large chunks,
1247 * we wait until bio submission time. All the pages in the bio are
1248 * checksummed and sums are attached onto the ordered extent record.
1249 *
1250 * At IO completion time the cums attached on the ordered extent record
1251 * are inserted into the btree
1252 */
Chris Masond3977122009-01-05 21:25:51 -05001253static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1254 struct bio *bio, int mirror_num,
1255 unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001256{
Chris Mason065631f2008-02-20 12:07:25 -05001257 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001258 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001259
Chris Masond20f7042008-12-08 16:58:54 -05001260 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001261 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001262 return 0;
1263}
Chris Masone0156402008-04-16 11:15:20 -04001264
Chris Mason4a69a412008-11-06 22:03:00 -05001265/*
1266 * in order to insert checksums into the metadata in large chunks,
1267 * we wait until bio submission time. All the pages in the bio are
1268 * checksummed and sums are attached onto the ordered extent record.
1269 *
1270 * At IO completion time the cums attached on the ordered extent record
1271 * are inserted into the btree
1272 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001273static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Mason4a69a412008-11-06 22:03:00 -05001274 int mirror_num, unsigned long bio_flags)
1275{
1276 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001277 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001278}
1279
Chris Masond352ac62008-09-29 15:18:18 -04001280/*
Chris Masoncad321a2008-12-17 14:51:42 -05001281 * extent_io.c submission hook. This does the right thing for csum calculation
1282 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001283 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001284static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001285 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001286{
1287 struct btrfs_root *root = BTRFS_I(inode)->root;
1288 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001289 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001290
Chris Masoncad321a2008-12-17 14:51:42 -05001291 skip_sum = btrfs_test_flag(inode, NODATASUM);
1292
Chris Masone6dcd2d2008-07-17 12:53:50 -04001293 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1294 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001295
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001296 if (!(rw & (1 << BIO_RW))) {
Chris Masond20f7042008-12-08 16:58:54 -05001297 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001298 return btrfs_submit_compressed_read(inode, bio,
1299 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001300 } else if (!skip_sum)
1301 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001302 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001303 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001304 /* csum items have already been cloned */
1305 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1306 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001307 /* we're doing a write, do the async checksumming */
1308 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001309 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001310 bio_flags, __btrfs_submit_bio_start,
1311 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001312 }
1313
Chris Mason0b86a832008-03-24 15:01:56 -04001314mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001315 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001316}
Chris Mason6885f302008-02-20 16:11:05 -05001317
Chris Masond352ac62008-09-29 15:18:18 -04001318/*
1319 * given a list of ordered sums record them in the inode. This happens
1320 * at IO completion time based on sums calculated at bio submission time.
1321 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001322static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001323 struct inode *inode, u64 file_offset,
1324 struct list_head *list)
1325{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001326 struct btrfs_ordered_sum *sum;
1327
1328 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001329
1330 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001331 btrfs_csum_file_blocks(trans,
1332 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001333 }
1334 return 0;
1335}
1336
Chris Masonea8c2812008-08-04 23:17:27 -04001337int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1338{
Chris Masond3977122009-01-05 21:25:51 -05001339 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001340 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001341 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1342 GFP_NOFS);
1343}
1344
Chris Masond352ac62008-09-29 15:18:18 -04001345/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001346struct btrfs_writepage_fixup {
1347 struct page *page;
1348 struct btrfs_work work;
1349};
1350
Christoph Hellwigb2950862008-12-02 09:54:17 -05001351static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001352{
1353 struct btrfs_writepage_fixup *fixup;
1354 struct btrfs_ordered_extent *ordered;
1355 struct page *page;
1356 struct inode *inode;
1357 u64 page_start;
1358 u64 page_end;
1359
1360 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1361 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001362again:
Chris Mason247e7432008-07-17 12:53:51 -04001363 lock_page(page);
1364 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1365 ClearPageChecked(page);
1366 goto out_page;
1367 }
1368
1369 inode = page->mapping->host;
1370 page_start = page_offset(page);
1371 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1372
1373 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001374
1375 /* already ordered? We're done */
1376 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
1377 EXTENT_ORDERED, 0)) {
Chris Mason247e7432008-07-17 12:53:51 -04001378 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001379 }
1380
1381 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1382 if (ordered) {
1383 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1384 page_end, GFP_NOFS);
1385 unlock_page(page);
1386 btrfs_start_ordered_extent(inode, ordered, 1);
1387 goto again;
1388 }
Chris Mason247e7432008-07-17 12:53:51 -04001389
Chris Masonea8c2812008-08-04 23:17:27 -04001390 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001391 ClearPageChecked(page);
1392out:
1393 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1394out_page:
1395 unlock_page(page);
1396 page_cache_release(page);
1397}
1398
1399/*
1400 * There are a few paths in the higher layers of the kernel that directly
1401 * set the page dirty bit without asking the filesystem if it is a
1402 * good idea. This causes problems because we want to make sure COW
1403 * properly happens and the data=ordered rules are followed.
1404 *
Chris Masonc8b97812008-10-29 14:49:59 -04001405 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001406 * hasn't been properly setup for IO. We kick off an async process
1407 * to fix it up. The async helper will wait for ordered extents, set
1408 * the delalloc bit and make it safe to write the page.
1409 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001410static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001411{
1412 struct inode *inode = page->mapping->host;
1413 struct btrfs_writepage_fixup *fixup;
1414 struct btrfs_root *root = BTRFS_I(inode)->root;
1415 int ret;
1416
1417 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1418 EXTENT_ORDERED, 0);
1419 if (ret)
1420 return 0;
1421
1422 if (PageChecked(page))
1423 return -EAGAIN;
1424
1425 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1426 if (!fixup)
1427 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001428
Chris Mason247e7432008-07-17 12:53:51 -04001429 SetPageChecked(page);
1430 page_cache_get(page);
1431 fixup->work.func = btrfs_writepage_fixup_worker;
1432 fixup->page = page;
1433 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1434 return -EAGAIN;
1435}
1436
Yan Zhengd899e052008-10-30 14:25:28 -04001437static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1438 struct inode *inode, u64 file_pos,
1439 u64 disk_bytenr, u64 disk_num_bytes,
1440 u64 num_bytes, u64 ram_bytes,
1441 u8 compression, u8 encryption,
1442 u16 other_encoding, int extent_type)
1443{
1444 struct btrfs_root *root = BTRFS_I(inode)->root;
1445 struct btrfs_file_extent_item *fi;
1446 struct btrfs_path *path;
1447 struct extent_buffer *leaf;
1448 struct btrfs_key ins;
1449 u64 hint;
1450 int ret;
1451
1452 path = btrfs_alloc_path();
1453 BUG_ON(!path);
1454
1455 ret = btrfs_drop_extents(trans, root, inode, file_pos,
1456 file_pos + num_bytes, file_pos, &hint);
1457 BUG_ON(ret);
1458
1459 ins.objectid = inode->i_ino;
1460 ins.offset = file_pos;
1461 ins.type = BTRFS_EXTENT_DATA_KEY;
1462 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1463 BUG_ON(ret);
1464 leaf = path->nodes[0];
1465 fi = btrfs_item_ptr(leaf, path->slots[0],
1466 struct btrfs_file_extent_item);
1467 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1468 btrfs_set_file_extent_type(leaf, fi, extent_type);
1469 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1470 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1471 btrfs_set_file_extent_offset(leaf, fi, 0);
1472 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1473 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1474 btrfs_set_file_extent_compression(leaf, fi, compression);
1475 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1476 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
1477 btrfs_mark_buffer_dirty(leaf);
1478
1479 inode_add_bytes(inode, num_bytes);
1480 btrfs_drop_extent_cache(inode, file_pos, file_pos + num_bytes - 1, 0);
1481
1482 ins.objectid = disk_bytenr;
1483 ins.offset = disk_num_bytes;
1484 ins.type = BTRFS_EXTENT_ITEM_KEY;
1485 ret = btrfs_alloc_reserved_extent(trans, root, leaf->start,
1486 root->root_key.objectid,
1487 trans->transid, inode->i_ino, &ins);
1488 BUG_ON(ret);
1489
1490 btrfs_free_path(path);
1491 return 0;
1492}
1493
Chris Masond352ac62008-09-29 15:18:18 -04001494/* as ordered data IO finishes, this gets called so we can finish
1495 * an ordered extent if the range of bytes in the file it covers are
1496 * fully written.
1497 */
Chris Mason211f90e2008-07-18 11:56:15 -04001498static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001499{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001500 struct btrfs_root *root = BTRFS_I(inode)->root;
1501 struct btrfs_trans_handle *trans;
1502 struct btrfs_ordered_extent *ordered_extent;
1503 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001504 struct btrfs_path *path;
Yan Zhengd899e052008-10-30 14:25:28 -04001505 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001506 int ret;
1507
1508 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001509 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001510 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001511
Chris Masonb7ec40d2009-03-12 20:12:45 -04001512 /*
1513 * before we join the transaction, try to do some of our IO.
1514 * This will limit the amount of IO that we have to do with
1515 * the transaction running. We're unlikely to need to do any
1516 * IO if the file extents are new, the disk_i_size checks
1517 * covers the most common case.
1518 */
1519 if (start < BTRFS_I(inode)->disk_i_size) {
1520 path = btrfs_alloc_path();
1521 if (path) {
1522 ret = btrfs_lookup_file_extent(NULL, root, path,
1523 inode->i_ino,
1524 start, 0);
1525 btrfs_free_path(path);
1526 }
1527 }
1528
Chris Masonf9295742008-07-17 12:54:14 -04001529 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001530
1531 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
1532 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001533 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
1534 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001535
1536 lock_extent(io_tree, ordered_extent->file_offset,
1537 ordered_extent->file_offset + ordered_extent->len - 1,
1538 GFP_NOFS);
1539
Chris Masonc8b97812008-10-29 14:49:59 -04001540 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001541 compressed = 1;
1542 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1543 BUG_ON(compressed);
1544 ret = btrfs_mark_extent_written(trans, root, inode,
1545 ordered_extent->file_offset,
1546 ordered_extent->file_offset +
1547 ordered_extent->len);
1548 BUG_ON(ret);
1549 } else {
1550 ret = insert_reserved_file_extent(trans, inode,
1551 ordered_extent->file_offset,
1552 ordered_extent->start,
1553 ordered_extent->disk_len,
1554 ordered_extent->len,
1555 ordered_extent->len,
1556 compressed, 0, 0,
1557 BTRFS_FILE_EXTENT_REG);
1558 BUG_ON(ret);
1559 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001560 unlock_extent(io_tree, ordered_extent->file_offset,
1561 ordered_extent->file_offset + ordered_extent->len - 1,
1562 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001563nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001564 add_pending_csums(trans, inode, ordered_extent->file_offset,
1565 &ordered_extent->list);
1566
Chris Mason34353022008-09-23 20:19:49 -04001567 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masondbe674a2008-07-17 12:54:05 -04001568 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -04001569 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001570 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason34353022008-09-23 20:19:49 -04001571 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -04001572
Chris Masone6dcd2d2008-07-17 12:53:50 -04001573 /* once for us */
1574 btrfs_put_ordered_extent(ordered_extent);
1575 /* once for the tree */
1576 btrfs_put_ordered_extent(ordered_extent);
1577
Chris Masone6dcd2d2008-07-17 12:53:50 -04001578 btrfs_end_transaction(trans, root);
1579 return 0;
1580}
1581
Christoph Hellwigb2950862008-12-02 09:54:17 -05001582static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001583 struct extent_state *state, int uptodate)
1584{
1585 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1586}
1587
Chris Masond352ac62008-09-29 15:18:18 -04001588/*
1589 * When IO fails, either with EIO or csum verification fails, we
1590 * try other mirrors that might have a good copy of the data. This
1591 * io_failure_record is used to record state as we go through all the
1592 * mirrors. If another mirror has good data, the page is set up to date
1593 * and things continue. If a good mirror can't be found, the original
1594 * bio end_io callback is called to indicate things have failed.
1595 */
Chris Mason7e383262008-04-09 16:28:12 -04001596struct io_failure_record {
1597 struct page *page;
1598 u64 start;
1599 u64 len;
1600 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001601 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001602 int last_mirror;
1603};
1604
Christoph Hellwigb2950862008-12-02 09:54:17 -05001605static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001606 struct page *page, u64 start, u64 end,
1607 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001608{
1609 struct io_failure_record *failrec = NULL;
1610 u64 private;
1611 struct extent_map *em;
1612 struct inode *inode = page->mapping->host;
1613 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001614 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001615 struct bio *bio;
1616 int num_copies;
1617 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001618 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001619 u64 logical;
1620
1621 ret = get_state_private(failure_tree, start, &private);
1622 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001623 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1624 if (!failrec)
1625 return -ENOMEM;
1626 failrec->start = start;
1627 failrec->len = end - start + 1;
1628 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001629 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001630
Chris Mason3b951512008-04-17 11:29:12 -04001631 spin_lock(&em_tree->lock);
1632 em = lookup_extent_mapping(em_tree, start, failrec->len);
1633 if (em->start > start || em->start + em->len < start) {
1634 free_extent_map(em);
1635 em = NULL;
1636 }
1637 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001638
1639 if (!em || IS_ERR(em)) {
1640 kfree(failrec);
1641 return -EIO;
1642 }
1643 logical = start - em->start;
1644 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001645 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1646 logical = em->block_start;
1647 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1648 }
Chris Mason7e383262008-04-09 16:28:12 -04001649 failrec->logical = logical;
1650 free_extent_map(em);
1651 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1652 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001653 set_state_private(failure_tree, start,
1654 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001655 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001656 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001657 }
1658 num_copies = btrfs_num_copies(
1659 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1660 failrec->logical, failrec->len);
1661 failrec->last_mirror++;
1662 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001663 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001664 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1665 failrec->start,
1666 EXTENT_LOCKED);
1667 if (state && state->start != failrec->start)
1668 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001669 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001670 }
1671 if (!state || failrec->last_mirror > num_copies) {
1672 set_state_private(failure_tree, failrec->start, 0);
1673 clear_extent_bits(failure_tree, failrec->start,
1674 failrec->start + failrec->len - 1,
1675 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1676 kfree(failrec);
1677 return -EIO;
1678 }
1679 bio = bio_alloc(GFP_NOFS, 1);
1680 bio->bi_private = state;
1681 bio->bi_end_io = failed_bio->bi_end_io;
1682 bio->bi_sector = failrec->logical >> 9;
1683 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001684 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001685
Chris Mason7e383262008-04-09 16:28:12 -04001686 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001687 if (failed_bio->bi_rw & (1 << BIO_RW))
1688 rw = WRITE;
1689 else
1690 rw = READ;
1691
1692 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001693 failrec->last_mirror,
Chris Masond20f7042008-12-08 16:58:54 -05001694 failrec->bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001695 return 0;
1696}
1697
Chris Masond352ac62008-09-29 15:18:18 -04001698/*
1699 * each time an IO finishes, we do a fast check in the IO failure tree
1700 * to see if we need to process or clean up an io_failure_record
1701 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001702static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001703{
1704 u64 private;
1705 u64 private_failure;
1706 struct io_failure_record *failure;
1707 int ret;
1708
1709 private = 0;
1710 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1711 (u64)-1, 1, EXTENT_DIRTY)) {
1712 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1713 start, &private_failure);
1714 if (ret == 0) {
1715 failure = (struct io_failure_record *)(unsigned long)
1716 private_failure;
1717 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1718 failure->start, 0);
1719 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1720 failure->start,
1721 failure->start + failure->len - 1,
1722 EXTENT_DIRTY | EXTENT_LOCKED,
1723 GFP_NOFS);
1724 kfree(failure);
1725 }
1726 }
Chris Mason7e383262008-04-09 16:28:12 -04001727 return 0;
1728}
1729
Chris Masond352ac62008-09-29 15:18:18 -04001730/*
1731 * when reads are done, we need to check csums to verify the data is correct
1732 * if there's a match, we allow the bio to finish. If not, we go through
1733 * the io_failure_record routines to find good copies
1734 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001735static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001736 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001737{
Chris Mason35ebb932007-10-30 16:56:53 -04001738 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001739 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001740 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001741 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001742 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001743 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001744 struct btrfs_root *root = BTRFS_I(inode)->root;
1745 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001746
Chris Masond20f7042008-12-08 16:58:54 -05001747 if (PageChecked(page)) {
1748 ClearPageChecked(page);
1749 goto good;
1750 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001751 if (btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -05001752 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001753
Yan Zheng17d217f2008-12-12 10:03:38 -05001754 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
1755 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1)) {
1756 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1757 GFP_NOFS);
1758 return 0;
1759 }
1760
Yanc2e639f2008-02-04 08:57:25 -05001761 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001762 private = state->private;
1763 ret = 0;
1764 } else {
1765 ret = get_state_private(io_tree, start, &private);
1766 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001767 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001768 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001769 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001770
Chris Masonff79f812007-10-15 16:22:25 -04001771 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1772 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001773 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001774 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001775
Chris Mason9ab86c82009-01-07 09:48:51 -05001776 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001777good:
Chris Mason7e383262008-04-09 16:28:12 -04001778 /* if the io failure tree for this inode is non-empty,
1779 * check to see if we've recovered from a failed IO
1780 */
Chris Mason1259ab72008-05-12 13:39:03 -04001781 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001782 return 0;
1783
1784zeroit:
Chris Masond3977122009-01-05 21:25:51 -05001785 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1786 "private %llu\n", page->mapping->host->i_ino,
1787 (unsigned long long)start, csum,
1788 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04001789 memset(kaddr + offset, 1, end - start + 1);
1790 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001791 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001792 if (private == 0)
1793 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001794 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001795}
Chris Masonb888db22007-08-27 16:49:44 -04001796
Josef Bacik7b128762008-07-24 12:17:14 -04001797/*
1798 * This creates an orphan entry for the given inode in case something goes
1799 * wrong in the middle of an unlink/truncate.
1800 */
1801int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1802{
1803 struct btrfs_root *root = BTRFS_I(inode)->root;
1804 int ret = 0;
1805
Yanbcc63ab2008-07-30 16:29:20 -04001806 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001807
1808 /* already on the orphan list, we're good */
1809 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001810 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001811 return 0;
1812 }
1813
1814 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
1815
Yanbcc63ab2008-07-30 16:29:20 -04001816 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001817
1818 /*
1819 * insert an orphan item to track this unlinked/truncated file
1820 */
1821 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
1822
1823 return ret;
1824}
1825
1826/*
1827 * We have done the truncate/delete so we can go ahead and remove the orphan
1828 * item for this particular inode.
1829 */
1830int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
1831{
1832 struct btrfs_root *root = BTRFS_I(inode)->root;
1833 int ret = 0;
1834
Yanbcc63ab2008-07-30 16:29:20 -04001835 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001836
1837 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001838 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001839 return 0;
1840 }
1841
1842 list_del_init(&BTRFS_I(inode)->i_orphan);
1843 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04001844 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001845 return 0;
1846 }
1847
Yanbcc63ab2008-07-30 16:29:20 -04001848 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001849
1850 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
1851
1852 return ret;
1853}
1854
1855/*
1856 * this cleans up any orphans that may be left on the list from the last use
1857 * of this root.
1858 */
1859void btrfs_orphan_cleanup(struct btrfs_root *root)
1860{
1861 struct btrfs_path *path;
1862 struct extent_buffer *leaf;
1863 struct btrfs_item *item;
1864 struct btrfs_key key, found_key;
1865 struct btrfs_trans_handle *trans;
1866 struct inode *inode;
1867 int ret = 0, nr_unlink = 0, nr_truncate = 0;
1868
Josef Bacik7b128762008-07-24 12:17:14 -04001869 path = btrfs_alloc_path();
1870 if (!path)
1871 return;
1872 path->reada = -1;
1873
1874 key.objectid = BTRFS_ORPHAN_OBJECTID;
1875 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1876 key.offset = (u64)-1;
1877
Josef Bacik7b128762008-07-24 12:17:14 -04001878
1879 while (1) {
1880 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1881 if (ret < 0) {
1882 printk(KERN_ERR "Error searching slot for orphan: %d"
1883 "\n", ret);
1884 break;
1885 }
1886
1887 /*
1888 * if ret == 0 means we found what we were searching for, which
1889 * is weird, but possible, so only screw with path if we didnt
1890 * find the key and see if we have stuff that matches
1891 */
1892 if (ret > 0) {
1893 if (path->slots[0] == 0)
1894 break;
1895 path->slots[0]--;
1896 }
1897
1898 /* pull out the item */
1899 leaf = path->nodes[0];
1900 item = btrfs_item_nr(leaf, path->slots[0]);
1901 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1902
1903 /* make sure the item matches what we want */
1904 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
1905 break;
1906 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
1907 break;
1908
1909 /* release the path since we're done with it */
1910 btrfs_release_path(root, path);
1911
1912 /*
1913 * this is where we are basically btrfs_lookup, without the
1914 * crossing root thing. we store the inode number in the
1915 * offset of the orphan item.
1916 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001917 inode = btrfs_iget_locked(root->fs_info->sb,
Josef Bacik7b128762008-07-24 12:17:14 -04001918 found_key.offset, root);
1919 if (!inode)
1920 break;
1921
1922 if (inode->i_state & I_NEW) {
1923 BTRFS_I(inode)->root = root;
1924
1925 /* have to set the location manually */
1926 BTRFS_I(inode)->location.objectid = inode->i_ino;
1927 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
1928 BTRFS_I(inode)->location.offset = 0;
1929
1930 btrfs_read_locked_inode(inode);
1931 unlock_new_inode(inode);
1932 }
1933
1934 /*
1935 * add this inode to the orphan list so btrfs_orphan_del does
1936 * the proper thing when we hit it
1937 */
Yanbcc63ab2008-07-30 16:29:20 -04001938 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001939 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04001940 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001941
1942 /*
1943 * if this is a bad inode, means we actually succeeded in
1944 * removing the inode, but not the orphan record, which means
1945 * we need to manually delete the orphan since iput will just
1946 * do a destroy_inode
1947 */
1948 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001949 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04001950 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001951 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04001952 iput(inode);
1953 continue;
1954 }
1955
1956 /* if we have links, this was a truncate, lets do that */
1957 if (inode->i_nlink) {
1958 nr_truncate++;
1959 btrfs_truncate(inode);
1960 } else {
1961 nr_unlink++;
1962 }
1963
1964 /* this will do delete_inode and everything for us */
1965 iput(inode);
1966 }
1967
1968 if (nr_unlink)
1969 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
1970 if (nr_truncate)
1971 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
1972
1973 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04001974}
1975
Chris Masond352ac62008-09-29 15:18:18 -04001976/*
1977 * read an inode from the btree into the in-memory inode
1978 */
Chris Mason39279cc2007-06-12 06:35:45 -04001979void btrfs_read_locked_inode(struct inode *inode)
1980{
1981 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001982 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001983 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04001984 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04001985 struct btrfs_root *root = BTRFS_I(inode)->root;
1986 struct btrfs_key location;
1987 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04001988 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04001989 int ret;
1990
1991 path = btrfs_alloc_path();
1992 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001993 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05001994
Chris Mason39279cc2007-06-12 06:35:45 -04001995 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001996 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001997 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04001998
Chris Mason5f39d392007-10-15 16:14:19 -04001999 leaf = path->nodes[0];
2000 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2001 struct btrfs_inode_item);
2002
2003 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2004 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2005 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2006 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002007 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002008
2009 tspec = btrfs_inode_atime(inode_item);
2010 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2011 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2012
2013 tspec = btrfs_inode_mtime(inode_item);
2014 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2015 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2016
2017 tspec = btrfs_inode_ctime(inode_item);
2018 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2019 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2020
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002021 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002022 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002023 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002024 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002025 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002026 rdev = btrfs_inode_rdev(leaf, inode_item);
2027
Josef Bacikaec74772008-07-24 12:12:38 -04002028 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002029 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002030
Chris Mason5f39d392007-10-15 16:14:19 -04002031 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002032
Yan Zhengd2fb3432008-12-11 16:30:39 -05002033 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2034 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002035 btrfs_free_path(path);
2036 inode_item = NULL;
2037
Chris Mason39279cc2007-06-12 06:35:45 -04002038 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002039 case S_IFREG:
2040 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002041 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002042 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002043 inode->i_fop = &btrfs_file_operations;
2044 inode->i_op = &btrfs_file_inode_operations;
2045 break;
2046 case S_IFDIR:
2047 inode->i_fop = &btrfs_dir_file_operations;
2048 if (root == root->fs_info->tree_root)
2049 inode->i_op = &btrfs_dir_ro_inode_operations;
2050 else
2051 inode->i_op = &btrfs_dir_inode_operations;
2052 break;
2053 case S_IFLNK:
2054 inode->i_op = &btrfs_symlink_inode_operations;
2055 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002056 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002057 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002058 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002059 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002060 init_special_inode(inode, inode->i_mode, rdev);
2061 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002062 }
2063 return;
2064
2065make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002066 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002067 make_bad_inode(inode);
2068}
2069
Chris Masond352ac62008-09-29 15:18:18 -04002070/*
2071 * given a leaf and an inode, copy the inode fields into the leaf
2072 */
Chris Masone02119d2008-09-05 16:13:11 -04002073static void fill_inode_item(struct btrfs_trans_handle *trans,
2074 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002075 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002076 struct inode *inode)
2077{
Chris Mason5f39d392007-10-15 16:14:19 -04002078 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2079 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002080 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002081 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2082 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2083
2084 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2085 inode->i_atime.tv_sec);
2086 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2087 inode->i_atime.tv_nsec);
2088
2089 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2090 inode->i_mtime.tv_sec);
2091 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2092 inode->i_mtime.tv_nsec);
2093
2094 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2095 inode->i_ctime.tv_sec);
2096 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2097 inode->i_ctime.tv_nsec);
2098
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002099 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002100 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002101 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002102 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002103 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002104 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002105 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002106}
2107
Chris Masond352ac62008-09-29 15:18:18 -04002108/*
2109 * copy everything in the in-memory inode into the btree.
2110 */
Chris Masond3977122009-01-05 21:25:51 -05002111noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2112 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002113{
2114 struct btrfs_inode_item *inode_item;
2115 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002116 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002117 int ret;
2118
2119 path = btrfs_alloc_path();
2120 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002121 ret = btrfs_lookup_inode(trans, root, path,
2122 &BTRFS_I(inode)->location, 1);
2123 if (ret) {
2124 if (ret > 0)
2125 ret = -ENOENT;
2126 goto failed;
2127 }
2128
Chris Masonb4ce94d2009-02-04 09:25:08 -05002129 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002130 leaf = path->nodes[0];
2131 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002132 struct btrfs_inode_item);
2133
Chris Masone02119d2008-09-05 16:13:11 -04002134 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002135 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002136 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002137 ret = 0;
2138failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002139 btrfs_free_path(path);
2140 return ret;
2141}
2142
2143
Chris Masond352ac62008-09-29 15:18:18 -04002144/*
2145 * unlink helper that gets used here in inode.c and in the tree logging
2146 * recovery code. It remove a link in a directory with a given name, and
2147 * also drops the back refs in the inode to the directory
2148 */
Chris Masone02119d2008-09-05 16:13:11 -04002149int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2150 struct btrfs_root *root,
2151 struct inode *dir, struct inode *inode,
2152 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002153{
2154 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002155 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002156 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002157 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002158 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002159 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002160
2161 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002162 if (!path) {
2163 ret = -ENOMEM;
2164 goto err;
2165 }
2166
Chris Mason39279cc2007-06-12 06:35:45 -04002167 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2168 name, name_len, -1);
2169 if (IS_ERR(di)) {
2170 ret = PTR_ERR(di);
2171 goto err;
2172 }
2173 if (!di) {
2174 ret = -ENOENT;
2175 goto err;
2176 }
Chris Mason5f39d392007-10-15 16:14:19 -04002177 leaf = path->nodes[0];
2178 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002179 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002180 if (ret)
2181 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002182 btrfs_release_path(root, path);
2183
Josef Bacikaec74772008-07-24 12:12:38 -04002184 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002185 inode->i_ino,
2186 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002187 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002188 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002189 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002190 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002191 goto err;
2192 }
2193
Chris Mason39279cc2007-06-12 06:35:45 -04002194 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002195 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002196 if (IS_ERR(di)) {
2197 ret = PTR_ERR(di);
2198 goto err;
2199 }
2200 if (!di) {
2201 ret = -ENOENT;
2202 goto err;
2203 }
2204 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002205 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002206
Chris Masone02119d2008-09-05 16:13:11 -04002207 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2208 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002209 BUG_ON(ret != 0 && ret != -ENOENT);
2210 if (ret != -ENOENT)
2211 BTRFS_I(dir)->log_dirty_trans = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04002212
2213 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2214 dir, index);
2215 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002216err:
2217 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002218 if (ret)
2219 goto out;
2220
2221 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2222 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2223 btrfs_update_inode(trans, root, dir);
2224 btrfs_drop_nlink(inode);
2225 ret = btrfs_update_inode(trans, root, inode);
2226 dir->i_sb->s_dirt = 1;
2227out:
Chris Mason39279cc2007-06-12 06:35:45 -04002228 return ret;
2229}
2230
2231static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2232{
2233 struct btrfs_root *root;
2234 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002235 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002236 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002237 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002238
2239 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002240
Chris Mason39279cc2007-06-12 06:35:45 -04002241 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002242
Chris Mason39279cc2007-06-12 06:35:45 -04002243 btrfs_set_trans_block_group(trans, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002244 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2245 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002246
2247 if (inode->i_nlink == 0)
2248 ret = btrfs_orphan_add(trans, inode);
2249
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002250 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002251
Chris Mason89ce8a62008-06-25 16:01:31 -04002252 btrfs_end_transaction_throttle(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002253 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002254 return ret;
2255}
2256
2257static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2258{
2259 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002260 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002261 int ret;
2262 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002263 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002264 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002265
Chris Mason3394e162008-11-17 20:42:26 -05002266 /*
2267 * the FIRST_FREE_OBJECTID check makes sure we don't try to rmdir
2268 * the root of a subvolume or snapshot
2269 */
2270 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
2271 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) {
Yan134d4512007-10-25 15:49:25 -04002272 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04002273 }
Yan134d4512007-10-25 15:49:25 -04002274
Chris Mason39279cc2007-06-12 06:35:45 -04002275 trans = btrfs_start_transaction(root, 1);
2276 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002277
Josef Bacik7b128762008-07-24 12:17:14 -04002278 err = btrfs_orphan_add(trans, inode);
2279 if (err)
2280 goto fail_trans;
2281
Chris Mason39279cc2007-06-12 06:35:45 -04002282 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002283 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2284 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002285 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002286 btrfs_i_size_write(inode, 0);
Chris Mason39544012007-12-12 14:38:19 -05002287
Josef Bacik7b128762008-07-24 12:17:14 -04002288fail_trans:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002289 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002290 ret = btrfs_end_transaction_throttle(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002291 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002292
Chris Mason39279cc2007-06-12 06:35:45 -04002293 if (ret && !err)
2294 err = ret;
2295 return err;
2296}
2297
Chris Masond20f7042008-12-08 16:58:54 -05002298#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002299/*
Chris Mason323ac952008-10-01 19:05:46 -04002300 * when truncating bytes in a file, it is possible to avoid reading
2301 * the leaves that contain only checksum items. This can be the
2302 * majority of the IO required to delete a large file, but it must
2303 * be done carefully.
2304 *
2305 * The keys in the level just above the leaves are checked to make sure
2306 * the lowest key in a given leaf is a csum key, and starts at an offset
2307 * after the new size.
2308 *
2309 * Then the key for the next leaf is checked to make sure it also has
2310 * a checksum item for the same file. If it does, we know our target leaf
2311 * contains only checksum items, and it can be safely freed without reading
2312 * it.
2313 *
2314 * This is just an optimization targeted at large files. It may do
2315 * nothing. It will return 0 unless things went badly.
2316 */
2317static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2318 struct btrfs_root *root,
2319 struct btrfs_path *path,
2320 struct inode *inode, u64 new_size)
2321{
2322 struct btrfs_key key;
2323 int ret;
2324 int nritems;
2325 struct btrfs_key found_key;
2326 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002327 struct btrfs_leaf_ref *ref;
2328 u64 leaf_gen;
2329 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002330
2331 path->lowest_level = 1;
2332 key.objectid = inode->i_ino;
2333 key.type = BTRFS_CSUM_ITEM_KEY;
2334 key.offset = new_size;
2335again:
2336 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2337 if (ret < 0)
2338 goto out;
2339
2340 if (path->nodes[1] == NULL) {
2341 ret = 0;
2342 goto out;
2343 }
2344 ret = 0;
2345 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2346 nritems = btrfs_header_nritems(path->nodes[1]);
2347
2348 if (!nritems)
2349 goto out;
2350
2351 if (path->slots[1] >= nritems)
2352 goto next_node;
2353
2354 /* did we find a key greater than anything we want to delete? */
2355 if (found_key.objectid > inode->i_ino ||
2356 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2357 goto out;
2358
2359 /* we check the next key in the node to make sure the leave contains
2360 * only checksum items. This comparison doesn't work if our
2361 * leaf is the last one in the node
2362 */
2363 if (path->slots[1] + 1 >= nritems) {
2364next_node:
2365 /* search forward from the last key in the node, this
2366 * will bring us into the next node in the tree
2367 */
2368 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2369
2370 /* unlikely, but we inc below, so check to be safe */
2371 if (found_key.offset == (u64)-1)
2372 goto out;
2373
2374 /* search_forward needs a path with locks held, do the
2375 * search again for the original key. It is possible
2376 * this will race with a balance and return a path that
2377 * we could modify, but this drop is just an optimization
2378 * and is allowed to miss some leaves.
2379 */
2380 btrfs_release_path(root, path);
2381 found_key.offset++;
2382
2383 /* setup a max key for search_forward */
2384 other_key.offset = (u64)-1;
2385 other_key.type = key.type;
2386 other_key.objectid = key.objectid;
2387
2388 path->keep_locks = 1;
2389 ret = btrfs_search_forward(root, &found_key, &other_key,
2390 path, 0, 0);
2391 path->keep_locks = 0;
2392 if (ret || found_key.objectid != key.objectid ||
2393 found_key.type != key.type) {
2394 ret = 0;
2395 goto out;
2396 }
2397
2398 key.offset = found_key.offset;
2399 btrfs_release_path(root, path);
2400 cond_resched();
2401 goto again;
2402 }
2403
2404 /* we know there's one more slot after us in the tree,
2405 * read that key so we can verify it is also a checksum item
2406 */
2407 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2408
2409 if (found_key.objectid < inode->i_ino)
2410 goto next_key;
2411
2412 if (found_key.type != key.type || found_key.offset < new_size)
2413 goto next_key;
2414
2415 /*
2416 * if the key for the next leaf isn't a csum key from this objectid,
2417 * we can't be sure there aren't good items inside this leaf.
2418 * Bail out
2419 */
2420 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2421 goto out;
2422
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002423 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2424 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002425 /*
2426 * it is safe to delete this leaf, it contains only
2427 * csum items from this inode at an offset >= new_size
2428 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002429 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002430 BUG_ON(ret);
2431
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002432 if (root->ref_cows && leaf_gen < trans->transid) {
2433 ref = btrfs_alloc_leaf_ref(root, 0);
2434 if (ref) {
2435 ref->root_gen = root->root_key.offset;
2436 ref->bytenr = leaf_start;
2437 ref->owner = 0;
2438 ref->generation = leaf_gen;
2439 ref->nritems = 0;
2440
Chris Masonbd56b302009-02-04 09:27:02 -05002441 btrfs_sort_leaf_ref(ref);
2442
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002443 ret = btrfs_add_leaf_ref(root, ref, 0);
2444 WARN_ON(ret);
2445 btrfs_free_leaf_ref(root, ref);
2446 } else {
2447 WARN_ON(1);
2448 }
2449 }
Chris Mason323ac952008-10-01 19:05:46 -04002450next_key:
2451 btrfs_release_path(root, path);
2452
2453 if (other_key.objectid == inode->i_ino &&
2454 other_key.type == key.type && other_key.offset > key.offset) {
2455 key.offset = other_key.offset;
2456 cond_resched();
2457 goto again;
2458 }
2459 ret = 0;
2460out:
2461 /* fixup any changes we've made to the path */
2462 path->lowest_level = 0;
2463 path->keep_locks = 0;
2464 btrfs_release_path(root, path);
2465 return ret;
2466}
2467
Chris Masond20f7042008-12-08 16:58:54 -05002468#endif
2469
Chris Mason323ac952008-10-01 19:05:46 -04002470/*
Chris Mason39279cc2007-06-12 06:35:45 -04002471 * this can truncate away extent items, csum items and directory items.
2472 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002473 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002474 *
2475 * csum items that cross the new i_size are truncated to the new size
2476 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002477 *
2478 * min_type is the minimum key type to truncate down to. If set to 0, this
2479 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002480 */
Chris Masone02119d2008-09-05 16:13:11 -04002481noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2482 struct btrfs_root *root,
2483 struct inode *inode,
2484 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002485{
2486 int ret;
2487 struct btrfs_path *path;
2488 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002489 struct btrfs_key found_key;
Chris Mason06d9a8d2009-02-04 09:30:58 -05002490 u32 found_type = (u8)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002491 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002492 struct btrfs_file_extent_item *fi;
2493 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002494 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002495 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002496 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05002497 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002498 int found_extent;
2499 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002500 int pending_del_nr = 0;
2501 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002502 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002503 int encoding;
Chris Mason3b951512008-04-17 11:29:12 -04002504 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002505
Chris Masone02119d2008-09-05 16:13:11 -04002506 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002507 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002508 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04002509 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04002510 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04002511
Chris Mason39279cc2007-06-12 06:35:45 -04002512 /* FIXME, add redo link to tree so we don't leak on crash */
2513 key.objectid = inode->i_ino;
2514 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002515 key.type = (u8)-1;
2516
Chris Mason85e21ba2008-01-29 15:11:36 -05002517search_again:
2518 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masond3977122009-01-05 21:25:51 -05002519 if (ret < 0)
Chris Mason85e21ba2008-01-29 15:11:36 -05002520 goto error;
Chris Masond3977122009-01-05 21:25:51 -05002521
Chris Mason85e21ba2008-01-29 15:11:36 -05002522 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002523 /* there are no items in the tree for us to truncate, we're
2524 * done
2525 */
2526 if (path->slots[0] == 0) {
2527 ret = 0;
2528 goto error;
2529 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002530 path->slots[0]--;
2531 }
2532
Chris Masond3977122009-01-05 21:25:51 -05002533 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002534 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002535 leaf = path->nodes[0];
2536 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2537 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002538 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002539
Chris Mason5f39d392007-10-15 16:14:19 -04002540 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002541 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002542
Chris Mason85e21ba2008-01-29 15:11:36 -05002543 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002544 break;
2545
Chris Mason5f39d392007-10-15 16:14:19 -04002546 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002547 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002548 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002549 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002550 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002551 encoding = btrfs_file_extent_compression(leaf, fi);
2552 encoding |= btrfs_file_extent_encryption(leaf, fi);
2553 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2554
Chris Mason179e29e2007-11-01 11:28:41 -04002555 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002556 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002557 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002558 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002559 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002560 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002561 }
Yan008630c2007-11-07 13:31:09 -05002562 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002563 }
Chris Masone02119d2008-09-05 16:13:11 -04002564 if (item_end < new_size) {
Chris Masond3977122009-01-05 21:25:51 -05002565 if (found_type == BTRFS_DIR_ITEM_KEY)
Chris Masonb888db22007-08-27 16:49:44 -04002566 found_type = BTRFS_INODE_ITEM_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002567 else if (found_type == BTRFS_EXTENT_ITEM_KEY)
Chris Masond20f7042008-12-08 16:58:54 -05002568 found_type = BTRFS_EXTENT_DATA_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002569 else if (found_type == BTRFS_EXTENT_DATA_KEY)
Chris Mason85e21ba2008-01-29 15:11:36 -05002570 found_type = BTRFS_XATTR_ITEM_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002571 else if (found_type == BTRFS_XATTR_ITEM_KEY)
Chris Mason85e21ba2008-01-29 15:11:36 -05002572 found_type = BTRFS_INODE_REF_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002573 else if (found_type)
Chris Masonb888db22007-08-27 16:49:44 -04002574 found_type--;
Chris Masond3977122009-01-05 21:25:51 -05002575 else
Chris Masonb888db22007-08-27 16:49:44 -04002576 break;
Yana61721d2007-09-17 11:08:38 -04002577 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05002578 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04002579 }
Chris Masone02119d2008-09-05 16:13:11 -04002580 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04002581 del_item = 1;
2582 else
2583 del_item = 0;
2584 found_extent = 0;
2585
2586 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002587 if (found_type != BTRFS_EXTENT_DATA_KEY)
2588 goto delete;
2589
2590 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002591 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002592 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002593 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002594 u64 orig_num_bytes =
2595 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002596 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002597 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002598 extent_num_bytes = extent_num_bytes &
2599 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002600 btrfs_set_file_extent_num_bytes(leaf, fi,
2601 extent_num_bytes);
2602 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002603 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002604 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002605 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002606 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002607 } else {
Chris Masondb945352007-10-15 16:15:53 -04002608 extent_num_bytes =
2609 btrfs_file_extent_disk_num_bytes(leaf,
2610 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002611 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002612 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002613 if (extent_start != 0) {
2614 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002615 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002616 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002617 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002618 root_gen = btrfs_header_generation(leaf);
Chris Masond8d5f3e2007-12-11 12:42:00 -05002619 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002620 }
Chris Mason90692182008-02-08 13:49:28 -05002621 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002622 /*
2623 * we can't truncate inline items that have had
2624 * special encodings
2625 */
2626 if (!del_item &&
2627 btrfs_file_extent_compression(leaf, fi) == 0 &&
2628 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2629 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002630 u32 size = new_size - found_key.offset;
2631
2632 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002633 inode_sub_bytes(inode, item_end + 1 -
2634 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04002635 }
2636 size =
2637 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05002638 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002639 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05002640 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04002641 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002642 inode_sub_bytes(inode, item_end + 1 -
2643 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05002644 }
Chris Mason39279cc2007-06-12 06:35:45 -04002645 }
Chris Mason179e29e2007-11-01 11:28:41 -04002646delete:
Chris Mason39279cc2007-06-12 06:35:45 -04002647 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05002648 if (!pending_del_nr) {
2649 /* no pending yet, add ourselves */
2650 pending_del_slot = path->slots[0];
2651 pending_del_nr = 1;
2652 } else if (pending_del_nr &&
2653 path->slots[0] + 1 == pending_del_slot) {
2654 /* hop on the pending chunk */
2655 pending_del_nr++;
2656 pending_del_slot = path->slots[0];
2657 } else {
Chris Masond3977122009-01-05 21:25:51 -05002658 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05002659 }
Chris Mason39279cc2007-06-12 06:35:45 -04002660 } else {
2661 break;
2662 }
Chris Mason39279cc2007-06-12 06:35:45 -04002663 if (found_extent) {
2664 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05002665 extent_num_bytes,
Zheng Yan31840ae2008-09-23 13:14:14 -04002666 leaf->start, root_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04002667 root_gen, inode->i_ino, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002668 BUG_ON(ret);
2669 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002670next:
2671 if (path->slots[0] == 0) {
2672 if (pending_del_nr)
2673 goto del_pending;
2674 btrfs_release_path(root, path);
Chris Mason06d9a8d2009-02-04 09:30:58 -05002675 if (found_type == BTRFS_INODE_ITEM_KEY)
2676 break;
Chris Mason85e21ba2008-01-29 15:11:36 -05002677 goto search_again;
2678 }
2679
2680 path->slots[0]--;
2681 if (pending_del_nr &&
2682 path->slots[0] + 1 != pending_del_slot) {
2683 struct btrfs_key debug;
2684del_pending:
2685 btrfs_item_key_to_cpu(path->nodes[0], &debug,
2686 pending_del_slot);
2687 ret = btrfs_del_items(trans, root, path,
2688 pending_del_slot,
2689 pending_del_nr);
2690 BUG_ON(ret);
2691 pending_del_nr = 0;
2692 btrfs_release_path(root, path);
Chris Mason06d9a8d2009-02-04 09:30:58 -05002693 if (found_type == BTRFS_INODE_ITEM_KEY)
2694 break;
Chris Mason85e21ba2008-01-29 15:11:36 -05002695 goto search_again;
2696 }
Chris Mason39279cc2007-06-12 06:35:45 -04002697 }
2698 ret = 0;
2699error:
Chris Mason85e21ba2008-01-29 15:11:36 -05002700 if (pending_del_nr) {
2701 ret = btrfs_del_items(trans, root, path, pending_del_slot,
2702 pending_del_nr);
2703 }
Chris Mason39279cc2007-06-12 06:35:45 -04002704 btrfs_free_path(path);
2705 inode->i_sb->s_dirt = 1;
2706 return ret;
2707}
2708
Chris Masona52d9a82007-08-27 16:49:44 -04002709/*
2710 * taken from block_truncate_page, but does cow as it zeros out
2711 * any bytes left in the last page in the file.
2712 */
2713static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
2714{
2715 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04002716 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002717 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2718 struct btrfs_ordered_extent *ordered;
2719 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04002720 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04002721 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2722 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2723 struct page *page;
2724 int ret = 0;
2725 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002726 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04002727
2728 if ((offset & (blocksize - 1)) == 0)
2729 goto out;
2730
2731 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04002732again:
Chris Masona52d9a82007-08-27 16:49:44 -04002733 page = grab_cache_page(mapping, index);
2734 if (!page)
2735 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002736
2737 page_start = page_offset(page);
2738 page_end = page_start + PAGE_CACHE_SIZE - 1;
2739
Chris Masona52d9a82007-08-27 16:49:44 -04002740 if (!PageUptodate(page)) {
2741 ret = btrfs_readpage(NULL, page);
2742 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04002743 if (page->mapping != mapping) {
2744 unlock_page(page);
2745 page_cache_release(page);
2746 goto again;
2747 }
Chris Masona52d9a82007-08-27 16:49:44 -04002748 if (!PageUptodate(page)) {
2749 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04002750 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04002751 }
2752 }
Chris Mason211c17f2008-05-15 09:13:45 -04002753 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002754
2755 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2756 set_page_extent_mapped(page);
2757
2758 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2759 if (ordered) {
2760 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2761 unlock_page(page);
2762 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002763 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002764 btrfs_put_ordered_extent(ordered);
2765 goto again;
2766 }
2767
Chris Masonea8c2812008-08-04 23:17:27 -04002768 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002769 ret = 0;
2770 if (offset != PAGE_CACHE_SIZE) {
2771 kaddr = kmap(page);
2772 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2773 flush_dcache_page(page);
2774 kunmap(page);
2775 }
Chris Mason247e7432008-07-17 12:53:51 -04002776 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002777 set_page_dirty(page);
2778 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002779
Chris Mason89642222008-07-24 09:41:53 -04002780out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002781 unlock_page(page);
2782 page_cache_release(page);
2783out:
2784 return ret;
2785}
2786
Yan Zheng9036c102008-10-30 14:19:41 -04002787int btrfs_cont_expand(struct inode *inode, loff_t size)
2788{
2789 struct btrfs_trans_handle *trans;
2790 struct btrfs_root *root = BTRFS_I(inode)->root;
2791 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2792 struct extent_map *em;
2793 u64 mask = root->sectorsize - 1;
2794 u64 hole_start = (inode->i_size + mask) & ~mask;
2795 u64 block_end = (size + mask) & ~mask;
2796 u64 last_byte;
2797 u64 cur_offset;
2798 u64 hole_size;
2799 int err;
2800
2801 if (size <= hole_start)
2802 return 0;
2803
Josef Bacik6a632092009-02-20 11:00:09 -05002804 err = btrfs_check_metadata_free_space(root);
Yan Zheng9036c102008-10-30 14:19:41 -04002805 if (err)
2806 return err;
2807
2808 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2809
2810 while (1) {
2811 struct btrfs_ordered_extent *ordered;
2812 btrfs_wait_ordered_range(inode, hole_start,
2813 block_end - hole_start);
2814 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2815 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
2816 if (!ordered)
2817 break;
2818 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2819 btrfs_put_ordered_extent(ordered);
2820 }
2821
2822 trans = btrfs_start_transaction(root, 1);
2823 btrfs_set_trans_block_group(trans, inode);
2824
2825 cur_offset = hole_start;
2826 while (1) {
2827 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2828 block_end - cur_offset, 0);
2829 BUG_ON(IS_ERR(em) || !em);
2830 last_byte = min(extent_map_end(em), block_end);
2831 last_byte = (last_byte + mask) & ~mask;
2832 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05002833 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04002834 hole_size = last_byte - cur_offset;
Chris Mason771ed682008-11-06 22:02:51 -05002835 err = btrfs_drop_extents(trans, root, inode,
2836 cur_offset,
2837 cur_offset + hole_size,
2838 cur_offset, &hint_byte);
2839 if (err)
2840 break;
Yan Zheng9036c102008-10-30 14:19:41 -04002841 err = btrfs_insert_file_extent(trans, root,
2842 inode->i_ino, cur_offset, 0,
2843 0, hole_size, 0, hole_size,
2844 0, 0, 0);
2845 btrfs_drop_extent_cache(inode, hole_start,
2846 last_byte - 1, 0);
2847 }
2848 free_extent_map(em);
2849 cur_offset = last_byte;
2850 if (err || cur_offset >= block_end)
2851 break;
2852 }
2853
2854 btrfs_end_transaction(trans, root);
2855 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2856 return err;
2857}
2858
Chris Mason39279cc2007-06-12 06:35:45 -04002859static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
2860{
2861 struct inode *inode = dentry->d_inode;
2862 int err;
2863
2864 err = inode_change_ok(inode, attr);
2865 if (err)
2866 return err;
2867
2868 if (S_ISREG(inode->i_mode) &&
2869 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
Yan Zheng9036c102008-10-30 14:19:41 -04002870 err = btrfs_cont_expand(inode, attr->ia_size);
Chris Mason54aa1f42007-06-22 14:16:25 -04002871 if (err)
2872 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04002873 }
Yan Zheng9036c102008-10-30 14:19:41 -04002874
Chris Mason39279cc2007-06-12 06:35:45 -04002875 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04002876
2877 if (!err && ((attr->ia_valid & ATTR_MODE)))
2878 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002879 return err;
2880}
Chris Mason61295eb2008-01-14 16:24:38 -05002881
Chris Mason39279cc2007-06-12 06:35:45 -04002882void btrfs_delete_inode(struct inode *inode)
2883{
2884 struct btrfs_trans_handle *trans;
2885 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002886 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002887 int ret;
2888
2889 truncate_inode_pages(&inode->i_data, 0);
2890 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04002891 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002892 goto no_delete;
2893 }
Chris Mason4a096752008-07-21 10:29:44 -04002894 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04002895
Chris Masondbe674a2008-07-17 12:54:05 -04002896 btrfs_i_size_write(inode, 0);
Yan Zheng180591b2009-01-06 09:58:06 -05002897 trans = btrfs_join_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002898
Chris Mason39279cc2007-06-12 06:35:45 -04002899 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002900 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04002901 if (ret) {
2902 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002903 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04002904 }
2905
2906 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05002907
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002908 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05002909 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002910
Chris Mason39279cc2007-06-12 06:35:45 -04002911 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002912 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002913 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04002914
2915no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002916 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04002917 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002918 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002919no_delete:
2920 clear_inode(inode);
2921}
2922
2923/*
2924 * this returns the key found in the dir entry in the location pointer.
2925 * If no dir entries were found, location->objectid is 0.
2926 */
2927static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
2928 struct btrfs_key *location)
2929{
2930 const char *name = dentry->d_name.name;
2931 int namelen = dentry->d_name.len;
2932 struct btrfs_dir_item *di;
2933 struct btrfs_path *path;
2934 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04002935 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002936
2937 path = btrfs_alloc_path();
2938 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05002939
Chris Mason39279cc2007-06-12 06:35:45 -04002940 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
2941 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04002942 if (IS_ERR(di))
2943 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05002944
2945 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05002946 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05002947
Chris Mason5f39d392007-10-15 16:14:19 -04002948 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04002949out:
Chris Mason39279cc2007-06-12 06:35:45 -04002950 btrfs_free_path(path);
2951 return ret;
Chris Mason39544012007-12-12 14:38:19 -05002952out_err:
2953 location->objectid = 0;
2954 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002955}
2956
2957/*
2958 * when we hit a tree root in a directory, the btrfs part of the inode
2959 * needs to be changed to reflect the root directory of the tree root. This
2960 * is kind of like crossing a mount point.
2961 */
2962static int fixup_tree_root_location(struct btrfs_root *root,
2963 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04002964 struct btrfs_root **sub_root,
2965 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04002966{
Chris Mason39279cc2007-06-12 06:35:45 -04002967 struct btrfs_root_item *ri;
2968
2969 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
2970 return 0;
2971 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
2972 return 0;
2973
Josef Bacik58176a92007-08-29 15:47:34 -04002974 *sub_root = btrfs_read_fs_root(root->fs_info, location,
2975 dentry->d_name.name,
2976 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002977 if (IS_ERR(*sub_root))
2978 return PTR_ERR(*sub_root);
2979
2980 ri = &(*sub_root)->root_item;
2981 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04002982 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2983 location->offset = 0;
2984
Chris Mason39279cc2007-06-12 06:35:45 -04002985 return 0;
2986}
2987
Chris Masone02119d2008-09-05 16:13:11 -04002988static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002989{
Chris Masone02119d2008-09-05 16:13:11 -04002990 struct btrfs_inode *bi = BTRFS_I(inode);
2991
2992 bi->i_acl = NULL;
2993 bi->i_default_acl = NULL;
2994
2995 bi->generation = 0;
Chris Masonc3027eb2008-12-08 16:40:21 -05002996 bi->sequence = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002997 bi->last_trans = 0;
2998 bi->logged_trans = 0;
2999 bi->delalloc_bytes = 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003000 bi->reserved_bytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003001 bi->disk_i_size = 0;
3002 bi->flags = 0;
3003 bi->index_cnt = (u64)-1;
Chris Mason49eb7e42008-09-11 15:53:12 -04003004 bi->log_dirty_trans = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003005 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3006 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04003007 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003008 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3009 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04003010 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Masonba1da2f2008-07-17 12:54:15 -04003011 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masonee6e6502008-07-17 12:54:40 -04003012 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003013 mutex_init(&BTRFS_I(inode)->log_mutex);
3014}
3015
3016static int btrfs_init_locked_inode(struct inode *inode, void *p)
3017{
3018 struct btrfs_iget_args *args = p;
3019 inode->i_ino = args->ino;
3020 init_btrfs_i(inode);
3021 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003022 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003023 return 0;
3024}
3025
3026static int btrfs_find_actor(struct inode *inode, void *opaque)
3027{
3028 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05003029 return args->ino == inode->i_ino &&
3030 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003031}
3032
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003033struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
3034 struct btrfs_root *root, int wait)
3035{
3036 struct inode *inode;
3037 struct btrfs_iget_args args;
3038 args.ino = objectid;
3039 args.root = root;
3040
3041 if (wait) {
3042 inode = ilookup5(s, objectid, btrfs_find_actor,
3043 (void *)&args);
3044 } else {
3045 inode = ilookup5_nowait(s, objectid, btrfs_find_actor,
3046 (void *)&args);
3047 }
3048 return inode;
3049}
3050
Chris Mason39279cc2007-06-12 06:35:45 -04003051struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
3052 struct btrfs_root *root)
3053{
3054 struct inode *inode;
3055 struct btrfs_iget_args args;
3056 args.ino = objectid;
3057 args.root = root;
3058
3059 inode = iget5_locked(s, objectid, btrfs_find_actor,
3060 btrfs_init_locked_inode,
3061 (void *)&args);
3062 return inode;
3063}
3064
Balaji Rao1a54ef82008-07-21 02:01:04 +05303065/* Get an inode object given its location and corresponding root.
3066 * Returns in *is_new if the inode was read from disk
3067 */
3068struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
3069 struct btrfs_root *root, int *is_new)
3070{
3071 struct inode *inode;
3072
3073 inode = btrfs_iget_locked(s, location->objectid, root);
3074 if (!inode)
3075 return ERR_PTR(-EACCES);
3076
3077 if (inode->i_state & I_NEW) {
3078 BTRFS_I(inode)->root = root;
3079 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3080 btrfs_read_locked_inode(inode);
3081 unlock_new_inode(inode);
3082 if (is_new)
3083 *is_new = 1;
3084 } else {
3085 if (is_new)
3086 *is_new = 0;
3087 }
3088
3089 return inode;
3090}
3091
Chris Mason3de45862008-11-17 21:02:50 -05003092struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003093{
Chris Masond3977122009-01-05 21:25:51 -05003094 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003095 struct btrfs_inode *bi = BTRFS_I(dir);
3096 struct btrfs_root *root = bi->root;
3097 struct btrfs_root *sub_root = root;
3098 struct btrfs_key location;
Yan Zhengc146afa2008-11-12 14:34:12 -05003099 int ret, new;
Chris Mason39279cc2007-06-12 06:35:45 -04003100
3101 if (dentry->d_name.len > BTRFS_NAME_LEN)
3102 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003103
Chris Mason39279cc2007-06-12 06:35:45 -04003104 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003105
Chris Mason39279cc2007-06-12 06:35:45 -04003106 if (ret < 0)
3107 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003108
Chris Mason39279cc2007-06-12 06:35:45 -04003109 inode = NULL;
3110 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04003111 ret = fixup_tree_root_location(root, &location, &sub_root,
3112 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04003113 if (ret < 0)
3114 return ERR_PTR(ret);
3115 if (ret > 0)
3116 return ERR_PTR(-ENOENT);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303117 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
3118 if (IS_ERR(inode))
3119 return ERR_CAST(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003120 }
Chris Mason3de45862008-11-17 21:02:50 -05003121 return inode;
3122}
3123
3124static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3125 struct nameidata *nd)
3126{
3127 struct inode *inode;
3128
3129 if (dentry->d_name.len > BTRFS_NAME_LEN)
3130 return ERR_PTR(-ENAMETOOLONG);
3131
3132 inode = btrfs_lookup_dentry(dir, dentry);
3133 if (IS_ERR(inode))
3134 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003135
Chris Mason39279cc2007-06-12 06:35:45 -04003136 return d_splice_alias(inode, dentry);
3137}
3138
Chris Mason39279cc2007-06-12 06:35:45 -04003139static unsigned char btrfs_filetype_table[] = {
3140 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3141};
3142
David Woodhousecbdf5a22008-08-06 19:42:33 +01003143static int btrfs_real_readdir(struct file *filp, void *dirent,
3144 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003145{
Chris Mason6da6aba2007-12-18 16:15:09 -05003146 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003147 struct btrfs_root *root = BTRFS_I(inode)->root;
3148 struct btrfs_item *item;
3149 struct btrfs_dir_item *di;
3150 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003151 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003152 struct btrfs_path *path;
3153 int ret;
3154 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003155 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003156 int slot;
3157 int advance;
3158 unsigned char d_type;
3159 int over = 0;
3160 u32 di_cur;
3161 u32 di_total;
3162 u32 di_len;
3163 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003164 char tmp_name[32];
3165 char *name_ptr;
3166 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003167
3168 /* FIXME, use a real flag for deciding about the key type */
3169 if (root->fs_info->tree_root == root)
3170 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003171
Chris Mason39544012007-12-12 14:38:19 -05003172 /* special case for "." */
3173 if (filp->f_pos == 0) {
3174 over = filldir(dirent, ".", 1,
3175 1, inode->i_ino,
3176 DT_DIR);
3177 if (over)
3178 return 0;
3179 filp->f_pos = 1;
3180 }
Chris Mason39544012007-12-12 14:38:19 -05003181 /* special case for .., just use the back ref */
3182 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003183 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003184 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003185 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003186 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003187 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003188 filp->f_pos = 2;
3189 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003190 path = btrfs_alloc_path();
3191 path->reada = 2;
3192
Chris Mason39279cc2007-06-12 06:35:45 -04003193 btrfs_set_key_type(&key, key_type);
3194 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003195 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003196
Chris Mason39279cc2007-06-12 06:35:45 -04003197 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3198 if (ret < 0)
3199 goto err;
3200 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003201
3202 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003203 leaf = path->nodes[0];
3204 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003205 slot = path->slots[0];
3206 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003207 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003208 ret = btrfs_next_leaf(root, path);
3209 if (ret)
3210 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003211 leaf = path->nodes[0];
3212 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003213 slot = path->slots[0];
3214 } else {
3215 slot++;
3216 path->slots[0]++;
3217 }
3218 }
Chris Mason3de45862008-11-17 21:02:50 -05003219
Chris Mason39279cc2007-06-12 06:35:45 -04003220 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003221 item = btrfs_item_nr(leaf, slot);
3222 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3223
3224 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003225 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003226 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003227 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003228 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003229 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003230
3231 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003232
Chris Mason39279cc2007-06-12 06:35:45 -04003233 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3234 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003235 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003236
3237 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003238 struct btrfs_key location;
3239
3240 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003241 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003242 name_ptr = tmp_name;
3243 } else {
3244 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003245 if (!name_ptr) {
3246 ret = -ENOMEM;
3247 goto err;
3248 }
Chris Mason5f39d392007-10-15 16:14:19 -04003249 }
3250 read_extent_buffer(leaf, name_ptr,
3251 (unsigned long)(di + 1), name_len);
3252
3253 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3254 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05003255
3256 /* is this a reference to our own snapshot? If so
3257 * skip it
3258 */
3259 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3260 location.objectid == root->root_key.objectid) {
3261 over = 0;
3262 goto skip;
3263 }
Chris Mason5f39d392007-10-15 16:14:19 -04003264 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003265 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003266 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003267
Chris Mason3de45862008-11-17 21:02:50 -05003268skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003269 if (name_ptr != tmp_name)
3270 kfree(name_ptr);
3271
Chris Mason39279cc2007-06-12 06:35:45 -04003272 if (over)
3273 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003274 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003275 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003276 di_cur += di_len;
3277 di = (struct btrfs_dir_item *)((char *)di + di_len);
3278 }
3279 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003280
3281 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003282 if (key_type == BTRFS_DIR_INDEX_KEY)
Chris Mason89f135d2009-01-28 15:34:27 -05003283 filp->f_pos = INT_LIMIT(off_t);
Yan Zheng5e591a02008-02-19 11:41:02 -05003284 else
3285 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003286nopos:
3287 ret = 0;
3288err:
Chris Mason39279cc2007-06-12 06:35:45 -04003289 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003290 return ret;
3291}
3292
3293int btrfs_write_inode(struct inode *inode, int wait)
3294{
3295 struct btrfs_root *root = BTRFS_I(inode)->root;
3296 struct btrfs_trans_handle *trans;
3297 int ret = 0;
3298
Yan Zhengc146afa2008-11-12 14:34:12 -05003299 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04003300 return 0;
3301
Chris Mason39279cc2007-06-12 06:35:45 -04003302 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003303 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003304 btrfs_set_trans_block_group(trans, inode);
3305 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003306 }
3307 return ret;
3308}
3309
3310/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003311 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003312 * inode changes. But, it is most likely to find the inode in cache.
3313 * FIXME, needs more benchmarking...there are no reasons other than performance
3314 * to keep or drop this code.
3315 */
3316void btrfs_dirty_inode(struct inode *inode)
3317{
3318 struct btrfs_root *root = BTRFS_I(inode)->root;
3319 struct btrfs_trans_handle *trans;
3320
Chris Masonf9295742008-07-17 12:54:14 -04003321 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003322 btrfs_set_trans_block_group(trans, inode);
3323 btrfs_update_inode(trans, root, inode);
3324 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003325}
3326
Chris Masond352ac62008-09-29 15:18:18 -04003327/*
3328 * find the highest existing sequence number in a directory
3329 * and then set the in-memory index_cnt variable to reflect
3330 * free sequence numbers
3331 */
Josef Bacikaec74772008-07-24 12:12:38 -04003332static int btrfs_set_inode_index_count(struct inode *inode)
3333{
3334 struct btrfs_root *root = BTRFS_I(inode)->root;
3335 struct btrfs_key key, found_key;
3336 struct btrfs_path *path;
3337 struct extent_buffer *leaf;
3338 int ret;
3339
3340 key.objectid = inode->i_ino;
3341 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
3342 key.offset = (u64)-1;
3343
3344 path = btrfs_alloc_path();
3345 if (!path)
3346 return -ENOMEM;
3347
3348 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3349 if (ret < 0)
3350 goto out;
3351 /* FIXME: we should be able to handle this */
3352 if (ret == 0)
3353 goto out;
3354 ret = 0;
3355
3356 /*
3357 * MAGIC NUMBER EXPLANATION:
3358 * since we search a directory based on f_pos we have to start at 2
3359 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
3360 * else has to start at 2
3361 */
3362 if (path->slots[0] == 0) {
3363 BTRFS_I(inode)->index_cnt = 2;
3364 goto out;
3365 }
3366
3367 path->slots[0]--;
3368
3369 leaf = path->nodes[0];
3370 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3371
3372 if (found_key.objectid != inode->i_ino ||
3373 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
3374 BTRFS_I(inode)->index_cnt = 2;
3375 goto out;
3376 }
3377
3378 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
3379out:
3380 btrfs_free_path(path);
3381 return ret;
3382}
3383
Chris Masond352ac62008-09-29 15:18:18 -04003384/*
3385 * helper to find a free sequence number in a given directory. This current
3386 * code is very simple, later versions will do smarter things in the btree
3387 */
Chris Mason3de45862008-11-17 21:02:50 -05003388int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04003389{
3390 int ret = 0;
3391
3392 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
3393 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05003394 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04003395 return ret;
3396 }
3397
Chris Mason00e4e6b2008-08-05 11:18:09 -04003398 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04003399 BTRFS_I(dir)->index_cnt++;
3400
3401 return ret;
3402}
3403
Chris Mason39279cc2007-06-12 06:35:45 -04003404static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
3405 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04003406 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05003407 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05003408 u64 ref_objectid, u64 objectid,
3409 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04003410{
3411 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003412 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04003413 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04003414 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05003415 struct btrfs_inode_ref *ref;
3416 struct btrfs_key key[2];
3417 u32 sizes[2];
3418 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003419 int ret;
3420 int owner;
3421
Chris Mason5f39d392007-10-15 16:14:19 -04003422 path = btrfs_alloc_path();
3423 BUG_ON(!path);
3424
Chris Mason39279cc2007-06-12 06:35:45 -04003425 inode = new_inode(root->fs_info->sb);
3426 if (!inode)
3427 return ERR_PTR(-ENOMEM);
3428
Josef Bacikaec74772008-07-24 12:12:38 -04003429 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05003430 ret = btrfs_set_inode_index(dir, index);
Josef Bacikaec74772008-07-24 12:12:38 -04003431 if (ret)
3432 return ERR_PTR(ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003433 }
3434 /*
3435 * index_cnt is ignored for everything but a dir,
3436 * btrfs_get_inode_index_count has an explanation for the magic
3437 * number
3438 */
Chris Masone02119d2008-09-05 16:13:11 -04003439 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003440 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04003441 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04003442 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik6a632092009-02-20 11:00:09 -05003443 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04003444
Chris Mason39279cc2007-06-12 06:35:45 -04003445 if (mode & S_IFDIR)
3446 owner = 0;
3447 else
3448 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003449 BTRFS_I(inode)->block_group =
3450 btrfs_find_block_group(root, 0, alloc_hint, owner);
Yan Zheng17d217f2008-12-12 10:03:38 -05003451 if ((mode & S_IFREG)) {
3452 if (btrfs_test_opt(root, NODATASUM))
3453 btrfs_set_flag(inode, NODATASUM);
3454 if (btrfs_test_opt(root, NODATACOW))
3455 btrfs_set_flag(inode, NODATACOW);
3456 }
Chris Mason9c583092008-01-29 15:15:18 -05003457
3458 key[0].objectid = objectid;
3459 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
3460 key[0].offset = 0;
3461
3462 key[1].objectid = objectid;
3463 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
3464 key[1].offset = ref_objectid;
3465
3466 sizes[0] = sizeof(struct btrfs_inode_item);
3467 sizes[1] = name_len + sizeof(*ref);
3468
3469 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
3470 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04003471 goto fail;
3472
Chris Mason9c583092008-01-29 15:15:18 -05003473 if (objectid > root->highest_inode)
3474 root->highest_inode = objectid;
3475
Chris Mason79683f22008-11-19 22:00:53 -05003476 inode->i_uid = current_fsuid();
Chris Ball8c087b52009-02-04 09:29:54 -05003477
Chris Mason42f15d72009-02-06 11:35:57 -05003478 if (dir && (dir->i_mode & S_ISGID)) {
Chris Ball8c087b52009-02-04 09:29:54 -05003479 inode->i_gid = dir->i_gid;
3480 if (S_ISDIR(mode))
3481 mode |= S_ISGID;
3482 } else
3483 inode->i_gid = current_fsgid();
3484
Chris Mason39279cc2007-06-12 06:35:45 -04003485 inode->i_mode = mode;
3486 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003487 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003488 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04003489 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3490 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003491 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003492
3493 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3494 struct btrfs_inode_ref);
3495 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003496 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05003497 ptr = (unsigned long)(ref + 1);
3498 write_extent_buffer(path->nodes[0], name, ptr, name_len);
3499
Chris Mason5f39d392007-10-15 16:14:19 -04003500 btrfs_mark_buffer_dirty(path->nodes[0]);
3501 btrfs_free_path(path);
3502
Chris Mason39279cc2007-06-12 06:35:45 -04003503 location = &BTRFS_I(inode)->location;
3504 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04003505 location->offset = 0;
3506 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
3507
Chris Mason39279cc2007-06-12 06:35:45 -04003508 insert_inode_hash(inode);
3509 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003510fail:
Josef Bacikaec74772008-07-24 12:12:38 -04003511 if (dir)
3512 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04003513 btrfs_free_path(path);
3514 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003515}
3516
3517static inline u8 btrfs_inode_type(struct inode *inode)
3518{
3519 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
3520}
3521
Chris Masond352ac62008-09-29 15:18:18 -04003522/*
3523 * utility function to add 'inode' into 'parent_inode' with
3524 * a give name and a given sequence number.
3525 * if 'add_backref' is true, also insert a backref from the
3526 * inode to the parent directory.
3527 */
Chris Masone02119d2008-09-05 16:13:11 -04003528int btrfs_add_link(struct btrfs_trans_handle *trans,
3529 struct inode *parent_inode, struct inode *inode,
3530 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003531{
3532 int ret;
3533 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04003534 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04003535
Chris Mason39279cc2007-06-12 06:35:45 -04003536 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003537 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
3538 key.offset = 0;
3539
Chris Masone02119d2008-09-05 16:13:11 -04003540 ret = btrfs_insert_dir_item(trans, root, name, name_len,
3541 parent_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04003542 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04003543 index);
Chris Mason39279cc2007-06-12 06:35:45 -04003544 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05003545 if (add_backref) {
3546 ret = btrfs_insert_inode_ref(trans, root,
Chris Masone02119d2008-09-05 16:13:11 -04003547 name, name_len,
3548 inode->i_ino,
3549 parent_inode->i_ino,
3550 index);
Chris Mason9c583092008-01-29 15:15:18 -05003551 }
Chris Masondbe674a2008-07-17 12:54:05 -04003552 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04003553 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04003554 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04003555 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003556 }
3557 return ret;
3558}
3559
3560static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05003561 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003562 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003563{
Chris Masone02119d2008-09-05 16:13:11 -04003564 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3565 inode, dentry->d_name.name,
3566 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003567 if (!err) {
3568 d_instantiate(dentry, inode);
3569 return 0;
3570 }
3571 if (err > 0)
3572 err = -EEXIST;
3573 return err;
3574}
3575
Josef Bacik618e21d2007-07-11 10:18:17 -04003576static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
3577 int mode, dev_t rdev)
3578{
3579 struct btrfs_trans_handle *trans;
3580 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003581 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04003582 int err;
3583 int drop_inode = 0;
3584 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05003585 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003586 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04003587
3588 if (!new_valid_dev(rdev))
3589 return -EINVAL;
3590
Josef Bacik6a632092009-02-20 11:00:09 -05003591 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003592 if (err)
3593 goto fail;
3594
Josef Bacik618e21d2007-07-11 10:18:17 -04003595 trans = btrfs_start_transaction(root, 1);
3596 btrfs_set_trans_block_group(trans, dir);
3597
3598 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3599 if (err) {
3600 err = -ENOSPC;
3601 goto out_unlock;
3602 }
3603
Josef Bacikaec74772008-07-24 12:12:38 -04003604 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003605 dentry->d_name.len,
3606 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003607 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003608 err = PTR_ERR(inode);
3609 if (IS_ERR(inode))
3610 goto out_unlock;
3611
Jim Owens0279b4c2009-02-04 09:29:13 -05003612 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04003613 if (err) {
3614 drop_inode = 1;
3615 goto out_unlock;
3616 }
3617
Josef Bacik618e21d2007-07-11 10:18:17 -04003618 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003619 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003620 if (err)
3621 drop_inode = 1;
3622 else {
3623 inode->i_op = &btrfs_special_inode_operations;
3624 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04003625 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04003626 }
3627 dir->i_sb->s_dirt = 1;
3628 btrfs_update_inode_block_group(trans, inode);
3629 btrfs_update_inode_block_group(trans, dir);
3630out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003631 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003632 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003633fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04003634 if (drop_inode) {
3635 inode_dec_link_count(inode);
3636 iput(inode);
3637 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003638 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04003639 return err;
3640}
3641
Chris Mason39279cc2007-06-12 06:35:45 -04003642static int btrfs_create(struct inode *dir, struct dentry *dentry,
3643 int mode, struct nameidata *nd)
3644{
3645 struct btrfs_trans_handle *trans;
3646 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003647 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003648 int err;
3649 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05003650 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003651 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003652 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003653
Josef Bacik6a632092009-02-20 11:00:09 -05003654 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003655 if (err)
3656 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003657 trans = btrfs_start_transaction(root, 1);
3658 btrfs_set_trans_block_group(trans, dir);
3659
3660 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3661 if (err) {
3662 err = -ENOSPC;
3663 goto out_unlock;
3664 }
3665
Josef Bacikaec74772008-07-24 12:12:38 -04003666 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003667 dentry->d_name.len,
3668 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003669 objectid, BTRFS_I(dir)->block_group, mode,
3670 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003671 err = PTR_ERR(inode);
3672 if (IS_ERR(inode))
3673 goto out_unlock;
3674
Jim Owens0279b4c2009-02-04 09:29:13 -05003675 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04003676 if (err) {
3677 drop_inode = 1;
3678 goto out_unlock;
3679 }
3680
Chris Mason39279cc2007-06-12 06:35:45 -04003681 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003682 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003683 if (err)
3684 drop_inode = 1;
3685 else {
3686 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003687 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003688 inode->i_fop = &btrfs_file_operations;
3689 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003690 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003691 }
3692 dir->i_sb->s_dirt = 1;
3693 btrfs_update_inode_block_group(trans, inode);
3694 btrfs_update_inode_block_group(trans, dir);
3695out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003696 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003697 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003698fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003699 if (drop_inode) {
3700 inode_dec_link_count(inode);
3701 iput(inode);
3702 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003703 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003704 return err;
3705}
3706
3707static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
3708 struct dentry *dentry)
3709{
3710 struct btrfs_trans_handle *trans;
3711 struct btrfs_root *root = BTRFS_I(dir)->root;
3712 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003713 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05003714 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003715 int err;
3716 int drop_inode = 0;
3717
3718 if (inode->i_nlink == 0)
3719 return -ENOENT;
3720
Chris Masone02119d2008-09-05 16:13:11 -04003721 btrfs_inc_nlink(inode);
Josef Bacik6a632092009-02-20 11:00:09 -05003722 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003723 if (err)
3724 goto fail;
Chris Mason3de45862008-11-17 21:02:50 -05003725 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003726 if (err)
3727 goto fail;
3728
Chris Mason39279cc2007-06-12 06:35:45 -04003729 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003730
Chris Mason39279cc2007-06-12 06:35:45 -04003731 btrfs_set_trans_block_group(trans, dir);
3732 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04003733
Chris Mason00e4e6b2008-08-05 11:18:09 -04003734 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04003735
Chris Mason39279cc2007-06-12 06:35:45 -04003736 if (err)
3737 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003738
Chris Mason39279cc2007-06-12 06:35:45 -04003739 dir->i_sb->s_dirt = 1;
3740 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04003741 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003742
Chris Mason54aa1f42007-06-22 14:16:25 -04003743 if (err)
3744 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003745
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003746 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003747 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003748fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003749 if (drop_inode) {
3750 inode_dec_link_count(inode);
3751 iput(inode);
3752 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003753 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003754 return err;
3755}
3756
Chris Mason39279cc2007-06-12 06:35:45 -04003757static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3758{
Chris Masonb9d86662008-05-02 16:13:49 -04003759 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003760 struct btrfs_trans_handle *trans;
3761 struct btrfs_root *root = BTRFS_I(dir)->root;
3762 int err = 0;
3763 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04003764 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003765 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003766 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003767
Josef Bacik6a632092009-02-20 11:00:09 -05003768 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003769 if (err)
3770 goto out_unlock;
3771
Chris Mason39279cc2007-06-12 06:35:45 -04003772 trans = btrfs_start_transaction(root, 1);
3773 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04003774
Chris Mason39279cc2007-06-12 06:35:45 -04003775 if (IS_ERR(trans)) {
3776 err = PTR_ERR(trans);
3777 goto out_unlock;
3778 }
3779
3780 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3781 if (err) {
3782 err = -ENOSPC;
3783 goto out_unlock;
3784 }
3785
Josef Bacikaec74772008-07-24 12:12:38 -04003786 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003787 dentry->d_name.len,
3788 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003789 BTRFS_I(dir)->block_group, S_IFDIR | mode,
3790 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003791 if (IS_ERR(inode)) {
3792 err = PTR_ERR(inode);
3793 goto out_fail;
3794 }
Chris Mason5f39d392007-10-15 16:14:19 -04003795
Chris Mason39279cc2007-06-12 06:35:45 -04003796 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04003797
Jim Owens0279b4c2009-02-04 09:29:13 -05003798 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04003799 if (err)
3800 goto out_fail;
3801
Chris Mason39279cc2007-06-12 06:35:45 -04003802 inode->i_op = &btrfs_dir_inode_operations;
3803 inode->i_fop = &btrfs_dir_file_operations;
3804 btrfs_set_trans_block_group(trans, inode);
3805
Chris Masondbe674a2008-07-17 12:54:05 -04003806 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003807 err = btrfs_update_inode(trans, root, inode);
3808 if (err)
3809 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003810
Chris Masone02119d2008-09-05 16:13:11 -04003811 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3812 inode, dentry->d_name.name,
3813 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003814 if (err)
3815 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003816
Chris Mason39279cc2007-06-12 06:35:45 -04003817 d_instantiate(dentry, inode);
3818 drop_on_err = 0;
3819 dir->i_sb->s_dirt = 1;
3820 btrfs_update_inode_block_group(trans, inode);
3821 btrfs_update_inode_block_group(trans, dir);
3822
3823out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003824 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003825 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04003826
Chris Mason39279cc2007-06-12 06:35:45 -04003827out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003828 if (drop_on_err)
3829 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003830 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003831 return err;
3832}
3833
Chris Masond352ac62008-09-29 15:18:18 -04003834/* helper for btfs_get_extent. Given an existing extent in the tree,
3835 * and an extent that you want to insert, deal with overlap and insert
3836 * the new extent into the tree.
3837 */
Chris Mason3b951512008-04-17 11:29:12 -04003838static int merge_extent_mapping(struct extent_map_tree *em_tree,
3839 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003840 struct extent_map *em,
3841 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04003842{
3843 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04003844
Chris Masone6dcd2d2008-07-17 12:53:50 -04003845 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
3846 start_diff = map_start - em->start;
3847 em->start = map_start;
3848 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04003849 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
3850 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003851 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04003852 em->block_len -= start_diff;
3853 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003854 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04003855}
3856
Chris Masonc8b97812008-10-29 14:49:59 -04003857static noinline int uncompress_inline(struct btrfs_path *path,
3858 struct inode *inode, struct page *page,
3859 size_t pg_offset, u64 extent_offset,
3860 struct btrfs_file_extent_item *item)
3861{
3862 int ret;
3863 struct extent_buffer *leaf = path->nodes[0];
3864 char *tmp;
3865 size_t max_size;
3866 unsigned long inline_size;
3867 unsigned long ptr;
3868
3869 WARN_ON(pg_offset != 0);
3870 max_size = btrfs_file_extent_ram_bytes(leaf, item);
3871 inline_size = btrfs_file_extent_inline_item_len(leaf,
3872 btrfs_item_nr(leaf, path->slots[0]));
3873 tmp = kmalloc(inline_size, GFP_NOFS);
3874 ptr = btrfs_file_extent_inline_start(item);
3875
3876 read_extent_buffer(leaf, tmp, ptr, inline_size);
3877
Chris Mason5b050f02008-11-11 09:34:41 -05003878 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04003879 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
3880 inline_size, max_size);
3881 if (ret) {
3882 char *kaddr = kmap_atomic(page, KM_USER0);
3883 unsigned long copy_size = min_t(u64,
3884 PAGE_CACHE_SIZE - pg_offset,
3885 max_size - extent_offset);
3886 memset(kaddr + pg_offset, 0, copy_size);
3887 kunmap_atomic(kaddr, KM_USER0);
3888 }
3889 kfree(tmp);
3890 return 0;
3891}
3892
Chris Masond352ac62008-09-29 15:18:18 -04003893/*
3894 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05003895 * the ugly parts come from merging extents from the disk with the in-ram
3896 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04003897 * where the in-ram extents might be locked pending data=ordered completion.
3898 *
3899 * This also copies inline extents directly into the page.
3900 */
Chris Masond3977122009-01-05 21:25:51 -05003901
Chris Masona52d9a82007-08-27 16:49:44 -04003902struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05003903 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04003904 int create)
3905{
3906 int ret;
3907 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04003908 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04003909 u64 extent_start = 0;
3910 u64 extent_end = 0;
3911 u64 objectid = inode->i_ino;
3912 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04003913 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04003914 struct btrfs_root *root = BTRFS_I(inode)->root;
3915 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04003916 struct extent_buffer *leaf;
3917 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04003918 struct extent_map *em = NULL;
3919 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05003920 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003921 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003922 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04003923
Chris Masona52d9a82007-08-27 16:49:44 -04003924again:
Chris Masond1310b22008-01-24 16:13:08 -05003925 spin_lock(&em_tree->lock);
3926 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04003927 if (em)
3928 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003929 spin_unlock(&em_tree->lock);
3930
Chris Masona52d9a82007-08-27 16:49:44 -04003931 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04003932 if (em->start > start || em->start + em->len <= start)
3933 free_extent_map(em);
3934 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05003935 free_extent_map(em);
3936 else
3937 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003938 }
Chris Masond1310b22008-01-24 16:13:08 -05003939 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04003940 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05003941 err = -ENOMEM;
3942 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003943 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003944 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003945 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05003946 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05003947 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04003948 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04003949
3950 if (!path) {
3951 path = btrfs_alloc_path();
3952 BUG_ON(!path);
3953 }
3954
Chris Mason179e29e2007-11-01 11:28:41 -04003955 ret = btrfs_lookup_file_extent(trans, root, path,
3956 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04003957 if (ret < 0) {
3958 err = ret;
3959 goto out;
3960 }
3961
3962 if (ret != 0) {
3963 if (path->slots[0] == 0)
3964 goto not_found;
3965 path->slots[0]--;
3966 }
3967
Chris Mason5f39d392007-10-15 16:14:19 -04003968 leaf = path->nodes[0];
3969 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04003970 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04003971 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04003972 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3973 found_type = btrfs_key_type(&found_key);
3974 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04003975 found_type != BTRFS_EXTENT_DATA_KEY) {
3976 goto not_found;
3977 }
3978
Chris Mason5f39d392007-10-15 16:14:19 -04003979 found_type = btrfs_file_extent_type(leaf, item);
3980 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003981 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04003982 if (found_type == BTRFS_FILE_EXTENT_REG ||
3983 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04003984 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04003985 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04003986 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
3987 size_t size;
3988 size = btrfs_file_extent_inline_len(leaf, item);
3989 extent_end = (extent_start + size + root->sectorsize - 1) &
3990 ~((u64)root->sectorsize - 1);
3991 }
3992
3993 if (start >= extent_end) {
3994 path->slots[0]++;
3995 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3996 ret = btrfs_next_leaf(root, path);
3997 if (ret < 0) {
3998 err = ret;
3999 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004000 }
Yan Zheng9036c102008-10-30 14:19:41 -04004001 if (ret > 0)
4002 goto not_found;
4003 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04004004 }
Yan Zheng9036c102008-10-30 14:19:41 -04004005 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4006 if (found_key.objectid != objectid ||
4007 found_key.type != BTRFS_EXTENT_DATA_KEY)
4008 goto not_found;
4009 if (start + len <= found_key.offset)
4010 goto not_found;
4011 em->start = start;
4012 em->len = found_key.offset - start;
4013 goto not_found_em;
4014 }
4015
Yan Zhengd899e052008-10-30 14:25:28 -04004016 if (found_type == BTRFS_FILE_EXTENT_REG ||
4017 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04004018 em->start = extent_start;
4019 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004020 em->orig_start = extent_start -
4021 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04004022 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4023 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004024 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04004025 goto insert;
4026 }
Chris Masonc8b97812008-10-29 14:49:59 -04004027 if (compressed) {
4028 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
4029 em->block_start = bytenr;
4030 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
4031 item);
4032 } else {
4033 bytenr += btrfs_file_extent_offset(leaf, item);
4034 em->block_start = bytenr;
4035 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04004036 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
4037 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04004038 }
Chris Masona52d9a82007-08-27 16:49:44 -04004039 goto insert;
4040 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004041 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04004042 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04004043 size_t size;
4044 size_t extent_offset;
4045 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04004046
Chris Masona52d9a82007-08-27 16:49:44 -04004047 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004048 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04004049 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04004050 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04004051 goto out;
4052 }
4053
Yan Zheng9036c102008-10-30 14:19:41 -04004054 size = btrfs_file_extent_inline_len(leaf, item);
4055 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05004056 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04004057 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04004058 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05004059 em->len = (copy_size + root->sectorsize - 1) &
4060 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004061 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004062 if (compressed)
4063 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004064 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004065 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004066 if (btrfs_file_extent_compression(leaf, item) ==
4067 BTRFS_COMPRESS_ZLIB) {
4068 ret = uncompress_inline(path, inode, page,
4069 pg_offset,
4070 extent_offset, item);
4071 BUG_ON(ret);
4072 } else {
4073 map = kmap(page);
4074 read_extent_buffer(leaf, map + pg_offset, ptr,
4075 copy_size);
4076 kunmap(page);
4077 }
Chris Mason179e29e2007-11-01 11:28:41 -04004078 flush_dcache_page(page);
4079 } else if (create && PageUptodate(page)) {
4080 if (!trans) {
4081 kunmap(page);
4082 free_extent_map(em);
4083 em = NULL;
4084 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004085 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004086 goto again;
4087 }
Chris Masonc8b97812008-10-29 14:49:59 -04004088 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004089 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004090 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004091 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004092 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004093 }
Chris Masond1310b22008-01-24 16:13:08 -05004094 set_extent_uptodate(io_tree, em->start,
4095 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004096 goto insert;
4097 } else {
Chris Masond3977122009-01-05 21:25:51 -05004098 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04004099 WARN_ON(1);
4100 }
4101not_found:
4102 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004103 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004104not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004105 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004106 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004107insert:
4108 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004109 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05004110 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
4111 "[%llu %llu]\n", (unsigned long long)em->start,
4112 (unsigned long long)em->len,
4113 (unsigned long long)start,
4114 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04004115 err = -EIO;
4116 goto out;
4117 }
Chris Masond1310b22008-01-24 16:13:08 -05004118
4119 err = 0;
4120 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004121 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004122 /* it is possible that someone inserted the extent into the tree
4123 * while we had the lock dropped. It is also possible that
4124 * an overlapping map exists in the tree
4125 */
Chris Masona52d9a82007-08-27 16:49:44 -04004126 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004127 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004128
4129 ret = 0;
4130
Chris Mason3b951512008-04-17 11:29:12 -04004131 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004132 if (existing && (existing->start > start ||
4133 existing->start + existing->len <= start)) {
4134 free_extent_map(existing);
4135 existing = NULL;
4136 }
Chris Mason3b951512008-04-17 11:29:12 -04004137 if (!existing) {
4138 existing = lookup_extent_mapping(em_tree, em->start,
4139 em->len);
4140 if (existing) {
4141 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004142 em, start,
4143 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004144 free_extent_map(existing);
4145 if (err) {
4146 free_extent_map(em);
4147 em = NULL;
4148 }
4149 } else {
4150 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04004151 free_extent_map(em);
4152 em = NULL;
4153 }
4154 } else {
4155 free_extent_map(em);
4156 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004157 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004158 }
Chris Masona52d9a82007-08-27 16:49:44 -04004159 }
Chris Masond1310b22008-01-24 16:13:08 -05004160 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004161out:
Chris Masonf4219502008-07-22 11:18:09 -04004162 if (path)
4163 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004164 if (trans) {
4165 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05004166 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04004167 err = ret;
4168 }
Chris Masona52d9a82007-08-27 16:49:44 -04004169 if (err) {
4170 free_extent_map(em);
4171 WARN_ON(1);
4172 return ERR_PTR(err);
4173 }
4174 return em;
4175}
4176
Chris Mason16432982008-04-10 10:23:21 -04004177static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4178 const struct iovec *iov, loff_t offset,
4179 unsigned long nr_segs)
4180{
Chris Masone1c4b742008-04-22 13:26:46 -04004181 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004182}
4183
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004184static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4185 __u64 start, __u64 len)
4186{
4187 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
4188}
4189
Chris Mason9ebefb182007-06-15 13:50:00 -04004190int btrfs_readpage(struct file *file, struct page *page)
4191{
Chris Masond1310b22008-01-24 16:13:08 -05004192 struct extent_io_tree *tree;
4193 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004194 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004195}
Chris Mason1832a6d2007-12-21 16:27:21 -05004196
Chris Mason39279cc2007-06-12 06:35:45 -04004197static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4198{
Chris Masond1310b22008-01-24 16:13:08 -05004199 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004200
4201
4202 if (current->flags & PF_MEMALLOC) {
4203 redirty_page_for_writepage(wbc, page);
4204 unlock_page(page);
4205 return 0;
4206 }
Chris Masond1310b22008-01-24 16:13:08 -05004207 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004208 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4209}
Chris Mason39279cc2007-06-12 06:35:45 -04004210
Chris Masonf4219502008-07-22 11:18:09 -04004211int btrfs_writepages(struct address_space *mapping,
4212 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04004213{
Chris Masond1310b22008-01-24 16:13:08 -05004214 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004215
Chris Masond1310b22008-01-24 16:13:08 -05004216 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04004217 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4218}
4219
Chris Mason3ab2fb52007-11-08 10:59:22 -05004220static int
4221btrfs_readpages(struct file *file, struct address_space *mapping,
4222 struct list_head *pages, unsigned nr_pages)
4223{
Chris Masond1310b22008-01-24 16:13:08 -05004224 struct extent_io_tree *tree;
4225 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004226 return extent_readpages(tree, mapping, pages, nr_pages,
4227 btrfs_get_extent);
4228}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004229static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004230{
Chris Masond1310b22008-01-24 16:13:08 -05004231 struct extent_io_tree *tree;
4232 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004233 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004234
Chris Masond1310b22008-01-24 16:13:08 -05004235 tree = &BTRFS_I(page->mapping->host)->io_tree;
4236 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004237 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004238 if (ret == 1) {
4239 ClearPagePrivate(page);
4240 set_page_private(page, 0);
4241 page_cache_release(page);
4242 }
4243 return ret;
4244}
Chris Mason39279cc2007-06-12 06:35:45 -04004245
Chris Masone6dcd2d2008-07-17 12:53:50 -04004246static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4247{
Chris Mason98509cf2008-09-11 15:51:43 -04004248 if (PageWriteback(page) || PageDirty(page))
4249 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05004250 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004251}
4252
Chris Masona52d9a82007-08-27 16:49:44 -04004253static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4254{
Chris Masond1310b22008-01-24 16:13:08 -05004255 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004256 struct btrfs_ordered_extent *ordered;
4257 u64 page_start = page_offset(page);
4258 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004259
Chris Masone6dcd2d2008-07-17 12:53:50 -04004260 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004261 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004262 if (offset) {
4263 btrfs_releasepage(page, GFP_NOFS);
4264 return;
4265 }
4266
4267 lock_extent(tree, page_start, page_end, GFP_NOFS);
4268 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4269 page_offset(page));
4270 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04004271 /*
4272 * IO on this page will never be started, so we need
4273 * to account for any ordered extents now
4274 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004275 clear_extent_bit(tree, page_start, page_end,
4276 EXTENT_DIRTY | EXTENT_DELALLOC |
4277 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04004278 btrfs_finish_ordered_io(page->mapping->host,
4279 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004280 btrfs_put_ordered_extent(ordered);
4281 lock_extent(tree, page_start, page_end, GFP_NOFS);
4282 }
4283 clear_extent_bit(tree, page_start, page_end,
4284 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4285 EXTENT_ORDERED,
4286 1, 1, GFP_NOFS);
4287 __btrfs_releasepage(page, GFP_NOFS);
4288
Chris Mason4a096752008-07-21 10:29:44 -04004289 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04004290 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04004291 ClearPagePrivate(page);
4292 set_page_private(page, 0);
4293 page_cache_release(page);
4294 }
Chris Mason39279cc2007-06-12 06:35:45 -04004295}
4296
Chris Mason9ebefb182007-06-15 13:50:00 -04004297/*
4298 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
4299 * called from a page fault handler when a page is first dirtied. Hence we must
4300 * be careful to check for EOF conditions here. We set the page up correctly
4301 * for a written page which means we get ENOSPC checking when writing into
4302 * holes and correct delalloc and unwritten extent mapping on filesystems that
4303 * support these features.
4304 *
4305 * We are not allowed to take the i_mutex here so we have to play games to
4306 * protect against truncate races as the page could now be beyond EOF. Because
4307 * vmtruncate() writes the inode size before removing pages, once we have the
4308 * page lock we can determine safely if the page is beyond EOF. If it is not
4309 * beyond EOF, then the page is guaranteed safe against truncation until we
4310 * unlock the page.
4311 */
4312int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4313{
Chris Mason6da6aba2007-12-18 16:15:09 -05004314 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05004315 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004316 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4317 struct btrfs_ordered_extent *ordered;
4318 char *kaddr;
4319 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04004320 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05004321 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04004322 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004323 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04004324
Josef Bacik6a632092009-02-20 11:00:09 -05004325 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05004326 if (ret)
4327 goto out;
4328
4329 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004330again:
Chris Mason9ebefb182007-06-15 13:50:00 -04004331 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04004332 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004333 page_start = page_offset(page);
4334 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004335
Chris Mason9ebefb182007-06-15 13:50:00 -04004336 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04004337 (page_start >= size)) {
Josef Bacik6a632092009-02-20 11:00:09 -05004338 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Chris Mason9ebefb182007-06-15 13:50:00 -04004339 /* page got truncated out from underneath us */
4340 goto out_unlock;
4341 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004342 wait_on_page_writeback(page);
4343
4344 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
4345 set_page_extent_mapped(page);
4346
Chris Masoneb84ae02008-07-17 13:53:27 -04004347 /*
4348 * we can't set the delalloc bits if there are pending ordered
4349 * extents. Drop our locks and wait for them to finish
4350 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004351 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4352 if (ordered) {
4353 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4354 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004355 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004356 btrfs_put_ordered_extent(ordered);
4357 goto again;
4358 }
4359
Chris Masonea8c2812008-08-04 23:17:27 -04004360 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004361 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04004362
4363 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04004364 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004365 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04004366 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04004367 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04004368
Chris Masone6dcd2d2008-07-17 12:53:50 -04004369 if (zero_start != PAGE_CACHE_SIZE) {
4370 kaddr = kmap(page);
4371 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
4372 flush_dcache_page(page);
4373 kunmap(page);
4374 }
Chris Mason247e7432008-07-17 12:53:51 -04004375 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004376 set_page_dirty(page);
4377 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04004378
4379out_unlock:
4380 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05004381out:
Chris Mason9ebefb182007-06-15 13:50:00 -04004382 return ret;
4383}
4384
Chris Mason39279cc2007-06-12 06:35:45 -04004385static void btrfs_truncate(struct inode *inode)
4386{
4387 struct btrfs_root *root = BTRFS_I(inode)->root;
4388 int ret;
4389 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004390 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04004391 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004392
4393 if (!S_ISREG(inode->i_mode))
4394 return;
4395 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4396 return;
4397
4398 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04004399 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04004400
Chris Mason39279cc2007-06-12 06:35:45 -04004401 trans = btrfs_start_transaction(root, 1);
4402 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04004403 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004404
Josef Bacik7b128762008-07-24 12:17:14 -04004405 ret = btrfs_orphan_add(trans, inode);
4406 if (ret)
4407 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004408 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04004409 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05004410 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004411 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004412
Josef Bacik7b128762008-07-24 12:17:14 -04004413 ret = btrfs_orphan_del(trans, inode);
4414 BUG_ON(ret);
4415
4416out:
4417 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004418 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004419 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004420 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004421}
4422
Sven Wegener3b963622008-06-09 21:57:42 -04004423/*
Chris Masond352ac62008-09-29 15:18:18 -04004424 * create a new subvolume directory/inode (helper for the ioctl).
4425 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05004426int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
4427 struct btrfs_root *new_root, struct dentry *dentry,
4428 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04004429{
Chris Mason39279cc2007-06-12 06:35:45 -04004430 struct inode *inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004431 int error;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004432 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004433
Josef Bacikaec74772008-07-24 12:12:38 -04004434 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004435 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04004436 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004437 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004438 inode->i_op = &btrfs_dir_inode_operations;
4439 inode->i_fop = &btrfs_dir_file_operations;
4440
Chris Mason39279cc2007-06-12 06:35:45 -04004441 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04004442 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04004443
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004444 error = btrfs_update_inode(trans, new_root, inode);
4445 if (error)
4446 return error;
4447
4448 d_instantiate(dentry, inode);
4449 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004450}
4451
Chris Masond352ac62008-09-29 15:18:18 -04004452/* helper function for file defrag and space balancing. This
4453 * forces readahead on a given range of bytes in an inode
4454 */
Chris Masonedbd8d42007-12-21 16:27:24 -05004455unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04004456 struct file_ra_state *ra, struct file *file,
4457 pgoff_t offset, pgoff_t last_index)
4458{
Chris Mason8e7bf942008-04-28 09:02:36 -04004459 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04004460
Chris Mason86479a02007-09-10 19:58:16 -04004461 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
4462 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04004463}
4464
Chris Mason39279cc2007-06-12 06:35:45 -04004465struct inode *btrfs_alloc_inode(struct super_block *sb)
4466{
4467 struct btrfs_inode *ei;
4468
4469 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
4470 if (!ei)
4471 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04004472 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004473 ei->logged_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004474 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik33268ea2008-07-24 12:16:36 -04004475 ei->i_acl = BTRFS_ACL_NOT_CACHED;
4476 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
Josef Bacik7b128762008-07-24 12:17:14 -04004477 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason39279cc2007-06-12 06:35:45 -04004478 return &ei->vfs_inode;
4479}
4480
4481void btrfs_destroy_inode(struct inode *inode)
4482{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004483 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04004484 WARN_ON(!list_empty(&inode->i_dentry));
4485 WARN_ON(inode->i_data.nrpages);
4486
Josef Bacik33268ea2008-07-24 12:16:36 -04004487 if (BTRFS_I(inode)->i_acl &&
4488 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
4489 posix_acl_release(BTRFS_I(inode)->i_acl);
4490 if (BTRFS_I(inode)->i_default_acl &&
4491 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
4492 posix_acl_release(BTRFS_I(inode)->i_default_acl);
4493
Yanbcc63ab2008-07-30 16:29:20 -04004494 spin_lock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004495 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
4496 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
4497 " list\n", inode->i_ino);
4498 dump_stack();
4499 }
Yanbcc63ab2008-07-30 16:29:20 -04004500 spin_unlock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004501
Chris Masond3977122009-01-05 21:25:51 -05004502 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004503 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
4504 if (!ordered)
4505 break;
4506 else {
Chris Masond3977122009-01-05 21:25:51 -05004507 printk(KERN_ERR "btrfs found ordered "
4508 "extent %llu %llu on inode cleanup\n",
4509 (unsigned long long)ordered->file_offset,
4510 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004511 btrfs_remove_ordered_extent(inode, ordered);
4512 btrfs_put_ordered_extent(ordered);
4513 btrfs_put_ordered_extent(ordered);
4514 }
4515 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004516 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004517 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
4518}
4519
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004520static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04004521{
4522 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
4523
4524 inode_init_once(&ei->vfs_inode);
4525}
4526
4527void btrfs_destroy_cachep(void)
4528{
4529 if (btrfs_inode_cachep)
4530 kmem_cache_destroy(btrfs_inode_cachep);
4531 if (btrfs_trans_handle_cachep)
4532 kmem_cache_destroy(btrfs_trans_handle_cachep);
4533 if (btrfs_transaction_cachep)
4534 kmem_cache_destroy(btrfs_transaction_cachep);
4535 if (btrfs_bit_radix_cachep)
4536 kmem_cache_destroy(btrfs_bit_radix_cachep);
4537 if (btrfs_path_cachep)
4538 kmem_cache_destroy(btrfs_path_cachep);
4539}
4540
Chris Mason86479a02007-09-10 19:58:16 -04004541struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04004542 unsigned long extra_flags,
Chris Mason2b1f55b2008-09-24 11:48:04 -04004543 void (*ctor)(void *))
Chris Mason92fee662007-07-25 12:31:35 -04004544{
4545 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
Chris Mason2b1f55b2008-09-24 11:48:04 -04004546 SLAB_MEM_SPREAD | extra_flags), ctor);
Chris Mason92fee662007-07-25 12:31:35 -04004547}
4548
Chris Mason39279cc2007-06-12 06:35:45 -04004549int btrfs_init_cachep(void)
4550{
Chris Mason86479a02007-09-10 19:58:16 -04004551 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04004552 sizeof(struct btrfs_inode),
4553 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04004554 if (!btrfs_inode_cachep)
4555 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004556 btrfs_trans_handle_cachep =
4557 btrfs_cache_create("btrfs_trans_handle_cache",
4558 sizeof(struct btrfs_trans_handle),
4559 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004560 if (!btrfs_trans_handle_cachep)
4561 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004562 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04004563 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04004564 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004565 if (!btrfs_transaction_cachep)
4566 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004567 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04004568 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04004569 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004570 if (!btrfs_path_cachep)
4571 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004572 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04004573 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004574 if (!btrfs_bit_radix_cachep)
4575 goto fail;
4576 return 0;
4577fail:
4578 btrfs_destroy_cachep();
4579 return -ENOMEM;
4580}
4581
4582static int btrfs_getattr(struct vfsmount *mnt,
4583 struct dentry *dentry, struct kstat *stat)
4584{
4585 struct inode *inode = dentry->d_inode;
4586 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05004587 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05004588 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004589 stat->blocks = (inode_get_bytes(inode) +
4590 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04004591 return 0;
4592}
4593
Chris Masond3977122009-01-05 21:25:51 -05004594static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4595 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004596{
4597 struct btrfs_trans_handle *trans;
4598 struct btrfs_root *root = BTRFS_I(old_dir)->root;
4599 struct inode *new_inode = new_dentry->d_inode;
4600 struct inode *old_inode = old_dentry->d_inode;
4601 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004602 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004603 int ret;
4604
Chris Mason3394e162008-11-17 20:42:26 -05004605 /* we're not allowed to rename between subvolumes */
4606 if (BTRFS_I(old_inode)->root->root_key.objectid !=
4607 BTRFS_I(new_dir)->root->root_key.objectid)
4608 return -EXDEV;
4609
Chris Mason39279cc2007-06-12 06:35:45 -04004610 if (S_ISDIR(old_inode->i_mode) && new_inode &&
4611 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
4612 return -ENOTEMPTY;
4613 }
Chris Mason5f39d392007-10-15 16:14:19 -04004614
Chris Mason0660b5a2008-11-17 20:37:39 -05004615 /* to rename a snapshot or subvolume, we need to juggle the
4616 * backrefs. This isn't coded yet
4617 */
4618 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
4619 return -EXDEV;
4620
Josef Bacik6a632092009-02-20 11:00:09 -05004621 ret = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004622 if (ret)
4623 goto out_unlock;
4624
Chris Mason39279cc2007-06-12 06:35:45 -04004625 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004626
Chris Mason39279cc2007-06-12 06:35:45 -04004627 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004628
Chris Masone02119d2008-09-05 16:13:11 -04004629 btrfs_inc_nlink(old_dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004630 old_dir->i_ctime = old_dir->i_mtime = ctime;
4631 new_dir->i_ctime = new_dir->i_mtime = ctime;
4632 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04004633
Chris Masone02119d2008-09-05 16:13:11 -04004634 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
4635 old_dentry->d_name.name,
4636 old_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004637 if (ret)
4638 goto out_fail;
4639
4640 if (new_inode) {
4641 new_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004642 ret = btrfs_unlink_inode(trans, root, new_dir,
4643 new_dentry->d_inode,
4644 new_dentry->d_name.name,
4645 new_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004646 if (ret)
4647 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04004648 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004649 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004650 if (ret)
4651 goto out_fail;
4652 }
Chris Masone02119d2008-09-05 16:13:11 -04004653
Chris Mason39279cc2007-06-12 06:35:45 -04004654 }
Chris Mason3de45862008-11-17 21:02:50 -05004655 ret = btrfs_set_inode_index(new_dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004656 if (ret)
4657 goto out_fail;
4658
Chris Masone02119d2008-09-05 16:13:11 -04004659 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
4660 old_inode, new_dentry->d_name.name,
4661 new_dentry->d_name.len, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004662 if (ret)
4663 goto out_fail;
4664
4665out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04004666 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004667out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04004668 return ret;
4669}
4670
Chris Masond352ac62008-09-29 15:18:18 -04004671/*
4672 * some fairly slow code that needs optimization. This walks the list
4673 * of all the inodes with pending delalloc and forces them to disk.
4674 */
Chris Masonea8c2812008-08-04 23:17:27 -04004675int btrfs_start_delalloc_inodes(struct btrfs_root *root)
4676{
4677 struct list_head *head = &root->fs_info->delalloc_inodes;
4678 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004679 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04004680
Yan Zhengc146afa2008-11-12 14:34:12 -05004681 if (root->fs_info->sb->s_flags & MS_RDONLY)
4682 return -EROFS;
4683
Chris Mason75eff682008-12-15 15:54:40 -05004684 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05004685 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04004686 binode = list_entry(head->next, struct btrfs_inode,
4687 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004688 inode = igrab(&binode->vfs_inode);
4689 if (!inode)
4690 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05004691 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004692 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004693 filemap_flush(inode->i_mapping);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004694 iput(inode);
4695 }
4696 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05004697 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04004698 }
Chris Mason75eff682008-12-15 15:54:40 -05004699 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04004700
4701 /* the filemap_flush will queue IO into the worker threads, but
4702 * we have to make sure the IO is actually started and that
4703 * ordered extents get created before we return
4704 */
4705 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05004706 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05004707 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004708 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05004709 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
4710 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04004711 }
4712 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04004713 return 0;
4714}
4715
Chris Mason39279cc2007-06-12 06:35:45 -04004716static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
4717 const char *symname)
4718{
4719 struct btrfs_trans_handle *trans;
4720 struct btrfs_root *root = BTRFS_I(dir)->root;
4721 struct btrfs_path *path;
4722 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05004723 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004724 int err;
4725 int drop_inode = 0;
4726 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004727 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04004728 int name_len;
4729 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04004730 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004731 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04004732 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05004733 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004734
4735 name_len = strlen(symname) + 1;
4736 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
4737 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05004738
Josef Bacik6a632092009-02-20 11:00:09 -05004739 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004740 if (err)
4741 goto out_fail;
4742
Chris Mason39279cc2007-06-12 06:35:45 -04004743 trans = btrfs_start_transaction(root, 1);
4744 btrfs_set_trans_block_group(trans, dir);
4745
4746 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4747 if (err) {
4748 err = -ENOSPC;
4749 goto out_unlock;
4750 }
4751
Josef Bacikaec74772008-07-24 12:12:38 -04004752 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004753 dentry->d_name.len,
4754 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004755 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
4756 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004757 err = PTR_ERR(inode);
4758 if (IS_ERR(inode))
4759 goto out_unlock;
4760
Jim Owens0279b4c2009-02-04 09:29:13 -05004761 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004762 if (err) {
4763 drop_inode = 1;
4764 goto out_unlock;
4765 }
4766
Chris Mason39279cc2007-06-12 06:35:45 -04004767 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004768 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004769 if (err)
4770 drop_inode = 1;
4771 else {
4772 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004773 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004774 inode->i_fop = &btrfs_file_operations;
4775 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004776 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004777 }
4778 dir->i_sb->s_dirt = 1;
4779 btrfs_update_inode_block_group(trans, inode);
4780 btrfs_update_inode_block_group(trans, dir);
4781 if (drop_inode)
4782 goto out_unlock;
4783
4784 path = btrfs_alloc_path();
4785 BUG_ON(!path);
4786 key.objectid = inode->i_ino;
4787 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004788 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
4789 datasize = btrfs_file_extent_calc_inline_size(name_len);
4790 err = btrfs_insert_empty_item(trans, root, path, &key,
4791 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04004792 if (err) {
4793 drop_inode = 1;
4794 goto out_unlock;
4795 }
Chris Mason5f39d392007-10-15 16:14:19 -04004796 leaf = path->nodes[0];
4797 ei = btrfs_item_ptr(leaf, path->slots[0],
4798 struct btrfs_file_extent_item);
4799 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
4800 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04004801 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04004802 btrfs_set_file_extent_encryption(leaf, ei, 0);
4803 btrfs_set_file_extent_compression(leaf, ei, 0);
4804 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
4805 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
4806
Chris Mason39279cc2007-06-12 06:35:45 -04004807 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04004808 write_extent_buffer(leaf, symname, ptr, name_len);
4809 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004810 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04004811
Chris Mason39279cc2007-06-12 06:35:45 -04004812 inode->i_op = &btrfs_symlink_inode_operations;
4813 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04004814 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04004815 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04004816 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04004817 err = btrfs_update_inode(trans, root, inode);
4818 if (err)
4819 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004820
4821out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004822 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004823 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004824out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004825 if (drop_inode) {
4826 inode_dec_link_count(inode);
4827 iput(inode);
4828 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004829 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004830 return err;
4831}
Chris Mason16432982008-04-10 10:23:21 -04004832
Yan Zhengd899e052008-10-30 14:25:28 -04004833static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
4834 u64 alloc_hint, int mode)
4835{
4836 struct btrfs_trans_handle *trans;
4837 struct btrfs_root *root = BTRFS_I(inode)->root;
4838 struct btrfs_key ins;
4839 u64 alloc_size;
4840 u64 cur_offset = start;
4841 u64 num_bytes = end - start;
4842 int ret = 0;
4843
4844 trans = btrfs_join_transaction(root, 1);
4845 BUG_ON(!trans);
4846 btrfs_set_trans_block_group(trans, inode);
4847
4848 while (num_bytes > 0) {
4849 alloc_size = min(num_bytes, root->fs_info->max_extent);
4850 ret = btrfs_reserve_extent(trans, root, alloc_size,
4851 root->sectorsize, 0, alloc_hint,
4852 (u64)-1, &ins, 1);
4853 if (ret) {
4854 WARN_ON(1);
4855 goto out;
4856 }
4857 ret = insert_reserved_file_extent(trans, inode,
4858 cur_offset, ins.objectid,
4859 ins.offset, ins.offset,
4860 ins.offset, 0, 0, 0,
4861 BTRFS_FILE_EXTENT_PREALLOC);
4862 BUG_ON(ret);
4863 num_bytes -= ins.offset;
4864 cur_offset += ins.offset;
4865 alloc_hint = ins.objectid + ins.offset;
4866 }
4867out:
4868 if (cur_offset > start) {
4869 inode->i_ctime = CURRENT_TIME;
4870 btrfs_set_flag(inode, PREALLOC);
4871 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
4872 cur_offset > i_size_read(inode))
4873 btrfs_i_size_write(inode, cur_offset);
4874 ret = btrfs_update_inode(trans, root, inode);
4875 BUG_ON(ret);
4876 }
4877
4878 btrfs_end_transaction(trans, root);
4879 return ret;
4880}
4881
4882static long btrfs_fallocate(struct inode *inode, int mode,
4883 loff_t offset, loff_t len)
4884{
4885 u64 cur_offset;
4886 u64 last_byte;
4887 u64 alloc_start;
4888 u64 alloc_end;
4889 u64 alloc_hint = 0;
4890 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
4891 struct extent_map *em;
4892 int ret;
4893
4894 alloc_start = offset & ~mask;
4895 alloc_end = (offset + len + mask) & ~mask;
4896
4897 mutex_lock(&inode->i_mutex);
4898 if (alloc_start > inode->i_size) {
4899 ret = btrfs_cont_expand(inode, alloc_start);
4900 if (ret)
4901 goto out;
4902 }
4903
4904 while (1) {
4905 struct btrfs_ordered_extent *ordered;
4906 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start,
4907 alloc_end - 1, GFP_NOFS);
4908 ordered = btrfs_lookup_first_ordered_extent(inode,
4909 alloc_end - 1);
4910 if (ordered &&
4911 ordered->file_offset + ordered->len > alloc_start &&
4912 ordered->file_offset < alloc_end) {
4913 btrfs_put_ordered_extent(ordered);
4914 unlock_extent(&BTRFS_I(inode)->io_tree,
4915 alloc_start, alloc_end - 1, GFP_NOFS);
4916 btrfs_wait_ordered_range(inode, alloc_start,
4917 alloc_end - alloc_start);
4918 } else {
4919 if (ordered)
4920 btrfs_put_ordered_extent(ordered);
4921 break;
4922 }
4923 }
4924
4925 cur_offset = alloc_start;
4926 while (1) {
4927 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4928 alloc_end - cur_offset, 0);
4929 BUG_ON(IS_ERR(em) || !em);
4930 last_byte = min(extent_map_end(em), alloc_end);
4931 last_byte = (last_byte + mask) & ~mask;
4932 if (em->block_start == EXTENT_MAP_HOLE) {
4933 ret = prealloc_file_range(inode, cur_offset,
4934 last_byte, alloc_hint, mode);
4935 if (ret < 0) {
4936 free_extent_map(em);
4937 break;
4938 }
4939 }
4940 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
4941 alloc_hint = em->block_start;
4942 free_extent_map(em);
4943
4944 cur_offset = last_byte;
4945 if (cur_offset >= alloc_end) {
4946 ret = 0;
4947 break;
4948 }
4949 }
4950 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, alloc_end - 1,
4951 GFP_NOFS);
4952out:
4953 mutex_unlock(&inode->i_mutex);
4954 return ret;
4955}
4956
Chris Masone6dcd2d2008-07-17 12:53:50 -04004957static int btrfs_set_page_dirty(struct page *page)
4958{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004959 return __set_page_dirty_nobuffers(page);
4960}
4961
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004962static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05004963{
4964 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
4965 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04004966 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05004967}
Chris Mason39279cc2007-06-12 06:35:45 -04004968
4969static struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05004970 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04004971 .lookup = btrfs_lookup,
4972 .create = btrfs_create,
4973 .unlink = btrfs_unlink,
4974 .link = btrfs_link,
4975 .mkdir = btrfs_mkdir,
4976 .rmdir = btrfs_rmdir,
4977 .rename = btrfs_rename,
4978 .symlink = btrfs_symlink,
4979 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04004980 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004981 .setxattr = btrfs_setxattr,
4982 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05004983 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004984 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05004985 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004986};
Chris Mason39279cc2007-06-12 06:35:45 -04004987static struct inode_operations btrfs_dir_ro_inode_operations = {
4988 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05004989 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004990};
Chris Mason39279cc2007-06-12 06:35:45 -04004991static struct file_operations btrfs_dir_file_operations = {
4992 .llseek = generic_file_llseek,
4993 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01004994 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004995 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004996#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004997 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004998#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04004999 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04005000 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04005001};
5002
Chris Masond1310b22008-01-24 16:13:08 -05005003static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04005004 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05005005 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04005006 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005007 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005008 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04005009 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04005010 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05005011 .set_bit_hook = btrfs_set_bit_hook,
5012 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005013};
5014
Chris Mason35054392009-01-21 13:11:13 -05005015/*
5016 * btrfs doesn't support the bmap operation because swapfiles
5017 * use bmap to make a mapping of extents in the file. They assume
5018 * these extents won't change over the life of the file and they
5019 * use the bmap result to do IO directly to the drive.
5020 *
5021 * the btrfs bmap call would return logical addresses that aren't
5022 * suitable for IO and they also will change frequently as COW
5023 * operations happen. So, swapfile + btrfs == corruption.
5024 *
5025 * For now we're avoiding this by dropping bmap.
5026 */
Chris Mason39279cc2007-06-12 06:35:45 -04005027static struct address_space_operations btrfs_aops = {
5028 .readpage = btrfs_readpage,
5029 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04005030 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05005031 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04005032 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04005033 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04005034 .invalidatepage = btrfs_invalidatepage,
5035 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005036 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04005037};
5038
5039static struct address_space_operations btrfs_symlink_aops = {
5040 .readpage = btrfs_readpage,
5041 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04005042 .invalidatepage = btrfs_invalidatepage,
5043 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04005044};
5045
5046static struct inode_operations btrfs_file_inode_operations = {
5047 .truncate = btrfs_truncate,
5048 .getattr = btrfs_getattr,
5049 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005050 .setxattr = btrfs_setxattr,
5051 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005052 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005053 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005054 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04005055 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05005056 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04005057};
Josef Bacik618e21d2007-07-11 10:18:17 -04005058static struct inode_operations btrfs_special_inode_operations = {
5059 .getattr = btrfs_getattr,
5060 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05005061 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005062 .setxattr = btrfs_setxattr,
5063 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04005064 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005065 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005066};
Chris Mason39279cc2007-06-12 06:35:45 -04005067static struct inode_operations btrfs_symlink_inode_operations = {
5068 .readlink = generic_readlink,
5069 .follow_link = page_follow_link_light,
5070 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05005071 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05005072 .setxattr = btrfs_setxattr,
5073 .getxattr = btrfs_getxattr,
5074 .listxattr = btrfs_listxattr,
5075 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04005076};