blob: 2ed2deacde902d0fd5f0ff9ca95ea3b722ef5ad5 [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>
Chris Mason92fee662007-07-25 12:31:35 -040037#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050038#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040039#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040040#include <linux/falloc.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 "compat.h"
51#include "tree-log.h"
Yan Zheng5b84e8d2008-10-09 11:46:19 -040052#include "ref-cache.h"
Chris Masonc8b97812008-10-29 14:49:59 -040053#include "compression.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
Chris Masond352ac62008-09-29 15:18:18 -040094/*
95 * a very lame attempt at stopping writes when the FS is 85% full. There
96 * are countless ways this is incorrect, but it is better than nothing.
97 */
Chris Mason1832a6d2007-12-21 16:27:21 -050098int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
99 int for_del)
100{
Chris Masona2135012008-06-25 16:01:30 -0400101 u64 total;
102 u64 used;
Chris Mason1832a6d2007-12-21 16:27:21 -0500103 u64 thresh;
Chris Masonbcbfce82008-04-22 13:26:47 -0400104 unsigned long flags;
Chris Mason1832a6d2007-12-21 16:27:21 -0500105 int ret = 0;
106
Chris Masona2135012008-06-25 16:01:30 -0400107 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
108 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
109 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
Chris Mason1832a6d2007-12-21 16:27:21 -0500110 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -0500111 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -0500112 else
Chris Masonf9ef6602008-01-03 09:22:38 -0500113 thresh = total * 85;
114
115 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -0500116
Chris Mason1832a6d2007-12-21 16:27:21 -0500117 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
118 ret = -ENOSPC;
Chris Masonbcbfce82008-04-22 13:26:47 -0400119 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -0500120 return ret;
121}
122
Chris Masond352ac62008-09-29 15:18:18 -0400123/*
Chris Masonc8b97812008-10-29 14:49:59 -0400124 * this does all the hard work for inserting an inline extent into
125 * the btree. The caller should have done a btrfs_drop_extents so that
126 * no overlapping inline items exist in the btree
127 */
128static int noinline insert_inline_extent(struct btrfs_trans_handle *trans,
129 struct btrfs_root *root, struct inode *inode,
130 u64 start, size_t size, size_t compressed_size,
131 struct page **compressed_pages)
132{
133 struct btrfs_key key;
134 struct btrfs_path *path;
135 struct extent_buffer *leaf;
136 struct page *page = NULL;
137 char *kaddr;
138 unsigned long ptr;
139 struct btrfs_file_extent_item *ei;
140 int err = 0;
141 int ret;
142 size_t cur_size = size;
143 size_t datasize;
144 unsigned long offset;
145 int use_compress = 0;
146
147 if (compressed_size && compressed_pages) {
148 use_compress = 1;
149 cur_size = compressed_size;
150 }
151
152 path = btrfs_alloc_path(); if (!path)
153 return -ENOMEM;
154
155 btrfs_set_trans_block_group(trans, inode);
156
157 key.objectid = inode->i_ino;
158 key.offset = start;
159 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
160 inode_add_bytes(inode, size);
161 datasize = btrfs_file_extent_calc_inline_size(cur_size);
162
163 inode_add_bytes(inode, size);
164 ret = btrfs_insert_empty_item(trans, root, path, &key,
165 datasize);
166 BUG_ON(ret);
167 if (ret) {
168 err = ret;
169 printk("got bad ret %d\n", ret);
170 goto fail;
171 }
172 leaf = path->nodes[0];
173 ei = btrfs_item_ptr(leaf, path->slots[0],
174 struct btrfs_file_extent_item);
175 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
176 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
177 btrfs_set_file_extent_encryption(leaf, ei, 0);
178 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
179 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
180 ptr = btrfs_file_extent_inline_start(ei);
181
182 if (use_compress) {
183 struct page *cpage;
184 int i = 0;
185 while(compressed_size > 0) {
186 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500187 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400188 PAGE_CACHE_SIZE);
189
190 kaddr = kmap(cpage);
191 write_extent_buffer(leaf, kaddr, ptr, cur_size);
192 kunmap(cpage);
193
194 i++;
195 ptr += cur_size;
196 compressed_size -= cur_size;
197 }
198 btrfs_set_file_extent_compression(leaf, ei,
199 BTRFS_COMPRESS_ZLIB);
200 } else {
201 page = find_get_page(inode->i_mapping,
202 start >> PAGE_CACHE_SHIFT);
203 btrfs_set_file_extent_compression(leaf, ei, 0);
204 kaddr = kmap_atomic(page, KM_USER0);
205 offset = start & (PAGE_CACHE_SIZE - 1);
206 write_extent_buffer(leaf, kaddr + offset, ptr, size);
207 kunmap_atomic(kaddr, KM_USER0);
208 page_cache_release(page);
209 }
210 btrfs_mark_buffer_dirty(leaf);
211 btrfs_free_path(path);
212
213 BTRFS_I(inode)->disk_i_size = inode->i_size;
214 btrfs_update_inode(trans, root, inode);
215 return 0;
216fail:
217 btrfs_free_path(path);
218 return err;
219}
220
221
222/*
223 * conditionally insert an inline extent into the file. This
224 * does the checks required to make sure the data is small enough
225 * to fit as an inline extent.
226 */
227static int cow_file_range_inline(struct btrfs_trans_handle *trans,
228 struct btrfs_root *root,
229 struct inode *inode, u64 start, u64 end,
230 size_t compressed_size,
231 struct page **compressed_pages)
232{
233 u64 isize = i_size_read(inode);
234 u64 actual_end = min(end + 1, isize);
235 u64 inline_len = actual_end - start;
236 u64 aligned_end = (end + root->sectorsize - 1) &
237 ~((u64)root->sectorsize - 1);
238 u64 hint_byte;
239 u64 data_len = inline_len;
240 int ret;
241
242 if (compressed_size)
243 data_len = compressed_size;
244
245 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400246 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400247 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
248 (!compressed_size &&
249 (actual_end & (root->sectorsize - 1)) == 0) ||
250 end + 1 < isize ||
251 data_len > root->fs_info->max_inline) {
252 return 1;
253 }
254
Chris Masonc8b97812008-10-29 14:49:59 -0400255 ret = btrfs_drop_extents(trans, root, inode, start,
Chris Mason70b99e62008-10-31 12:46:39 -0400256 aligned_end, start, &hint_byte);
Chris Masonc8b97812008-10-29 14:49:59 -0400257 BUG_ON(ret);
258
259 if (isize > actual_end)
260 inline_len = min_t(u64, isize, actual_end);
261 ret = insert_inline_extent(trans, root, inode, start,
262 inline_len, compressed_size,
263 compressed_pages);
264 BUG_ON(ret);
265 btrfs_drop_extent_cache(inode, start, aligned_end, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400266 return 0;
267}
268
Chris Mason771ed682008-11-06 22:02:51 -0500269struct async_extent {
270 u64 start;
271 u64 ram_size;
272 u64 compressed_size;
273 struct page **pages;
274 unsigned long nr_pages;
275 struct list_head list;
276};
277
278struct async_cow {
279 struct inode *inode;
280 struct btrfs_root *root;
281 struct page *locked_page;
282 u64 start;
283 u64 end;
284 struct list_head extents;
285 struct btrfs_work work;
286};
287
288static noinline int add_async_extent(struct async_cow *cow,
289 u64 start, u64 ram_size,
290 u64 compressed_size,
291 struct page **pages,
292 unsigned long nr_pages)
293{
294 struct async_extent *async_extent;
295
296 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
297 async_extent->start = start;
298 async_extent->ram_size = ram_size;
299 async_extent->compressed_size = compressed_size;
300 async_extent->pages = pages;
301 async_extent->nr_pages = nr_pages;
302 list_add_tail(&async_extent->list, &cow->extents);
303 return 0;
304}
305
Chris Masonc8b97812008-10-29 14:49:59 -0400306/*
Chris Mason771ed682008-11-06 22:02:51 -0500307 * we create compressed extents in two phases. The first
308 * phase compresses a range of pages that have already been
309 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400310 *
Chris Mason771ed682008-11-06 22:02:51 -0500311 * This is done inside an ordered work queue, and the compression
312 * is spread across many cpus. The actual IO submission is step
313 * two, and the ordered work queue takes care of making sure that
314 * happens in the same order things were put onto the queue by
315 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400316 *
Chris Mason771ed682008-11-06 22:02:51 -0500317 * If this code finds it can't get good compression, it puts an
318 * entry onto the work queue to write the uncompressed bytes. This
319 * makes sure that both compressed inodes and uncompressed inodes
320 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400321 */
Chris Mason771ed682008-11-06 22:02:51 -0500322static noinline int compress_file_range(struct inode *inode,
323 struct page *locked_page,
324 u64 start, u64 end,
325 struct async_cow *async_cow,
326 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400327{
328 struct btrfs_root *root = BTRFS_I(inode)->root;
329 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400330 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -0400331 u64 orig_start;
332 u64 disk_num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400333 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400334 u64 actual_end;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400335 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400336 struct page **pages = NULL;
337 unsigned long nr_pages;
338 unsigned long nr_pages_ret = 0;
339 unsigned long total_compressed = 0;
340 unsigned long total_in = 0;
341 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500342 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400343 int i;
344 int will_compress;
Chris Masonb888db22007-08-27 16:49:44 -0400345
Chris Masonc8b97812008-10-29 14:49:59 -0400346 orig_start = start;
Chris Masonbe20aa92007-12-17 20:14:01 -0500347
Chris Masonc8b97812008-10-29 14:49:59 -0400348again:
349 will_compress = 0;
350 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
351 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
352
353 actual_end = min_t(u64, i_size_read(inode), end + 1);
354 total_compressed = actual_end - start;
355
356 /* we want to make sure that amount of ram required to uncompress
357 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500358 * of a compressed extent to 128k. This is a crucial number
359 * because it also controls how easily we can spread reads across
360 * cpus for decompression.
361 *
362 * We also want to make sure the amount of IO required to do
363 * a random read is reasonably small, so we limit the size of
364 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400365 */
366 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400367 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500368 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400369 disk_num_bytes = num_bytes;
370 total_in = 0;
371 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400372
Chris Mason771ed682008-11-06 22:02:51 -0500373 /*
374 * we do compression for mount -o compress and when the
375 * inode has not been flagged as nocompress. This flag can
376 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400377 */
378 if (!btrfs_test_flag(inode, NOCOMPRESS) &&
379 btrfs_test_opt(root, COMPRESS)) {
380 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400381 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400382
Chris Masonc8b97812008-10-29 14:49:59 -0400383 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
384 total_compressed, pages,
385 nr_pages, &nr_pages_ret,
386 &total_in,
387 &total_compressed,
388 max_compressed);
389
390 if (!ret) {
391 unsigned long offset = total_compressed &
392 (PAGE_CACHE_SIZE - 1);
393 struct page *page = pages[nr_pages_ret - 1];
394 char *kaddr;
395
396 /* zero the tail end of the last page, we might be
397 * sending it down to disk
398 */
399 if (offset) {
400 kaddr = kmap_atomic(page, KM_USER0);
401 memset(kaddr + offset, 0,
402 PAGE_CACHE_SIZE - offset);
403 kunmap_atomic(kaddr, KM_USER0);
404 }
405 will_compress = 1;
406 }
407 }
408 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500409 trans = btrfs_join_transaction(root, 1);
410 BUG_ON(!trans);
411 btrfs_set_trans_block_group(trans, inode);
412
Chris Masonc8b97812008-10-29 14:49:59 -0400413 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500414 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400415 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500416 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400417 */
418 ret = cow_file_range_inline(trans, root, inode,
419 start, end, 0, NULL);
420 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500421 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400422 ret = cow_file_range_inline(trans, root, inode,
423 start, end,
424 total_compressed, pages);
425 }
Chris Mason771ed682008-11-06 22:02:51 -0500426 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400427 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500428 /*
429 * inline extent creation worked, we don't need
430 * to create any more async work items. Unlock
431 * and free up our temp pages.
432 */
Chris Masonc8b97812008-10-29 14:49:59 -0400433 extent_clear_unlock_delalloc(inode,
434 &BTRFS_I(inode)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -0500435 start, end, NULL, 1, 0,
436 0, 1, 1, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400437 ret = 0;
438 goto free_pages_out;
439 }
440 }
441
442 if (will_compress) {
443 /*
444 * we aren't doing an inline extent round the compressed size
445 * up to a block size boundary so the allocator does sane
446 * things
447 */
448 total_compressed = (total_compressed + blocksize - 1) &
449 ~(blocksize - 1);
450
451 /*
452 * one last check to make sure the compression is really a
453 * win, compare the page count read with the blocks on disk
454 */
455 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
456 ~(PAGE_CACHE_SIZE - 1);
457 if (total_compressed >= total_in) {
458 will_compress = 0;
459 } else {
460 disk_num_bytes = total_compressed;
461 num_bytes = total_in;
462 }
463 }
464 if (!will_compress && pages) {
465 /*
466 * the compression code ran but failed to make things smaller,
467 * free any pages it allocated and our page pointer array
468 */
469 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400470 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400471 page_cache_release(pages[i]);
472 }
473 kfree(pages);
474 pages = NULL;
475 total_compressed = 0;
476 nr_pages_ret = 0;
477
478 /* flag the file so we don't compress in the future */
479 btrfs_set_flag(inode, NOCOMPRESS);
480 }
Chris Mason771ed682008-11-06 22:02:51 -0500481 if (will_compress) {
482 *num_added += 1;
483
484 /* the async work queues will take care of doing actual
485 * allocation on disk for these compressed pages,
486 * and will submit them to the elevator.
487 */
488 add_async_extent(async_cow, start, num_bytes,
489 total_compressed, pages, nr_pages_ret);
490
491 if (start + num_bytes < end) {
492 start += num_bytes;
493 pages = NULL;
494 cond_resched();
495 goto again;
496 }
497 } else {
498 /*
499 * No compression, but we still need to write the pages in
500 * the file we've been given so far. redirty the locked
501 * page if it corresponds to our extent and set things up
502 * for the async work queue to run cow_file_range to do
503 * the normal delalloc dance
504 */
505 if (page_offset(locked_page) >= start &&
506 page_offset(locked_page) <= end) {
507 __set_page_dirty_nobuffers(locked_page);
508 /* unlocked later on in the async handlers */
509 }
510 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
511 *num_added += 1;
512 }
513
514out:
515 return 0;
516
517free_pages_out:
518 for (i = 0; i < nr_pages_ret; i++) {
519 WARN_ON(pages[i]->mapping);
520 page_cache_release(pages[i]);
521 }
522 if (pages)
523 kfree(pages);
524
525 goto out;
526}
527
528/*
529 * phase two of compressed writeback. This is the ordered portion
530 * of the code, which only gets called in the order the work was
531 * queued. We walk all the async extents created by compress_file_range
532 * and send them down to the disk.
533 */
534static noinline int submit_compressed_extents(struct inode *inode,
535 struct async_cow *async_cow)
536{
537 struct async_extent *async_extent;
538 u64 alloc_hint = 0;
539 struct btrfs_trans_handle *trans;
540 struct btrfs_key ins;
541 struct extent_map *em;
542 struct btrfs_root *root = BTRFS_I(inode)->root;
543 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
544 struct extent_io_tree *io_tree;
545 int ret;
546
547 if (list_empty(&async_cow->extents))
548 return 0;
549
550 trans = btrfs_join_transaction(root, 1);
551
552 while(!list_empty(&async_cow->extents)) {
553 async_extent = list_entry(async_cow->extents.next,
554 struct async_extent, list);
555 list_del(&async_extent->list);
556
557 io_tree = &BTRFS_I(inode)->io_tree;
558
559 /* did the compression code fall back to uncompressed IO? */
560 if (!async_extent->pages) {
561 int page_started = 0;
562 unsigned long nr_written = 0;
563
564 lock_extent(io_tree, async_extent->start,
565 async_extent->start + async_extent->ram_size - 1,
566 GFP_NOFS);
567
568 /* allocate blocks */
569 cow_file_range(inode, async_cow->locked_page,
570 async_extent->start,
571 async_extent->start +
572 async_extent->ram_size - 1,
573 &page_started, &nr_written, 0);
574
575 /*
576 * if page_started, cow_file_range inserted an
577 * inline extent and took care of all the unlocking
578 * and IO for us. Otherwise, we need to submit
579 * all those pages down to the drive.
580 */
581 if (!page_started)
582 extent_write_locked_range(io_tree,
583 inode, async_extent->start,
584 async_extent->start +
585 async_extent->ram_size - 1,
586 btrfs_get_extent,
587 WB_SYNC_ALL);
588 kfree(async_extent);
589 cond_resched();
590 continue;
591 }
592
593 lock_extent(io_tree, async_extent->start,
594 async_extent->start + async_extent->ram_size - 1,
595 GFP_NOFS);
596 /*
597 * here we're doing allocation and writeback of the
598 * compressed pages
599 */
600 btrfs_drop_extent_cache(inode, async_extent->start,
601 async_extent->start +
602 async_extent->ram_size - 1, 0);
603
604 ret = btrfs_reserve_extent(trans, root,
605 async_extent->compressed_size,
606 async_extent->compressed_size,
607 0, alloc_hint,
608 (u64)-1, &ins, 1);
609 BUG_ON(ret);
610 em = alloc_extent_map(GFP_NOFS);
611 em->start = async_extent->start;
612 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500613 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500614
615 em->block_start = ins.objectid;
616 em->block_len = ins.offset;
617 em->bdev = root->fs_info->fs_devices->latest_bdev;
618 set_bit(EXTENT_FLAG_PINNED, &em->flags);
619 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
620
621 while(1) {
622 spin_lock(&em_tree->lock);
623 ret = add_extent_mapping(em_tree, em);
624 spin_unlock(&em_tree->lock);
625 if (ret != -EEXIST) {
626 free_extent_map(em);
627 break;
628 }
629 btrfs_drop_extent_cache(inode, async_extent->start,
630 async_extent->start +
631 async_extent->ram_size - 1, 0);
632 }
633
634 ret = btrfs_add_ordered_extent(inode, async_extent->start,
635 ins.objectid,
636 async_extent->ram_size,
637 ins.offset,
638 BTRFS_ORDERED_COMPRESSED);
639 BUG_ON(ret);
640
641 btrfs_end_transaction(trans, root);
642
643 /*
644 * clear dirty, set writeback and unlock the pages.
645 */
646 extent_clear_unlock_delalloc(inode,
647 &BTRFS_I(inode)->io_tree,
648 async_extent->start,
649 async_extent->start +
650 async_extent->ram_size - 1,
651 NULL, 1, 1, 0, 1, 1, 0);
652
653 ret = btrfs_submit_compressed_write(inode,
654 async_extent->start,
655 async_extent->ram_size,
656 ins.objectid,
657 ins.offset, async_extent->pages,
658 async_extent->nr_pages);
659
660 BUG_ON(ret);
661 trans = btrfs_join_transaction(root, 1);
662 alloc_hint = ins.objectid + ins.offset;
663 kfree(async_extent);
664 cond_resched();
665 }
666
667 btrfs_end_transaction(trans, root);
668 return 0;
669}
670
671/*
672 * when extent_io.c finds a delayed allocation range in the file,
673 * the call backs end up in this code. The basic idea is to
674 * allocate extents on disk for the range, and create ordered data structs
675 * in ram to track those extents.
676 *
677 * locked_page is the page that writepage had locked already. We use
678 * it to make sure we don't do extra locks or unlocks.
679 *
680 * *page_started is set to one if we unlock locked_page and do everything
681 * required to start IO on it. It may be clean and already done with
682 * IO when we return.
683 */
684static noinline int cow_file_range(struct inode *inode,
685 struct page *locked_page,
686 u64 start, u64 end, int *page_started,
687 unsigned long *nr_written,
688 int unlock)
689{
690 struct btrfs_root *root = BTRFS_I(inode)->root;
691 struct btrfs_trans_handle *trans;
692 u64 alloc_hint = 0;
693 u64 num_bytes;
694 unsigned long ram_size;
695 u64 disk_num_bytes;
696 u64 cur_alloc_size;
697 u64 blocksize = root->sectorsize;
698 u64 actual_end;
699 struct btrfs_key ins;
700 struct extent_map *em;
701 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
702 int ret = 0;
703
704 trans = btrfs_join_transaction(root, 1);
705 BUG_ON(!trans);
706 btrfs_set_trans_block_group(trans, inode);
707
708 actual_end = min_t(u64, i_size_read(inode), end + 1);
709
710 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
711 num_bytes = max(blocksize, num_bytes);
712 disk_num_bytes = num_bytes;
713 ret = 0;
714
715 if (start == 0) {
716 /* lets try to make an inline extent */
717 ret = cow_file_range_inline(trans, root, inode,
718 start, end, 0, NULL);
719 if (ret == 0) {
720 extent_clear_unlock_delalloc(inode,
721 &BTRFS_I(inode)->io_tree,
722 start, end, NULL, 1, 1,
723 1, 1, 1, 1);
724 *nr_written = *nr_written +
725 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
726 *page_started = 1;
727 ret = 0;
728 goto out;
729 }
730 }
Chris Masonc8b97812008-10-29 14:49:59 -0400731
732 BUG_ON(disk_num_bytes >
733 btrfs_super_total_bytes(&root->fs_info->super_copy));
734
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400735 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400736
Chris Masonc8b97812008-10-29 14:49:59 -0400737 while(disk_num_bytes > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400738 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400739 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500740 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400741 (u64)-1, &ins, 1);
Chris Masonc59f8952007-12-17 20:14:04 -0500742 if (ret) {
Chris Mason771ed682008-11-06 22:02:51 -0500743 BUG();
Chris Masonc59f8952007-12-17 20:14:04 -0500744 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400745 em = alloc_extent_map(GFP_NOFS);
746 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500747 em->orig_start = em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400748
Chris Mason771ed682008-11-06 22:02:51 -0500749 ram_size = ins.offset;
750 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400751
Chris Masone6dcd2d2008-07-17 12:53:50 -0400752 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400753 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400754 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400755 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400756
Chris Masone6dcd2d2008-07-17 12:53:50 -0400757 while(1) {
758 spin_lock(&em_tree->lock);
759 ret = add_extent_mapping(em_tree, em);
760 spin_unlock(&em_tree->lock);
761 if (ret != -EEXIST) {
762 free_extent_map(em);
763 break;
764 }
765 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400766 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400767 }
768
Chris Mason98d20f62008-04-14 09:46:10 -0400769 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400770 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500771 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400772 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400773
774 if (disk_num_bytes < cur_alloc_size) {
775 printk("num_bytes %Lu cur_alloc %Lu\n", disk_num_bytes,
Chris Mason3b951512008-04-17 11:29:12 -0400776 cur_alloc_size);
777 break;
778 }
Chris Masonc8b97812008-10-29 14:49:59 -0400779 /* we're not doing compressed IO, don't unlock the first
780 * page (which the caller expects to stay locked), don't
781 * clear any dirty bits and don't set any writeback bits
782 */
783 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
784 start, start + ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500785 locked_page, unlock, 1,
786 1, 0, 0, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400787 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500788 num_bytes -= cur_alloc_size;
789 alloc_hint = ins.objectid + ins.offset;
790 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400791 }
Chris Masonb888db22007-08-27 16:49:44 -0400792out:
Chris Mason771ed682008-11-06 22:02:51 -0500793 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400794 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400795
Chris Masonbe20aa92007-12-17 20:14:01 -0500796 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500797}
Chris Masonc8b97812008-10-29 14:49:59 -0400798
Chris Mason771ed682008-11-06 22:02:51 -0500799/*
800 * work queue call back to started compression on a file and pages
801 */
802static noinline void async_cow_start(struct btrfs_work *work)
803{
804 struct async_cow *async_cow;
805 int num_added = 0;
806 async_cow = container_of(work, struct async_cow, work);
807
808 compress_file_range(async_cow->inode, async_cow->locked_page,
809 async_cow->start, async_cow->end, async_cow,
810 &num_added);
811 if (num_added == 0)
812 async_cow->inode = NULL;
813}
814
815/*
816 * work queue call back to submit previously compressed pages
817 */
818static noinline void async_cow_submit(struct btrfs_work *work)
819{
820 struct async_cow *async_cow;
821 struct btrfs_root *root;
822 unsigned long nr_pages;
823
824 async_cow = container_of(work, struct async_cow, work);
825
826 root = async_cow->root;
827 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
828 PAGE_CACHE_SHIFT;
829
830 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
831
832 if (atomic_read(&root->fs_info->async_delalloc_pages) <
833 5 * 1042 * 1024 &&
834 waitqueue_active(&root->fs_info->async_submit_wait))
835 wake_up(&root->fs_info->async_submit_wait);
836
837 if (async_cow->inode) {
838 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason70b99e62008-10-31 12:46:39 -0400839 }
Chris Mason771ed682008-11-06 22:02:51 -0500840}
Chris Masonc8b97812008-10-29 14:49:59 -0400841
Chris Mason771ed682008-11-06 22:02:51 -0500842static noinline void async_cow_free(struct btrfs_work *work)
843{
844 struct async_cow *async_cow;
845 async_cow = container_of(work, struct async_cow, work);
846 kfree(async_cow);
847}
848
849static int cow_file_range_async(struct inode *inode, struct page *locked_page,
850 u64 start, u64 end, int *page_started,
851 unsigned long *nr_written)
852{
853 struct async_cow *async_cow;
854 struct btrfs_root *root = BTRFS_I(inode)->root;
855 unsigned long nr_pages;
856 u64 cur_end;
857 int limit = 10 * 1024 * 1042;
858
859 if (!btrfs_test_opt(root, COMPRESS)) {
860 return cow_file_range(inode, locked_page, start, end,
861 page_started, nr_written, 1);
862 }
863
864 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED |
865 EXTENT_DELALLOC, 1, 0, GFP_NOFS);
866 while(start < end) {
867 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
868 async_cow->inode = inode;
869 async_cow->root = root;
870 async_cow->locked_page = locked_page;
871 async_cow->start = start;
872
873 if (btrfs_test_flag(inode, NOCOMPRESS))
874 cur_end = end;
875 else
876 cur_end = min(end, start + 512 * 1024 - 1);
877
878 async_cow->end = cur_end;
879 INIT_LIST_HEAD(&async_cow->extents);
880
881 async_cow->work.func = async_cow_start;
882 async_cow->work.ordered_func = async_cow_submit;
883 async_cow->work.ordered_free = async_cow_free;
884 async_cow->work.flags = 0;
885
886 while(atomic_read(&root->fs_info->async_submit_draining) &&
887 atomic_read(&root->fs_info->async_delalloc_pages)) {
888 wait_event(root->fs_info->async_submit_wait,
889 (atomic_read(&root->fs_info->async_delalloc_pages)
890 == 0));
891 }
892
893 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
894 PAGE_CACHE_SHIFT;
895 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
896
897 btrfs_queue_worker(&root->fs_info->delalloc_workers,
898 &async_cow->work);
899
900 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
901 wait_event(root->fs_info->async_submit_wait,
902 (atomic_read(&root->fs_info->async_delalloc_pages) <
903 limit));
904 }
905
906 while(atomic_read(&root->fs_info->async_submit_draining) &&
907 atomic_read(&root->fs_info->async_delalloc_pages)) {
908 wait_event(root->fs_info->async_submit_wait,
909 (atomic_read(&root->fs_info->async_delalloc_pages) ==
910 0));
911 }
912
913 *nr_written += nr_pages;
914 start = cur_end + 1;
915 }
916 *page_started = 1;
917 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500918}
919
Chris Masond352ac62008-09-29 15:18:18 -0400920/*
921 * when nowcow writeback call back. This checks for snapshots or COW copies
922 * of the extents that exist in the file, and COWs the file as required.
923 *
924 * If no cow copies or snapshots exist, we write directly to the existing
925 * blocks on disk
926 */
Chris Masonc8b97812008-10-29 14:49:59 -0400927static int run_delalloc_nocow(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -0500928 u64 start, u64 end, int *page_started, int force,
929 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -0500930{
Chris Masonbe20aa92007-12-17 20:14:01 -0500931 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400932 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -0500933 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -0500934 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -0400935 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -0500936 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -0400937 u64 cow_start;
938 u64 cur_offset;
939 u64 extent_end;
940 u64 disk_bytenr;
941 u64 num_bytes;
942 int extent_type;
943 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -0400944 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -0400945 int nocow;
946 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500947
948 path = btrfs_alloc_path();
949 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400950 trans = btrfs_join_transaction(root, 1);
951 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500952
Yan Zheng80ff3852008-10-30 14:20:02 -0400953 cow_start = (u64)-1;
954 cur_offset = start;
955 while (1) {
956 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
957 cur_offset, 0);
958 BUG_ON(ret < 0);
959 if (ret > 0 && path->slots[0] > 0 && check_prev) {
960 leaf = path->nodes[0];
961 btrfs_item_key_to_cpu(leaf, &found_key,
962 path->slots[0] - 1);
963 if (found_key.objectid == inode->i_ino &&
964 found_key.type == BTRFS_EXTENT_DATA_KEY)
965 path->slots[0]--;
966 }
967 check_prev = 0;
968next_slot:
969 leaf = path->nodes[0];
970 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
971 ret = btrfs_next_leaf(root, path);
972 if (ret < 0)
973 BUG_ON(1);
974 if (ret > 0)
975 break;
976 leaf = path->nodes[0];
977 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500978
Yan Zheng80ff3852008-10-30 14:20:02 -0400979 nocow = 0;
980 disk_bytenr = 0;
981 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500982
Yan Zheng80ff3852008-10-30 14:20:02 -0400983 if (found_key.objectid > inode->i_ino ||
984 found_key.type > BTRFS_EXTENT_DATA_KEY ||
985 found_key.offset > end)
986 break;
Chris Masonbe20aa92007-12-17 20:14:01 -0500987
Yan Zheng80ff3852008-10-30 14:20:02 -0400988 if (found_key.offset > cur_offset) {
989 extent_end = found_key.offset;
990 goto out_check;
991 }
Chris Masonc31f8832008-01-08 15:46:31 -0500992
Yan Zheng80ff3852008-10-30 14:20:02 -0400993 fi = btrfs_item_ptr(leaf, path->slots[0],
994 struct btrfs_file_extent_item);
995 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -0500996
Yan Zhengd899e052008-10-30 14:25:28 -0400997 if (extent_type == BTRFS_FILE_EXTENT_REG ||
998 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -0400999 struct btrfs_block_group_cache *block_group;
1000 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1001 extent_end = found_key.offset +
1002 btrfs_file_extent_num_bytes(leaf, fi);
1003 if (extent_end <= start) {
1004 path->slots[0]++;
1005 goto next_slot;
1006 }
1007 if (btrfs_file_extent_compression(leaf, fi) ||
1008 btrfs_file_extent_encryption(leaf, fi) ||
1009 btrfs_file_extent_other_encoding(leaf, fi))
1010 goto out_check;
1011 if (disk_bytenr == 0)
1012 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001013 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1014 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001015 if (btrfs_cross_ref_exist(trans, root, disk_bytenr))
1016 goto out_check;
1017 block_group = btrfs_lookup_block_group(root->fs_info,
1018 disk_bytenr);
1019 if (!block_group || block_group->ro)
1020 goto out_check;
1021 disk_bytenr += btrfs_file_extent_offset(leaf, fi);
1022 nocow = 1;
1023 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1024 extent_end = found_key.offset +
1025 btrfs_file_extent_inline_len(leaf, fi);
1026 extent_end = ALIGN(extent_end, root->sectorsize);
1027 } else {
1028 BUG_ON(1);
1029 }
1030out_check:
1031 if (extent_end <= start) {
1032 path->slots[0]++;
1033 goto next_slot;
1034 }
1035 if (!nocow) {
1036 if (cow_start == (u64)-1)
1037 cow_start = cur_offset;
1038 cur_offset = extent_end;
1039 if (cur_offset > end)
1040 break;
1041 path->slots[0]++;
1042 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001043 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001044
Yan Zheng7ea394f2008-08-05 13:05:02 -04001045 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001046 if (cow_start != (u64)-1) {
1047 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001048 found_key.offset - 1, page_started,
1049 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001050 BUG_ON(ret);
1051 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001052 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001053
1054 disk_bytenr += cur_offset - found_key.offset;
1055 num_bytes = min(end + 1, extent_end) - cur_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001056 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1057 struct extent_map *em;
1058 struct extent_map_tree *em_tree;
1059 em_tree = &BTRFS_I(inode)->extent_tree;
1060 em = alloc_extent_map(GFP_NOFS);
1061 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001062 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001063 em->len = num_bytes;
1064 em->block_len = num_bytes;
1065 em->block_start = disk_bytenr;
1066 em->bdev = root->fs_info->fs_devices->latest_bdev;
1067 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1068 while (1) {
1069 spin_lock(&em_tree->lock);
1070 ret = add_extent_mapping(em_tree, em);
1071 spin_unlock(&em_tree->lock);
1072 if (ret != -EEXIST) {
1073 free_extent_map(em);
1074 break;
1075 }
1076 btrfs_drop_extent_cache(inode, em->start,
1077 em->start + em->len - 1, 0);
1078 }
1079 type = BTRFS_ORDERED_PREALLOC;
1080 } else {
1081 type = BTRFS_ORDERED_NOCOW;
1082 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001083
1084 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001085 num_bytes, num_bytes, type);
1086 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001087
Yan Zhengd899e052008-10-30 14:25:28 -04001088 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
1089 cur_offset, cur_offset + num_bytes - 1,
Chris Mason771ed682008-11-06 22:02:51 -05001090 locked_page, 1, 1, 1, 0, 0, 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04001091 cur_offset = extent_end;
1092 if (cur_offset > end)
1093 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001094 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001095 btrfs_release_path(root, path);
1096
1097 if (cur_offset <= end && cow_start == (u64)-1)
1098 cow_start = cur_offset;
1099 if (cow_start != (u64)-1) {
1100 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001101 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001102 BUG_ON(ret);
1103 }
1104
1105 ret = btrfs_end_transaction(trans, root);
1106 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001107 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001108 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001109}
1110
Chris Masond352ac62008-09-29 15:18:18 -04001111/*
1112 * extent_io.c call back to do delayed allocation processing
1113 */
Chris Masonc8b97812008-10-29 14:49:59 -04001114static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001115 u64 start, u64 end, int *page_started,
1116 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001117{
1118 struct btrfs_root *root = BTRFS_I(inode)->root;
1119 int ret;
Chris Masona2135012008-06-25 16:01:30 -04001120
Yanb98b6762008-01-08 15:54:37 -05001121 if (btrfs_test_opt(root, NODATACOW) ||
1122 btrfs_test_flag(inode, NODATACOW))
Chris Masonc8b97812008-10-29 14:49:59 -04001123 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001124 page_started, 0, nr_written);
Yan Zhengd899e052008-10-30 14:25:28 -04001125 else if (btrfs_test_flag(inode, PREALLOC))
1126 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001127 page_started, 1, nr_written);
Chris Masonbe20aa92007-12-17 20:14:01 -05001128 else
Chris Mason771ed682008-11-06 22:02:51 -05001129 ret = cow_file_range_async(inode, locked_page, start, end,
1130 page_started, nr_written);
Chris Mason1832a6d2007-12-21 16:27:21 -05001131
Chris Masonb888db22007-08-27 16:49:44 -04001132 return ret;
1133}
1134
Chris Masond352ac62008-09-29 15:18:18 -04001135/*
1136 * extent_io.c set_bit_hook, used to track delayed allocation
1137 * bytes in this file, and to maintain the list of inodes that
1138 * have pending delalloc work to be done.
1139 */
Chris Mason291d6732008-01-29 15:55:23 -05001140int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001141 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001142{
Chris Masonbcbfce82008-04-22 13:26:47 -04001143 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -05001144 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001145 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001146 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -05001147 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001148 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001149 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1150 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1151 &root->fs_info->delalloc_inodes);
1152 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001153 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001154 }
1155 return 0;
1156}
1157
Chris Masond352ac62008-09-29 15:18:18 -04001158/*
1159 * extent_io.c clear_bit_hook, see set_bit_hook for why
1160 */
Chris Mason291d6732008-01-29 15:55:23 -05001161int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001162 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001163{
Chris Masonb0c68f82008-01-31 11:05:37 -05001164 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001165 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001166 unsigned long flags;
1167
1168 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -05001169 if (end - start + 1 > root->fs_info->delalloc_bytes) {
1170 printk("warning: delalloc account %Lu %Lu\n",
1171 end - start + 1, root->fs_info->delalloc_bytes);
1172 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001173 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001174 } else {
1175 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -05001176 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001177 }
Chris Masonea8c2812008-08-04 23:17:27 -04001178 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1179 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1180 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1181 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001182 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001183 }
1184 return 0;
1185}
1186
Chris Masond352ac62008-09-29 15:18:18 -04001187/*
1188 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1189 * we don't create bios that span stripes or chunks
1190 */
Chris Mason239b14b2008-03-24 15:02:07 -04001191int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001192 size_t size, struct bio *bio,
1193 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001194{
1195 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1196 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001197 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001198 u64 length = 0;
1199 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001200 int ret;
1201
Chris Mason771ed682008-11-06 22:02:51 -05001202 if (bio_flags & EXTENT_BIO_COMPRESSED)
1203 return 0;
1204
Chris Masonf2d8d742008-04-21 10:03:05 -04001205 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001206 map_tree = &root->fs_info->mapping_tree;
1207 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001208 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001209 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001210
Chris Mason239b14b2008-03-24 15:02:07 -04001211 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -04001212 return 1;
1213 }
1214 return 0;
1215}
1216
Chris Masond352ac62008-09-29 15:18:18 -04001217/*
1218 * in order to insert checksums into the metadata in large chunks,
1219 * we wait until bio submission time. All the pages in the bio are
1220 * checksummed and sums are attached onto the ordered extent record.
1221 *
1222 * At IO completion time the cums attached on the ordered extent record
1223 * are inserted into the btree
1224 */
Chris Mason4a69a412008-11-06 22:03:00 -05001225int __btrfs_submit_bio_start(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001226 int mirror_num, unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001227{
Chris Mason065631f2008-02-20 12:07:25 -05001228 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001229 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001230
Chris Mason3edf7d32008-07-18 06:17:13 -04001231 ret = btrfs_csum_one_bio(root, inode, bio);
Chris Mason44b8bd72008-04-16 11:14:51 -04001232 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001233 return 0;
1234}
Chris Masone0156402008-04-16 11:15:20 -04001235
Chris Mason4a69a412008-11-06 22:03:00 -05001236/*
1237 * in order to insert checksums into the metadata in large chunks,
1238 * we wait until bio submission time. All the pages in the bio are
1239 * checksummed and sums are attached onto the ordered extent record.
1240 *
1241 * At IO completion time the cums attached on the ordered extent record
1242 * are inserted into the btree
1243 */
1244int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
1245 int mirror_num, unsigned long bio_flags)
1246{
1247 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001248 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001249}
1250
Chris Masond352ac62008-09-29 15:18:18 -04001251/*
1252 * extent_io.c submission hook. This does the right thing for csum calculation on write,
1253 * or reading the csums from the tree before a read
1254 */
Chris Mason44b8bd72008-04-16 11:14:51 -04001255int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001256 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001257{
1258 struct btrfs_root *root = BTRFS_I(inode)->root;
1259 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001260 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001261
Chris Masone6dcd2d2008-07-17 12:53:50 -04001262 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1263 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001264
Chris Mason19b9bdb2008-10-30 14:23:13 -04001265 skip_sum = btrfs_test_opt(root, NODATASUM) ||
1266 btrfs_test_flag(inode, NODATASUM);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001267
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001268 if (!(rw & (1 << BIO_RW))) {
Chris Masonc8b97812008-10-29 14:49:59 -04001269
Chris Mason19b9bdb2008-10-30 14:23:13 -04001270 if (bio_flags & EXTENT_BIO_COMPRESSED)
Chris Masonc8b97812008-10-29 14:49:59 -04001271 return btrfs_submit_compressed_read(inode, bio,
1272 mirror_num, bio_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001273 else if (!skip_sum)
1274 btrfs_lookup_bio_sums(root, inode, bio);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001275 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001276 } else if (!skip_sum) {
1277 /* we're doing a write, do the async checksumming */
1278 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001279 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001280 bio_flags, __btrfs_submit_bio_start,
1281 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001282 }
1283
Chris Mason0b86a832008-03-24 15:01:56 -04001284mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001285 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001286}
Chris Mason6885f302008-02-20 16:11:05 -05001287
Chris Masond352ac62008-09-29 15:18:18 -04001288/*
1289 * given a list of ordered sums record them in the inode. This happens
1290 * at IO completion time based on sums calculated at bio submission time.
1291 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001292static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001293 struct inode *inode, u64 file_offset,
1294 struct list_head *list)
1295{
1296 struct list_head *cur;
1297 struct btrfs_ordered_sum *sum;
1298
1299 btrfs_set_trans_block_group(trans, inode);
Chris Masonba1da2f2008-07-17 12:54:15 -04001300 list_for_each(cur, list) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04001301 sum = list_entry(cur, struct btrfs_ordered_sum, list);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001302 btrfs_csum_file_blocks(trans, BTRFS_I(inode)->root,
1303 inode, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001304 }
1305 return 0;
1306}
1307
Chris Masonea8c2812008-08-04 23:17:27 -04001308int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1309{
Chris Mason771ed682008-11-06 22:02:51 -05001310 if ((end & (PAGE_CACHE_SIZE - 1)) == 0) {
1311 WARN_ON(1);
1312 }
Chris Masonea8c2812008-08-04 23:17:27 -04001313 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1314 GFP_NOFS);
1315}
1316
Chris Masond352ac62008-09-29 15:18:18 -04001317/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001318struct btrfs_writepage_fixup {
1319 struct page *page;
1320 struct btrfs_work work;
1321};
1322
Chris Mason247e7432008-07-17 12:53:51 -04001323void btrfs_writepage_fixup_worker(struct btrfs_work *work)
1324{
1325 struct btrfs_writepage_fixup *fixup;
1326 struct btrfs_ordered_extent *ordered;
1327 struct page *page;
1328 struct inode *inode;
1329 u64 page_start;
1330 u64 page_end;
1331
1332 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1333 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001334again:
Chris Mason247e7432008-07-17 12:53:51 -04001335 lock_page(page);
1336 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1337 ClearPageChecked(page);
1338 goto out_page;
1339 }
1340
1341 inode = page->mapping->host;
1342 page_start = page_offset(page);
1343 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1344
1345 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001346
1347 /* already ordered? We're done */
1348 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
1349 EXTENT_ORDERED, 0)) {
Chris Mason247e7432008-07-17 12:53:51 -04001350 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001351 }
1352
1353 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1354 if (ordered) {
1355 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1356 page_end, GFP_NOFS);
1357 unlock_page(page);
1358 btrfs_start_ordered_extent(inode, ordered, 1);
1359 goto again;
1360 }
Chris Mason247e7432008-07-17 12:53:51 -04001361
Chris Masonea8c2812008-08-04 23:17:27 -04001362 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001363 ClearPageChecked(page);
1364out:
1365 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1366out_page:
1367 unlock_page(page);
1368 page_cache_release(page);
1369}
1370
1371/*
1372 * There are a few paths in the higher layers of the kernel that directly
1373 * set the page dirty bit without asking the filesystem if it is a
1374 * good idea. This causes problems because we want to make sure COW
1375 * properly happens and the data=ordered rules are followed.
1376 *
Chris Masonc8b97812008-10-29 14:49:59 -04001377 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001378 * hasn't been properly setup for IO. We kick off an async process
1379 * to fix it up. The async helper will wait for ordered extents, set
1380 * the delalloc bit and make it safe to write the page.
1381 */
1382int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
1383{
1384 struct inode *inode = page->mapping->host;
1385 struct btrfs_writepage_fixup *fixup;
1386 struct btrfs_root *root = BTRFS_I(inode)->root;
1387 int ret;
1388
1389 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1390 EXTENT_ORDERED, 0);
1391 if (ret)
1392 return 0;
1393
1394 if (PageChecked(page))
1395 return -EAGAIN;
1396
1397 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1398 if (!fixup)
1399 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001400
Chris Mason247e7432008-07-17 12:53:51 -04001401 SetPageChecked(page);
1402 page_cache_get(page);
1403 fixup->work.func = btrfs_writepage_fixup_worker;
1404 fixup->page = page;
1405 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1406 return -EAGAIN;
1407}
1408
Yan Zhengd899e052008-10-30 14:25:28 -04001409static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1410 struct inode *inode, u64 file_pos,
1411 u64 disk_bytenr, u64 disk_num_bytes,
1412 u64 num_bytes, u64 ram_bytes,
1413 u8 compression, u8 encryption,
1414 u16 other_encoding, int extent_type)
1415{
1416 struct btrfs_root *root = BTRFS_I(inode)->root;
1417 struct btrfs_file_extent_item *fi;
1418 struct btrfs_path *path;
1419 struct extent_buffer *leaf;
1420 struct btrfs_key ins;
1421 u64 hint;
1422 int ret;
1423
1424 path = btrfs_alloc_path();
1425 BUG_ON(!path);
1426
1427 ret = btrfs_drop_extents(trans, root, inode, file_pos,
1428 file_pos + num_bytes, file_pos, &hint);
1429 BUG_ON(ret);
1430
1431 ins.objectid = inode->i_ino;
1432 ins.offset = file_pos;
1433 ins.type = BTRFS_EXTENT_DATA_KEY;
1434 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1435 BUG_ON(ret);
1436 leaf = path->nodes[0];
1437 fi = btrfs_item_ptr(leaf, path->slots[0],
1438 struct btrfs_file_extent_item);
1439 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1440 btrfs_set_file_extent_type(leaf, fi, extent_type);
1441 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1442 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1443 btrfs_set_file_extent_offset(leaf, fi, 0);
1444 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1445 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1446 btrfs_set_file_extent_compression(leaf, fi, compression);
1447 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1448 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
1449 btrfs_mark_buffer_dirty(leaf);
1450
1451 inode_add_bytes(inode, num_bytes);
1452 btrfs_drop_extent_cache(inode, file_pos, file_pos + num_bytes - 1, 0);
1453
1454 ins.objectid = disk_bytenr;
1455 ins.offset = disk_num_bytes;
1456 ins.type = BTRFS_EXTENT_ITEM_KEY;
1457 ret = btrfs_alloc_reserved_extent(trans, root, leaf->start,
1458 root->root_key.objectid,
1459 trans->transid, inode->i_ino, &ins);
1460 BUG_ON(ret);
1461
1462 btrfs_free_path(path);
1463 return 0;
1464}
1465
Chris Masond352ac62008-09-29 15:18:18 -04001466/* as ordered data IO finishes, this gets called so we can finish
1467 * an ordered extent if the range of bytes in the file it covers are
1468 * fully written.
1469 */
Chris Mason211f90e2008-07-18 11:56:15 -04001470static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001471{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001472 struct btrfs_root *root = BTRFS_I(inode)->root;
1473 struct btrfs_trans_handle *trans;
1474 struct btrfs_ordered_extent *ordered_extent;
1475 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan Zhengd899e052008-10-30 14:25:28 -04001476 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001477 int ret;
1478
1479 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001480 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001481 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001482
Chris Masonf9295742008-07-17 12:54:14 -04001483 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001484
1485 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
1486 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001487 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
1488 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001489
1490 lock_extent(io_tree, ordered_extent->file_offset,
1491 ordered_extent->file_offset + ordered_extent->len - 1,
1492 GFP_NOFS);
1493
Chris Masonc8b97812008-10-29 14:49:59 -04001494 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001495 compressed = 1;
1496 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1497 BUG_ON(compressed);
1498 ret = btrfs_mark_extent_written(trans, root, inode,
1499 ordered_extent->file_offset,
1500 ordered_extent->file_offset +
1501 ordered_extent->len);
1502 BUG_ON(ret);
1503 } else {
1504 ret = insert_reserved_file_extent(trans, inode,
1505 ordered_extent->file_offset,
1506 ordered_extent->start,
1507 ordered_extent->disk_len,
1508 ordered_extent->len,
1509 ordered_extent->len,
1510 compressed, 0, 0,
1511 BTRFS_FILE_EXTENT_REG);
1512 BUG_ON(ret);
1513 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001514 unlock_extent(io_tree, ordered_extent->file_offset,
1515 ordered_extent->file_offset + ordered_extent->len - 1,
1516 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001517nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001518 add_pending_csums(trans, inode, ordered_extent->file_offset,
1519 &ordered_extent->list);
1520
Chris Mason34353022008-09-23 20:19:49 -04001521 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masondbe674a2008-07-17 12:54:05 -04001522 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -04001523 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001524 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason34353022008-09-23 20:19:49 -04001525 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -04001526
Chris Masone6dcd2d2008-07-17 12:53:50 -04001527 /* once for us */
1528 btrfs_put_ordered_extent(ordered_extent);
1529 /* once for the tree */
1530 btrfs_put_ordered_extent(ordered_extent);
1531
Chris Masone6dcd2d2008-07-17 12:53:50 -04001532 btrfs_end_transaction(trans, root);
1533 return 0;
1534}
1535
Chris Mason211f90e2008-07-18 11:56:15 -04001536int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
1537 struct extent_state *state, int uptodate)
1538{
1539 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1540}
1541
Chris Masond352ac62008-09-29 15:18:18 -04001542/*
1543 * When IO fails, either with EIO or csum verification fails, we
1544 * try other mirrors that might have a good copy of the data. This
1545 * io_failure_record is used to record state as we go through all the
1546 * mirrors. If another mirror has good data, the page is set up to date
1547 * and things continue. If a good mirror can't be found, the original
1548 * bio end_io callback is called to indicate things have failed.
1549 */
Chris Mason7e383262008-04-09 16:28:12 -04001550struct io_failure_record {
1551 struct page *page;
1552 u64 start;
1553 u64 len;
1554 u64 logical;
1555 int last_mirror;
1556};
1557
Chris Mason1259ab72008-05-12 13:39:03 -04001558int btrfs_io_failed_hook(struct bio *failed_bio,
1559 struct page *page, u64 start, u64 end,
1560 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001561{
1562 struct io_failure_record *failrec = NULL;
1563 u64 private;
1564 struct extent_map *em;
1565 struct inode *inode = page->mapping->host;
1566 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001567 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001568 struct bio *bio;
1569 int num_copies;
1570 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001571 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001572 u64 logical;
Chris Masonc8b97812008-10-29 14:49:59 -04001573 unsigned long bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001574
1575 ret = get_state_private(failure_tree, start, &private);
1576 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001577 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1578 if (!failrec)
1579 return -ENOMEM;
1580 failrec->start = start;
1581 failrec->len = end - start + 1;
1582 failrec->last_mirror = 0;
1583
Chris Mason3b951512008-04-17 11:29:12 -04001584 spin_lock(&em_tree->lock);
1585 em = lookup_extent_mapping(em_tree, start, failrec->len);
1586 if (em->start > start || em->start + em->len < start) {
1587 free_extent_map(em);
1588 em = NULL;
1589 }
1590 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001591
1592 if (!em || IS_ERR(em)) {
1593 kfree(failrec);
1594 return -EIO;
1595 }
1596 logical = start - em->start;
1597 logical = em->block_start + logical;
Chris Masonc8b97812008-10-29 14:49:59 -04001598 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
1599 bio_flags = EXTENT_BIO_COMPRESSED;
Chris Mason7e383262008-04-09 16:28:12 -04001600 failrec->logical = logical;
1601 free_extent_map(em);
1602 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1603 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001604 set_state_private(failure_tree, start,
1605 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001606 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001607 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001608 }
1609 num_copies = btrfs_num_copies(
1610 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1611 failrec->logical, failrec->len);
1612 failrec->last_mirror++;
1613 if (!state) {
1614 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
1615 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1616 failrec->start,
1617 EXTENT_LOCKED);
1618 if (state && state->start != failrec->start)
1619 state = NULL;
1620 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
1621 }
1622 if (!state || failrec->last_mirror > num_copies) {
1623 set_state_private(failure_tree, failrec->start, 0);
1624 clear_extent_bits(failure_tree, failrec->start,
1625 failrec->start + failrec->len - 1,
1626 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1627 kfree(failrec);
1628 return -EIO;
1629 }
1630 bio = bio_alloc(GFP_NOFS, 1);
1631 bio->bi_private = state;
1632 bio->bi_end_io = failed_bio->bi_end_io;
1633 bio->bi_sector = failrec->logical >> 9;
1634 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001635 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001636 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001637 if (failed_bio->bi_rw & (1 << BIO_RW))
1638 rw = WRITE;
1639 else
1640 rw = READ;
1641
1642 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001643 failrec->last_mirror,
1644 bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001645 return 0;
1646}
1647
Chris Masond352ac62008-09-29 15:18:18 -04001648/*
1649 * each time an IO finishes, we do a fast check in the IO failure tree
1650 * to see if we need to process or clean up an io_failure_record
1651 */
Chris Mason1259ab72008-05-12 13:39:03 -04001652int btrfs_clean_io_failures(struct inode *inode, u64 start)
1653{
1654 u64 private;
1655 u64 private_failure;
1656 struct io_failure_record *failure;
1657 int ret;
1658
1659 private = 0;
1660 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1661 (u64)-1, 1, EXTENT_DIRTY)) {
1662 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1663 start, &private_failure);
1664 if (ret == 0) {
1665 failure = (struct io_failure_record *)(unsigned long)
1666 private_failure;
1667 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1668 failure->start, 0);
1669 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1670 failure->start,
1671 failure->start + failure->len - 1,
1672 EXTENT_DIRTY | EXTENT_LOCKED,
1673 GFP_NOFS);
1674 kfree(failure);
1675 }
1676 }
Chris Mason7e383262008-04-09 16:28:12 -04001677 return 0;
1678}
1679
Chris Masond352ac62008-09-29 15:18:18 -04001680/*
1681 * when reads are done, we need to check csums to verify the data is correct
1682 * if there's a match, we allow the bio to finish. If not, we go through
1683 * the io_failure_record routines to find good copies
1684 */
Chris Mason70dec802008-01-29 09:59:12 -05001685int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
1686 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001687{
Chris Mason35ebb932007-10-30 16:56:53 -04001688 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001689 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001690 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001691 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001692 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001693 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001694 struct btrfs_root *root = BTRFS_I(inode)->root;
1695 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -04001696 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -05001697
Yanb98b6762008-01-08 15:54:37 -05001698 if (btrfs_test_opt(root, NODATASUM) ||
1699 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -05001700 return 0;
Yanc2e639f2008-02-04 08:57:25 -05001701 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001702 private = state->private;
1703 ret = 0;
1704 } else {
1705 ret = get_state_private(io_tree, start, &private);
1706 }
Jens Axboebbf0d002007-10-19 09:23:07 -04001707 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -04001708 kaddr = kmap_atomic(page, KM_IRQ0);
1709 if (ret) {
1710 goto zeroit;
1711 }
Chris Masonff79f812007-10-15 16:22:25 -04001712 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1713 btrfs_csum_final(csum, (char *)&csum);
1714 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -04001715 goto zeroit;
1716 }
1717 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001718 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -04001719
1720 /* if the io failure tree for this inode is non-empty,
1721 * check to see if we've recovered from a failed IO
1722 */
Chris Mason1259ab72008-05-12 13:39:03 -04001723 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001724 return 0;
1725
1726zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -05001727 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
1728 page->mapping->host->i_ino, (unsigned long long)start, csum,
1729 private);
Chris Masondb945352007-10-15 16:15:53 -04001730 memset(kaddr + offset, 1, end - start + 1);
1731 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -04001732 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001733 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -04001734 if (private == 0)
1735 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001736 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001737}
Chris Masonb888db22007-08-27 16:49:44 -04001738
Josef Bacik7b128762008-07-24 12:17:14 -04001739/*
1740 * This creates an orphan entry for the given inode in case something goes
1741 * wrong in the middle of an unlink/truncate.
1742 */
1743int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1744{
1745 struct btrfs_root *root = BTRFS_I(inode)->root;
1746 int ret = 0;
1747
Yanbcc63ab2008-07-30 16:29:20 -04001748 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001749
1750 /* already on the orphan list, we're good */
1751 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001752 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001753 return 0;
1754 }
1755
1756 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
1757
Yanbcc63ab2008-07-30 16:29:20 -04001758 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001759
1760 /*
1761 * insert an orphan item to track this unlinked/truncated file
1762 */
1763 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
1764
1765 return ret;
1766}
1767
1768/*
1769 * We have done the truncate/delete so we can go ahead and remove the orphan
1770 * item for this particular inode.
1771 */
1772int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
1773{
1774 struct btrfs_root *root = BTRFS_I(inode)->root;
1775 int ret = 0;
1776
Yanbcc63ab2008-07-30 16:29:20 -04001777 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001778
1779 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001780 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001781 return 0;
1782 }
1783
1784 list_del_init(&BTRFS_I(inode)->i_orphan);
1785 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04001786 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001787 return 0;
1788 }
1789
Yanbcc63ab2008-07-30 16:29:20 -04001790 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001791
1792 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
1793
1794 return ret;
1795}
1796
1797/*
1798 * this cleans up any orphans that may be left on the list from the last use
1799 * of this root.
1800 */
1801void btrfs_orphan_cleanup(struct btrfs_root *root)
1802{
1803 struct btrfs_path *path;
1804 struct extent_buffer *leaf;
1805 struct btrfs_item *item;
1806 struct btrfs_key key, found_key;
1807 struct btrfs_trans_handle *trans;
1808 struct inode *inode;
1809 int ret = 0, nr_unlink = 0, nr_truncate = 0;
1810
1811 /* don't do orphan cleanup if the fs is readonly. */
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001812 if (root->fs_info->sb->s_flags & MS_RDONLY)
Josef Bacik7b128762008-07-24 12:17:14 -04001813 return;
1814
1815 path = btrfs_alloc_path();
1816 if (!path)
1817 return;
1818 path->reada = -1;
1819
1820 key.objectid = BTRFS_ORPHAN_OBJECTID;
1821 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1822 key.offset = (u64)-1;
1823
Josef Bacik7b128762008-07-24 12:17:14 -04001824
1825 while (1) {
1826 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1827 if (ret < 0) {
1828 printk(KERN_ERR "Error searching slot for orphan: %d"
1829 "\n", ret);
1830 break;
1831 }
1832
1833 /*
1834 * if ret == 0 means we found what we were searching for, which
1835 * is weird, but possible, so only screw with path if we didnt
1836 * find the key and see if we have stuff that matches
1837 */
1838 if (ret > 0) {
1839 if (path->slots[0] == 0)
1840 break;
1841 path->slots[0]--;
1842 }
1843
1844 /* pull out the item */
1845 leaf = path->nodes[0];
1846 item = btrfs_item_nr(leaf, path->slots[0]);
1847 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1848
1849 /* make sure the item matches what we want */
1850 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
1851 break;
1852 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
1853 break;
1854
1855 /* release the path since we're done with it */
1856 btrfs_release_path(root, path);
1857
1858 /*
1859 * this is where we are basically btrfs_lookup, without the
1860 * crossing root thing. we store the inode number in the
1861 * offset of the orphan item.
1862 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001863 inode = btrfs_iget_locked(root->fs_info->sb,
Josef Bacik7b128762008-07-24 12:17:14 -04001864 found_key.offset, root);
1865 if (!inode)
1866 break;
1867
1868 if (inode->i_state & I_NEW) {
1869 BTRFS_I(inode)->root = root;
1870
1871 /* have to set the location manually */
1872 BTRFS_I(inode)->location.objectid = inode->i_ino;
1873 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
1874 BTRFS_I(inode)->location.offset = 0;
1875
1876 btrfs_read_locked_inode(inode);
1877 unlock_new_inode(inode);
1878 }
1879
1880 /*
1881 * add this inode to the orphan list so btrfs_orphan_del does
1882 * the proper thing when we hit it
1883 */
Yanbcc63ab2008-07-30 16:29:20 -04001884 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001885 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04001886 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001887
1888 /*
1889 * if this is a bad inode, means we actually succeeded in
1890 * removing the inode, but not the orphan record, which means
1891 * we need to manually delete the orphan since iput will just
1892 * do a destroy_inode
1893 */
1894 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001895 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04001896 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001897 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04001898 iput(inode);
1899 continue;
1900 }
1901
1902 /* if we have links, this was a truncate, lets do that */
1903 if (inode->i_nlink) {
1904 nr_truncate++;
1905 btrfs_truncate(inode);
1906 } else {
1907 nr_unlink++;
1908 }
1909
1910 /* this will do delete_inode and everything for us */
1911 iput(inode);
1912 }
1913
1914 if (nr_unlink)
1915 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
1916 if (nr_truncate)
1917 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
1918
1919 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04001920}
1921
Chris Masond352ac62008-09-29 15:18:18 -04001922/*
1923 * read an inode from the btree into the in-memory inode
1924 */
Chris Mason39279cc2007-06-12 06:35:45 -04001925void btrfs_read_locked_inode(struct inode *inode)
1926{
1927 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001928 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001929 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04001930 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04001931 struct btrfs_root *root = BTRFS_I(inode)->root;
1932 struct btrfs_key location;
1933 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04001934 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04001935 int ret;
1936
1937 path = btrfs_alloc_path();
1938 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001939 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05001940
Chris Mason39279cc2007-06-12 06:35:45 -04001941 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001942 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001943 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04001944
Chris Mason5f39d392007-10-15 16:14:19 -04001945 leaf = path->nodes[0];
1946 inode_item = btrfs_item_ptr(leaf, path->slots[0],
1947 struct btrfs_inode_item);
1948
1949 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
1950 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
1951 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
1952 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04001953 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04001954
1955 tspec = btrfs_inode_atime(inode_item);
1956 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1957 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1958
1959 tspec = btrfs_inode_mtime(inode_item);
1960 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1961 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1962
1963 tspec = btrfs_inode_ctime(inode_item);
1964 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1965 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1966
Yan Zhenga76a3cd2008-10-09 11:46:29 -04001967 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04001968 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
1969 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04001970 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001971 rdev = btrfs_inode_rdev(leaf, inode_item);
1972
Josef Bacikaec74772008-07-24 12:12:38 -04001973 BTRFS_I(inode)->index_cnt = (u64)-1;
1974
Chris Mason5f39d392007-10-15 16:14:19 -04001975 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04001976 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
1977 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -05001978 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -05001979 if (!BTRFS_I(inode)->block_group) {
1980 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -04001981 NULL, 0,
1982 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -05001983 }
Chris Mason39279cc2007-06-12 06:35:45 -04001984 btrfs_free_path(path);
1985 inode_item = NULL;
1986
Chris Mason39279cc2007-06-12 06:35:45 -04001987 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04001988 case S_IFREG:
1989 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001990 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05001991 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001992 inode->i_fop = &btrfs_file_operations;
1993 inode->i_op = &btrfs_file_inode_operations;
1994 break;
1995 case S_IFDIR:
1996 inode->i_fop = &btrfs_dir_file_operations;
1997 if (root == root->fs_info->tree_root)
1998 inode->i_op = &btrfs_dir_ro_inode_operations;
1999 else
2000 inode->i_op = &btrfs_dir_inode_operations;
2001 break;
2002 case S_IFLNK:
2003 inode->i_op = &btrfs_symlink_inode_operations;
2004 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002005 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002006 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002007 default:
2008 init_special_inode(inode, inode->i_mode, rdev);
2009 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002010 }
2011 return;
2012
2013make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002014 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002015 make_bad_inode(inode);
2016}
2017
Chris Masond352ac62008-09-29 15:18:18 -04002018/*
2019 * given a leaf and an inode, copy the inode fields into the leaf
2020 */
Chris Masone02119d2008-09-05 16:13:11 -04002021static void fill_inode_item(struct btrfs_trans_handle *trans,
2022 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002023 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002024 struct inode *inode)
2025{
Chris Mason5f39d392007-10-15 16:14:19 -04002026 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2027 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002028 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002029 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2030 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2031
2032 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2033 inode->i_atime.tv_sec);
2034 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2035 inode->i_atime.tv_nsec);
2036
2037 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2038 inode->i_mtime.tv_sec);
2039 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2040 inode->i_mtime.tv_nsec);
2041
2042 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2043 inode->i_ctime.tv_sec);
2044 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2045 inode->i_ctime.tv_nsec);
2046
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002047 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002048 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
2049 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002050 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002051 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -04002052 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -04002053 BTRFS_I(inode)->block_group->key.objectid);
2054}
2055
Chris Masond352ac62008-09-29 15:18:18 -04002056/*
2057 * copy everything in the in-memory inode into the btree.
2058 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002059int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -04002060 struct btrfs_root *root,
2061 struct inode *inode)
2062{
2063 struct btrfs_inode_item *inode_item;
2064 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002065 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002066 int ret;
2067
2068 path = btrfs_alloc_path();
2069 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002070 ret = btrfs_lookup_inode(trans, root, path,
2071 &BTRFS_I(inode)->location, 1);
2072 if (ret) {
2073 if (ret > 0)
2074 ret = -ENOENT;
2075 goto failed;
2076 }
2077
Chris Mason5f39d392007-10-15 16:14:19 -04002078 leaf = path->nodes[0];
2079 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002080 struct btrfs_inode_item);
2081
Chris Masone02119d2008-09-05 16:13:11 -04002082 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002083 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002084 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002085 ret = 0;
2086failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002087 btrfs_free_path(path);
2088 return ret;
2089}
2090
2091
Chris Masond352ac62008-09-29 15:18:18 -04002092/*
2093 * unlink helper that gets used here in inode.c and in the tree logging
2094 * recovery code. It remove a link in a directory with a given name, and
2095 * also drops the back refs in the inode to the directory
2096 */
Chris Masone02119d2008-09-05 16:13:11 -04002097int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2098 struct btrfs_root *root,
2099 struct inode *dir, struct inode *inode,
2100 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002101{
2102 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002103 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002104 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002105 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002106 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002107 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002108
2109 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002110 if (!path) {
2111 ret = -ENOMEM;
2112 goto err;
2113 }
2114
Chris Mason39279cc2007-06-12 06:35:45 -04002115 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2116 name, name_len, -1);
2117 if (IS_ERR(di)) {
2118 ret = PTR_ERR(di);
2119 goto err;
2120 }
2121 if (!di) {
2122 ret = -ENOENT;
2123 goto err;
2124 }
Chris Mason5f39d392007-10-15 16:14:19 -04002125 leaf = path->nodes[0];
2126 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002127 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002128 if (ret)
2129 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002130 btrfs_release_path(root, path);
2131
Josef Bacikaec74772008-07-24 12:12:38 -04002132 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002133 inode->i_ino,
2134 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002135 if (ret) {
2136 printk("failed to delete reference to %.*s, "
2137 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002138 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002139 goto err;
2140 }
2141
Chris Mason39279cc2007-06-12 06:35:45 -04002142 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002143 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002144 if (IS_ERR(di)) {
2145 ret = PTR_ERR(di);
2146 goto err;
2147 }
2148 if (!di) {
2149 ret = -ENOENT;
2150 goto err;
2151 }
2152 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002153 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002154
Chris Masone02119d2008-09-05 16:13:11 -04002155 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2156 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002157 BUG_ON(ret != 0 && ret != -ENOENT);
2158 if (ret != -ENOENT)
2159 BTRFS_I(dir)->log_dirty_trans = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04002160
2161 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2162 dir, index);
2163 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002164err:
2165 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002166 if (ret)
2167 goto out;
2168
2169 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2170 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2171 btrfs_update_inode(trans, root, dir);
2172 btrfs_drop_nlink(inode);
2173 ret = btrfs_update_inode(trans, root, inode);
2174 dir->i_sb->s_dirt = 1;
2175out:
Chris Mason39279cc2007-06-12 06:35:45 -04002176 return ret;
2177}
2178
2179static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2180{
2181 struct btrfs_root *root;
2182 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002183 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002184 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002185 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002186
2187 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002188
2189 ret = btrfs_check_free_space(root, 1, 1);
2190 if (ret)
2191 goto fail;
2192
Chris Mason39279cc2007-06-12 06:35:45 -04002193 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002194
Chris Mason39279cc2007-06-12 06:35:45 -04002195 btrfs_set_trans_block_group(trans, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002196 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2197 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002198
2199 if (inode->i_nlink == 0)
2200 ret = btrfs_orphan_add(trans, inode);
2201
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002202 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002203
Chris Mason89ce8a62008-06-25 16:01:31 -04002204 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002205fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002206 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002207 return ret;
2208}
2209
2210static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2211{
2212 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002213 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002214 int ret;
2215 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002216 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002217 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002218
Chris Mason925baed2008-06-25 16:01:30 -04002219 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
Yan134d4512007-10-25 15:49:25 -04002220 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04002221 }
Yan134d4512007-10-25 15:49:25 -04002222
Chris Mason1832a6d2007-12-21 16:27:21 -05002223 ret = btrfs_check_free_space(root, 1, 1);
2224 if (ret)
2225 goto fail;
2226
Chris Mason39279cc2007-06-12 06:35:45 -04002227 trans = btrfs_start_transaction(root, 1);
2228 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002229
Josef Bacik7b128762008-07-24 12:17:14 -04002230 err = btrfs_orphan_add(trans, inode);
2231 if (err)
2232 goto fail_trans;
2233
Chris Mason39279cc2007-06-12 06:35:45 -04002234 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002235 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2236 dentry->d_name.name, dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002237 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04002238 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002239 }
Chris Mason39544012007-12-12 14:38:19 -05002240
Josef Bacik7b128762008-07-24 12:17:14 -04002241fail_trans:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002242 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002243 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002244fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002245 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002246
Chris Mason39279cc2007-06-12 06:35:45 -04002247 if (ret && !err)
2248 err = ret;
2249 return err;
2250}
2251
Chris Mason39279cc2007-06-12 06:35:45 -04002252/*
Chris Mason323ac952008-10-01 19:05:46 -04002253 * when truncating bytes in a file, it is possible to avoid reading
2254 * the leaves that contain only checksum items. This can be the
2255 * majority of the IO required to delete a large file, but it must
2256 * be done carefully.
2257 *
2258 * The keys in the level just above the leaves are checked to make sure
2259 * the lowest key in a given leaf is a csum key, and starts at an offset
2260 * after the new size.
2261 *
2262 * Then the key for the next leaf is checked to make sure it also has
2263 * a checksum item for the same file. If it does, we know our target leaf
2264 * contains only checksum items, and it can be safely freed without reading
2265 * it.
2266 *
2267 * This is just an optimization targeted at large files. It may do
2268 * nothing. It will return 0 unless things went badly.
2269 */
2270static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2271 struct btrfs_root *root,
2272 struct btrfs_path *path,
2273 struct inode *inode, u64 new_size)
2274{
2275 struct btrfs_key key;
2276 int ret;
2277 int nritems;
2278 struct btrfs_key found_key;
2279 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002280 struct btrfs_leaf_ref *ref;
2281 u64 leaf_gen;
2282 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002283
2284 path->lowest_level = 1;
2285 key.objectid = inode->i_ino;
2286 key.type = BTRFS_CSUM_ITEM_KEY;
2287 key.offset = new_size;
2288again:
2289 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2290 if (ret < 0)
2291 goto out;
2292
2293 if (path->nodes[1] == NULL) {
2294 ret = 0;
2295 goto out;
2296 }
2297 ret = 0;
2298 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2299 nritems = btrfs_header_nritems(path->nodes[1]);
2300
2301 if (!nritems)
2302 goto out;
2303
2304 if (path->slots[1] >= nritems)
2305 goto next_node;
2306
2307 /* did we find a key greater than anything we want to delete? */
2308 if (found_key.objectid > inode->i_ino ||
2309 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2310 goto out;
2311
2312 /* we check the next key in the node to make sure the leave contains
2313 * only checksum items. This comparison doesn't work if our
2314 * leaf is the last one in the node
2315 */
2316 if (path->slots[1] + 1 >= nritems) {
2317next_node:
2318 /* search forward from the last key in the node, this
2319 * will bring us into the next node in the tree
2320 */
2321 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2322
2323 /* unlikely, but we inc below, so check to be safe */
2324 if (found_key.offset == (u64)-1)
2325 goto out;
2326
2327 /* search_forward needs a path with locks held, do the
2328 * search again for the original key. It is possible
2329 * this will race with a balance and return a path that
2330 * we could modify, but this drop is just an optimization
2331 * and is allowed to miss some leaves.
2332 */
2333 btrfs_release_path(root, path);
2334 found_key.offset++;
2335
2336 /* setup a max key for search_forward */
2337 other_key.offset = (u64)-1;
2338 other_key.type = key.type;
2339 other_key.objectid = key.objectid;
2340
2341 path->keep_locks = 1;
2342 ret = btrfs_search_forward(root, &found_key, &other_key,
2343 path, 0, 0);
2344 path->keep_locks = 0;
2345 if (ret || found_key.objectid != key.objectid ||
2346 found_key.type != key.type) {
2347 ret = 0;
2348 goto out;
2349 }
2350
2351 key.offset = found_key.offset;
2352 btrfs_release_path(root, path);
2353 cond_resched();
2354 goto again;
2355 }
2356
2357 /* we know there's one more slot after us in the tree,
2358 * read that key so we can verify it is also a checksum item
2359 */
2360 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2361
2362 if (found_key.objectid < inode->i_ino)
2363 goto next_key;
2364
2365 if (found_key.type != key.type || found_key.offset < new_size)
2366 goto next_key;
2367
2368 /*
2369 * if the key for the next leaf isn't a csum key from this objectid,
2370 * we can't be sure there aren't good items inside this leaf.
2371 * Bail out
2372 */
2373 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2374 goto out;
2375
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002376 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2377 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002378 /*
2379 * it is safe to delete this leaf, it contains only
2380 * csum items from this inode at an offset >= new_size
2381 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002382 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002383 BUG_ON(ret);
2384
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002385 if (root->ref_cows && leaf_gen < trans->transid) {
2386 ref = btrfs_alloc_leaf_ref(root, 0);
2387 if (ref) {
2388 ref->root_gen = root->root_key.offset;
2389 ref->bytenr = leaf_start;
2390 ref->owner = 0;
2391 ref->generation = leaf_gen;
2392 ref->nritems = 0;
2393
2394 ret = btrfs_add_leaf_ref(root, ref, 0);
2395 WARN_ON(ret);
2396 btrfs_free_leaf_ref(root, ref);
2397 } else {
2398 WARN_ON(1);
2399 }
2400 }
Chris Mason323ac952008-10-01 19:05:46 -04002401next_key:
2402 btrfs_release_path(root, path);
2403
2404 if (other_key.objectid == inode->i_ino &&
2405 other_key.type == key.type && other_key.offset > key.offset) {
2406 key.offset = other_key.offset;
2407 cond_resched();
2408 goto again;
2409 }
2410 ret = 0;
2411out:
2412 /* fixup any changes we've made to the path */
2413 path->lowest_level = 0;
2414 path->keep_locks = 0;
2415 btrfs_release_path(root, path);
2416 return ret;
2417}
2418
2419/*
Chris Mason39279cc2007-06-12 06:35:45 -04002420 * this can truncate away extent items, csum items and directory items.
2421 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002422 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002423 *
2424 * csum items that cross the new i_size are truncated to the new size
2425 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002426 *
2427 * min_type is the minimum key type to truncate down to. If set to 0, this
2428 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002429 */
Chris Masone02119d2008-09-05 16:13:11 -04002430noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2431 struct btrfs_root *root,
2432 struct inode *inode,
2433 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002434{
2435 int ret;
2436 struct btrfs_path *path;
2437 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002438 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002439 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04002440 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002441 struct btrfs_file_extent_item *fi;
2442 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002443 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002444 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002445 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05002446 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002447 int found_extent;
2448 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002449 int pending_del_nr = 0;
2450 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002451 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002452 int encoding;
Chris Mason3b951512008-04-17 11:29:12 -04002453 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002454
Chris Masone02119d2008-09-05 16:13:11 -04002455 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002456 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002457 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04002458 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04002459 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04002460
Chris Mason39279cc2007-06-12 06:35:45 -04002461 /* FIXME, add redo link to tree so we don't leak on crash */
2462 key.objectid = inode->i_ino;
2463 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002464 key.type = (u8)-1;
2465
Chris Mason85e21ba2008-01-29 15:11:36 -05002466 btrfs_init_path(path);
Chris Mason323ac952008-10-01 19:05:46 -04002467
2468 ret = drop_csum_leaves(trans, root, path, inode, new_size);
2469 BUG_ON(ret);
2470
Chris Mason85e21ba2008-01-29 15:11:36 -05002471search_again:
2472 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2473 if (ret < 0) {
2474 goto error;
2475 }
2476 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002477 /* there are no items in the tree for us to truncate, we're
2478 * done
2479 */
2480 if (path->slots[0] == 0) {
2481 ret = 0;
2482 goto error;
2483 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002484 path->slots[0]--;
2485 }
2486
Chris Mason39279cc2007-06-12 06:35:45 -04002487 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002488 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002489 leaf = path->nodes[0];
2490 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2491 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002492 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002493
Chris Mason5f39d392007-10-15 16:14:19 -04002494 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002495 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002496
Chris Mason85e21ba2008-01-29 15:11:36 -05002497 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002498 break;
2499
Chris Mason5f39d392007-10-15 16:14:19 -04002500 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002501 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002502 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002503 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002504 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002505 encoding = btrfs_file_extent_compression(leaf, fi);
2506 encoding |= btrfs_file_extent_encryption(leaf, fi);
2507 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2508
Chris Mason179e29e2007-11-01 11:28:41 -04002509 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002510 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002511 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002512 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002513 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002514 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002515 }
Yan008630c2007-11-07 13:31:09 -05002516 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002517 }
2518 if (found_type == BTRFS_CSUM_ITEM_KEY) {
2519 ret = btrfs_csum_truncate(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002520 new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04002521 BUG_ON(ret);
2522 }
Chris Masone02119d2008-09-05 16:13:11 -04002523 if (item_end < new_size) {
Chris Masonb888db22007-08-27 16:49:44 -04002524 if (found_type == BTRFS_DIR_ITEM_KEY) {
2525 found_type = BTRFS_INODE_ITEM_KEY;
2526 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
2527 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05002528 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
2529 found_type = BTRFS_XATTR_ITEM_KEY;
2530 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
2531 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04002532 } else if (found_type) {
2533 found_type--;
2534 } else {
2535 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002536 }
Yana61721d2007-09-17 11:08:38 -04002537 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05002538 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04002539 }
Chris Masone02119d2008-09-05 16:13:11 -04002540 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04002541 del_item = 1;
2542 else
2543 del_item = 0;
2544 found_extent = 0;
2545
2546 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002547 if (found_type != BTRFS_EXTENT_DATA_KEY)
2548 goto delete;
2549
2550 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002551 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002552 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002553 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002554 u64 orig_num_bytes =
2555 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002556 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002557 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002558 extent_num_bytes = extent_num_bytes &
2559 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002560 btrfs_set_file_extent_num_bytes(leaf, fi,
2561 extent_num_bytes);
2562 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002563 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002564 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002565 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002566 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002567 } else {
Chris Masondb945352007-10-15 16:15:53 -04002568 extent_num_bytes =
2569 btrfs_file_extent_disk_num_bytes(leaf,
2570 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002571 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002572 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002573 if (extent_start != 0) {
2574 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002575 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002576 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002577 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002578 root_gen = btrfs_header_generation(leaf);
Chris Masond8d5f3e2007-12-11 12:42:00 -05002579 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002580 }
Chris Mason90692182008-02-08 13:49:28 -05002581 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002582 /*
2583 * we can't truncate inline items that have had
2584 * special encodings
2585 */
2586 if (!del_item &&
2587 btrfs_file_extent_compression(leaf, fi) == 0 &&
2588 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2589 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002590 u32 size = new_size - found_key.offset;
2591
2592 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002593 inode_sub_bytes(inode, item_end + 1 -
2594 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04002595 }
2596 size =
2597 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05002598 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002599 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05002600 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04002601 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002602 inode_sub_bytes(inode, item_end + 1 -
2603 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05002604 }
Chris Mason39279cc2007-06-12 06:35:45 -04002605 }
Chris Mason179e29e2007-11-01 11:28:41 -04002606delete:
Chris Mason39279cc2007-06-12 06:35:45 -04002607 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05002608 if (!pending_del_nr) {
2609 /* no pending yet, add ourselves */
2610 pending_del_slot = path->slots[0];
2611 pending_del_nr = 1;
2612 } else if (pending_del_nr &&
2613 path->slots[0] + 1 == pending_del_slot) {
2614 /* hop on the pending chunk */
2615 pending_del_nr++;
2616 pending_del_slot = path->slots[0];
2617 } else {
2618 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
2619 }
Chris Mason39279cc2007-06-12 06:35:45 -04002620 } else {
2621 break;
2622 }
Chris Mason39279cc2007-06-12 06:35:45 -04002623 if (found_extent) {
2624 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05002625 extent_num_bytes,
Zheng Yan31840ae2008-09-23 13:14:14 -04002626 leaf->start, root_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04002627 root_gen, inode->i_ino, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002628 BUG_ON(ret);
2629 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002630next:
2631 if (path->slots[0] == 0) {
2632 if (pending_del_nr)
2633 goto del_pending;
2634 btrfs_release_path(root, path);
2635 goto search_again;
2636 }
2637
2638 path->slots[0]--;
2639 if (pending_del_nr &&
2640 path->slots[0] + 1 != pending_del_slot) {
2641 struct btrfs_key debug;
2642del_pending:
2643 btrfs_item_key_to_cpu(path->nodes[0], &debug,
2644 pending_del_slot);
2645 ret = btrfs_del_items(trans, root, path,
2646 pending_del_slot,
2647 pending_del_nr);
2648 BUG_ON(ret);
2649 pending_del_nr = 0;
2650 btrfs_release_path(root, path);
2651 goto search_again;
2652 }
Chris Mason39279cc2007-06-12 06:35:45 -04002653 }
2654 ret = 0;
2655error:
Chris Mason85e21ba2008-01-29 15:11:36 -05002656 if (pending_del_nr) {
2657 ret = btrfs_del_items(trans, root, path, pending_del_slot,
2658 pending_del_nr);
2659 }
Chris Mason39279cc2007-06-12 06:35:45 -04002660 btrfs_free_path(path);
2661 inode->i_sb->s_dirt = 1;
2662 return ret;
2663}
2664
Chris Masona52d9a82007-08-27 16:49:44 -04002665/*
2666 * taken from block_truncate_page, but does cow as it zeros out
2667 * any bytes left in the last page in the file.
2668 */
2669static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
2670{
2671 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04002672 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002673 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2674 struct btrfs_ordered_extent *ordered;
2675 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04002676 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04002677 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2678 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2679 struct page *page;
2680 int ret = 0;
2681 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002682 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04002683
2684 if ((offset & (blocksize - 1)) == 0)
2685 goto out;
2686
2687 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04002688again:
Chris Masona52d9a82007-08-27 16:49:44 -04002689 page = grab_cache_page(mapping, index);
2690 if (!page)
2691 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002692
2693 page_start = page_offset(page);
2694 page_end = page_start + PAGE_CACHE_SIZE - 1;
2695
Chris Masona52d9a82007-08-27 16:49:44 -04002696 if (!PageUptodate(page)) {
2697 ret = btrfs_readpage(NULL, page);
2698 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04002699 if (page->mapping != mapping) {
2700 unlock_page(page);
2701 page_cache_release(page);
2702 goto again;
2703 }
Chris Masona52d9a82007-08-27 16:49:44 -04002704 if (!PageUptodate(page)) {
2705 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04002706 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04002707 }
2708 }
Chris Mason211c17f2008-05-15 09:13:45 -04002709 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002710
2711 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2712 set_page_extent_mapped(page);
2713
2714 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2715 if (ordered) {
2716 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2717 unlock_page(page);
2718 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002719 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002720 btrfs_put_ordered_extent(ordered);
2721 goto again;
2722 }
2723
Chris Masonea8c2812008-08-04 23:17:27 -04002724 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002725 ret = 0;
2726 if (offset != PAGE_CACHE_SIZE) {
2727 kaddr = kmap(page);
2728 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2729 flush_dcache_page(page);
2730 kunmap(page);
2731 }
Chris Mason247e7432008-07-17 12:53:51 -04002732 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002733 set_page_dirty(page);
2734 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002735
Chris Mason89642222008-07-24 09:41:53 -04002736out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002737 unlock_page(page);
2738 page_cache_release(page);
2739out:
2740 return ret;
2741}
2742
Yan Zheng9036c102008-10-30 14:19:41 -04002743int btrfs_cont_expand(struct inode *inode, loff_t size)
2744{
2745 struct btrfs_trans_handle *trans;
2746 struct btrfs_root *root = BTRFS_I(inode)->root;
2747 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2748 struct extent_map *em;
2749 u64 mask = root->sectorsize - 1;
2750 u64 hole_start = (inode->i_size + mask) & ~mask;
2751 u64 block_end = (size + mask) & ~mask;
2752 u64 last_byte;
2753 u64 cur_offset;
2754 u64 hole_size;
2755 int err;
2756
2757 if (size <= hole_start)
2758 return 0;
2759
2760 err = btrfs_check_free_space(root, 1, 0);
2761 if (err)
2762 return err;
2763
2764 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2765
2766 while (1) {
2767 struct btrfs_ordered_extent *ordered;
2768 btrfs_wait_ordered_range(inode, hole_start,
2769 block_end - hole_start);
2770 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2771 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
2772 if (!ordered)
2773 break;
2774 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2775 btrfs_put_ordered_extent(ordered);
2776 }
2777
2778 trans = btrfs_start_transaction(root, 1);
2779 btrfs_set_trans_block_group(trans, inode);
2780
2781 cur_offset = hole_start;
2782 while (1) {
2783 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2784 block_end - cur_offset, 0);
2785 BUG_ON(IS_ERR(em) || !em);
2786 last_byte = min(extent_map_end(em), block_end);
2787 last_byte = (last_byte + mask) & ~mask;
2788 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05002789 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04002790 hole_size = last_byte - cur_offset;
Chris Mason771ed682008-11-06 22:02:51 -05002791 err = btrfs_drop_extents(trans, root, inode,
2792 cur_offset,
2793 cur_offset + hole_size,
2794 cur_offset, &hint_byte);
2795 if (err)
2796 break;
Yan Zheng9036c102008-10-30 14:19:41 -04002797 err = btrfs_insert_file_extent(trans, root,
2798 inode->i_ino, cur_offset, 0,
2799 0, hole_size, 0, hole_size,
2800 0, 0, 0);
2801 btrfs_drop_extent_cache(inode, hole_start,
2802 last_byte - 1, 0);
2803 }
2804 free_extent_map(em);
2805 cur_offset = last_byte;
2806 if (err || cur_offset >= block_end)
2807 break;
2808 }
2809
2810 btrfs_end_transaction(trans, root);
2811 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2812 return err;
2813}
2814
Chris Mason39279cc2007-06-12 06:35:45 -04002815static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
2816{
2817 struct inode *inode = dentry->d_inode;
2818 int err;
2819
2820 err = inode_change_ok(inode, attr);
2821 if (err)
2822 return err;
2823
2824 if (S_ISREG(inode->i_mode) &&
2825 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
Yan Zheng9036c102008-10-30 14:19:41 -04002826 err = btrfs_cont_expand(inode, attr->ia_size);
Chris Mason54aa1f42007-06-22 14:16:25 -04002827 if (err)
2828 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04002829 }
Yan Zheng9036c102008-10-30 14:19:41 -04002830
Chris Mason39279cc2007-06-12 06:35:45 -04002831 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04002832
2833 if (!err && ((attr->ia_valid & ATTR_MODE)))
2834 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002835 return err;
2836}
Chris Mason61295eb2008-01-14 16:24:38 -05002837
Chris Mason39279cc2007-06-12 06:35:45 -04002838void btrfs_delete_inode(struct inode *inode)
2839{
2840 struct btrfs_trans_handle *trans;
2841 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002842 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002843 int ret;
2844
2845 truncate_inode_pages(&inode->i_data, 0);
2846 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04002847 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002848 goto no_delete;
2849 }
Chris Mason4a096752008-07-21 10:29:44 -04002850 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04002851
Chris Masondbe674a2008-07-17 12:54:05 -04002852 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002853 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002854
Chris Mason39279cc2007-06-12 06:35:45 -04002855 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002856 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04002857 if (ret) {
2858 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002859 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04002860 }
2861
2862 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05002863
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002864 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05002865 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002866
Chris Mason39279cc2007-06-12 06:35:45 -04002867 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002868 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002869 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04002870
2871no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002872 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04002873 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002874 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002875no_delete:
2876 clear_inode(inode);
2877}
2878
2879/*
2880 * this returns the key found in the dir entry in the location pointer.
2881 * If no dir entries were found, location->objectid is 0.
2882 */
2883static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
2884 struct btrfs_key *location)
2885{
2886 const char *name = dentry->d_name.name;
2887 int namelen = dentry->d_name.len;
2888 struct btrfs_dir_item *di;
2889 struct btrfs_path *path;
2890 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04002891 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002892
2893 path = btrfs_alloc_path();
2894 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05002895
Chris Mason39279cc2007-06-12 06:35:45 -04002896 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
2897 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04002898 if (IS_ERR(di))
2899 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04002900 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05002901 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04002902 }
Chris Mason5f39d392007-10-15 16:14:19 -04002903 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04002904out:
Chris Mason39279cc2007-06-12 06:35:45 -04002905 btrfs_free_path(path);
2906 return ret;
Chris Mason39544012007-12-12 14:38:19 -05002907out_err:
2908 location->objectid = 0;
2909 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002910}
2911
2912/*
2913 * when we hit a tree root in a directory, the btrfs part of the inode
2914 * needs to be changed to reflect the root directory of the tree root. This
2915 * is kind of like crossing a mount point.
2916 */
2917static int fixup_tree_root_location(struct btrfs_root *root,
2918 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04002919 struct btrfs_root **sub_root,
2920 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04002921{
Chris Mason39279cc2007-06-12 06:35:45 -04002922 struct btrfs_root_item *ri;
2923
2924 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
2925 return 0;
2926 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
2927 return 0;
2928
Josef Bacik58176a92007-08-29 15:47:34 -04002929 *sub_root = btrfs_read_fs_root(root->fs_info, location,
2930 dentry->d_name.name,
2931 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002932 if (IS_ERR(*sub_root))
2933 return PTR_ERR(*sub_root);
2934
2935 ri = &(*sub_root)->root_item;
2936 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04002937 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2938 location->offset = 0;
2939
Chris Mason39279cc2007-06-12 06:35:45 -04002940 return 0;
2941}
2942
Chris Masone02119d2008-09-05 16:13:11 -04002943static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002944{
Chris Masone02119d2008-09-05 16:13:11 -04002945 struct btrfs_inode *bi = BTRFS_I(inode);
2946
2947 bi->i_acl = NULL;
2948 bi->i_default_acl = NULL;
2949
2950 bi->generation = 0;
2951 bi->last_trans = 0;
2952 bi->logged_trans = 0;
2953 bi->delalloc_bytes = 0;
2954 bi->disk_i_size = 0;
2955 bi->flags = 0;
2956 bi->index_cnt = (u64)-1;
Chris Mason49eb7e42008-09-11 15:53:12 -04002957 bi->log_dirty_trans = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002958 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2959 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04002960 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002961 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2962 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04002963 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Masonba1da2f2008-07-17 12:54:15 -04002964 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04002965 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04002966 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04002967 mutex_init(&BTRFS_I(inode)->log_mutex);
2968}
2969
2970static int btrfs_init_locked_inode(struct inode *inode, void *p)
2971{
2972 struct btrfs_iget_args *args = p;
2973 inode->i_ino = args->ino;
2974 init_btrfs_i(inode);
2975 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002976 return 0;
2977}
2978
2979static int btrfs_find_actor(struct inode *inode, void *opaque)
2980{
2981 struct btrfs_iget_args *args = opaque;
2982 return (args->ino == inode->i_ino &&
2983 args->root == BTRFS_I(inode)->root);
2984}
2985
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002986struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
2987 struct btrfs_root *root, int wait)
2988{
2989 struct inode *inode;
2990 struct btrfs_iget_args args;
2991 args.ino = objectid;
2992 args.root = root;
2993
2994 if (wait) {
2995 inode = ilookup5(s, objectid, btrfs_find_actor,
2996 (void *)&args);
2997 } else {
2998 inode = ilookup5_nowait(s, objectid, btrfs_find_actor,
2999 (void *)&args);
3000 }
3001 return inode;
3002}
3003
Chris Mason39279cc2007-06-12 06:35:45 -04003004struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
3005 struct btrfs_root *root)
3006{
3007 struct inode *inode;
3008 struct btrfs_iget_args args;
3009 args.ino = objectid;
3010 args.root = root;
3011
3012 inode = iget5_locked(s, objectid, btrfs_find_actor,
3013 btrfs_init_locked_inode,
3014 (void *)&args);
3015 return inode;
3016}
3017
Balaji Rao1a54ef82008-07-21 02:01:04 +05303018/* Get an inode object given its location and corresponding root.
3019 * Returns in *is_new if the inode was read from disk
3020 */
3021struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
3022 struct btrfs_root *root, int *is_new)
3023{
3024 struct inode *inode;
3025
3026 inode = btrfs_iget_locked(s, location->objectid, root);
3027 if (!inode)
3028 return ERR_PTR(-EACCES);
3029
3030 if (inode->i_state & I_NEW) {
3031 BTRFS_I(inode)->root = root;
3032 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3033 btrfs_read_locked_inode(inode);
3034 unlock_new_inode(inode);
3035 if (is_new)
3036 *is_new = 1;
3037 } else {
3038 if (is_new)
3039 *is_new = 0;
3040 }
3041
3042 return inode;
3043}
3044
Chris Mason39279cc2007-06-12 06:35:45 -04003045static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3046 struct nameidata *nd)
3047{
3048 struct inode * inode;
3049 struct btrfs_inode *bi = BTRFS_I(dir);
3050 struct btrfs_root *root = bi->root;
3051 struct btrfs_root *sub_root = root;
3052 struct btrfs_key location;
Balaji Rao1a54ef82008-07-21 02:01:04 +05303053 int ret, new, do_orphan = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003054
3055 if (dentry->d_name.len > BTRFS_NAME_LEN)
3056 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003057
Chris Mason39279cc2007-06-12 06:35:45 -04003058 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003059
Chris Mason39279cc2007-06-12 06:35:45 -04003060 if (ret < 0)
3061 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003062
Chris Mason39279cc2007-06-12 06:35:45 -04003063 inode = NULL;
3064 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04003065 ret = fixup_tree_root_location(root, &location, &sub_root,
3066 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04003067 if (ret < 0)
3068 return ERR_PTR(ret);
3069 if (ret > 0)
3070 return ERR_PTR(-ENOENT);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303071 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
3072 if (IS_ERR(inode))
3073 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003074
Balaji Rao1a54ef82008-07-21 02:01:04 +05303075 /* the inode and parent dir are two different roots */
3076 if (new && root != sub_root) {
3077 igrab(inode);
3078 sub_root->inode = inode;
3079 do_orphan = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003080 }
3081 }
Josef Bacik7b128762008-07-24 12:17:14 -04003082
3083 if (unlikely(do_orphan))
3084 btrfs_orphan_cleanup(sub_root);
3085
Chris Mason39279cc2007-06-12 06:35:45 -04003086 return d_splice_alias(inode, dentry);
3087}
3088
Chris Mason39279cc2007-06-12 06:35:45 -04003089static unsigned char btrfs_filetype_table[] = {
3090 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3091};
3092
David Woodhousecbdf5a22008-08-06 19:42:33 +01003093static int btrfs_real_readdir(struct file *filp, void *dirent,
3094 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003095{
Chris Mason6da6aba2007-12-18 16:15:09 -05003096 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003097 struct btrfs_root *root = BTRFS_I(inode)->root;
3098 struct btrfs_item *item;
3099 struct btrfs_dir_item *di;
3100 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003101 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003102 struct btrfs_path *path;
3103 int ret;
3104 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003105 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003106 int slot;
3107 int advance;
3108 unsigned char d_type;
3109 int over = 0;
3110 u32 di_cur;
3111 u32 di_total;
3112 u32 di_len;
3113 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003114 char tmp_name[32];
3115 char *name_ptr;
3116 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003117
3118 /* FIXME, use a real flag for deciding about the key type */
3119 if (root->fs_info->tree_root == root)
3120 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003121
Chris Mason39544012007-12-12 14:38:19 -05003122 /* special case for "." */
3123 if (filp->f_pos == 0) {
3124 over = filldir(dirent, ".", 1,
3125 1, inode->i_ino,
3126 DT_DIR);
3127 if (over)
3128 return 0;
3129 filp->f_pos = 1;
3130 }
Chris Mason39544012007-12-12 14:38:19 -05003131 /* special case for .., just use the back ref */
3132 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003133 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003134 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003135 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003136 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003137 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003138 filp->f_pos = 2;
3139 }
3140
David Woodhouse49593bf2008-08-17 17:08:36 +01003141 path = btrfs_alloc_path();
3142 path->reada = 2;
3143
Chris Mason39279cc2007-06-12 06:35:45 -04003144 btrfs_set_key_type(&key, key_type);
3145 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003146 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003147
Chris Mason39279cc2007-06-12 06:35:45 -04003148 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3149 if (ret < 0)
3150 goto err;
3151 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003152
3153 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003154 leaf = path->nodes[0];
3155 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003156 slot = path->slots[0];
3157 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003158 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003159 ret = btrfs_next_leaf(root, path);
3160 if (ret)
3161 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003162 leaf = path->nodes[0];
3163 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003164 slot = path->slots[0];
3165 } else {
3166 slot++;
3167 path->slots[0]++;
3168 }
3169 }
3170 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003171 item = btrfs_item_nr(leaf, slot);
3172 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3173
3174 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003175 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003176 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003177 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003178 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003179 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003180
3181 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003182
Chris Mason39279cc2007-06-12 06:35:45 -04003183 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3184 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003185 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003186
3187 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003188 struct btrfs_key location;
3189
3190 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003191 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003192 name_ptr = tmp_name;
3193 } else {
3194 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003195 if (!name_ptr) {
3196 ret = -ENOMEM;
3197 goto err;
3198 }
Chris Mason5f39d392007-10-15 16:14:19 -04003199 }
3200 read_extent_buffer(leaf, name_ptr,
3201 (unsigned long)(di + 1), name_len);
3202
3203 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3204 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003205 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003206 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003207 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003208
3209 if (name_ptr != tmp_name)
3210 kfree(name_ptr);
3211
Chris Mason39279cc2007-06-12 06:35:45 -04003212 if (over)
3213 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003214
Josef Bacik5103e942007-11-16 11:45:54 -05003215 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003216 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003217 di_cur += di_len;
3218 di = (struct btrfs_dir_item *)((char *)di + di_len);
3219 }
3220 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003221
3222 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003223 if (key_type == BTRFS_DIR_INDEX_KEY)
3224 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
3225 else
3226 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003227nopos:
3228 ret = 0;
3229err:
Chris Mason39279cc2007-06-12 06:35:45 -04003230 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003231 return ret;
3232}
3233
3234int btrfs_write_inode(struct inode *inode, int wait)
3235{
3236 struct btrfs_root *root = BTRFS_I(inode)->root;
3237 struct btrfs_trans_handle *trans;
3238 int ret = 0;
3239
Chris Mason4ca8b412008-08-05 13:30:48 -04003240 if (root->fs_info->closing > 1)
3241 return 0;
3242
Chris Mason39279cc2007-06-12 06:35:45 -04003243 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003244 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003245 btrfs_set_trans_block_group(trans, inode);
3246 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003247 }
3248 return ret;
3249}
3250
3251/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003252 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003253 * inode changes. But, it is most likely to find the inode in cache.
3254 * FIXME, needs more benchmarking...there are no reasons other than performance
3255 * to keep or drop this code.
3256 */
3257void btrfs_dirty_inode(struct inode *inode)
3258{
3259 struct btrfs_root *root = BTRFS_I(inode)->root;
3260 struct btrfs_trans_handle *trans;
3261
Chris Masonf9295742008-07-17 12:54:14 -04003262 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003263 btrfs_set_trans_block_group(trans, inode);
3264 btrfs_update_inode(trans, root, inode);
3265 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003266}
3267
Chris Masond352ac62008-09-29 15:18:18 -04003268/*
3269 * find the highest existing sequence number in a directory
3270 * and then set the in-memory index_cnt variable to reflect
3271 * free sequence numbers
3272 */
Josef Bacikaec74772008-07-24 12:12:38 -04003273static int btrfs_set_inode_index_count(struct inode *inode)
3274{
3275 struct btrfs_root *root = BTRFS_I(inode)->root;
3276 struct btrfs_key key, found_key;
3277 struct btrfs_path *path;
3278 struct extent_buffer *leaf;
3279 int ret;
3280
3281 key.objectid = inode->i_ino;
3282 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
3283 key.offset = (u64)-1;
3284
3285 path = btrfs_alloc_path();
3286 if (!path)
3287 return -ENOMEM;
3288
3289 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3290 if (ret < 0)
3291 goto out;
3292 /* FIXME: we should be able to handle this */
3293 if (ret == 0)
3294 goto out;
3295 ret = 0;
3296
3297 /*
3298 * MAGIC NUMBER EXPLANATION:
3299 * since we search a directory based on f_pos we have to start at 2
3300 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
3301 * else has to start at 2
3302 */
3303 if (path->slots[0] == 0) {
3304 BTRFS_I(inode)->index_cnt = 2;
3305 goto out;
3306 }
3307
3308 path->slots[0]--;
3309
3310 leaf = path->nodes[0];
3311 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3312
3313 if (found_key.objectid != inode->i_ino ||
3314 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
3315 BTRFS_I(inode)->index_cnt = 2;
3316 goto out;
3317 }
3318
3319 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
3320out:
3321 btrfs_free_path(path);
3322 return ret;
3323}
3324
Chris Masond352ac62008-09-29 15:18:18 -04003325/*
3326 * helper to find a free sequence number in a given directory. This current
3327 * code is very simple, later versions will do smarter things in the btree
3328 */
Chris Mason00e4e6b2008-08-05 11:18:09 -04003329static int btrfs_set_inode_index(struct inode *dir, struct inode *inode,
3330 u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04003331{
3332 int ret = 0;
3333
3334 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
3335 ret = btrfs_set_inode_index_count(dir);
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003336 if (ret) {
Josef Bacikaec74772008-07-24 12:12:38 -04003337 return ret;
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003338 }
Josef Bacikaec74772008-07-24 12:12:38 -04003339 }
3340
Chris Mason00e4e6b2008-08-05 11:18:09 -04003341 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04003342 BTRFS_I(dir)->index_cnt++;
3343
3344 return ret;
3345}
3346
Chris Mason39279cc2007-06-12 06:35:45 -04003347static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
3348 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04003349 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05003350 const char *name, int name_len,
3351 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003352 u64 objectid,
3353 struct btrfs_block_group_cache *group,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003354 int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04003355{
3356 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003357 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04003358 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04003359 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04003360 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05003361 struct btrfs_inode_ref *ref;
3362 struct btrfs_key key[2];
3363 u32 sizes[2];
3364 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003365 int ret;
3366 int owner;
3367
Chris Mason5f39d392007-10-15 16:14:19 -04003368 path = btrfs_alloc_path();
3369 BUG_ON(!path);
3370
Chris Mason39279cc2007-06-12 06:35:45 -04003371 inode = new_inode(root->fs_info->sb);
3372 if (!inode)
3373 return ERR_PTR(-ENOMEM);
3374
Josef Bacikaec74772008-07-24 12:12:38 -04003375 if (dir) {
Chris Mason00e4e6b2008-08-05 11:18:09 -04003376 ret = btrfs_set_inode_index(dir, inode, index);
Josef Bacikaec74772008-07-24 12:12:38 -04003377 if (ret)
3378 return ERR_PTR(ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003379 }
3380 /*
3381 * index_cnt is ignored for everything but a dir,
3382 * btrfs_get_inode_index_count has an explanation for the magic
3383 * number
3384 */
Chris Masone02119d2008-09-05 16:13:11 -04003385 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003386 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04003387 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04003388 BTRFS_I(inode)->generation = trans->transid;
Chris Masonb888db22007-08-27 16:49:44 -04003389
Chris Mason39279cc2007-06-12 06:35:45 -04003390 if (mode & S_IFDIR)
3391 owner = 0;
3392 else
3393 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04003394 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04003395 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04003396 if (!new_inode_group) {
3397 printk("find_block group failed\n");
3398 new_inode_group = group;
3399 }
3400 BTRFS_I(inode)->block_group = new_inode_group;
Chris Mason9c583092008-01-29 15:15:18 -05003401
3402 key[0].objectid = objectid;
3403 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
3404 key[0].offset = 0;
3405
3406 key[1].objectid = objectid;
3407 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
3408 key[1].offset = ref_objectid;
3409
3410 sizes[0] = sizeof(struct btrfs_inode_item);
3411 sizes[1] = name_len + sizeof(*ref);
3412
3413 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
3414 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04003415 goto fail;
3416
Chris Mason9c583092008-01-29 15:15:18 -05003417 if (objectid > root->highest_inode)
3418 root->highest_inode = objectid;
3419
Chris Mason39279cc2007-06-12 06:35:45 -04003420 inode->i_uid = current->fsuid;
3421 inode->i_gid = current->fsgid;
3422 inode->i_mode = mode;
3423 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003424 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003425 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04003426 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3427 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003428 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003429
3430 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3431 struct btrfs_inode_ref);
3432 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003433 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05003434 ptr = (unsigned long)(ref + 1);
3435 write_extent_buffer(path->nodes[0], name, ptr, name_len);
3436
Chris Mason5f39d392007-10-15 16:14:19 -04003437 btrfs_mark_buffer_dirty(path->nodes[0]);
3438 btrfs_free_path(path);
3439
Chris Mason39279cc2007-06-12 06:35:45 -04003440 location = &BTRFS_I(inode)->location;
3441 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04003442 location->offset = 0;
3443 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
3444
Chris Mason39279cc2007-06-12 06:35:45 -04003445 insert_inode_hash(inode);
3446 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003447fail:
Josef Bacikaec74772008-07-24 12:12:38 -04003448 if (dir)
3449 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04003450 btrfs_free_path(path);
3451 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003452}
3453
3454static inline u8 btrfs_inode_type(struct inode *inode)
3455{
3456 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
3457}
3458
Chris Masond352ac62008-09-29 15:18:18 -04003459/*
3460 * utility function to add 'inode' into 'parent_inode' with
3461 * a give name and a given sequence number.
3462 * if 'add_backref' is true, also insert a backref from the
3463 * inode to the parent directory.
3464 */
Chris Masone02119d2008-09-05 16:13:11 -04003465int btrfs_add_link(struct btrfs_trans_handle *trans,
3466 struct inode *parent_inode, struct inode *inode,
3467 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003468{
3469 int ret;
3470 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04003471 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04003472
Chris Mason39279cc2007-06-12 06:35:45 -04003473 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003474 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
3475 key.offset = 0;
3476
Chris Masone02119d2008-09-05 16:13:11 -04003477 ret = btrfs_insert_dir_item(trans, root, name, name_len,
3478 parent_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04003479 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04003480 index);
Chris Mason39279cc2007-06-12 06:35:45 -04003481 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05003482 if (add_backref) {
3483 ret = btrfs_insert_inode_ref(trans, root,
Chris Masone02119d2008-09-05 16:13:11 -04003484 name, name_len,
3485 inode->i_ino,
3486 parent_inode->i_ino,
3487 index);
Chris Mason9c583092008-01-29 15:15:18 -05003488 }
Chris Masondbe674a2008-07-17 12:54:05 -04003489 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04003490 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04003491 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04003492 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003493 }
3494 return ret;
3495}
3496
3497static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05003498 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003499 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003500{
Chris Masone02119d2008-09-05 16:13:11 -04003501 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3502 inode, dentry->d_name.name,
3503 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003504 if (!err) {
3505 d_instantiate(dentry, inode);
3506 return 0;
3507 }
3508 if (err > 0)
3509 err = -EEXIST;
3510 return err;
3511}
3512
Josef Bacik618e21d2007-07-11 10:18:17 -04003513static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
3514 int mode, dev_t rdev)
3515{
3516 struct btrfs_trans_handle *trans;
3517 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003518 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04003519 int err;
3520 int drop_inode = 0;
3521 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05003522 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003523 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04003524
3525 if (!new_valid_dev(rdev))
3526 return -EINVAL;
3527
Chris Mason1832a6d2007-12-21 16:27:21 -05003528 err = btrfs_check_free_space(root, 1, 0);
3529 if (err)
3530 goto fail;
3531
Josef Bacik618e21d2007-07-11 10:18:17 -04003532 trans = btrfs_start_transaction(root, 1);
3533 btrfs_set_trans_block_group(trans, dir);
3534
3535 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3536 if (err) {
3537 err = -ENOSPC;
3538 goto out_unlock;
3539 }
3540
Josef Bacikaec74772008-07-24 12:12:38 -04003541 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003542 dentry->d_name.len,
3543 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003544 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003545 err = PTR_ERR(inode);
3546 if (IS_ERR(inode))
3547 goto out_unlock;
3548
Josef Bacik33268ea2008-07-24 12:16:36 -04003549 err = btrfs_init_acl(inode, dir);
3550 if (err) {
3551 drop_inode = 1;
3552 goto out_unlock;
3553 }
3554
Josef Bacik618e21d2007-07-11 10:18:17 -04003555 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003556 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003557 if (err)
3558 drop_inode = 1;
3559 else {
3560 inode->i_op = &btrfs_special_inode_operations;
3561 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04003562 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04003563 }
3564 dir->i_sb->s_dirt = 1;
3565 btrfs_update_inode_block_group(trans, inode);
3566 btrfs_update_inode_block_group(trans, dir);
3567out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003568 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003569 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003570fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04003571 if (drop_inode) {
3572 inode_dec_link_count(inode);
3573 iput(inode);
3574 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003575 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04003576 return err;
3577}
3578
Chris Mason39279cc2007-06-12 06:35:45 -04003579static int btrfs_create(struct inode *dir, struct dentry *dentry,
3580 int mode, struct nameidata *nd)
3581{
3582 struct btrfs_trans_handle *trans;
3583 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003584 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003585 int err;
3586 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05003587 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003588 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003589 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003590
Chris Mason1832a6d2007-12-21 16:27:21 -05003591 err = btrfs_check_free_space(root, 1, 0);
3592 if (err)
3593 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003594 trans = btrfs_start_transaction(root, 1);
3595 btrfs_set_trans_block_group(trans, dir);
3596
3597 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3598 if (err) {
3599 err = -ENOSPC;
3600 goto out_unlock;
3601 }
3602
Josef Bacikaec74772008-07-24 12:12:38 -04003603 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003604 dentry->d_name.len,
3605 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003606 objectid, BTRFS_I(dir)->block_group, mode,
3607 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003608 err = PTR_ERR(inode);
3609 if (IS_ERR(inode))
3610 goto out_unlock;
3611
Josef Bacik33268ea2008-07-24 12:16:36 -04003612 err = btrfs_init_acl(inode, dir);
3613 if (err) {
3614 drop_inode = 1;
3615 goto out_unlock;
3616 }
3617
Chris Mason39279cc2007-06-12 06:35:45 -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);
Chris Mason39279cc2007-06-12 06:35:45 -04003620 if (err)
3621 drop_inode = 1;
3622 else {
3623 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003624 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003625 inode->i_fop = &btrfs_file_operations;
3626 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003627 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003628 }
3629 dir->i_sb->s_dirt = 1;
3630 btrfs_update_inode_block_group(trans, inode);
3631 btrfs_update_inode_block_group(trans, dir);
3632out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003633 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003634 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003635fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003636 if (drop_inode) {
3637 inode_dec_link_count(inode);
3638 iput(inode);
3639 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003640 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003641 return err;
3642}
3643
3644static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
3645 struct dentry *dentry)
3646{
3647 struct btrfs_trans_handle *trans;
3648 struct btrfs_root *root = BTRFS_I(dir)->root;
3649 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003650 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05003651 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003652 int err;
3653 int drop_inode = 0;
3654
3655 if (inode->i_nlink == 0)
3656 return -ENOENT;
3657
Chris Masone02119d2008-09-05 16:13:11 -04003658 btrfs_inc_nlink(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05003659 err = btrfs_check_free_space(root, 1, 0);
3660 if (err)
3661 goto fail;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003662 err = btrfs_set_inode_index(dir, inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003663 if (err)
3664 goto fail;
3665
Chris Mason39279cc2007-06-12 06:35:45 -04003666 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003667
Chris Mason39279cc2007-06-12 06:35:45 -04003668 btrfs_set_trans_block_group(trans, dir);
3669 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04003670
Chris Mason00e4e6b2008-08-05 11:18:09 -04003671 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04003672
Chris Mason39279cc2007-06-12 06:35:45 -04003673 if (err)
3674 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003675
Chris Mason39279cc2007-06-12 06:35:45 -04003676 dir->i_sb->s_dirt = 1;
3677 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04003678 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003679
Chris Mason54aa1f42007-06-22 14:16:25 -04003680 if (err)
3681 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003682
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003683 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003684 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003685fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003686 if (drop_inode) {
3687 inode_dec_link_count(inode);
3688 iput(inode);
3689 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003690 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003691 return err;
3692}
3693
Chris Mason39279cc2007-06-12 06:35:45 -04003694static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3695{
Chris Masonb9d86662008-05-02 16:13:49 -04003696 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003697 struct btrfs_trans_handle *trans;
3698 struct btrfs_root *root = BTRFS_I(dir)->root;
3699 int err = 0;
3700 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04003701 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003702 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003703 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003704
Chris Mason1832a6d2007-12-21 16:27:21 -05003705 err = btrfs_check_free_space(root, 1, 0);
3706 if (err)
3707 goto out_unlock;
3708
Chris Mason39279cc2007-06-12 06:35:45 -04003709 trans = btrfs_start_transaction(root, 1);
3710 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04003711
Chris Mason39279cc2007-06-12 06:35:45 -04003712 if (IS_ERR(trans)) {
3713 err = PTR_ERR(trans);
3714 goto out_unlock;
3715 }
3716
3717 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3718 if (err) {
3719 err = -ENOSPC;
3720 goto out_unlock;
3721 }
3722
Josef Bacikaec74772008-07-24 12:12:38 -04003723 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003724 dentry->d_name.len,
3725 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003726 BTRFS_I(dir)->block_group, S_IFDIR | mode,
3727 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003728 if (IS_ERR(inode)) {
3729 err = PTR_ERR(inode);
3730 goto out_fail;
3731 }
Chris Mason5f39d392007-10-15 16:14:19 -04003732
Chris Mason39279cc2007-06-12 06:35:45 -04003733 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04003734
3735 err = btrfs_init_acl(inode, dir);
3736 if (err)
3737 goto out_fail;
3738
Chris Mason39279cc2007-06-12 06:35:45 -04003739 inode->i_op = &btrfs_dir_inode_operations;
3740 inode->i_fop = &btrfs_dir_file_operations;
3741 btrfs_set_trans_block_group(trans, inode);
3742
Chris Masondbe674a2008-07-17 12:54:05 -04003743 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003744 err = btrfs_update_inode(trans, root, inode);
3745 if (err)
3746 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003747
Chris Masone02119d2008-09-05 16:13:11 -04003748 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3749 inode, dentry->d_name.name,
3750 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003751 if (err)
3752 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003753
Chris Mason39279cc2007-06-12 06:35:45 -04003754 d_instantiate(dentry, inode);
3755 drop_on_err = 0;
3756 dir->i_sb->s_dirt = 1;
3757 btrfs_update_inode_block_group(trans, inode);
3758 btrfs_update_inode_block_group(trans, dir);
3759
3760out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003761 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003762 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04003763
Chris Mason39279cc2007-06-12 06:35:45 -04003764out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003765 if (drop_on_err)
3766 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003767 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003768 return err;
3769}
3770
Chris Masond352ac62008-09-29 15:18:18 -04003771/* helper for btfs_get_extent. Given an existing extent in the tree,
3772 * and an extent that you want to insert, deal with overlap and insert
3773 * the new extent into the tree.
3774 */
Chris Mason3b951512008-04-17 11:29:12 -04003775static int merge_extent_mapping(struct extent_map_tree *em_tree,
3776 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003777 struct extent_map *em,
3778 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04003779{
3780 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04003781
Chris Masone6dcd2d2008-07-17 12:53:50 -04003782 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
3783 start_diff = map_start - em->start;
3784 em->start = map_start;
3785 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04003786 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
3787 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003788 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04003789 em->block_len -= start_diff;
3790 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003791 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04003792}
3793
Chris Masonc8b97812008-10-29 14:49:59 -04003794static noinline int uncompress_inline(struct btrfs_path *path,
3795 struct inode *inode, struct page *page,
3796 size_t pg_offset, u64 extent_offset,
3797 struct btrfs_file_extent_item *item)
3798{
3799 int ret;
3800 struct extent_buffer *leaf = path->nodes[0];
3801 char *tmp;
3802 size_t max_size;
3803 unsigned long inline_size;
3804 unsigned long ptr;
3805
3806 WARN_ON(pg_offset != 0);
3807 max_size = btrfs_file_extent_ram_bytes(leaf, item);
3808 inline_size = btrfs_file_extent_inline_item_len(leaf,
3809 btrfs_item_nr(leaf, path->slots[0]));
3810 tmp = kmalloc(inline_size, GFP_NOFS);
3811 ptr = btrfs_file_extent_inline_start(item);
3812
3813 read_extent_buffer(leaf, tmp, ptr, inline_size);
3814
Chris Mason5b050f02008-11-11 09:34:41 -05003815 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04003816 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
3817 inline_size, max_size);
3818 if (ret) {
3819 char *kaddr = kmap_atomic(page, KM_USER0);
3820 unsigned long copy_size = min_t(u64,
3821 PAGE_CACHE_SIZE - pg_offset,
3822 max_size - extent_offset);
3823 memset(kaddr + pg_offset, 0, copy_size);
3824 kunmap_atomic(kaddr, KM_USER0);
3825 }
3826 kfree(tmp);
3827 return 0;
3828}
3829
Chris Masond352ac62008-09-29 15:18:18 -04003830/*
3831 * a bit scary, this does extent mapping from logical file offset to the disk.
3832 * the ugly parts come from merging extents from the disk with the
3833 * in-ram representation. This gets more complex because of the data=ordered code,
3834 * where the in-ram extents might be locked pending data=ordered completion.
3835 *
3836 * This also copies inline extents directly into the page.
3837 */
Chris Masona52d9a82007-08-27 16:49:44 -04003838struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05003839 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04003840 int create)
3841{
3842 int ret;
3843 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04003844 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04003845 u64 extent_start = 0;
3846 u64 extent_end = 0;
3847 u64 objectid = inode->i_ino;
3848 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04003849 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04003850 struct btrfs_root *root = BTRFS_I(inode)->root;
3851 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04003852 struct extent_buffer *leaf;
3853 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04003854 struct extent_map *em = NULL;
3855 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05003856 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003857 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003858 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04003859
Chris Masona52d9a82007-08-27 16:49:44 -04003860again:
Chris Masond1310b22008-01-24 16:13:08 -05003861 spin_lock(&em_tree->lock);
3862 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04003863 if (em)
3864 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003865 spin_unlock(&em_tree->lock);
3866
Chris Masona52d9a82007-08-27 16:49:44 -04003867 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04003868 if (em->start > start || em->start + em->len <= start)
3869 free_extent_map(em);
3870 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05003871 free_extent_map(em);
3872 else
3873 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003874 }
Chris Masond1310b22008-01-24 16:13:08 -05003875 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04003876 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05003877 err = -ENOMEM;
3878 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003879 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003880 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003881 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05003882 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05003883 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04003884 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04003885
3886 if (!path) {
3887 path = btrfs_alloc_path();
3888 BUG_ON(!path);
3889 }
3890
Chris Mason179e29e2007-11-01 11:28:41 -04003891 ret = btrfs_lookup_file_extent(trans, root, path,
3892 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04003893 if (ret < 0) {
3894 err = ret;
3895 goto out;
3896 }
3897
3898 if (ret != 0) {
3899 if (path->slots[0] == 0)
3900 goto not_found;
3901 path->slots[0]--;
3902 }
3903
Chris Mason5f39d392007-10-15 16:14:19 -04003904 leaf = path->nodes[0];
3905 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04003906 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04003907 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04003908 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3909 found_type = btrfs_key_type(&found_key);
3910 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04003911 found_type != BTRFS_EXTENT_DATA_KEY) {
3912 goto not_found;
3913 }
3914
Chris Mason5f39d392007-10-15 16:14:19 -04003915 found_type = btrfs_file_extent_type(leaf, item);
3916 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003917 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04003918 if (found_type == BTRFS_FILE_EXTENT_REG ||
3919 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04003920 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04003921 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04003922 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
3923 size_t size;
3924 size = btrfs_file_extent_inline_len(leaf, item);
3925 extent_end = (extent_start + size + root->sectorsize - 1) &
3926 ~((u64)root->sectorsize - 1);
3927 }
3928
3929 if (start >= extent_end) {
3930 path->slots[0]++;
3931 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3932 ret = btrfs_next_leaf(root, path);
3933 if (ret < 0) {
3934 err = ret;
3935 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003936 }
Yan Zheng9036c102008-10-30 14:19:41 -04003937 if (ret > 0)
3938 goto not_found;
3939 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04003940 }
Yan Zheng9036c102008-10-30 14:19:41 -04003941 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3942 if (found_key.objectid != objectid ||
3943 found_key.type != BTRFS_EXTENT_DATA_KEY)
3944 goto not_found;
3945 if (start + len <= found_key.offset)
3946 goto not_found;
3947 em->start = start;
3948 em->len = found_key.offset - start;
3949 goto not_found_em;
3950 }
3951
Yan Zhengd899e052008-10-30 14:25:28 -04003952 if (found_type == BTRFS_FILE_EXTENT_REG ||
3953 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04003954 em->start = extent_start;
3955 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05003956 em->orig_start = extent_start -
3957 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04003958 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
3959 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003960 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04003961 goto insert;
3962 }
Chris Masonc8b97812008-10-29 14:49:59 -04003963 if (compressed) {
3964 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
3965 em->block_start = bytenr;
3966 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
3967 item);
3968 } else {
3969 bytenr += btrfs_file_extent_offset(leaf, item);
3970 em->block_start = bytenr;
3971 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04003972 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
3973 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04003974 }
Chris Masona52d9a82007-08-27 16:49:44 -04003975 goto insert;
3976 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003977 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04003978 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04003979 size_t size;
3980 size_t extent_offset;
3981 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04003982
Chris Masona52d9a82007-08-27 16:49:44 -04003983 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04003984 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04003985 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04003986 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04003987 goto out;
3988 }
3989
Yan Zheng9036c102008-10-30 14:19:41 -04003990 size = btrfs_file_extent_inline_len(leaf, item);
3991 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05003992 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04003993 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04003994 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05003995 em->len = (copy_size + root->sectorsize - 1) &
3996 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05003997 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04003998 if (compressed)
3999 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004000 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004001 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004002 if (btrfs_file_extent_compression(leaf, item) ==
4003 BTRFS_COMPRESS_ZLIB) {
4004 ret = uncompress_inline(path, inode, page,
4005 pg_offset,
4006 extent_offset, item);
4007 BUG_ON(ret);
4008 } else {
4009 map = kmap(page);
4010 read_extent_buffer(leaf, map + pg_offset, ptr,
4011 copy_size);
4012 kunmap(page);
4013 }
Chris Mason179e29e2007-11-01 11:28:41 -04004014 flush_dcache_page(page);
4015 } else if (create && PageUptodate(page)) {
4016 if (!trans) {
4017 kunmap(page);
4018 free_extent_map(em);
4019 em = NULL;
4020 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004021 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004022 goto again;
4023 }
Chris Masonc8b97812008-10-29 14:49:59 -04004024 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004025 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004026 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004027 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004028 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004029 }
Chris Masond1310b22008-01-24 16:13:08 -05004030 set_extent_uptodate(io_tree, em->start,
4031 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004032 goto insert;
4033 } else {
4034 printk("unkknown found_type %d\n", found_type);
4035 WARN_ON(1);
4036 }
4037not_found:
4038 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004039 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004040not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004041 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004042 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004043insert:
4044 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004045 if (em->start > start || extent_map_end(em) <= start) {
4046 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04004047 err = -EIO;
4048 goto out;
4049 }
Chris Masond1310b22008-01-24 16:13:08 -05004050
4051 err = 0;
4052 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004053 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004054 /* it is possible that someone inserted the extent into the tree
4055 * while we had the lock dropped. It is also possible that
4056 * an overlapping map exists in the tree
4057 */
Chris Masona52d9a82007-08-27 16:49:44 -04004058 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004059 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004060
4061 ret = 0;
4062
Chris Mason3b951512008-04-17 11:29:12 -04004063 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004064 if (existing && (existing->start > start ||
4065 existing->start + existing->len <= start)) {
4066 free_extent_map(existing);
4067 existing = NULL;
4068 }
Chris Mason3b951512008-04-17 11:29:12 -04004069 if (!existing) {
4070 existing = lookup_extent_mapping(em_tree, em->start,
4071 em->len);
4072 if (existing) {
4073 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004074 em, start,
4075 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004076 free_extent_map(existing);
4077 if (err) {
4078 free_extent_map(em);
4079 em = NULL;
4080 }
4081 } else {
4082 err = -EIO;
4083 printk("failing to insert %Lu %Lu\n",
4084 start, len);
4085 free_extent_map(em);
4086 em = NULL;
4087 }
4088 } else {
4089 free_extent_map(em);
4090 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004091 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004092 }
Chris Masona52d9a82007-08-27 16:49:44 -04004093 }
Chris Masond1310b22008-01-24 16:13:08 -05004094 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004095out:
Chris Masonf4219502008-07-22 11:18:09 -04004096 if (path)
4097 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004098 if (trans) {
4099 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004100 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04004101 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004102 }
Chris Masona52d9a82007-08-27 16:49:44 -04004103 }
Chris Masona52d9a82007-08-27 16:49:44 -04004104 if (err) {
4105 free_extent_map(em);
4106 WARN_ON(1);
4107 return ERR_PTR(err);
4108 }
4109 return em;
4110}
4111
Chris Mason16432982008-04-10 10:23:21 -04004112static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4113 const struct iovec *iov, loff_t offset,
4114 unsigned long nr_segs)
4115{
Chris Masone1c4b742008-04-22 13:26:46 -04004116 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004117}
4118
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004119static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04004120{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004121 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004122}
4123
Chris Mason9ebefb182007-06-15 13:50:00 -04004124int btrfs_readpage(struct file *file, struct page *page)
4125{
Chris Masond1310b22008-01-24 16:13:08 -05004126 struct extent_io_tree *tree;
4127 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004128 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004129}
Chris Mason1832a6d2007-12-21 16:27:21 -05004130
Chris Mason39279cc2007-06-12 06:35:45 -04004131static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4132{
Chris Masond1310b22008-01-24 16:13:08 -05004133 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004134
4135
4136 if (current->flags & PF_MEMALLOC) {
4137 redirty_page_for_writepage(wbc, page);
4138 unlock_page(page);
4139 return 0;
4140 }
Chris Masond1310b22008-01-24 16:13:08 -05004141 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004142 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4143}
Chris Mason39279cc2007-06-12 06:35:45 -04004144
Chris Masonf4219502008-07-22 11:18:09 -04004145int btrfs_writepages(struct address_space *mapping,
4146 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04004147{
Chris Masond1310b22008-01-24 16:13:08 -05004148 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004149
Chris Masond1310b22008-01-24 16:13:08 -05004150 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04004151 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4152}
4153
Chris Mason3ab2fb52007-11-08 10:59:22 -05004154static int
4155btrfs_readpages(struct file *file, struct address_space *mapping,
4156 struct list_head *pages, unsigned nr_pages)
4157{
Chris Masond1310b22008-01-24 16:13:08 -05004158 struct extent_io_tree *tree;
4159 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004160 return extent_readpages(tree, mapping, pages, nr_pages,
4161 btrfs_get_extent);
4162}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004163static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004164{
Chris Masond1310b22008-01-24 16:13:08 -05004165 struct extent_io_tree *tree;
4166 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004167 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004168
Chris Masond1310b22008-01-24 16:13:08 -05004169 tree = &BTRFS_I(page->mapping->host)->io_tree;
4170 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004171 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004172 if (ret == 1) {
4173 ClearPagePrivate(page);
4174 set_page_private(page, 0);
4175 page_cache_release(page);
4176 }
4177 return ret;
4178}
Chris Mason39279cc2007-06-12 06:35:45 -04004179
Chris Masone6dcd2d2008-07-17 12:53:50 -04004180static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4181{
Chris Mason98509cf2008-09-11 15:51:43 -04004182 if (PageWriteback(page) || PageDirty(page))
4183 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004184 return __btrfs_releasepage(page, gfp_flags);
4185}
4186
Chris Masona52d9a82007-08-27 16:49:44 -04004187static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4188{
Chris Masond1310b22008-01-24 16:13:08 -05004189 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004190 struct btrfs_ordered_extent *ordered;
4191 u64 page_start = page_offset(page);
4192 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004193
Chris Masone6dcd2d2008-07-17 12:53:50 -04004194 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004195 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004196 if (offset) {
4197 btrfs_releasepage(page, GFP_NOFS);
4198 return;
4199 }
4200
4201 lock_extent(tree, page_start, page_end, GFP_NOFS);
4202 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4203 page_offset(page));
4204 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04004205 /*
4206 * IO on this page will never be started, so we need
4207 * to account for any ordered extents now
4208 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004209 clear_extent_bit(tree, page_start, page_end,
4210 EXTENT_DIRTY | EXTENT_DELALLOC |
4211 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04004212 btrfs_finish_ordered_io(page->mapping->host,
4213 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004214 btrfs_put_ordered_extent(ordered);
4215 lock_extent(tree, page_start, page_end, GFP_NOFS);
4216 }
4217 clear_extent_bit(tree, page_start, page_end,
4218 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4219 EXTENT_ORDERED,
4220 1, 1, GFP_NOFS);
4221 __btrfs_releasepage(page, GFP_NOFS);
4222
Chris Mason4a096752008-07-21 10:29:44 -04004223 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004224 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004225 ClearPagePrivate(page);
4226 set_page_private(page, 0);
4227 page_cache_release(page);
4228 }
Chris Mason39279cc2007-06-12 06:35:45 -04004229}
4230
Chris Mason9ebefb182007-06-15 13:50:00 -04004231/*
4232 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
4233 * called from a page fault handler when a page is first dirtied. Hence we must
4234 * be careful to check for EOF conditions here. We set the page up correctly
4235 * for a written page which means we get ENOSPC checking when writing into
4236 * holes and correct delalloc and unwritten extent mapping on filesystems that
4237 * support these features.
4238 *
4239 * We are not allowed to take the i_mutex here so we have to play games to
4240 * protect against truncate races as the page could now be beyond EOF. Because
4241 * vmtruncate() writes the inode size before removing pages, once we have the
4242 * page lock we can determine safely if the page is beyond EOF. If it is not
4243 * beyond EOF, then the page is guaranteed safe against truncation until we
4244 * unlock the page.
4245 */
4246int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4247{
Chris Mason6da6aba2007-12-18 16:15:09 -05004248 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05004249 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004250 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4251 struct btrfs_ordered_extent *ordered;
4252 char *kaddr;
4253 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04004254 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05004255 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04004256 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004257 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04004258
Chris Mason1832a6d2007-12-21 16:27:21 -05004259 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05004260 if (ret)
4261 goto out;
4262
4263 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004264again:
Chris Mason9ebefb182007-06-15 13:50:00 -04004265 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04004266 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004267 page_start = page_offset(page);
4268 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004269
Chris Mason9ebefb182007-06-15 13:50:00 -04004270 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04004271 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04004272 /* page got truncated out from underneath us */
4273 goto out_unlock;
4274 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004275 wait_on_page_writeback(page);
4276
4277 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
4278 set_page_extent_mapped(page);
4279
Chris Masoneb84ae02008-07-17 13:53:27 -04004280 /*
4281 * we can't set the delalloc bits if there are pending ordered
4282 * extents. Drop our locks and wait for them to finish
4283 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004284 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4285 if (ordered) {
4286 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4287 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004288 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004289 btrfs_put_ordered_extent(ordered);
4290 goto again;
4291 }
4292
Chris Masonea8c2812008-08-04 23:17:27 -04004293 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004294 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04004295
4296 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04004297 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004298 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04004299 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04004300 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04004301
Chris Masone6dcd2d2008-07-17 12:53:50 -04004302 if (zero_start != PAGE_CACHE_SIZE) {
4303 kaddr = kmap(page);
4304 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
4305 flush_dcache_page(page);
4306 kunmap(page);
4307 }
Chris Mason247e7432008-07-17 12:53:51 -04004308 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004309 set_page_dirty(page);
4310 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04004311
4312out_unlock:
4313 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05004314out:
Chris Mason9ebefb182007-06-15 13:50:00 -04004315 return ret;
4316}
4317
Chris Mason39279cc2007-06-12 06:35:45 -04004318static void btrfs_truncate(struct inode *inode)
4319{
4320 struct btrfs_root *root = BTRFS_I(inode)->root;
4321 int ret;
4322 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004323 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04004324 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004325
4326 if (!S_ISREG(inode->i_mode))
4327 return;
4328 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4329 return;
4330
4331 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04004332 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04004333
Chris Mason39279cc2007-06-12 06:35:45 -04004334 trans = btrfs_start_transaction(root, 1);
4335 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04004336 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004337
Josef Bacik7b128762008-07-24 12:17:14 -04004338 ret = btrfs_orphan_add(trans, inode);
4339 if (ret)
4340 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004341 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04004342 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05004343 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004344 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004345
Josef Bacik7b128762008-07-24 12:17:14 -04004346 ret = btrfs_orphan_del(trans, inode);
4347 BUG_ON(ret);
4348
4349out:
4350 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004351 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004352 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004353 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004354}
4355
Sven Wegener3b963622008-06-09 21:57:42 -04004356/*
4357 * Invalidate a single dcache entry at the root of the filesystem.
4358 * Needed after creation of snapshot or subvolume.
4359 */
4360void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
4361 int namelen)
4362{
4363 struct dentry *alias, *entry;
4364 struct qstr qstr;
4365
4366 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
4367 if (alias) {
4368 qstr.name = name;
4369 qstr.len = namelen;
4370 /* change me if btrfs ever gets a d_hash operation */
4371 qstr.hash = full_name_hash(qstr.name, qstr.len);
4372 entry = d_lookup(alias, &qstr);
4373 dput(alias);
4374 if (entry) {
4375 d_invalidate(entry);
4376 dput(entry);
4377 }
4378 }
4379}
4380
Chris Masond352ac62008-09-29 15:18:18 -04004381/*
4382 * create a new subvolume directory/inode (helper for the ioctl).
4383 */
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004384int btrfs_create_subvol_root(struct btrfs_root *new_root, struct dentry *dentry,
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004385 struct btrfs_trans_handle *trans, u64 new_dirid,
4386 struct btrfs_block_group_cache *block_group)
Chris Mason39279cc2007-06-12 06:35:45 -04004387{
Chris Mason39279cc2007-06-12 06:35:45 -04004388 struct inode *inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004389 int error;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004390 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004391
Josef Bacikaec74772008-07-24 12:12:38 -04004392 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004393 new_dirid, block_group, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04004394 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004395 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004396 inode->i_op = &btrfs_dir_inode_operations;
4397 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04004398 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004399
Chris Mason39279cc2007-06-12 06:35:45 -04004400 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04004401 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04004402
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004403 error = btrfs_update_inode(trans, new_root, inode);
4404 if (error)
4405 return error;
4406
Yan Zhengd899e052008-10-30 14:25:28 -04004407 atomic_inc(&inode->i_count);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004408 d_instantiate(dentry, inode);
4409 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004410}
4411
Chris Masond352ac62008-09-29 15:18:18 -04004412/* helper function for file defrag and space balancing. This
4413 * forces readahead on a given range of bytes in an inode
4414 */
Chris Masonedbd8d42007-12-21 16:27:24 -05004415unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04004416 struct file_ra_state *ra, struct file *file,
4417 pgoff_t offset, pgoff_t last_index)
4418{
Chris Mason8e7bf942008-04-28 09:02:36 -04004419 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04004420
Chris Mason86479a02007-09-10 19:58:16 -04004421 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
4422 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04004423}
4424
Chris Mason39279cc2007-06-12 06:35:45 -04004425struct inode *btrfs_alloc_inode(struct super_block *sb)
4426{
4427 struct btrfs_inode *ei;
4428
4429 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
4430 if (!ei)
4431 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04004432 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004433 ei->logged_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004434 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik33268ea2008-07-24 12:16:36 -04004435 ei->i_acl = BTRFS_ACL_NOT_CACHED;
4436 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
Josef Bacik7b128762008-07-24 12:17:14 -04004437 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason39279cc2007-06-12 06:35:45 -04004438 return &ei->vfs_inode;
4439}
4440
4441void btrfs_destroy_inode(struct inode *inode)
4442{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004443 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04004444 WARN_ON(!list_empty(&inode->i_dentry));
4445 WARN_ON(inode->i_data.nrpages);
4446
Josef Bacik33268ea2008-07-24 12:16:36 -04004447 if (BTRFS_I(inode)->i_acl &&
4448 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
4449 posix_acl_release(BTRFS_I(inode)->i_acl);
4450 if (BTRFS_I(inode)->i_default_acl &&
4451 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
4452 posix_acl_release(BTRFS_I(inode)->i_default_acl);
4453
Yanbcc63ab2008-07-30 16:29:20 -04004454 spin_lock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004455 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
4456 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
4457 " list\n", inode->i_ino);
4458 dump_stack();
4459 }
Yanbcc63ab2008-07-30 16:29:20 -04004460 spin_unlock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004461
Chris Masone6dcd2d2008-07-17 12:53:50 -04004462 while(1) {
4463 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
4464 if (!ordered)
4465 break;
4466 else {
4467 printk("found ordered extent %Lu %Lu\n",
4468 ordered->file_offset, ordered->len);
4469 btrfs_remove_ordered_extent(inode, ordered);
4470 btrfs_put_ordered_extent(ordered);
4471 btrfs_put_ordered_extent(ordered);
4472 }
4473 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004474 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004475 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
4476}
4477
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004478static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04004479{
4480 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
4481
4482 inode_init_once(&ei->vfs_inode);
4483}
4484
4485void btrfs_destroy_cachep(void)
4486{
4487 if (btrfs_inode_cachep)
4488 kmem_cache_destroy(btrfs_inode_cachep);
4489 if (btrfs_trans_handle_cachep)
4490 kmem_cache_destroy(btrfs_trans_handle_cachep);
4491 if (btrfs_transaction_cachep)
4492 kmem_cache_destroy(btrfs_transaction_cachep);
4493 if (btrfs_bit_radix_cachep)
4494 kmem_cache_destroy(btrfs_bit_radix_cachep);
4495 if (btrfs_path_cachep)
4496 kmem_cache_destroy(btrfs_path_cachep);
4497}
4498
Chris Mason86479a02007-09-10 19:58:16 -04004499struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04004500 unsigned long extra_flags,
Chris Mason2b1f55b2008-09-24 11:48:04 -04004501 void (*ctor)(void *))
Chris Mason92fee662007-07-25 12:31:35 -04004502{
4503 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
Chris Mason2b1f55b2008-09-24 11:48:04 -04004504 SLAB_MEM_SPREAD | extra_flags), ctor);
Chris Mason92fee662007-07-25 12:31:35 -04004505}
4506
Chris Mason39279cc2007-06-12 06:35:45 -04004507int btrfs_init_cachep(void)
4508{
Chris Mason86479a02007-09-10 19:58:16 -04004509 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04004510 sizeof(struct btrfs_inode),
4511 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04004512 if (!btrfs_inode_cachep)
4513 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004514 btrfs_trans_handle_cachep =
4515 btrfs_cache_create("btrfs_trans_handle_cache",
4516 sizeof(struct btrfs_trans_handle),
4517 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004518 if (!btrfs_trans_handle_cachep)
4519 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004520 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04004521 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04004522 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004523 if (!btrfs_transaction_cachep)
4524 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004525 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04004526 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04004527 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004528 if (!btrfs_path_cachep)
4529 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004530 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04004531 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004532 if (!btrfs_bit_radix_cachep)
4533 goto fail;
4534 return 0;
4535fail:
4536 btrfs_destroy_cachep();
4537 return -ENOMEM;
4538}
4539
4540static int btrfs_getattr(struct vfsmount *mnt,
4541 struct dentry *dentry, struct kstat *stat)
4542{
4543 struct inode *inode = dentry->d_inode;
4544 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05004545 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004546 stat->blocks = (inode_get_bytes(inode) +
4547 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04004548 return 0;
4549}
4550
4551static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
4552 struct inode * new_dir,struct dentry *new_dentry)
4553{
4554 struct btrfs_trans_handle *trans;
4555 struct btrfs_root *root = BTRFS_I(old_dir)->root;
4556 struct inode *new_inode = new_dentry->d_inode;
4557 struct inode *old_inode = old_dentry->d_inode;
4558 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004559 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004560 int ret;
4561
4562 if (S_ISDIR(old_inode->i_mode) && new_inode &&
4563 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
4564 return -ENOTEMPTY;
4565 }
Chris Mason5f39d392007-10-15 16:14:19 -04004566
Chris Mason1832a6d2007-12-21 16:27:21 -05004567 ret = btrfs_check_free_space(root, 1, 0);
4568 if (ret)
4569 goto out_unlock;
4570
Chris Mason39279cc2007-06-12 06:35:45 -04004571 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004572
Chris Mason39279cc2007-06-12 06:35:45 -04004573 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004574
Chris Masone02119d2008-09-05 16:13:11 -04004575 btrfs_inc_nlink(old_dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004576 old_dir->i_ctime = old_dir->i_mtime = ctime;
4577 new_dir->i_ctime = new_dir->i_mtime = ctime;
4578 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04004579
Chris Masone02119d2008-09-05 16:13:11 -04004580 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
4581 old_dentry->d_name.name,
4582 old_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004583 if (ret)
4584 goto out_fail;
4585
4586 if (new_inode) {
4587 new_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004588 ret = btrfs_unlink_inode(trans, root, new_dir,
4589 new_dentry->d_inode,
4590 new_dentry->d_name.name,
4591 new_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004592 if (ret)
4593 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04004594 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004595 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004596 if (ret)
4597 goto out_fail;
4598 }
Chris Masone02119d2008-09-05 16:13:11 -04004599
Chris Mason39279cc2007-06-12 06:35:45 -04004600 }
Chris Mason00e4e6b2008-08-05 11:18:09 -04004601 ret = btrfs_set_inode_index(new_dir, old_inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004602 if (ret)
4603 goto out_fail;
4604
Chris Masone02119d2008-09-05 16:13:11 -04004605 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
4606 old_inode, new_dentry->d_name.name,
4607 new_dentry->d_name.len, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004608 if (ret)
4609 goto out_fail;
4610
4611out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04004612 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004613out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04004614 return ret;
4615}
4616
Chris Masond352ac62008-09-29 15:18:18 -04004617/*
4618 * some fairly slow code that needs optimization. This walks the list
4619 * of all the inodes with pending delalloc and forces them to disk.
4620 */
Chris Masonea8c2812008-08-04 23:17:27 -04004621int btrfs_start_delalloc_inodes(struct btrfs_root *root)
4622{
4623 struct list_head *head = &root->fs_info->delalloc_inodes;
4624 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004625 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04004626 unsigned long flags;
4627
4628 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4629 while(!list_empty(head)) {
4630 binode = list_entry(head->next, struct btrfs_inode,
4631 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004632 inode = igrab(&binode->vfs_inode);
4633 if (!inode)
4634 list_del_init(&binode->delalloc_inodes);
Chris Masonea8c2812008-08-04 23:17:27 -04004635 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004636 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004637 filemap_flush(inode->i_mapping);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004638 iput(inode);
4639 }
4640 cond_resched();
Chris Masonea8c2812008-08-04 23:17:27 -04004641 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4642 }
4643 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason8c8bee12008-09-29 11:19:10 -04004644
4645 /* the filemap_flush will queue IO into the worker threads, but
4646 * we have to make sure the IO is actually started and that
4647 * ordered extents get created before we return
4648 */
4649 atomic_inc(&root->fs_info->async_submit_draining);
Chris Mason771ed682008-11-06 22:02:51 -05004650 while(atomic_read(&root->fs_info->nr_async_submits) ||
4651 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004652 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05004653 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
4654 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04004655 }
4656 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04004657 return 0;
4658}
4659
Chris Mason39279cc2007-06-12 06:35:45 -04004660static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
4661 const char *symname)
4662{
4663 struct btrfs_trans_handle *trans;
4664 struct btrfs_root *root = BTRFS_I(dir)->root;
4665 struct btrfs_path *path;
4666 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05004667 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004668 int err;
4669 int drop_inode = 0;
4670 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004671 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04004672 int name_len;
4673 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04004674 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004675 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04004676 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05004677 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004678
4679 name_len = strlen(symname) + 1;
4680 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
4681 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05004682
Chris Mason1832a6d2007-12-21 16:27:21 -05004683 err = btrfs_check_free_space(root, 1, 0);
4684 if (err)
4685 goto out_fail;
4686
Chris Mason39279cc2007-06-12 06:35:45 -04004687 trans = btrfs_start_transaction(root, 1);
4688 btrfs_set_trans_block_group(trans, dir);
4689
4690 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4691 if (err) {
4692 err = -ENOSPC;
4693 goto out_unlock;
4694 }
4695
Josef Bacikaec74772008-07-24 12:12:38 -04004696 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004697 dentry->d_name.len,
4698 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004699 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
4700 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004701 err = PTR_ERR(inode);
4702 if (IS_ERR(inode))
4703 goto out_unlock;
4704
Josef Bacik33268ea2008-07-24 12:16:36 -04004705 err = btrfs_init_acl(inode, dir);
4706 if (err) {
4707 drop_inode = 1;
4708 goto out_unlock;
4709 }
4710
Chris Mason39279cc2007-06-12 06:35:45 -04004711 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004712 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004713 if (err)
4714 drop_inode = 1;
4715 else {
4716 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004717 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004718 inode->i_fop = &btrfs_file_operations;
4719 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004720 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004721 }
4722 dir->i_sb->s_dirt = 1;
4723 btrfs_update_inode_block_group(trans, inode);
4724 btrfs_update_inode_block_group(trans, dir);
4725 if (drop_inode)
4726 goto out_unlock;
4727
4728 path = btrfs_alloc_path();
4729 BUG_ON(!path);
4730 key.objectid = inode->i_ino;
4731 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004732 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
4733 datasize = btrfs_file_extent_calc_inline_size(name_len);
4734 err = btrfs_insert_empty_item(trans, root, path, &key,
4735 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04004736 if (err) {
4737 drop_inode = 1;
4738 goto out_unlock;
4739 }
Chris Mason5f39d392007-10-15 16:14:19 -04004740 leaf = path->nodes[0];
4741 ei = btrfs_item_ptr(leaf, path->slots[0],
4742 struct btrfs_file_extent_item);
4743 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
4744 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04004745 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04004746 btrfs_set_file_extent_encryption(leaf, ei, 0);
4747 btrfs_set_file_extent_compression(leaf, ei, 0);
4748 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
4749 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
4750
Chris Mason39279cc2007-06-12 06:35:45 -04004751 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04004752 write_extent_buffer(leaf, symname, ptr, name_len);
4753 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004754 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04004755
Chris Mason39279cc2007-06-12 06:35:45 -04004756 inode->i_op = &btrfs_symlink_inode_operations;
4757 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04004758 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04004759 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04004760 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04004761 err = btrfs_update_inode(trans, root, inode);
4762 if (err)
4763 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004764
4765out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004766 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004767 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004768out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004769 if (drop_inode) {
4770 inode_dec_link_count(inode);
4771 iput(inode);
4772 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004773 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004774 return err;
4775}
Chris Mason16432982008-04-10 10:23:21 -04004776
Yan Zhengd899e052008-10-30 14:25:28 -04004777static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
4778 u64 alloc_hint, int mode)
4779{
4780 struct btrfs_trans_handle *trans;
4781 struct btrfs_root *root = BTRFS_I(inode)->root;
4782 struct btrfs_key ins;
4783 u64 alloc_size;
4784 u64 cur_offset = start;
4785 u64 num_bytes = end - start;
4786 int ret = 0;
4787
4788 trans = btrfs_join_transaction(root, 1);
4789 BUG_ON(!trans);
4790 btrfs_set_trans_block_group(trans, inode);
4791
4792 while (num_bytes > 0) {
4793 alloc_size = min(num_bytes, root->fs_info->max_extent);
4794 ret = btrfs_reserve_extent(trans, root, alloc_size,
4795 root->sectorsize, 0, alloc_hint,
4796 (u64)-1, &ins, 1);
4797 if (ret) {
4798 WARN_ON(1);
4799 goto out;
4800 }
4801 ret = insert_reserved_file_extent(trans, inode,
4802 cur_offset, ins.objectid,
4803 ins.offset, ins.offset,
4804 ins.offset, 0, 0, 0,
4805 BTRFS_FILE_EXTENT_PREALLOC);
4806 BUG_ON(ret);
4807 num_bytes -= ins.offset;
4808 cur_offset += ins.offset;
4809 alloc_hint = ins.objectid + ins.offset;
4810 }
4811out:
4812 if (cur_offset > start) {
4813 inode->i_ctime = CURRENT_TIME;
4814 btrfs_set_flag(inode, PREALLOC);
4815 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
4816 cur_offset > i_size_read(inode))
4817 btrfs_i_size_write(inode, cur_offset);
4818 ret = btrfs_update_inode(trans, root, inode);
4819 BUG_ON(ret);
4820 }
4821
4822 btrfs_end_transaction(trans, root);
4823 return ret;
4824}
4825
4826static long btrfs_fallocate(struct inode *inode, int mode,
4827 loff_t offset, loff_t len)
4828{
4829 u64 cur_offset;
4830 u64 last_byte;
4831 u64 alloc_start;
4832 u64 alloc_end;
4833 u64 alloc_hint = 0;
4834 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
4835 struct extent_map *em;
4836 int ret;
4837
4838 alloc_start = offset & ~mask;
4839 alloc_end = (offset + len + mask) & ~mask;
4840
4841 mutex_lock(&inode->i_mutex);
4842 if (alloc_start > inode->i_size) {
4843 ret = btrfs_cont_expand(inode, alloc_start);
4844 if (ret)
4845 goto out;
4846 }
4847
4848 while (1) {
4849 struct btrfs_ordered_extent *ordered;
4850 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start,
4851 alloc_end - 1, GFP_NOFS);
4852 ordered = btrfs_lookup_first_ordered_extent(inode,
4853 alloc_end - 1);
4854 if (ordered &&
4855 ordered->file_offset + ordered->len > alloc_start &&
4856 ordered->file_offset < alloc_end) {
4857 btrfs_put_ordered_extent(ordered);
4858 unlock_extent(&BTRFS_I(inode)->io_tree,
4859 alloc_start, alloc_end - 1, GFP_NOFS);
4860 btrfs_wait_ordered_range(inode, alloc_start,
4861 alloc_end - alloc_start);
4862 } else {
4863 if (ordered)
4864 btrfs_put_ordered_extent(ordered);
4865 break;
4866 }
4867 }
4868
4869 cur_offset = alloc_start;
4870 while (1) {
4871 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4872 alloc_end - cur_offset, 0);
4873 BUG_ON(IS_ERR(em) || !em);
4874 last_byte = min(extent_map_end(em), alloc_end);
4875 last_byte = (last_byte + mask) & ~mask;
4876 if (em->block_start == EXTENT_MAP_HOLE) {
4877 ret = prealloc_file_range(inode, cur_offset,
4878 last_byte, alloc_hint, mode);
4879 if (ret < 0) {
4880 free_extent_map(em);
4881 break;
4882 }
4883 }
4884 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
4885 alloc_hint = em->block_start;
4886 free_extent_map(em);
4887
4888 cur_offset = last_byte;
4889 if (cur_offset >= alloc_end) {
4890 ret = 0;
4891 break;
4892 }
4893 }
4894 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, alloc_end - 1,
4895 GFP_NOFS);
4896out:
4897 mutex_unlock(&inode->i_mutex);
4898 return ret;
4899}
4900
Chris Masone6dcd2d2008-07-17 12:53:50 -04004901static int btrfs_set_page_dirty(struct page *page)
4902{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004903 return __set_page_dirty_nobuffers(page);
4904}
4905
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004906static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05004907{
4908 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
4909 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04004910 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05004911}
Chris Mason39279cc2007-06-12 06:35:45 -04004912
4913static struct inode_operations btrfs_dir_inode_operations = {
4914 .lookup = btrfs_lookup,
4915 .create = btrfs_create,
4916 .unlink = btrfs_unlink,
4917 .link = btrfs_link,
4918 .mkdir = btrfs_mkdir,
4919 .rmdir = btrfs_rmdir,
4920 .rename = btrfs_rename,
4921 .symlink = btrfs_symlink,
4922 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04004923 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004924 .setxattr = btrfs_setxattr,
4925 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05004926 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004927 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05004928 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004929};
Chris Mason39279cc2007-06-12 06:35:45 -04004930static struct inode_operations btrfs_dir_ro_inode_operations = {
4931 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05004932 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004933};
Chris Mason39279cc2007-06-12 06:35:45 -04004934static struct file_operations btrfs_dir_file_operations = {
4935 .llseek = generic_file_llseek,
4936 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01004937 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004938 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004939#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004940 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004941#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04004942 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04004943 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04004944};
4945
Chris Masond1310b22008-01-24 16:13:08 -05004946static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04004947 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05004948 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04004949 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004950 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004951 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04004952 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04004953 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05004954 .set_bit_hook = btrfs_set_bit_hook,
4955 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004956};
4957
Chris Mason39279cc2007-06-12 06:35:45 -04004958static struct address_space_operations btrfs_aops = {
4959 .readpage = btrfs_readpage,
4960 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04004961 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05004962 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04004963 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04004964 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04004965 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04004966 .invalidatepage = btrfs_invalidatepage,
4967 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004968 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04004969};
4970
4971static struct address_space_operations btrfs_symlink_aops = {
4972 .readpage = btrfs_readpage,
4973 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04004974 .invalidatepage = btrfs_invalidatepage,
4975 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04004976};
4977
4978static struct inode_operations btrfs_file_inode_operations = {
4979 .truncate = btrfs_truncate,
4980 .getattr = btrfs_getattr,
4981 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004982 .setxattr = btrfs_setxattr,
4983 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05004984 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004985 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05004986 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04004987 .fallocate = btrfs_fallocate,
Chris Mason39279cc2007-06-12 06:35:45 -04004988};
Josef Bacik618e21d2007-07-11 10:18:17 -04004989static struct inode_operations btrfs_special_inode_operations = {
4990 .getattr = btrfs_getattr,
4991 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05004992 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004993 .setxattr = btrfs_setxattr,
4994 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04004995 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004996 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04004997};
Chris Mason39279cc2007-06-12 06:35:45 -04004998static struct inode_operations btrfs_symlink_inode_operations = {
4999 .readlink = generic_readlink,
5000 .follow_link = page_follow_link_light,
5001 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05005002 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005003};