blob: 59660293d29174a749fe162c2fd5703aae7d4e66 [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];
187 cur_size = min(compressed_size,
188 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;
613
614 em->block_start = ins.objectid;
615 em->block_len = ins.offset;
616 em->bdev = root->fs_info->fs_devices->latest_bdev;
617 set_bit(EXTENT_FLAG_PINNED, &em->flags);
618 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
619
620 while(1) {
621 spin_lock(&em_tree->lock);
622 ret = add_extent_mapping(em_tree, em);
623 spin_unlock(&em_tree->lock);
624 if (ret != -EEXIST) {
625 free_extent_map(em);
626 break;
627 }
628 btrfs_drop_extent_cache(inode, async_extent->start,
629 async_extent->start +
630 async_extent->ram_size - 1, 0);
631 }
632
633 ret = btrfs_add_ordered_extent(inode, async_extent->start,
634 ins.objectid,
635 async_extent->ram_size,
636 ins.offset,
637 BTRFS_ORDERED_COMPRESSED);
638 BUG_ON(ret);
639
640 btrfs_end_transaction(trans, root);
641
642 /*
643 * clear dirty, set writeback and unlock the pages.
644 */
645 extent_clear_unlock_delalloc(inode,
646 &BTRFS_I(inode)->io_tree,
647 async_extent->start,
648 async_extent->start +
649 async_extent->ram_size - 1,
650 NULL, 1, 1, 0, 1, 1, 0);
651
652 ret = btrfs_submit_compressed_write(inode,
653 async_extent->start,
654 async_extent->ram_size,
655 ins.objectid,
656 ins.offset, async_extent->pages,
657 async_extent->nr_pages);
658
659 BUG_ON(ret);
660 trans = btrfs_join_transaction(root, 1);
661 alloc_hint = ins.objectid + ins.offset;
662 kfree(async_extent);
663 cond_resched();
664 }
665
666 btrfs_end_transaction(trans, root);
667 return 0;
668}
669
670/*
671 * when extent_io.c finds a delayed allocation range in the file,
672 * the call backs end up in this code. The basic idea is to
673 * allocate extents on disk for the range, and create ordered data structs
674 * in ram to track those extents.
675 *
676 * locked_page is the page that writepage had locked already. We use
677 * it to make sure we don't do extra locks or unlocks.
678 *
679 * *page_started is set to one if we unlock locked_page and do everything
680 * required to start IO on it. It may be clean and already done with
681 * IO when we return.
682 */
683static noinline int cow_file_range(struct inode *inode,
684 struct page *locked_page,
685 u64 start, u64 end, int *page_started,
686 unsigned long *nr_written,
687 int unlock)
688{
689 struct btrfs_root *root = BTRFS_I(inode)->root;
690 struct btrfs_trans_handle *trans;
691 u64 alloc_hint = 0;
692 u64 num_bytes;
693 unsigned long ram_size;
694 u64 disk_num_bytes;
695 u64 cur_alloc_size;
696 u64 blocksize = root->sectorsize;
697 u64 actual_end;
698 struct btrfs_key ins;
699 struct extent_map *em;
700 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
701 int ret = 0;
702
703 trans = btrfs_join_transaction(root, 1);
704 BUG_ON(!trans);
705 btrfs_set_trans_block_group(trans, inode);
706
707 actual_end = min_t(u64, i_size_read(inode), end + 1);
708
709 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
710 num_bytes = max(blocksize, num_bytes);
711 disk_num_bytes = num_bytes;
712 ret = 0;
713
714 if (start == 0) {
715 /* lets try to make an inline extent */
716 ret = cow_file_range_inline(trans, root, inode,
717 start, end, 0, NULL);
718 if (ret == 0) {
719 extent_clear_unlock_delalloc(inode,
720 &BTRFS_I(inode)->io_tree,
721 start, end, NULL, 1, 1,
722 1, 1, 1, 1);
723 *nr_written = *nr_written +
724 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
725 *page_started = 1;
726 ret = 0;
727 goto out;
728 }
729 }
Chris Masonc8b97812008-10-29 14:49:59 -0400730
731 BUG_ON(disk_num_bytes >
732 btrfs_super_total_bytes(&root->fs_info->super_copy));
733
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400734 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400735
Chris Masonc8b97812008-10-29 14:49:59 -0400736 while(disk_num_bytes > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400737 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400738 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500739 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400740 (u64)-1, &ins, 1);
Chris Masonc59f8952007-12-17 20:14:04 -0500741 if (ret) {
Chris Mason771ed682008-11-06 22:02:51 -0500742 BUG();
Chris Masonc59f8952007-12-17 20:14:04 -0500743 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400744 em = alloc_extent_map(GFP_NOFS);
745 em->start = start;
Chris Masonc8b97812008-10-29 14:49:59 -0400746
Chris Mason771ed682008-11-06 22:02:51 -0500747 ram_size = ins.offset;
748 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400749
Chris Masone6dcd2d2008-07-17 12:53:50 -0400750 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400751 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400752 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400753 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400754
Chris Masone6dcd2d2008-07-17 12:53:50 -0400755 while(1) {
756 spin_lock(&em_tree->lock);
757 ret = add_extent_mapping(em_tree, em);
758 spin_unlock(&em_tree->lock);
759 if (ret != -EEXIST) {
760 free_extent_map(em);
761 break;
762 }
763 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400764 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400765 }
766
Chris Mason98d20f62008-04-14 09:46:10 -0400767 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400768 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500769 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400770 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400771
772 if (disk_num_bytes < cur_alloc_size) {
773 printk("num_bytes %Lu cur_alloc %Lu\n", disk_num_bytes,
Chris Mason3b951512008-04-17 11:29:12 -0400774 cur_alloc_size);
775 break;
776 }
Chris Masonc8b97812008-10-29 14:49:59 -0400777 /* we're not doing compressed IO, don't unlock the first
778 * page (which the caller expects to stay locked), don't
779 * clear any dirty bits and don't set any writeback bits
780 */
781 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
782 start, start + ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500783 locked_page, unlock, 1,
784 1, 0, 0, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400785 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500786 num_bytes -= cur_alloc_size;
787 alloc_hint = ins.objectid + ins.offset;
788 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400789 }
Chris Masonb888db22007-08-27 16:49:44 -0400790out:
Chris Mason771ed682008-11-06 22:02:51 -0500791 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400792 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400793
Chris Masonbe20aa92007-12-17 20:14:01 -0500794 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500795}
Chris Masonc8b97812008-10-29 14:49:59 -0400796
Chris Mason771ed682008-11-06 22:02:51 -0500797/*
798 * work queue call back to started compression on a file and pages
799 */
800static noinline void async_cow_start(struct btrfs_work *work)
801{
802 struct async_cow *async_cow;
803 int num_added = 0;
804 async_cow = container_of(work, struct async_cow, work);
805
806 compress_file_range(async_cow->inode, async_cow->locked_page,
807 async_cow->start, async_cow->end, async_cow,
808 &num_added);
809 if (num_added == 0)
810 async_cow->inode = NULL;
811}
812
813/*
814 * work queue call back to submit previously compressed pages
815 */
816static noinline void async_cow_submit(struct btrfs_work *work)
817{
818 struct async_cow *async_cow;
819 struct btrfs_root *root;
820 unsigned long nr_pages;
821
822 async_cow = container_of(work, struct async_cow, work);
823
824 root = async_cow->root;
825 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
826 PAGE_CACHE_SHIFT;
827
828 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
829
830 if (atomic_read(&root->fs_info->async_delalloc_pages) <
831 5 * 1042 * 1024 &&
832 waitqueue_active(&root->fs_info->async_submit_wait))
833 wake_up(&root->fs_info->async_submit_wait);
834
835 if (async_cow->inode) {
836 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason70b99e62008-10-31 12:46:39 -0400837 }
Chris Mason771ed682008-11-06 22:02:51 -0500838}
Chris Masonc8b97812008-10-29 14:49:59 -0400839
Chris Mason771ed682008-11-06 22:02:51 -0500840static noinline void async_cow_free(struct btrfs_work *work)
841{
842 struct async_cow *async_cow;
843 async_cow = container_of(work, struct async_cow, work);
844 kfree(async_cow);
845}
846
847static int cow_file_range_async(struct inode *inode, struct page *locked_page,
848 u64 start, u64 end, int *page_started,
849 unsigned long *nr_written)
850{
851 struct async_cow *async_cow;
852 struct btrfs_root *root = BTRFS_I(inode)->root;
853 unsigned long nr_pages;
854 u64 cur_end;
855 int limit = 10 * 1024 * 1042;
856
857 if (!btrfs_test_opt(root, COMPRESS)) {
858 return cow_file_range(inode, locked_page, start, end,
859 page_started, nr_written, 1);
860 }
861
862 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED |
863 EXTENT_DELALLOC, 1, 0, GFP_NOFS);
864 while(start < end) {
865 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
866 async_cow->inode = inode;
867 async_cow->root = root;
868 async_cow->locked_page = locked_page;
869 async_cow->start = start;
870
871 if (btrfs_test_flag(inode, NOCOMPRESS))
872 cur_end = end;
873 else
874 cur_end = min(end, start + 512 * 1024 - 1);
875
876 async_cow->end = cur_end;
877 INIT_LIST_HEAD(&async_cow->extents);
878
879 async_cow->work.func = async_cow_start;
880 async_cow->work.ordered_func = async_cow_submit;
881 async_cow->work.ordered_free = async_cow_free;
882 async_cow->work.flags = 0;
883
884 while(atomic_read(&root->fs_info->async_submit_draining) &&
885 atomic_read(&root->fs_info->async_delalloc_pages)) {
886 wait_event(root->fs_info->async_submit_wait,
887 (atomic_read(&root->fs_info->async_delalloc_pages)
888 == 0));
889 }
890
891 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
892 PAGE_CACHE_SHIFT;
893 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
894
895 btrfs_queue_worker(&root->fs_info->delalloc_workers,
896 &async_cow->work);
897
898 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
899 wait_event(root->fs_info->async_submit_wait,
900 (atomic_read(&root->fs_info->async_delalloc_pages) <
901 limit));
902 }
903
904 while(atomic_read(&root->fs_info->async_submit_draining) &&
905 atomic_read(&root->fs_info->async_delalloc_pages)) {
906 wait_event(root->fs_info->async_submit_wait,
907 (atomic_read(&root->fs_info->async_delalloc_pages) ==
908 0));
909 }
910
911 *nr_written += nr_pages;
912 start = cur_end + 1;
913 }
914 *page_started = 1;
915 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500916}
917
Chris Masond352ac62008-09-29 15:18:18 -0400918/*
919 * when nowcow writeback call back. This checks for snapshots or COW copies
920 * of the extents that exist in the file, and COWs the file as required.
921 *
922 * If no cow copies or snapshots exist, we write directly to the existing
923 * blocks on disk
924 */
Chris Masonc8b97812008-10-29 14:49:59 -0400925static int run_delalloc_nocow(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -0500926 u64 start, u64 end, int *page_started, int force,
927 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -0500928{
Chris Masonbe20aa92007-12-17 20:14:01 -0500929 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400930 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -0500931 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -0500932 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -0400933 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -0500934 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -0400935 u64 cow_start;
936 u64 cur_offset;
937 u64 extent_end;
938 u64 disk_bytenr;
939 u64 num_bytes;
940 int extent_type;
941 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -0400942 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -0400943 int nocow;
944 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500945
946 path = btrfs_alloc_path();
947 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400948 trans = btrfs_join_transaction(root, 1);
949 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500950
Yan Zheng80ff3852008-10-30 14:20:02 -0400951 cow_start = (u64)-1;
952 cur_offset = start;
953 while (1) {
954 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
955 cur_offset, 0);
956 BUG_ON(ret < 0);
957 if (ret > 0 && path->slots[0] > 0 && check_prev) {
958 leaf = path->nodes[0];
959 btrfs_item_key_to_cpu(leaf, &found_key,
960 path->slots[0] - 1);
961 if (found_key.objectid == inode->i_ino &&
962 found_key.type == BTRFS_EXTENT_DATA_KEY)
963 path->slots[0]--;
964 }
965 check_prev = 0;
966next_slot:
967 leaf = path->nodes[0];
968 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
969 ret = btrfs_next_leaf(root, path);
970 if (ret < 0)
971 BUG_ON(1);
972 if (ret > 0)
973 break;
974 leaf = path->nodes[0];
975 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500976
Yan Zheng80ff3852008-10-30 14:20:02 -0400977 nocow = 0;
978 disk_bytenr = 0;
979 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500980
Yan Zheng80ff3852008-10-30 14:20:02 -0400981 if (found_key.objectid > inode->i_ino ||
982 found_key.type > BTRFS_EXTENT_DATA_KEY ||
983 found_key.offset > end)
984 break;
Chris Masonbe20aa92007-12-17 20:14:01 -0500985
Yan Zheng80ff3852008-10-30 14:20:02 -0400986 if (found_key.offset > cur_offset) {
987 extent_end = found_key.offset;
988 goto out_check;
989 }
Chris Masonc31f8832008-01-08 15:46:31 -0500990
Yan Zheng80ff3852008-10-30 14:20:02 -0400991 fi = btrfs_item_ptr(leaf, path->slots[0],
992 struct btrfs_file_extent_item);
993 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -0500994
Yan Zhengd899e052008-10-30 14:25:28 -0400995 if (extent_type == BTRFS_FILE_EXTENT_REG ||
996 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -0400997 struct btrfs_block_group_cache *block_group;
998 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
999 extent_end = found_key.offset +
1000 btrfs_file_extent_num_bytes(leaf, fi);
1001 if (extent_end <= start) {
1002 path->slots[0]++;
1003 goto next_slot;
1004 }
1005 if (btrfs_file_extent_compression(leaf, fi) ||
1006 btrfs_file_extent_encryption(leaf, fi) ||
1007 btrfs_file_extent_other_encoding(leaf, fi))
1008 goto out_check;
1009 if (disk_bytenr == 0)
1010 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001011 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1012 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001013 if (btrfs_cross_ref_exist(trans, root, disk_bytenr))
1014 goto out_check;
1015 block_group = btrfs_lookup_block_group(root->fs_info,
1016 disk_bytenr);
1017 if (!block_group || block_group->ro)
1018 goto out_check;
1019 disk_bytenr += btrfs_file_extent_offset(leaf, fi);
1020 nocow = 1;
1021 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1022 extent_end = found_key.offset +
1023 btrfs_file_extent_inline_len(leaf, fi);
1024 extent_end = ALIGN(extent_end, root->sectorsize);
1025 } else {
1026 BUG_ON(1);
1027 }
1028out_check:
1029 if (extent_end <= start) {
1030 path->slots[0]++;
1031 goto next_slot;
1032 }
1033 if (!nocow) {
1034 if (cow_start == (u64)-1)
1035 cow_start = cur_offset;
1036 cur_offset = extent_end;
1037 if (cur_offset > end)
1038 break;
1039 path->slots[0]++;
1040 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001041 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001042
Yan Zheng7ea394f2008-08-05 13:05:02 -04001043 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001044 if (cow_start != (u64)-1) {
1045 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001046 found_key.offset - 1, page_started,
1047 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001048 BUG_ON(ret);
1049 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001050 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001051
1052 disk_bytenr += cur_offset - found_key.offset;
1053 num_bytes = min(end + 1, extent_end) - cur_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001054 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1055 struct extent_map *em;
1056 struct extent_map_tree *em_tree;
1057 em_tree = &BTRFS_I(inode)->extent_tree;
1058 em = alloc_extent_map(GFP_NOFS);
1059 em->start = cur_offset;
1060 em->len = num_bytes;
1061 em->block_len = num_bytes;
1062 em->block_start = disk_bytenr;
1063 em->bdev = root->fs_info->fs_devices->latest_bdev;
1064 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1065 while (1) {
1066 spin_lock(&em_tree->lock);
1067 ret = add_extent_mapping(em_tree, em);
1068 spin_unlock(&em_tree->lock);
1069 if (ret != -EEXIST) {
1070 free_extent_map(em);
1071 break;
1072 }
1073 btrfs_drop_extent_cache(inode, em->start,
1074 em->start + em->len - 1, 0);
1075 }
1076 type = BTRFS_ORDERED_PREALLOC;
1077 } else {
1078 type = BTRFS_ORDERED_NOCOW;
1079 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001080
1081 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001082 num_bytes, num_bytes, type);
1083 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001084
Yan Zhengd899e052008-10-30 14:25:28 -04001085 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
1086 cur_offset, cur_offset + num_bytes - 1,
Chris Mason771ed682008-11-06 22:02:51 -05001087 locked_page, 1, 1, 1, 0, 0, 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04001088 cur_offset = extent_end;
1089 if (cur_offset > end)
1090 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001091 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001092 btrfs_release_path(root, path);
1093
1094 if (cur_offset <= end && cow_start == (u64)-1)
1095 cow_start = cur_offset;
1096 if (cow_start != (u64)-1) {
1097 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001098 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001099 BUG_ON(ret);
1100 }
1101
1102 ret = btrfs_end_transaction(trans, root);
1103 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001104 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001105 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001106}
1107
Chris Masond352ac62008-09-29 15:18:18 -04001108/*
1109 * extent_io.c call back to do delayed allocation processing
1110 */
Chris Masonc8b97812008-10-29 14:49:59 -04001111static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001112 u64 start, u64 end, int *page_started,
1113 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001114{
1115 struct btrfs_root *root = BTRFS_I(inode)->root;
1116 int ret;
Chris Masona2135012008-06-25 16:01:30 -04001117
Yanb98b6762008-01-08 15:54:37 -05001118 if (btrfs_test_opt(root, NODATACOW) ||
1119 btrfs_test_flag(inode, NODATACOW))
Chris Masonc8b97812008-10-29 14:49:59 -04001120 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001121 page_started, 0, nr_written);
Yan Zhengd899e052008-10-30 14:25:28 -04001122 else if (btrfs_test_flag(inode, PREALLOC))
1123 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001124 page_started, 1, nr_written);
Chris Masonbe20aa92007-12-17 20:14:01 -05001125 else
Chris Mason771ed682008-11-06 22:02:51 -05001126 ret = cow_file_range_async(inode, locked_page, start, end,
1127 page_started, nr_written);
Chris Mason1832a6d2007-12-21 16:27:21 -05001128
Chris Masonb888db22007-08-27 16:49:44 -04001129 return ret;
1130}
1131
Chris Masond352ac62008-09-29 15:18:18 -04001132/*
1133 * extent_io.c set_bit_hook, used to track delayed allocation
1134 * bytes in this file, and to maintain the list of inodes that
1135 * have pending delalloc work to be done.
1136 */
Chris Mason291d6732008-01-29 15:55:23 -05001137int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001138 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001139{
Chris Masonbcbfce82008-04-22 13:26:47 -04001140 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -05001141 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001142 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001143 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -05001144 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001145 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001146 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1147 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1148 &root->fs_info->delalloc_inodes);
1149 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001150 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001151 }
1152 return 0;
1153}
1154
Chris Masond352ac62008-09-29 15:18:18 -04001155/*
1156 * extent_io.c clear_bit_hook, see set_bit_hook for why
1157 */
Chris Mason291d6732008-01-29 15:55:23 -05001158int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001159 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001160{
Chris Masonb0c68f82008-01-31 11:05:37 -05001161 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001162 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001163 unsigned long flags;
1164
1165 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -05001166 if (end - start + 1 > root->fs_info->delalloc_bytes) {
1167 printk("warning: delalloc account %Lu %Lu\n",
1168 end - start + 1, root->fs_info->delalloc_bytes);
1169 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001170 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001171 } else {
1172 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -05001173 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001174 }
Chris Masonea8c2812008-08-04 23:17:27 -04001175 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1176 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1177 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1178 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001179 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001180 }
1181 return 0;
1182}
1183
Chris Masond352ac62008-09-29 15:18:18 -04001184/*
1185 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1186 * we don't create bios that span stripes or chunks
1187 */
Chris Mason239b14b2008-03-24 15:02:07 -04001188int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001189 size_t size, struct bio *bio,
1190 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001191{
1192 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1193 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001194 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001195 u64 length = 0;
1196 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001197 int ret;
1198
Chris Mason771ed682008-11-06 22:02:51 -05001199 if (bio_flags & EXTENT_BIO_COMPRESSED)
1200 return 0;
1201
Chris Masonf2d8d742008-04-21 10:03:05 -04001202 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001203 map_tree = &root->fs_info->mapping_tree;
1204 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001205 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001206 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001207
Chris Mason239b14b2008-03-24 15:02:07 -04001208 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -04001209 return 1;
1210 }
1211 return 0;
1212}
1213
Chris Masond352ac62008-09-29 15:18:18 -04001214/*
1215 * in order to insert checksums into the metadata in large chunks,
1216 * we wait until bio submission time. All the pages in the bio are
1217 * checksummed and sums are attached onto the ordered extent record.
1218 *
1219 * At IO completion time the cums attached on the ordered extent record
1220 * are inserted into the btree
1221 */
Chris Mason4a69a412008-11-06 22:03:00 -05001222int __btrfs_submit_bio_start(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001223 int mirror_num, unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001224{
Chris Mason065631f2008-02-20 12:07:25 -05001225 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001226 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001227
Chris Mason3edf7d32008-07-18 06:17:13 -04001228 ret = btrfs_csum_one_bio(root, inode, bio);
Chris Mason44b8bd72008-04-16 11:14:51 -04001229 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001230 return 0;
1231}
Chris Masone0156402008-04-16 11:15:20 -04001232
Chris Mason4a69a412008-11-06 22:03:00 -05001233/*
1234 * in order to insert checksums into the metadata in large chunks,
1235 * we wait until bio submission time. All the pages in the bio are
1236 * checksummed and sums are attached onto the ordered extent record.
1237 *
1238 * At IO completion time the cums attached on the ordered extent record
1239 * are inserted into the btree
1240 */
1241int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
1242 int mirror_num, unsigned long bio_flags)
1243{
1244 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001245 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001246}
1247
Chris Masond352ac62008-09-29 15:18:18 -04001248/*
1249 * extent_io.c submission hook. This does the right thing for csum calculation on write,
1250 * or reading the csums from the tree before a read
1251 */
Chris Mason44b8bd72008-04-16 11:14:51 -04001252int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001253 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001254{
1255 struct btrfs_root *root = BTRFS_I(inode)->root;
1256 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001257 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001258
Chris Masone6dcd2d2008-07-17 12:53:50 -04001259 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1260 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001261
Chris Mason19b9bdb2008-10-30 14:23:13 -04001262 skip_sum = btrfs_test_opt(root, NODATASUM) ||
1263 btrfs_test_flag(inode, NODATASUM);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001264
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001265 if (!(rw & (1 << BIO_RW))) {
Chris Masonc8b97812008-10-29 14:49:59 -04001266
Chris Mason19b9bdb2008-10-30 14:23:13 -04001267 if (bio_flags & EXTENT_BIO_COMPRESSED)
Chris Masonc8b97812008-10-29 14:49:59 -04001268 return btrfs_submit_compressed_read(inode, bio,
1269 mirror_num, bio_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001270 else if (!skip_sum)
1271 btrfs_lookup_bio_sums(root, inode, bio);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001272 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001273 } else if (!skip_sum) {
1274 /* we're doing a write, do the async checksumming */
1275 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001276 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001277 bio_flags, __btrfs_submit_bio_start,
1278 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001279 }
1280
Chris Mason0b86a832008-03-24 15:01:56 -04001281mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001282 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001283}
Chris Mason6885f302008-02-20 16:11:05 -05001284
Chris Masond352ac62008-09-29 15:18:18 -04001285/*
1286 * given a list of ordered sums record them in the inode. This happens
1287 * at IO completion time based on sums calculated at bio submission time.
1288 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001289static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001290 struct inode *inode, u64 file_offset,
1291 struct list_head *list)
1292{
1293 struct list_head *cur;
1294 struct btrfs_ordered_sum *sum;
1295
1296 btrfs_set_trans_block_group(trans, inode);
Chris Masonba1da2f2008-07-17 12:54:15 -04001297 list_for_each(cur, list) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04001298 sum = list_entry(cur, struct btrfs_ordered_sum, list);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001299 btrfs_csum_file_blocks(trans, BTRFS_I(inode)->root,
1300 inode, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001301 }
1302 return 0;
1303}
1304
Chris Masonea8c2812008-08-04 23:17:27 -04001305int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1306{
Chris Mason771ed682008-11-06 22:02:51 -05001307 if ((end & (PAGE_CACHE_SIZE - 1)) == 0) {
1308 WARN_ON(1);
1309 }
Chris Masonea8c2812008-08-04 23:17:27 -04001310 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1311 GFP_NOFS);
1312}
1313
Chris Masond352ac62008-09-29 15:18:18 -04001314/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001315struct btrfs_writepage_fixup {
1316 struct page *page;
1317 struct btrfs_work work;
1318};
1319
Chris Mason247e7432008-07-17 12:53:51 -04001320void btrfs_writepage_fixup_worker(struct btrfs_work *work)
1321{
1322 struct btrfs_writepage_fixup *fixup;
1323 struct btrfs_ordered_extent *ordered;
1324 struct page *page;
1325 struct inode *inode;
1326 u64 page_start;
1327 u64 page_end;
1328
1329 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1330 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001331again:
Chris Mason247e7432008-07-17 12:53:51 -04001332 lock_page(page);
1333 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1334 ClearPageChecked(page);
1335 goto out_page;
1336 }
1337
1338 inode = page->mapping->host;
1339 page_start = page_offset(page);
1340 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1341
1342 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001343
1344 /* already ordered? We're done */
1345 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
1346 EXTENT_ORDERED, 0)) {
Chris Mason247e7432008-07-17 12:53:51 -04001347 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001348 }
1349
1350 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1351 if (ordered) {
1352 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1353 page_end, GFP_NOFS);
1354 unlock_page(page);
1355 btrfs_start_ordered_extent(inode, ordered, 1);
1356 goto again;
1357 }
Chris Mason247e7432008-07-17 12:53:51 -04001358
Chris Masonea8c2812008-08-04 23:17:27 -04001359 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001360 ClearPageChecked(page);
1361out:
1362 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1363out_page:
1364 unlock_page(page);
1365 page_cache_release(page);
1366}
1367
1368/*
1369 * There are a few paths in the higher layers of the kernel that directly
1370 * set the page dirty bit without asking the filesystem if it is a
1371 * good idea. This causes problems because we want to make sure COW
1372 * properly happens and the data=ordered rules are followed.
1373 *
Chris Masonc8b97812008-10-29 14:49:59 -04001374 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001375 * hasn't been properly setup for IO. We kick off an async process
1376 * to fix it up. The async helper will wait for ordered extents, set
1377 * the delalloc bit and make it safe to write the page.
1378 */
1379int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
1380{
1381 struct inode *inode = page->mapping->host;
1382 struct btrfs_writepage_fixup *fixup;
1383 struct btrfs_root *root = BTRFS_I(inode)->root;
1384 int ret;
1385
1386 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1387 EXTENT_ORDERED, 0);
1388 if (ret)
1389 return 0;
1390
1391 if (PageChecked(page))
1392 return -EAGAIN;
1393
1394 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1395 if (!fixup)
1396 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001397
Chris Mason247e7432008-07-17 12:53:51 -04001398 SetPageChecked(page);
1399 page_cache_get(page);
1400 fixup->work.func = btrfs_writepage_fixup_worker;
1401 fixup->page = page;
1402 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1403 return -EAGAIN;
1404}
1405
Yan Zhengd899e052008-10-30 14:25:28 -04001406static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1407 struct inode *inode, u64 file_pos,
1408 u64 disk_bytenr, u64 disk_num_bytes,
1409 u64 num_bytes, u64 ram_bytes,
1410 u8 compression, u8 encryption,
1411 u16 other_encoding, int extent_type)
1412{
1413 struct btrfs_root *root = BTRFS_I(inode)->root;
1414 struct btrfs_file_extent_item *fi;
1415 struct btrfs_path *path;
1416 struct extent_buffer *leaf;
1417 struct btrfs_key ins;
1418 u64 hint;
1419 int ret;
1420
1421 path = btrfs_alloc_path();
1422 BUG_ON(!path);
1423
1424 ret = btrfs_drop_extents(trans, root, inode, file_pos,
1425 file_pos + num_bytes, file_pos, &hint);
1426 BUG_ON(ret);
1427
1428 ins.objectid = inode->i_ino;
1429 ins.offset = file_pos;
1430 ins.type = BTRFS_EXTENT_DATA_KEY;
1431 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1432 BUG_ON(ret);
1433 leaf = path->nodes[0];
1434 fi = btrfs_item_ptr(leaf, path->slots[0],
1435 struct btrfs_file_extent_item);
1436 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1437 btrfs_set_file_extent_type(leaf, fi, extent_type);
1438 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1439 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1440 btrfs_set_file_extent_offset(leaf, fi, 0);
1441 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1442 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1443 btrfs_set_file_extent_compression(leaf, fi, compression);
1444 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1445 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
1446 btrfs_mark_buffer_dirty(leaf);
1447
1448 inode_add_bytes(inode, num_bytes);
1449 btrfs_drop_extent_cache(inode, file_pos, file_pos + num_bytes - 1, 0);
1450
1451 ins.objectid = disk_bytenr;
1452 ins.offset = disk_num_bytes;
1453 ins.type = BTRFS_EXTENT_ITEM_KEY;
1454 ret = btrfs_alloc_reserved_extent(trans, root, leaf->start,
1455 root->root_key.objectid,
1456 trans->transid, inode->i_ino, &ins);
1457 BUG_ON(ret);
1458
1459 btrfs_free_path(path);
1460 return 0;
1461}
1462
Chris Masond352ac62008-09-29 15:18:18 -04001463/* as ordered data IO finishes, this gets called so we can finish
1464 * an ordered extent if the range of bytes in the file it covers are
1465 * fully written.
1466 */
Chris Mason211f90e2008-07-18 11:56:15 -04001467static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001468{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001469 struct btrfs_root *root = BTRFS_I(inode)->root;
1470 struct btrfs_trans_handle *trans;
1471 struct btrfs_ordered_extent *ordered_extent;
1472 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan Zhengd899e052008-10-30 14:25:28 -04001473 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001474 int ret;
1475
1476 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001477 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001478 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001479
Chris Masonf9295742008-07-17 12:54:14 -04001480 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001481
1482 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
1483 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001484 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
1485 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001486
1487 lock_extent(io_tree, ordered_extent->file_offset,
1488 ordered_extent->file_offset + ordered_extent->len - 1,
1489 GFP_NOFS);
1490
Chris Masonc8b97812008-10-29 14:49:59 -04001491 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001492 compressed = 1;
1493 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1494 BUG_ON(compressed);
1495 ret = btrfs_mark_extent_written(trans, root, inode,
1496 ordered_extent->file_offset,
1497 ordered_extent->file_offset +
1498 ordered_extent->len);
1499 BUG_ON(ret);
1500 } else {
1501 ret = insert_reserved_file_extent(trans, inode,
1502 ordered_extent->file_offset,
1503 ordered_extent->start,
1504 ordered_extent->disk_len,
1505 ordered_extent->len,
1506 ordered_extent->len,
1507 compressed, 0, 0,
1508 BTRFS_FILE_EXTENT_REG);
1509 BUG_ON(ret);
1510 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001511 unlock_extent(io_tree, ordered_extent->file_offset,
1512 ordered_extent->file_offset + ordered_extent->len - 1,
1513 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001514nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001515 add_pending_csums(trans, inode, ordered_extent->file_offset,
1516 &ordered_extent->list);
1517
Chris Mason34353022008-09-23 20:19:49 -04001518 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masondbe674a2008-07-17 12:54:05 -04001519 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -04001520 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001521 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason34353022008-09-23 20:19:49 -04001522 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -04001523
Chris Masone6dcd2d2008-07-17 12:53:50 -04001524 /* once for us */
1525 btrfs_put_ordered_extent(ordered_extent);
1526 /* once for the tree */
1527 btrfs_put_ordered_extent(ordered_extent);
1528
Chris Masone6dcd2d2008-07-17 12:53:50 -04001529 btrfs_end_transaction(trans, root);
1530 return 0;
1531}
1532
Chris Mason211f90e2008-07-18 11:56:15 -04001533int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
1534 struct extent_state *state, int uptodate)
1535{
1536 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1537}
1538
Chris Masond352ac62008-09-29 15:18:18 -04001539/*
1540 * When IO fails, either with EIO or csum verification fails, we
1541 * try other mirrors that might have a good copy of the data. This
1542 * io_failure_record is used to record state as we go through all the
1543 * mirrors. If another mirror has good data, the page is set up to date
1544 * and things continue. If a good mirror can't be found, the original
1545 * bio end_io callback is called to indicate things have failed.
1546 */
Chris Mason7e383262008-04-09 16:28:12 -04001547struct io_failure_record {
1548 struct page *page;
1549 u64 start;
1550 u64 len;
1551 u64 logical;
1552 int last_mirror;
1553};
1554
Chris Mason1259ab72008-05-12 13:39:03 -04001555int btrfs_io_failed_hook(struct bio *failed_bio,
1556 struct page *page, u64 start, u64 end,
1557 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001558{
1559 struct io_failure_record *failrec = NULL;
1560 u64 private;
1561 struct extent_map *em;
1562 struct inode *inode = page->mapping->host;
1563 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001564 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001565 struct bio *bio;
1566 int num_copies;
1567 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001568 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001569 u64 logical;
Chris Masonc8b97812008-10-29 14:49:59 -04001570 unsigned long bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001571
1572 ret = get_state_private(failure_tree, start, &private);
1573 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001574 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1575 if (!failrec)
1576 return -ENOMEM;
1577 failrec->start = start;
1578 failrec->len = end - start + 1;
1579 failrec->last_mirror = 0;
1580
Chris Mason3b951512008-04-17 11:29:12 -04001581 spin_lock(&em_tree->lock);
1582 em = lookup_extent_mapping(em_tree, start, failrec->len);
1583 if (em->start > start || em->start + em->len < start) {
1584 free_extent_map(em);
1585 em = NULL;
1586 }
1587 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001588
1589 if (!em || IS_ERR(em)) {
1590 kfree(failrec);
1591 return -EIO;
1592 }
1593 logical = start - em->start;
1594 logical = em->block_start + logical;
Chris Masonc8b97812008-10-29 14:49:59 -04001595 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
1596 bio_flags = EXTENT_BIO_COMPRESSED;
Chris Mason7e383262008-04-09 16:28:12 -04001597 failrec->logical = logical;
1598 free_extent_map(em);
1599 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1600 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001601 set_state_private(failure_tree, start,
1602 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001603 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001604 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001605 }
1606 num_copies = btrfs_num_copies(
1607 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1608 failrec->logical, failrec->len);
1609 failrec->last_mirror++;
1610 if (!state) {
1611 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
1612 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1613 failrec->start,
1614 EXTENT_LOCKED);
1615 if (state && state->start != failrec->start)
1616 state = NULL;
1617 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
1618 }
1619 if (!state || failrec->last_mirror > num_copies) {
1620 set_state_private(failure_tree, failrec->start, 0);
1621 clear_extent_bits(failure_tree, failrec->start,
1622 failrec->start + failrec->len - 1,
1623 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1624 kfree(failrec);
1625 return -EIO;
1626 }
1627 bio = bio_alloc(GFP_NOFS, 1);
1628 bio->bi_private = state;
1629 bio->bi_end_io = failed_bio->bi_end_io;
1630 bio->bi_sector = failrec->logical >> 9;
1631 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001632 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001633 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001634 if (failed_bio->bi_rw & (1 << BIO_RW))
1635 rw = WRITE;
1636 else
1637 rw = READ;
1638
1639 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001640 failrec->last_mirror,
1641 bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001642 return 0;
1643}
1644
Chris Masond352ac62008-09-29 15:18:18 -04001645/*
1646 * each time an IO finishes, we do a fast check in the IO failure tree
1647 * to see if we need to process or clean up an io_failure_record
1648 */
Chris Mason1259ab72008-05-12 13:39:03 -04001649int btrfs_clean_io_failures(struct inode *inode, u64 start)
1650{
1651 u64 private;
1652 u64 private_failure;
1653 struct io_failure_record *failure;
1654 int ret;
1655
1656 private = 0;
1657 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1658 (u64)-1, 1, EXTENT_DIRTY)) {
1659 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1660 start, &private_failure);
1661 if (ret == 0) {
1662 failure = (struct io_failure_record *)(unsigned long)
1663 private_failure;
1664 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1665 failure->start, 0);
1666 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1667 failure->start,
1668 failure->start + failure->len - 1,
1669 EXTENT_DIRTY | EXTENT_LOCKED,
1670 GFP_NOFS);
1671 kfree(failure);
1672 }
1673 }
Chris Mason7e383262008-04-09 16:28:12 -04001674 return 0;
1675}
1676
Chris Masond352ac62008-09-29 15:18:18 -04001677/*
1678 * when reads are done, we need to check csums to verify the data is correct
1679 * if there's a match, we allow the bio to finish. If not, we go through
1680 * the io_failure_record routines to find good copies
1681 */
Chris Mason70dec802008-01-29 09:59:12 -05001682int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
1683 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001684{
Chris Mason35ebb932007-10-30 16:56:53 -04001685 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001686 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001687 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001688 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001689 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001690 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001691 struct btrfs_root *root = BTRFS_I(inode)->root;
1692 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -04001693 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -05001694
Yanb98b6762008-01-08 15:54:37 -05001695 if (btrfs_test_opt(root, NODATASUM) ||
1696 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -05001697 return 0;
Yanc2e639f2008-02-04 08:57:25 -05001698 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001699 private = state->private;
1700 ret = 0;
1701 } else {
1702 ret = get_state_private(io_tree, start, &private);
1703 }
Jens Axboebbf0d002007-10-19 09:23:07 -04001704 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -04001705 kaddr = kmap_atomic(page, KM_IRQ0);
1706 if (ret) {
1707 goto zeroit;
1708 }
Chris Masonff79f812007-10-15 16:22:25 -04001709 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1710 btrfs_csum_final(csum, (char *)&csum);
1711 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -04001712 goto zeroit;
1713 }
1714 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001715 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -04001716
1717 /* if the io failure tree for this inode is non-empty,
1718 * check to see if we've recovered from a failed IO
1719 */
Chris Mason1259ab72008-05-12 13:39:03 -04001720 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001721 return 0;
1722
1723zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -05001724 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
1725 page->mapping->host->i_ino, (unsigned long long)start, csum,
1726 private);
Chris Masondb945352007-10-15 16:15:53 -04001727 memset(kaddr + offset, 1, end - start + 1);
1728 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -04001729 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001730 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -04001731 if (private == 0)
1732 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001733 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001734}
Chris Masonb888db22007-08-27 16:49:44 -04001735
Josef Bacik7b128762008-07-24 12:17:14 -04001736/*
1737 * This creates an orphan entry for the given inode in case something goes
1738 * wrong in the middle of an unlink/truncate.
1739 */
1740int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1741{
1742 struct btrfs_root *root = BTRFS_I(inode)->root;
1743 int ret = 0;
1744
Yanbcc63ab2008-07-30 16:29:20 -04001745 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001746
1747 /* already on the orphan list, we're good */
1748 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001749 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001750 return 0;
1751 }
1752
1753 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
1754
Yanbcc63ab2008-07-30 16:29:20 -04001755 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001756
1757 /*
1758 * insert an orphan item to track this unlinked/truncated file
1759 */
1760 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
1761
1762 return ret;
1763}
1764
1765/*
1766 * We have done the truncate/delete so we can go ahead and remove the orphan
1767 * item for this particular inode.
1768 */
1769int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
1770{
1771 struct btrfs_root *root = BTRFS_I(inode)->root;
1772 int ret = 0;
1773
Yanbcc63ab2008-07-30 16:29:20 -04001774 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001775
1776 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001777 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001778 return 0;
1779 }
1780
1781 list_del_init(&BTRFS_I(inode)->i_orphan);
1782 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04001783 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001784 return 0;
1785 }
1786
Yanbcc63ab2008-07-30 16:29:20 -04001787 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001788
1789 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
1790
1791 return ret;
1792}
1793
1794/*
1795 * this cleans up any orphans that may be left on the list from the last use
1796 * of this root.
1797 */
1798void btrfs_orphan_cleanup(struct btrfs_root *root)
1799{
1800 struct btrfs_path *path;
1801 struct extent_buffer *leaf;
1802 struct btrfs_item *item;
1803 struct btrfs_key key, found_key;
1804 struct btrfs_trans_handle *trans;
1805 struct inode *inode;
1806 int ret = 0, nr_unlink = 0, nr_truncate = 0;
1807
1808 /* don't do orphan cleanup if the fs is readonly. */
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001809 if (root->fs_info->sb->s_flags & MS_RDONLY)
Josef Bacik7b128762008-07-24 12:17:14 -04001810 return;
1811
1812 path = btrfs_alloc_path();
1813 if (!path)
1814 return;
1815 path->reada = -1;
1816
1817 key.objectid = BTRFS_ORPHAN_OBJECTID;
1818 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1819 key.offset = (u64)-1;
1820
Josef Bacik7b128762008-07-24 12:17:14 -04001821
1822 while (1) {
1823 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1824 if (ret < 0) {
1825 printk(KERN_ERR "Error searching slot for orphan: %d"
1826 "\n", ret);
1827 break;
1828 }
1829
1830 /*
1831 * if ret == 0 means we found what we were searching for, which
1832 * is weird, but possible, so only screw with path if we didnt
1833 * find the key and see if we have stuff that matches
1834 */
1835 if (ret > 0) {
1836 if (path->slots[0] == 0)
1837 break;
1838 path->slots[0]--;
1839 }
1840
1841 /* pull out the item */
1842 leaf = path->nodes[0];
1843 item = btrfs_item_nr(leaf, path->slots[0]);
1844 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1845
1846 /* make sure the item matches what we want */
1847 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
1848 break;
1849 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
1850 break;
1851
1852 /* release the path since we're done with it */
1853 btrfs_release_path(root, path);
1854
1855 /*
1856 * this is where we are basically btrfs_lookup, without the
1857 * crossing root thing. we store the inode number in the
1858 * offset of the orphan item.
1859 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001860 inode = btrfs_iget_locked(root->fs_info->sb,
Josef Bacik7b128762008-07-24 12:17:14 -04001861 found_key.offset, root);
1862 if (!inode)
1863 break;
1864
1865 if (inode->i_state & I_NEW) {
1866 BTRFS_I(inode)->root = root;
1867
1868 /* have to set the location manually */
1869 BTRFS_I(inode)->location.objectid = inode->i_ino;
1870 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
1871 BTRFS_I(inode)->location.offset = 0;
1872
1873 btrfs_read_locked_inode(inode);
1874 unlock_new_inode(inode);
1875 }
1876
1877 /*
1878 * add this inode to the orphan list so btrfs_orphan_del does
1879 * the proper thing when we hit it
1880 */
Yanbcc63ab2008-07-30 16:29:20 -04001881 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001882 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04001883 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001884
1885 /*
1886 * if this is a bad inode, means we actually succeeded in
1887 * removing the inode, but not the orphan record, which means
1888 * we need to manually delete the orphan since iput will just
1889 * do a destroy_inode
1890 */
1891 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001892 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04001893 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001894 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04001895 iput(inode);
1896 continue;
1897 }
1898
1899 /* if we have links, this was a truncate, lets do that */
1900 if (inode->i_nlink) {
1901 nr_truncate++;
1902 btrfs_truncate(inode);
1903 } else {
1904 nr_unlink++;
1905 }
1906
1907 /* this will do delete_inode and everything for us */
1908 iput(inode);
1909 }
1910
1911 if (nr_unlink)
1912 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
1913 if (nr_truncate)
1914 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
1915
1916 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04001917}
1918
Chris Masond352ac62008-09-29 15:18:18 -04001919/*
1920 * read an inode from the btree into the in-memory inode
1921 */
Chris Mason39279cc2007-06-12 06:35:45 -04001922void btrfs_read_locked_inode(struct inode *inode)
1923{
1924 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001925 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001926 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04001927 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04001928 struct btrfs_root *root = BTRFS_I(inode)->root;
1929 struct btrfs_key location;
1930 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04001931 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04001932 int ret;
1933
1934 path = btrfs_alloc_path();
1935 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001936 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05001937
Chris Mason39279cc2007-06-12 06:35:45 -04001938 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001939 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001940 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04001941
Chris Mason5f39d392007-10-15 16:14:19 -04001942 leaf = path->nodes[0];
1943 inode_item = btrfs_item_ptr(leaf, path->slots[0],
1944 struct btrfs_inode_item);
1945
1946 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
1947 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
1948 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
1949 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04001950 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04001951
1952 tspec = btrfs_inode_atime(inode_item);
1953 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1954 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1955
1956 tspec = btrfs_inode_mtime(inode_item);
1957 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1958 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1959
1960 tspec = btrfs_inode_ctime(inode_item);
1961 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1962 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1963
Yan Zhenga76a3cd2008-10-09 11:46:29 -04001964 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04001965 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
1966 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04001967 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001968 rdev = btrfs_inode_rdev(leaf, inode_item);
1969
Josef Bacikaec74772008-07-24 12:12:38 -04001970 BTRFS_I(inode)->index_cnt = (u64)-1;
1971
Chris Mason5f39d392007-10-15 16:14:19 -04001972 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04001973 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
1974 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -05001975 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -05001976 if (!BTRFS_I(inode)->block_group) {
1977 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -04001978 NULL, 0,
1979 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -05001980 }
Chris Mason39279cc2007-06-12 06:35:45 -04001981 btrfs_free_path(path);
1982 inode_item = NULL;
1983
Chris Mason39279cc2007-06-12 06:35:45 -04001984 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04001985 case S_IFREG:
1986 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001987 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05001988 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001989 inode->i_fop = &btrfs_file_operations;
1990 inode->i_op = &btrfs_file_inode_operations;
1991 break;
1992 case S_IFDIR:
1993 inode->i_fop = &btrfs_dir_file_operations;
1994 if (root == root->fs_info->tree_root)
1995 inode->i_op = &btrfs_dir_ro_inode_operations;
1996 else
1997 inode->i_op = &btrfs_dir_inode_operations;
1998 break;
1999 case S_IFLNK:
2000 inode->i_op = &btrfs_symlink_inode_operations;
2001 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002002 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002003 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002004 default:
2005 init_special_inode(inode, inode->i_mode, rdev);
2006 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002007 }
2008 return;
2009
2010make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002011 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002012 make_bad_inode(inode);
2013}
2014
Chris Masond352ac62008-09-29 15:18:18 -04002015/*
2016 * given a leaf and an inode, copy the inode fields into the leaf
2017 */
Chris Masone02119d2008-09-05 16:13:11 -04002018static void fill_inode_item(struct btrfs_trans_handle *trans,
2019 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002020 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002021 struct inode *inode)
2022{
Chris Mason5f39d392007-10-15 16:14:19 -04002023 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2024 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002025 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002026 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2027 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2028
2029 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2030 inode->i_atime.tv_sec);
2031 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2032 inode->i_atime.tv_nsec);
2033
2034 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2035 inode->i_mtime.tv_sec);
2036 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2037 inode->i_mtime.tv_nsec);
2038
2039 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2040 inode->i_ctime.tv_sec);
2041 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2042 inode->i_ctime.tv_nsec);
2043
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002044 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002045 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
2046 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002047 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002048 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -04002049 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -04002050 BTRFS_I(inode)->block_group->key.objectid);
2051}
2052
Chris Masond352ac62008-09-29 15:18:18 -04002053/*
2054 * copy everything in the in-memory inode into the btree.
2055 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002056int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -04002057 struct btrfs_root *root,
2058 struct inode *inode)
2059{
2060 struct btrfs_inode_item *inode_item;
2061 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002062 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002063 int ret;
2064
2065 path = btrfs_alloc_path();
2066 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002067 ret = btrfs_lookup_inode(trans, root, path,
2068 &BTRFS_I(inode)->location, 1);
2069 if (ret) {
2070 if (ret > 0)
2071 ret = -ENOENT;
2072 goto failed;
2073 }
2074
Chris Mason5f39d392007-10-15 16:14:19 -04002075 leaf = path->nodes[0];
2076 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002077 struct btrfs_inode_item);
2078
Chris Masone02119d2008-09-05 16:13:11 -04002079 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002080 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002081 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002082 ret = 0;
2083failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002084 btrfs_free_path(path);
2085 return ret;
2086}
2087
2088
Chris Masond352ac62008-09-29 15:18:18 -04002089/*
2090 * unlink helper that gets used here in inode.c and in the tree logging
2091 * recovery code. It remove a link in a directory with a given name, and
2092 * also drops the back refs in the inode to the directory
2093 */
Chris Masone02119d2008-09-05 16:13:11 -04002094int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2095 struct btrfs_root *root,
2096 struct inode *dir, struct inode *inode,
2097 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002098{
2099 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002100 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002101 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002102 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002103 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002104 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002105
2106 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002107 if (!path) {
2108 ret = -ENOMEM;
2109 goto err;
2110 }
2111
Chris Mason39279cc2007-06-12 06:35:45 -04002112 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2113 name, name_len, -1);
2114 if (IS_ERR(di)) {
2115 ret = PTR_ERR(di);
2116 goto err;
2117 }
2118 if (!di) {
2119 ret = -ENOENT;
2120 goto err;
2121 }
Chris Mason5f39d392007-10-15 16:14:19 -04002122 leaf = path->nodes[0];
2123 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002124 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002125 if (ret)
2126 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002127 btrfs_release_path(root, path);
2128
Josef Bacikaec74772008-07-24 12:12:38 -04002129 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002130 inode->i_ino,
2131 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002132 if (ret) {
2133 printk("failed to delete reference to %.*s, "
2134 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002135 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002136 goto err;
2137 }
2138
Chris Mason39279cc2007-06-12 06:35:45 -04002139 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002140 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002141 if (IS_ERR(di)) {
2142 ret = PTR_ERR(di);
2143 goto err;
2144 }
2145 if (!di) {
2146 ret = -ENOENT;
2147 goto err;
2148 }
2149 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002150 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002151
Chris Masone02119d2008-09-05 16:13:11 -04002152 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2153 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002154 BUG_ON(ret != 0 && ret != -ENOENT);
2155 if (ret != -ENOENT)
2156 BTRFS_I(dir)->log_dirty_trans = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04002157
2158 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2159 dir, index);
2160 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002161err:
2162 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002163 if (ret)
2164 goto out;
2165
2166 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2167 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2168 btrfs_update_inode(trans, root, dir);
2169 btrfs_drop_nlink(inode);
2170 ret = btrfs_update_inode(trans, root, inode);
2171 dir->i_sb->s_dirt = 1;
2172out:
Chris Mason39279cc2007-06-12 06:35:45 -04002173 return ret;
2174}
2175
2176static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2177{
2178 struct btrfs_root *root;
2179 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002180 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002181 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002182 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002183
2184 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002185
2186 ret = btrfs_check_free_space(root, 1, 1);
2187 if (ret)
2188 goto fail;
2189
Chris Mason39279cc2007-06-12 06:35:45 -04002190 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002191
Chris Mason39279cc2007-06-12 06:35:45 -04002192 btrfs_set_trans_block_group(trans, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002193 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2194 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002195
2196 if (inode->i_nlink == 0)
2197 ret = btrfs_orphan_add(trans, inode);
2198
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002199 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002200
Chris Mason89ce8a62008-06-25 16:01:31 -04002201 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002202fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002203 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002204 return ret;
2205}
2206
2207static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2208{
2209 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002210 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002211 int ret;
2212 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002213 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002214 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002215
Chris Mason925baed2008-06-25 16:01:30 -04002216 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
Yan134d4512007-10-25 15:49:25 -04002217 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04002218 }
Yan134d4512007-10-25 15:49:25 -04002219
Chris Mason1832a6d2007-12-21 16:27:21 -05002220 ret = btrfs_check_free_space(root, 1, 1);
2221 if (ret)
2222 goto fail;
2223
Chris Mason39279cc2007-06-12 06:35:45 -04002224 trans = btrfs_start_transaction(root, 1);
2225 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002226
Josef Bacik7b128762008-07-24 12:17:14 -04002227 err = btrfs_orphan_add(trans, inode);
2228 if (err)
2229 goto fail_trans;
2230
Chris Mason39279cc2007-06-12 06:35:45 -04002231 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002232 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2233 dentry->d_name.name, dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002234 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04002235 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002236 }
Chris Mason39544012007-12-12 14:38:19 -05002237
Josef Bacik7b128762008-07-24 12:17:14 -04002238fail_trans:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002239 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002240 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002241fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002242 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002243
Chris Mason39279cc2007-06-12 06:35:45 -04002244 if (ret && !err)
2245 err = ret;
2246 return err;
2247}
2248
Chris Mason39279cc2007-06-12 06:35:45 -04002249/*
Chris Mason323ac952008-10-01 19:05:46 -04002250 * when truncating bytes in a file, it is possible to avoid reading
2251 * the leaves that contain only checksum items. This can be the
2252 * majority of the IO required to delete a large file, but it must
2253 * be done carefully.
2254 *
2255 * The keys in the level just above the leaves are checked to make sure
2256 * the lowest key in a given leaf is a csum key, and starts at an offset
2257 * after the new size.
2258 *
2259 * Then the key for the next leaf is checked to make sure it also has
2260 * a checksum item for the same file. If it does, we know our target leaf
2261 * contains only checksum items, and it can be safely freed without reading
2262 * it.
2263 *
2264 * This is just an optimization targeted at large files. It may do
2265 * nothing. It will return 0 unless things went badly.
2266 */
2267static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2268 struct btrfs_root *root,
2269 struct btrfs_path *path,
2270 struct inode *inode, u64 new_size)
2271{
2272 struct btrfs_key key;
2273 int ret;
2274 int nritems;
2275 struct btrfs_key found_key;
2276 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002277 struct btrfs_leaf_ref *ref;
2278 u64 leaf_gen;
2279 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002280
2281 path->lowest_level = 1;
2282 key.objectid = inode->i_ino;
2283 key.type = BTRFS_CSUM_ITEM_KEY;
2284 key.offset = new_size;
2285again:
2286 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2287 if (ret < 0)
2288 goto out;
2289
2290 if (path->nodes[1] == NULL) {
2291 ret = 0;
2292 goto out;
2293 }
2294 ret = 0;
2295 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2296 nritems = btrfs_header_nritems(path->nodes[1]);
2297
2298 if (!nritems)
2299 goto out;
2300
2301 if (path->slots[1] >= nritems)
2302 goto next_node;
2303
2304 /* did we find a key greater than anything we want to delete? */
2305 if (found_key.objectid > inode->i_ino ||
2306 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2307 goto out;
2308
2309 /* we check the next key in the node to make sure the leave contains
2310 * only checksum items. This comparison doesn't work if our
2311 * leaf is the last one in the node
2312 */
2313 if (path->slots[1] + 1 >= nritems) {
2314next_node:
2315 /* search forward from the last key in the node, this
2316 * will bring us into the next node in the tree
2317 */
2318 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2319
2320 /* unlikely, but we inc below, so check to be safe */
2321 if (found_key.offset == (u64)-1)
2322 goto out;
2323
2324 /* search_forward needs a path with locks held, do the
2325 * search again for the original key. It is possible
2326 * this will race with a balance and return a path that
2327 * we could modify, but this drop is just an optimization
2328 * and is allowed to miss some leaves.
2329 */
2330 btrfs_release_path(root, path);
2331 found_key.offset++;
2332
2333 /* setup a max key for search_forward */
2334 other_key.offset = (u64)-1;
2335 other_key.type = key.type;
2336 other_key.objectid = key.objectid;
2337
2338 path->keep_locks = 1;
2339 ret = btrfs_search_forward(root, &found_key, &other_key,
2340 path, 0, 0);
2341 path->keep_locks = 0;
2342 if (ret || found_key.objectid != key.objectid ||
2343 found_key.type != key.type) {
2344 ret = 0;
2345 goto out;
2346 }
2347
2348 key.offset = found_key.offset;
2349 btrfs_release_path(root, path);
2350 cond_resched();
2351 goto again;
2352 }
2353
2354 /* we know there's one more slot after us in the tree,
2355 * read that key so we can verify it is also a checksum item
2356 */
2357 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2358
2359 if (found_key.objectid < inode->i_ino)
2360 goto next_key;
2361
2362 if (found_key.type != key.type || found_key.offset < new_size)
2363 goto next_key;
2364
2365 /*
2366 * if the key for the next leaf isn't a csum key from this objectid,
2367 * we can't be sure there aren't good items inside this leaf.
2368 * Bail out
2369 */
2370 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2371 goto out;
2372
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002373 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2374 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002375 /*
2376 * it is safe to delete this leaf, it contains only
2377 * csum items from this inode at an offset >= new_size
2378 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002379 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002380 BUG_ON(ret);
2381
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002382 if (root->ref_cows && leaf_gen < trans->transid) {
2383 ref = btrfs_alloc_leaf_ref(root, 0);
2384 if (ref) {
2385 ref->root_gen = root->root_key.offset;
2386 ref->bytenr = leaf_start;
2387 ref->owner = 0;
2388 ref->generation = leaf_gen;
2389 ref->nritems = 0;
2390
2391 ret = btrfs_add_leaf_ref(root, ref, 0);
2392 WARN_ON(ret);
2393 btrfs_free_leaf_ref(root, ref);
2394 } else {
2395 WARN_ON(1);
2396 }
2397 }
Chris Mason323ac952008-10-01 19:05:46 -04002398next_key:
2399 btrfs_release_path(root, path);
2400
2401 if (other_key.objectid == inode->i_ino &&
2402 other_key.type == key.type && other_key.offset > key.offset) {
2403 key.offset = other_key.offset;
2404 cond_resched();
2405 goto again;
2406 }
2407 ret = 0;
2408out:
2409 /* fixup any changes we've made to the path */
2410 path->lowest_level = 0;
2411 path->keep_locks = 0;
2412 btrfs_release_path(root, path);
2413 return ret;
2414}
2415
2416/*
Chris Mason39279cc2007-06-12 06:35:45 -04002417 * this can truncate away extent items, csum items and directory items.
2418 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002419 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002420 *
2421 * csum items that cross the new i_size are truncated to the new size
2422 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002423 *
2424 * min_type is the minimum key type to truncate down to. If set to 0, this
2425 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002426 */
Chris Masone02119d2008-09-05 16:13:11 -04002427noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2428 struct btrfs_root *root,
2429 struct inode *inode,
2430 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002431{
2432 int ret;
2433 struct btrfs_path *path;
2434 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002435 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002436 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04002437 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002438 struct btrfs_file_extent_item *fi;
2439 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002440 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002441 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002442 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05002443 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002444 int found_extent;
2445 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002446 int pending_del_nr = 0;
2447 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002448 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002449 int encoding;
Chris Mason3b951512008-04-17 11:29:12 -04002450 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002451
Chris Masone02119d2008-09-05 16:13:11 -04002452 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002453 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002454 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04002455 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04002456 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04002457
Chris Mason39279cc2007-06-12 06:35:45 -04002458 /* FIXME, add redo link to tree so we don't leak on crash */
2459 key.objectid = inode->i_ino;
2460 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002461 key.type = (u8)-1;
2462
Chris Mason85e21ba2008-01-29 15:11:36 -05002463 btrfs_init_path(path);
Chris Mason323ac952008-10-01 19:05:46 -04002464
2465 ret = drop_csum_leaves(trans, root, path, inode, new_size);
2466 BUG_ON(ret);
2467
Chris Mason85e21ba2008-01-29 15:11:36 -05002468search_again:
2469 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2470 if (ret < 0) {
2471 goto error;
2472 }
2473 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002474 /* there are no items in the tree for us to truncate, we're
2475 * done
2476 */
2477 if (path->slots[0] == 0) {
2478 ret = 0;
2479 goto error;
2480 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002481 path->slots[0]--;
2482 }
2483
Chris Mason39279cc2007-06-12 06:35:45 -04002484 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002485 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002486 leaf = path->nodes[0];
2487 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2488 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002489 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002490
Chris Mason5f39d392007-10-15 16:14:19 -04002491 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002492 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002493
Chris Mason85e21ba2008-01-29 15:11:36 -05002494 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002495 break;
2496
Chris Mason5f39d392007-10-15 16:14:19 -04002497 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002498 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002499 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002500 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002501 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002502 encoding = btrfs_file_extent_compression(leaf, fi);
2503 encoding |= btrfs_file_extent_encryption(leaf, fi);
2504 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2505
Chris Mason179e29e2007-11-01 11:28:41 -04002506 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002507 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002508 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002509 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002510 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002511 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002512 }
Yan008630c2007-11-07 13:31:09 -05002513 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002514 }
2515 if (found_type == BTRFS_CSUM_ITEM_KEY) {
2516 ret = btrfs_csum_truncate(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002517 new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04002518 BUG_ON(ret);
2519 }
Chris Masone02119d2008-09-05 16:13:11 -04002520 if (item_end < new_size) {
Chris Masonb888db22007-08-27 16:49:44 -04002521 if (found_type == BTRFS_DIR_ITEM_KEY) {
2522 found_type = BTRFS_INODE_ITEM_KEY;
2523 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
2524 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05002525 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
2526 found_type = BTRFS_XATTR_ITEM_KEY;
2527 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
2528 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04002529 } else if (found_type) {
2530 found_type--;
2531 } else {
2532 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002533 }
Yana61721d2007-09-17 11:08:38 -04002534 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05002535 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04002536 }
Chris Masone02119d2008-09-05 16:13:11 -04002537 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04002538 del_item = 1;
2539 else
2540 del_item = 0;
2541 found_extent = 0;
2542
2543 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002544 if (found_type != BTRFS_EXTENT_DATA_KEY)
2545 goto delete;
2546
2547 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002548 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002549 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002550 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002551 u64 orig_num_bytes =
2552 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002553 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002554 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002555 extent_num_bytes = extent_num_bytes &
2556 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002557 btrfs_set_file_extent_num_bytes(leaf, fi,
2558 extent_num_bytes);
2559 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002560 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002561 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002562 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002563 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002564 } else {
Chris Masondb945352007-10-15 16:15:53 -04002565 extent_num_bytes =
2566 btrfs_file_extent_disk_num_bytes(leaf,
2567 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002568 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002569 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002570 if (extent_start != 0) {
2571 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002572 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002573 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002574 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002575 root_gen = btrfs_header_generation(leaf);
Chris Masond8d5f3e2007-12-11 12:42:00 -05002576 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002577 }
Chris Mason90692182008-02-08 13:49:28 -05002578 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002579 /*
2580 * we can't truncate inline items that have had
2581 * special encodings
2582 */
2583 if (!del_item &&
2584 btrfs_file_extent_compression(leaf, fi) == 0 &&
2585 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2586 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002587 u32 size = new_size - found_key.offset;
2588
2589 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002590 inode_sub_bytes(inode, item_end + 1 -
2591 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04002592 }
2593 size =
2594 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05002595 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002596 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05002597 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04002598 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002599 inode_sub_bytes(inode, item_end + 1 -
2600 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05002601 }
Chris Mason39279cc2007-06-12 06:35:45 -04002602 }
Chris Mason179e29e2007-11-01 11:28:41 -04002603delete:
Chris Mason39279cc2007-06-12 06:35:45 -04002604 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05002605 if (!pending_del_nr) {
2606 /* no pending yet, add ourselves */
2607 pending_del_slot = path->slots[0];
2608 pending_del_nr = 1;
2609 } else if (pending_del_nr &&
2610 path->slots[0] + 1 == pending_del_slot) {
2611 /* hop on the pending chunk */
2612 pending_del_nr++;
2613 pending_del_slot = path->slots[0];
2614 } else {
2615 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
2616 }
Chris Mason39279cc2007-06-12 06:35:45 -04002617 } else {
2618 break;
2619 }
Chris Mason39279cc2007-06-12 06:35:45 -04002620 if (found_extent) {
2621 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05002622 extent_num_bytes,
Zheng Yan31840ae2008-09-23 13:14:14 -04002623 leaf->start, root_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04002624 root_gen, inode->i_ino, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002625 BUG_ON(ret);
2626 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002627next:
2628 if (path->slots[0] == 0) {
2629 if (pending_del_nr)
2630 goto del_pending;
2631 btrfs_release_path(root, path);
2632 goto search_again;
2633 }
2634
2635 path->slots[0]--;
2636 if (pending_del_nr &&
2637 path->slots[0] + 1 != pending_del_slot) {
2638 struct btrfs_key debug;
2639del_pending:
2640 btrfs_item_key_to_cpu(path->nodes[0], &debug,
2641 pending_del_slot);
2642 ret = btrfs_del_items(trans, root, path,
2643 pending_del_slot,
2644 pending_del_nr);
2645 BUG_ON(ret);
2646 pending_del_nr = 0;
2647 btrfs_release_path(root, path);
2648 goto search_again;
2649 }
Chris Mason39279cc2007-06-12 06:35:45 -04002650 }
2651 ret = 0;
2652error:
Chris Mason85e21ba2008-01-29 15:11:36 -05002653 if (pending_del_nr) {
2654 ret = btrfs_del_items(trans, root, path, pending_del_slot,
2655 pending_del_nr);
2656 }
Chris Mason39279cc2007-06-12 06:35:45 -04002657 btrfs_free_path(path);
2658 inode->i_sb->s_dirt = 1;
2659 return ret;
2660}
2661
Chris Masona52d9a82007-08-27 16:49:44 -04002662/*
2663 * taken from block_truncate_page, but does cow as it zeros out
2664 * any bytes left in the last page in the file.
2665 */
2666static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
2667{
2668 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04002669 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002670 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2671 struct btrfs_ordered_extent *ordered;
2672 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04002673 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04002674 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2675 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2676 struct page *page;
2677 int ret = 0;
2678 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002679 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04002680
2681 if ((offset & (blocksize - 1)) == 0)
2682 goto out;
2683
2684 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04002685again:
Chris Masona52d9a82007-08-27 16:49:44 -04002686 page = grab_cache_page(mapping, index);
2687 if (!page)
2688 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002689
2690 page_start = page_offset(page);
2691 page_end = page_start + PAGE_CACHE_SIZE - 1;
2692
Chris Masona52d9a82007-08-27 16:49:44 -04002693 if (!PageUptodate(page)) {
2694 ret = btrfs_readpage(NULL, page);
2695 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04002696 if (page->mapping != mapping) {
2697 unlock_page(page);
2698 page_cache_release(page);
2699 goto again;
2700 }
Chris Masona52d9a82007-08-27 16:49:44 -04002701 if (!PageUptodate(page)) {
2702 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04002703 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04002704 }
2705 }
Chris Mason211c17f2008-05-15 09:13:45 -04002706 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002707
2708 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2709 set_page_extent_mapped(page);
2710
2711 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2712 if (ordered) {
2713 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2714 unlock_page(page);
2715 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002716 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002717 btrfs_put_ordered_extent(ordered);
2718 goto again;
2719 }
2720
Chris Masonea8c2812008-08-04 23:17:27 -04002721 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002722 ret = 0;
2723 if (offset != PAGE_CACHE_SIZE) {
2724 kaddr = kmap(page);
2725 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2726 flush_dcache_page(page);
2727 kunmap(page);
2728 }
Chris Mason247e7432008-07-17 12:53:51 -04002729 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002730 set_page_dirty(page);
2731 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002732
Chris Mason89642222008-07-24 09:41:53 -04002733out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002734 unlock_page(page);
2735 page_cache_release(page);
2736out:
2737 return ret;
2738}
2739
Yan Zheng9036c102008-10-30 14:19:41 -04002740int btrfs_cont_expand(struct inode *inode, loff_t size)
2741{
2742 struct btrfs_trans_handle *trans;
2743 struct btrfs_root *root = BTRFS_I(inode)->root;
2744 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2745 struct extent_map *em;
2746 u64 mask = root->sectorsize - 1;
2747 u64 hole_start = (inode->i_size + mask) & ~mask;
2748 u64 block_end = (size + mask) & ~mask;
2749 u64 last_byte;
2750 u64 cur_offset;
2751 u64 hole_size;
2752 int err;
2753
2754 if (size <= hole_start)
2755 return 0;
2756
2757 err = btrfs_check_free_space(root, 1, 0);
2758 if (err)
2759 return err;
2760
2761 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2762
2763 while (1) {
2764 struct btrfs_ordered_extent *ordered;
2765 btrfs_wait_ordered_range(inode, hole_start,
2766 block_end - hole_start);
2767 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2768 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
2769 if (!ordered)
2770 break;
2771 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2772 btrfs_put_ordered_extent(ordered);
2773 }
2774
2775 trans = btrfs_start_transaction(root, 1);
2776 btrfs_set_trans_block_group(trans, inode);
2777
2778 cur_offset = hole_start;
2779 while (1) {
2780 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2781 block_end - cur_offset, 0);
2782 BUG_ON(IS_ERR(em) || !em);
2783 last_byte = min(extent_map_end(em), block_end);
2784 last_byte = (last_byte + mask) & ~mask;
2785 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05002786 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04002787 hole_size = last_byte - cur_offset;
Chris Mason771ed682008-11-06 22:02:51 -05002788 err = btrfs_drop_extents(trans, root, inode,
2789 cur_offset,
2790 cur_offset + hole_size,
2791 cur_offset, &hint_byte);
2792 if (err)
2793 break;
Yan Zheng9036c102008-10-30 14:19:41 -04002794 err = btrfs_insert_file_extent(trans, root,
2795 inode->i_ino, cur_offset, 0,
2796 0, hole_size, 0, hole_size,
2797 0, 0, 0);
2798 btrfs_drop_extent_cache(inode, hole_start,
2799 last_byte - 1, 0);
2800 }
2801 free_extent_map(em);
2802 cur_offset = last_byte;
2803 if (err || cur_offset >= block_end)
2804 break;
2805 }
2806
2807 btrfs_end_transaction(trans, root);
2808 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2809 return err;
2810}
2811
Chris Mason39279cc2007-06-12 06:35:45 -04002812static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
2813{
2814 struct inode *inode = dentry->d_inode;
2815 int err;
2816
2817 err = inode_change_ok(inode, attr);
2818 if (err)
2819 return err;
2820
2821 if (S_ISREG(inode->i_mode) &&
2822 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
Yan Zheng9036c102008-10-30 14:19:41 -04002823 err = btrfs_cont_expand(inode, attr->ia_size);
Chris Mason54aa1f42007-06-22 14:16:25 -04002824 if (err)
2825 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04002826 }
Yan Zheng9036c102008-10-30 14:19:41 -04002827
Chris Mason39279cc2007-06-12 06:35:45 -04002828 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04002829
2830 if (!err && ((attr->ia_valid & ATTR_MODE)))
2831 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002832 return err;
2833}
Chris Mason61295eb2008-01-14 16:24:38 -05002834
Chris Mason39279cc2007-06-12 06:35:45 -04002835void btrfs_delete_inode(struct inode *inode)
2836{
2837 struct btrfs_trans_handle *trans;
2838 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002839 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002840 int ret;
2841
2842 truncate_inode_pages(&inode->i_data, 0);
2843 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04002844 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002845 goto no_delete;
2846 }
Chris Mason4a096752008-07-21 10:29:44 -04002847 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04002848
Chris Masondbe674a2008-07-17 12:54:05 -04002849 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002850 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002851
Chris Mason39279cc2007-06-12 06:35:45 -04002852 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002853 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04002854 if (ret) {
2855 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002856 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04002857 }
2858
2859 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05002860
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002861 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05002862 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002863
Chris Mason39279cc2007-06-12 06:35:45 -04002864 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002865 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002866 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04002867
2868no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002869 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04002870 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002871 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002872no_delete:
2873 clear_inode(inode);
2874}
2875
2876/*
2877 * this returns the key found in the dir entry in the location pointer.
2878 * If no dir entries were found, location->objectid is 0.
2879 */
2880static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
2881 struct btrfs_key *location)
2882{
2883 const char *name = dentry->d_name.name;
2884 int namelen = dentry->d_name.len;
2885 struct btrfs_dir_item *di;
2886 struct btrfs_path *path;
2887 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04002888 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002889
2890 path = btrfs_alloc_path();
2891 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05002892
Chris Mason39279cc2007-06-12 06:35:45 -04002893 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
2894 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04002895 if (IS_ERR(di))
2896 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04002897 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05002898 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04002899 }
Chris Mason5f39d392007-10-15 16:14:19 -04002900 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04002901out:
Chris Mason39279cc2007-06-12 06:35:45 -04002902 btrfs_free_path(path);
2903 return ret;
Chris Mason39544012007-12-12 14:38:19 -05002904out_err:
2905 location->objectid = 0;
2906 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002907}
2908
2909/*
2910 * when we hit a tree root in a directory, the btrfs part of the inode
2911 * needs to be changed to reflect the root directory of the tree root. This
2912 * is kind of like crossing a mount point.
2913 */
2914static int fixup_tree_root_location(struct btrfs_root *root,
2915 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04002916 struct btrfs_root **sub_root,
2917 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04002918{
Chris Mason39279cc2007-06-12 06:35:45 -04002919 struct btrfs_root_item *ri;
2920
2921 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
2922 return 0;
2923 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
2924 return 0;
2925
Josef Bacik58176a92007-08-29 15:47:34 -04002926 *sub_root = btrfs_read_fs_root(root->fs_info, location,
2927 dentry->d_name.name,
2928 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002929 if (IS_ERR(*sub_root))
2930 return PTR_ERR(*sub_root);
2931
2932 ri = &(*sub_root)->root_item;
2933 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04002934 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2935 location->offset = 0;
2936
Chris Mason39279cc2007-06-12 06:35:45 -04002937 return 0;
2938}
2939
Chris Masone02119d2008-09-05 16:13:11 -04002940static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002941{
Chris Masone02119d2008-09-05 16:13:11 -04002942 struct btrfs_inode *bi = BTRFS_I(inode);
2943
2944 bi->i_acl = NULL;
2945 bi->i_default_acl = NULL;
2946
2947 bi->generation = 0;
2948 bi->last_trans = 0;
2949 bi->logged_trans = 0;
2950 bi->delalloc_bytes = 0;
2951 bi->disk_i_size = 0;
2952 bi->flags = 0;
2953 bi->index_cnt = (u64)-1;
Chris Mason49eb7e42008-09-11 15:53:12 -04002954 bi->log_dirty_trans = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002955 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2956 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04002957 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002958 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2959 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04002960 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Masonba1da2f2008-07-17 12:54:15 -04002961 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04002962 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04002963 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04002964 mutex_init(&BTRFS_I(inode)->log_mutex);
2965}
2966
2967static int btrfs_init_locked_inode(struct inode *inode, void *p)
2968{
2969 struct btrfs_iget_args *args = p;
2970 inode->i_ino = args->ino;
2971 init_btrfs_i(inode);
2972 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002973 return 0;
2974}
2975
2976static int btrfs_find_actor(struct inode *inode, void *opaque)
2977{
2978 struct btrfs_iget_args *args = opaque;
2979 return (args->ino == inode->i_ino &&
2980 args->root == BTRFS_I(inode)->root);
2981}
2982
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002983struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
2984 struct btrfs_root *root, int wait)
2985{
2986 struct inode *inode;
2987 struct btrfs_iget_args args;
2988 args.ino = objectid;
2989 args.root = root;
2990
2991 if (wait) {
2992 inode = ilookup5(s, objectid, btrfs_find_actor,
2993 (void *)&args);
2994 } else {
2995 inode = ilookup5_nowait(s, objectid, btrfs_find_actor,
2996 (void *)&args);
2997 }
2998 return inode;
2999}
3000
Chris Mason39279cc2007-06-12 06:35:45 -04003001struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
3002 struct btrfs_root *root)
3003{
3004 struct inode *inode;
3005 struct btrfs_iget_args args;
3006 args.ino = objectid;
3007 args.root = root;
3008
3009 inode = iget5_locked(s, objectid, btrfs_find_actor,
3010 btrfs_init_locked_inode,
3011 (void *)&args);
3012 return inode;
3013}
3014
Balaji Rao1a54ef82008-07-21 02:01:04 +05303015/* Get an inode object given its location and corresponding root.
3016 * Returns in *is_new if the inode was read from disk
3017 */
3018struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
3019 struct btrfs_root *root, int *is_new)
3020{
3021 struct inode *inode;
3022
3023 inode = btrfs_iget_locked(s, location->objectid, root);
3024 if (!inode)
3025 return ERR_PTR(-EACCES);
3026
3027 if (inode->i_state & I_NEW) {
3028 BTRFS_I(inode)->root = root;
3029 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3030 btrfs_read_locked_inode(inode);
3031 unlock_new_inode(inode);
3032 if (is_new)
3033 *is_new = 1;
3034 } else {
3035 if (is_new)
3036 *is_new = 0;
3037 }
3038
3039 return inode;
3040}
3041
Chris Mason39279cc2007-06-12 06:35:45 -04003042static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3043 struct nameidata *nd)
3044{
3045 struct inode * inode;
3046 struct btrfs_inode *bi = BTRFS_I(dir);
3047 struct btrfs_root *root = bi->root;
3048 struct btrfs_root *sub_root = root;
3049 struct btrfs_key location;
Balaji Rao1a54ef82008-07-21 02:01:04 +05303050 int ret, new, do_orphan = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003051
3052 if (dentry->d_name.len > BTRFS_NAME_LEN)
3053 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003054
Chris Mason39279cc2007-06-12 06:35:45 -04003055 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003056
Chris Mason39279cc2007-06-12 06:35:45 -04003057 if (ret < 0)
3058 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003059
Chris Mason39279cc2007-06-12 06:35:45 -04003060 inode = NULL;
3061 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04003062 ret = fixup_tree_root_location(root, &location, &sub_root,
3063 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04003064 if (ret < 0)
3065 return ERR_PTR(ret);
3066 if (ret > 0)
3067 return ERR_PTR(-ENOENT);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303068 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
3069 if (IS_ERR(inode))
3070 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003071
Balaji Rao1a54ef82008-07-21 02:01:04 +05303072 /* the inode and parent dir are two different roots */
3073 if (new && root != sub_root) {
3074 igrab(inode);
3075 sub_root->inode = inode;
3076 do_orphan = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003077 }
3078 }
Josef Bacik7b128762008-07-24 12:17:14 -04003079
3080 if (unlikely(do_orphan))
3081 btrfs_orphan_cleanup(sub_root);
3082
Chris Mason39279cc2007-06-12 06:35:45 -04003083 return d_splice_alias(inode, dentry);
3084}
3085
Chris Mason39279cc2007-06-12 06:35:45 -04003086static unsigned char btrfs_filetype_table[] = {
3087 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3088};
3089
David Woodhousecbdf5a22008-08-06 19:42:33 +01003090static int btrfs_real_readdir(struct file *filp, void *dirent,
3091 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003092{
Chris Mason6da6aba2007-12-18 16:15:09 -05003093 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003094 struct btrfs_root *root = BTRFS_I(inode)->root;
3095 struct btrfs_item *item;
3096 struct btrfs_dir_item *di;
3097 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003098 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003099 struct btrfs_path *path;
3100 int ret;
3101 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003102 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003103 int slot;
3104 int advance;
3105 unsigned char d_type;
3106 int over = 0;
3107 u32 di_cur;
3108 u32 di_total;
3109 u32 di_len;
3110 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003111 char tmp_name[32];
3112 char *name_ptr;
3113 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003114
3115 /* FIXME, use a real flag for deciding about the key type */
3116 if (root->fs_info->tree_root == root)
3117 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003118
Chris Mason39544012007-12-12 14:38:19 -05003119 /* special case for "." */
3120 if (filp->f_pos == 0) {
3121 over = filldir(dirent, ".", 1,
3122 1, inode->i_ino,
3123 DT_DIR);
3124 if (over)
3125 return 0;
3126 filp->f_pos = 1;
3127 }
Chris Mason39544012007-12-12 14:38:19 -05003128 /* special case for .., just use the back ref */
3129 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003130 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003131 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003132 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003133 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003134 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003135 filp->f_pos = 2;
3136 }
3137
David Woodhouse49593bf2008-08-17 17:08:36 +01003138 path = btrfs_alloc_path();
3139 path->reada = 2;
3140
Chris Mason39279cc2007-06-12 06:35:45 -04003141 btrfs_set_key_type(&key, key_type);
3142 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003143 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003144
Chris Mason39279cc2007-06-12 06:35:45 -04003145 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3146 if (ret < 0)
3147 goto err;
3148 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003149
3150 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003151 leaf = path->nodes[0];
3152 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003153 slot = path->slots[0];
3154 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003155 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003156 ret = btrfs_next_leaf(root, path);
3157 if (ret)
3158 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003159 leaf = path->nodes[0];
3160 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003161 slot = path->slots[0];
3162 } else {
3163 slot++;
3164 path->slots[0]++;
3165 }
3166 }
3167 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003168 item = btrfs_item_nr(leaf, slot);
3169 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3170
3171 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003172 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003173 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003174 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003175 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003176 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003177
3178 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003179
Chris Mason39279cc2007-06-12 06:35:45 -04003180 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3181 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003182 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003183
3184 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003185 struct btrfs_key location;
3186
3187 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003188 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003189 name_ptr = tmp_name;
3190 } else {
3191 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003192 if (!name_ptr) {
3193 ret = -ENOMEM;
3194 goto err;
3195 }
Chris Mason5f39d392007-10-15 16:14:19 -04003196 }
3197 read_extent_buffer(leaf, name_ptr,
3198 (unsigned long)(di + 1), name_len);
3199
3200 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3201 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003202 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003203 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003204 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003205
3206 if (name_ptr != tmp_name)
3207 kfree(name_ptr);
3208
Chris Mason39279cc2007-06-12 06:35:45 -04003209 if (over)
3210 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003211
Josef Bacik5103e942007-11-16 11:45:54 -05003212 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003213 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003214 di_cur += di_len;
3215 di = (struct btrfs_dir_item *)((char *)di + di_len);
3216 }
3217 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003218
3219 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003220 if (key_type == BTRFS_DIR_INDEX_KEY)
3221 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
3222 else
3223 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003224nopos:
3225 ret = 0;
3226err:
Chris Mason39279cc2007-06-12 06:35:45 -04003227 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003228 return ret;
3229}
3230
3231int btrfs_write_inode(struct inode *inode, int wait)
3232{
3233 struct btrfs_root *root = BTRFS_I(inode)->root;
3234 struct btrfs_trans_handle *trans;
3235 int ret = 0;
3236
Chris Mason4ca8b412008-08-05 13:30:48 -04003237 if (root->fs_info->closing > 1)
3238 return 0;
3239
Chris Mason39279cc2007-06-12 06:35:45 -04003240 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003241 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003242 btrfs_set_trans_block_group(trans, inode);
3243 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003244 }
3245 return ret;
3246}
3247
3248/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003249 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003250 * inode changes. But, it is most likely to find the inode in cache.
3251 * FIXME, needs more benchmarking...there are no reasons other than performance
3252 * to keep or drop this code.
3253 */
3254void btrfs_dirty_inode(struct inode *inode)
3255{
3256 struct btrfs_root *root = BTRFS_I(inode)->root;
3257 struct btrfs_trans_handle *trans;
3258
Chris Masonf9295742008-07-17 12:54:14 -04003259 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003260 btrfs_set_trans_block_group(trans, inode);
3261 btrfs_update_inode(trans, root, inode);
3262 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003263}
3264
Chris Masond352ac62008-09-29 15:18:18 -04003265/*
3266 * find the highest existing sequence number in a directory
3267 * and then set the in-memory index_cnt variable to reflect
3268 * free sequence numbers
3269 */
Josef Bacikaec74772008-07-24 12:12:38 -04003270static int btrfs_set_inode_index_count(struct inode *inode)
3271{
3272 struct btrfs_root *root = BTRFS_I(inode)->root;
3273 struct btrfs_key key, found_key;
3274 struct btrfs_path *path;
3275 struct extent_buffer *leaf;
3276 int ret;
3277
3278 key.objectid = inode->i_ino;
3279 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
3280 key.offset = (u64)-1;
3281
3282 path = btrfs_alloc_path();
3283 if (!path)
3284 return -ENOMEM;
3285
3286 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3287 if (ret < 0)
3288 goto out;
3289 /* FIXME: we should be able to handle this */
3290 if (ret == 0)
3291 goto out;
3292 ret = 0;
3293
3294 /*
3295 * MAGIC NUMBER EXPLANATION:
3296 * since we search a directory based on f_pos we have to start at 2
3297 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
3298 * else has to start at 2
3299 */
3300 if (path->slots[0] == 0) {
3301 BTRFS_I(inode)->index_cnt = 2;
3302 goto out;
3303 }
3304
3305 path->slots[0]--;
3306
3307 leaf = path->nodes[0];
3308 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3309
3310 if (found_key.objectid != inode->i_ino ||
3311 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
3312 BTRFS_I(inode)->index_cnt = 2;
3313 goto out;
3314 }
3315
3316 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
3317out:
3318 btrfs_free_path(path);
3319 return ret;
3320}
3321
Chris Masond352ac62008-09-29 15:18:18 -04003322/*
3323 * helper to find a free sequence number in a given directory. This current
3324 * code is very simple, later versions will do smarter things in the btree
3325 */
Chris Mason00e4e6b2008-08-05 11:18:09 -04003326static int btrfs_set_inode_index(struct inode *dir, struct inode *inode,
3327 u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04003328{
3329 int ret = 0;
3330
3331 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
3332 ret = btrfs_set_inode_index_count(dir);
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003333 if (ret) {
Josef Bacikaec74772008-07-24 12:12:38 -04003334 return ret;
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003335 }
Josef Bacikaec74772008-07-24 12:12:38 -04003336 }
3337
Chris Mason00e4e6b2008-08-05 11:18:09 -04003338 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04003339 BTRFS_I(dir)->index_cnt++;
3340
3341 return ret;
3342}
3343
Chris Mason39279cc2007-06-12 06:35:45 -04003344static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
3345 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04003346 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05003347 const char *name, int name_len,
3348 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003349 u64 objectid,
3350 struct btrfs_block_group_cache *group,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003351 int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04003352{
3353 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003354 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04003355 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04003356 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04003357 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05003358 struct btrfs_inode_ref *ref;
3359 struct btrfs_key key[2];
3360 u32 sizes[2];
3361 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003362 int ret;
3363 int owner;
3364
Chris Mason5f39d392007-10-15 16:14:19 -04003365 path = btrfs_alloc_path();
3366 BUG_ON(!path);
3367
Chris Mason39279cc2007-06-12 06:35:45 -04003368 inode = new_inode(root->fs_info->sb);
3369 if (!inode)
3370 return ERR_PTR(-ENOMEM);
3371
Josef Bacikaec74772008-07-24 12:12:38 -04003372 if (dir) {
Chris Mason00e4e6b2008-08-05 11:18:09 -04003373 ret = btrfs_set_inode_index(dir, inode, index);
Josef Bacikaec74772008-07-24 12:12:38 -04003374 if (ret)
3375 return ERR_PTR(ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003376 }
3377 /*
3378 * index_cnt is ignored for everything but a dir,
3379 * btrfs_get_inode_index_count has an explanation for the magic
3380 * number
3381 */
Chris Masone02119d2008-09-05 16:13:11 -04003382 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003383 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04003384 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04003385 BTRFS_I(inode)->generation = trans->transid;
Chris Masonb888db22007-08-27 16:49:44 -04003386
Chris Mason39279cc2007-06-12 06:35:45 -04003387 if (mode & S_IFDIR)
3388 owner = 0;
3389 else
3390 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04003391 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04003392 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04003393 if (!new_inode_group) {
3394 printk("find_block group failed\n");
3395 new_inode_group = group;
3396 }
3397 BTRFS_I(inode)->block_group = new_inode_group;
Chris Mason9c583092008-01-29 15:15:18 -05003398
3399 key[0].objectid = objectid;
3400 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
3401 key[0].offset = 0;
3402
3403 key[1].objectid = objectid;
3404 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
3405 key[1].offset = ref_objectid;
3406
3407 sizes[0] = sizeof(struct btrfs_inode_item);
3408 sizes[1] = name_len + sizeof(*ref);
3409
3410 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
3411 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04003412 goto fail;
3413
Chris Mason9c583092008-01-29 15:15:18 -05003414 if (objectid > root->highest_inode)
3415 root->highest_inode = objectid;
3416
Chris Mason39279cc2007-06-12 06:35:45 -04003417 inode->i_uid = current->fsuid;
3418 inode->i_gid = current->fsgid;
3419 inode->i_mode = mode;
3420 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003421 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003422 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04003423 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3424 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003425 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003426
3427 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3428 struct btrfs_inode_ref);
3429 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003430 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05003431 ptr = (unsigned long)(ref + 1);
3432 write_extent_buffer(path->nodes[0], name, ptr, name_len);
3433
Chris Mason5f39d392007-10-15 16:14:19 -04003434 btrfs_mark_buffer_dirty(path->nodes[0]);
3435 btrfs_free_path(path);
3436
Chris Mason39279cc2007-06-12 06:35:45 -04003437 location = &BTRFS_I(inode)->location;
3438 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04003439 location->offset = 0;
3440 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
3441
Chris Mason39279cc2007-06-12 06:35:45 -04003442 insert_inode_hash(inode);
3443 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003444fail:
Josef Bacikaec74772008-07-24 12:12:38 -04003445 if (dir)
3446 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04003447 btrfs_free_path(path);
3448 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003449}
3450
3451static inline u8 btrfs_inode_type(struct inode *inode)
3452{
3453 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
3454}
3455
Chris Masond352ac62008-09-29 15:18:18 -04003456/*
3457 * utility function to add 'inode' into 'parent_inode' with
3458 * a give name and a given sequence number.
3459 * if 'add_backref' is true, also insert a backref from the
3460 * inode to the parent directory.
3461 */
Chris Masone02119d2008-09-05 16:13:11 -04003462int btrfs_add_link(struct btrfs_trans_handle *trans,
3463 struct inode *parent_inode, struct inode *inode,
3464 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003465{
3466 int ret;
3467 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04003468 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04003469
Chris Mason39279cc2007-06-12 06:35:45 -04003470 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003471 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
3472 key.offset = 0;
3473
Chris Masone02119d2008-09-05 16:13:11 -04003474 ret = btrfs_insert_dir_item(trans, root, name, name_len,
3475 parent_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04003476 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04003477 index);
Chris Mason39279cc2007-06-12 06:35:45 -04003478 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05003479 if (add_backref) {
3480 ret = btrfs_insert_inode_ref(trans, root,
Chris Masone02119d2008-09-05 16:13:11 -04003481 name, name_len,
3482 inode->i_ino,
3483 parent_inode->i_ino,
3484 index);
Chris Mason9c583092008-01-29 15:15:18 -05003485 }
Chris Masondbe674a2008-07-17 12:54:05 -04003486 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04003487 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04003488 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04003489 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003490 }
3491 return ret;
3492}
3493
3494static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05003495 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003496 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003497{
Chris Masone02119d2008-09-05 16:13:11 -04003498 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3499 inode, dentry->d_name.name,
3500 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003501 if (!err) {
3502 d_instantiate(dentry, inode);
3503 return 0;
3504 }
3505 if (err > 0)
3506 err = -EEXIST;
3507 return err;
3508}
3509
Josef Bacik618e21d2007-07-11 10:18:17 -04003510static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
3511 int mode, dev_t rdev)
3512{
3513 struct btrfs_trans_handle *trans;
3514 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003515 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04003516 int err;
3517 int drop_inode = 0;
3518 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05003519 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003520 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04003521
3522 if (!new_valid_dev(rdev))
3523 return -EINVAL;
3524
Chris Mason1832a6d2007-12-21 16:27:21 -05003525 err = btrfs_check_free_space(root, 1, 0);
3526 if (err)
3527 goto fail;
3528
Josef Bacik618e21d2007-07-11 10:18:17 -04003529 trans = btrfs_start_transaction(root, 1);
3530 btrfs_set_trans_block_group(trans, dir);
3531
3532 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3533 if (err) {
3534 err = -ENOSPC;
3535 goto out_unlock;
3536 }
3537
Josef Bacikaec74772008-07-24 12:12:38 -04003538 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003539 dentry->d_name.len,
3540 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003541 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003542 err = PTR_ERR(inode);
3543 if (IS_ERR(inode))
3544 goto out_unlock;
3545
Josef Bacik33268ea2008-07-24 12:16:36 -04003546 err = btrfs_init_acl(inode, dir);
3547 if (err) {
3548 drop_inode = 1;
3549 goto out_unlock;
3550 }
3551
Josef Bacik618e21d2007-07-11 10:18:17 -04003552 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003553 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003554 if (err)
3555 drop_inode = 1;
3556 else {
3557 inode->i_op = &btrfs_special_inode_operations;
3558 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04003559 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04003560 }
3561 dir->i_sb->s_dirt = 1;
3562 btrfs_update_inode_block_group(trans, inode);
3563 btrfs_update_inode_block_group(trans, dir);
3564out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003565 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003566 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003567fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04003568 if (drop_inode) {
3569 inode_dec_link_count(inode);
3570 iput(inode);
3571 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003572 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04003573 return err;
3574}
3575
Chris Mason39279cc2007-06-12 06:35:45 -04003576static int btrfs_create(struct inode *dir, struct dentry *dentry,
3577 int mode, struct nameidata *nd)
3578{
3579 struct btrfs_trans_handle *trans;
3580 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003581 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003582 int err;
3583 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05003584 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003585 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003586 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003587
Chris Mason1832a6d2007-12-21 16:27:21 -05003588 err = btrfs_check_free_space(root, 1, 0);
3589 if (err)
3590 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003591 trans = btrfs_start_transaction(root, 1);
3592 btrfs_set_trans_block_group(trans, dir);
3593
3594 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3595 if (err) {
3596 err = -ENOSPC;
3597 goto out_unlock;
3598 }
3599
Josef Bacikaec74772008-07-24 12:12:38 -04003600 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003601 dentry->d_name.len,
3602 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003603 objectid, BTRFS_I(dir)->block_group, mode,
3604 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003605 err = PTR_ERR(inode);
3606 if (IS_ERR(inode))
3607 goto out_unlock;
3608
Josef Bacik33268ea2008-07-24 12:16:36 -04003609 err = btrfs_init_acl(inode, dir);
3610 if (err) {
3611 drop_inode = 1;
3612 goto out_unlock;
3613 }
3614
Chris Mason39279cc2007-06-12 06:35:45 -04003615 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003616 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003617 if (err)
3618 drop_inode = 1;
3619 else {
3620 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003621 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003622 inode->i_fop = &btrfs_file_operations;
3623 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003624 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003625 }
3626 dir->i_sb->s_dirt = 1;
3627 btrfs_update_inode_block_group(trans, inode);
3628 btrfs_update_inode_block_group(trans, dir);
3629out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003630 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003631 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003632fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003633 if (drop_inode) {
3634 inode_dec_link_count(inode);
3635 iput(inode);
3636 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003637 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003638 return err;
3639}
3640
3641static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
3642 struct dentry *dentry)
3643{
3644 struct btrfs_trans_handle *trans;
3645 struct btrfs_root *root = BTRFS_I(dir)->root;
3646 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003647 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05003648 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003649 int err;
3650 int drop_inode = 0;
3651
3652 if (inode->i_nlink == 0)
3653 return -ENOENT;
3654
Chris Masone02119d2008-09-05 16:13:11 -04003655 btrfs_inc_nlink(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05003656 err = btrfs_check_free_space(root, 1, 0);
3657 if (err)
3658 goto fail;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003659 err = btrfs_set_inode_index(dir, inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003660 if (err)
3661 goto fail;
3662
Chris Mason39279cc2007-06-12 06:35:45 -04003663 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003664
Chris Mason39279cc2007-06-12 06:35:45 -04003665 btrfs_set_trans_block_group(trans, dir);
3666 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04003667
Chris Mason00e4e6b2008-08-05 11:18:09 -04003668 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04003669
Chris Mason39279cc2007-06-12 06:35:45 -04003670 if (err)
3671 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003672
Chris Mason39279cc2007-06-12 06:35:45 -04003673 dir->i_sb->s_dirt = 1;
3674 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04003675 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003676
Chris Mason54aa1f42007-06-22 14:16:25 -04003677 if (err)
3678 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003679
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003680 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003681 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003682fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003683 if (drop_inode) {
3684 inode_dec_link_count(inode);
3685 iput(inode);
3686 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003687 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003688 return err;
3689}
3690
Chris Mason39279cc2007-06-12 06:35:45 -04003691static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3692{
Chris Masonb9d86662008-05-02 16:13:49 -04003693 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003694 struct btrfs_trans_handle *trans;
3695 struct btrfs_root *root = BTRFS_I(dir)->root;
3696 int err = 0;
3697 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04003698 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003699 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003700 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003701
Chris Mason1832a6d2007-12-21 16:27:21 -05003702 err = btrfs_check_free_space(root, 1, 0);
3703 if (err)
3704 goto out_unlock;
3705
Chris Mason39279cc2007-06-12 06:35:45 -04003706 trans = btrfs_start_transaction(root, 1);
3707 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04003708
Chris Mason39279cc2007-06-12 06:35:45 -04003709 if (IS_ERR(trans)) {
3710 err = PTR_ERR(trans);
3711 goto out_unlock;
3712 }
3713
3714 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3715 if (err) {
3716 err = -ENOSPC;
3717 goto out_unlock;
3718 }
3719
Josef Bacikaec74772008-07-24 12:12:38 -04003720 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003721 dentry->d_name.len,
3722 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003723 BTRFS_I(dir)->block_group, S_IFDIR | mode,
3724 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003725 if (IS_ERR(inode)) {
3726 err = PTR_ERR(inode);
3727 goto out_fail;
3728 }
Chris Mason5f39d392007-10-15 16:14:19 -04003729
Chris Mason39279cc2007-06-12 06:35:45 -04003730 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04003731
3732 err = btrfs_init_acl(inode, dir);
3733 if (err)
3734 goto out_fail;
3735
Chris Mason39279cc2007-06-12 06:35:45 -04003736 inode->i_op = &btrfs_dir_inode_operations;
3737 inode->i_fop = &btrfs_dir_file_operations;
3738 btrfs_set_trans_block_group(trans, inode);
3739
Chris Masondbe674a2008-07-17 12:54:05 -04003740 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003741 err = btrfs_update_inode(trans, root, inode);
3742 if (err)
3743 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003744
Chris Masone02119d2008-09-05 16:13:11 -04003745 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3746 inode, dentry->d_name.name,
3747 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003748 if (err)
3749 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003750
Chris Mason39279cc2007-06-12 06:35:45 -04003751 d_instantiate(dentry, inode);
3752 drop_on_err = 0;
3753 dir->i_sb->s_dirt = 1;
3754 btrfs_update_inode_block_group(trans, inode);
3755 btrfs_update_inode_block_group(trans, dir);
3756
3757out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003758 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003759 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04003760
Chris Mason39279cc2007-06-12 06:35:45 -04003761out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003762 if (drop_on_err)
3763 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003764 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003765 return err;
3766}
3767
Chris Masond352ac62008-09-29 15:18:18 -04003768/* helper for btfs_get_extent. Given an existing extent in the tree,
3769 * and an extent that you want to insert, deal with overlap and insert
3770 * the new extent into the tree.
3771 */
Chris Mason3b951512008-04-17 11:29:12 -04003772static int merge_extent_mapping(struct extent_map_tree *em_tree,
3773 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003774 struct extent_map *em,
3775 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04003776{
3777 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04003778
Chris Masone6dcd2d2008-07-17 12:53:50 -04003779 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
3780 start_diff = map_start - em->start;
3781 em->start = map_start;
3782 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04003783 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
3784 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003785 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04003786 em->block_len -= start_diff;
3787 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003788 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04003789}
3790
Chris Masonc8b97812008-10-29 14:49:59 -04003791static noinline int uncompress_inline(struct btrfs_path *path,
3792 struct inode *inode, struct page *page,
3793 size_t pg_offset, u64 extent_offset,
3794 struct btrfs_file_extent_item *item)
3795{
3796 int ret;
3797 struct extent_buffer *leaf = path->nodes[0];
3798 char *tmp;
3799 size_t max_size;
3800 unsigned long inline_size;
3801 unsigned long ptr;
3802
3803 WARN_ON(pg_offset != 0);
3804 max_size = btrfs_file_extent_ram_bytes(leaf, item);
3805 inline_size = btrfs_file_extent_inline_item_len(leaf,
3806 btrfs_item_nr(leaf, path->slots[0]));
3807 tmp = kmalloc(inline_size, GFP_NOFS);
3808 ptr = btrfs_file_extent_inline_start(item);
3809
3810 read_extent_buffer(leaf, tmp, ptr, inline_size);
3811
3812 max_size = min(PAGE_CACHE_SIZE, max_size);
3813 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
3814 inline_size, max_size);
3815 if (ret) {
3816 char *kaddr = kmap_atomic(page, KM_USER0);
3817 unsigned long copy_size = min_t(u64,
3818 PAGE_CACHE_SIZE - pg_offset,
3819 max_size - extent_offset);
3820 memset(kaddr + pg_offset, 0, copy_size);
3821 kunmap_atomic(kaddr, KM_USER0);
3822 }
3823 kfree(tmp);
3824 return 0;
3825}
3826
Chris Masond352ac62008-09-29 15:18:18 -04003827/*
3828 * a bit scary, this does extent mapping from logical file offset to the disk.
3829 * the ugly parts come from merging extents from the disk with the
3830 * in-ram representation. This gets more complex because of the data=ordered code,
3831 * where the in-ram extents might be locked pending data=ordered completion.
3832 *
3833 * This also copies inline extents directly into the page.
3834 */
Chris Masona52d9a82007-08-27 16:49:44 -04003835struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05003836 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04003837 int create)
3838{
3839 int ret;
3840 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04003841 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04003842 u64 extent_start = 0;
3843 u64 extent_end = 0;
3844 u64 objectid = inode->i_ino;
3845 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04003846 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04003847 struct btrfs_root *root = BTRFS_I(inode)->root;
3848 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04003849 struct extent_buffer *leaf;
3850 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04003851 struct extent_map *em = NULL;
3852 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05003853 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003854 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003855 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04003856
Chris Masona52d9a82007-08-27 16:49:44 -04003857again:
Chris Masond1310b22008-01-24 16:13:08 -05003858 spin_lock(&em_tree->lock);
3859 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04003860 if (em)
3861 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003862 spin_unlock(&em_tree->lock);
3863
Chris Masona52d9a82007-08-27 16:49:44 -04003864 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04003865 if (em->start > start || em->start + em->len <= start)
3866 free_extent_map(em);
3867 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05003868 free_extent_map(em);
3869 else
3870 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003871 }
Chris Masond1310b22008-01-24 16:13:08 -05003872 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04003873 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05003874 err = -ENOMEM;
3875 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003876 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003877 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003878 em->start = EXTENT_MAP_HOLE;
3879 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04003880 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04003881
3882 if (!path) {
3883 path = btrfs_alloc_path();
3884 BUG_ON(!path);
3885 }
3886
Chris Mason179e29e2007-11-01 11:28:41 -04003887 ret = btrfs_lookup_file_extent(trans, root, path,
3888 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04003889 if (ret < 0) {
3890 err = ret;
3891 goto out;
3892 }
3893
3894 if (ret != 0) {
3895 if (path->slots[0] == 0)
3896 goto not_found;
3897 path->slots[0]--;
3898 }
3899
Chris Mason5f39d392007-10-15 16:14:19 -04003900 leaf = path->nodes[0];
3901 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04003902 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04003903 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04003904 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3905 found_type = btrfs_key_type(&found_key);
3906 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04003907 found_type != BTRFS_EXTENT_DATA_KEY) {
3908 goto not_found;
3909 }
3910
Chris Mason5f39d392007-10-15 16:14:19 -04003911 found_type = btrfs_file_extent_type(leaf, item);
3912 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003913 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04003914 if (found_type == BTRFS_FILE_EXTENT_REG ||
3915 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04003916 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04003917 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04003918 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
3919 size_t size;
3920 size = btrfs_file_extent_inline_len(leaf, item);
3921 extent_end = (extent_start + size + root->sectorsize - 1) &
3922 ~((u64)root->sectorsize - 1);
3923 }
3924
3925 if (start >= extent_end) {
3926 path->slots[0]++;
3927 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3928 ret = btrfs_next_leaf(root, path);
3929 if (ret < 0) {
3930 err = ret;
3931 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003932 }
Yan Zheng9036c102008-10-30 14:19:41 -04003933 if (ret > 0)
3934 goto not_found;
3935 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04003936 }
Yan Zheng9036c102008-10-30 14:19:41 -04003937 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3938 if (found_key.objectid != objectid ||
3939 found_key.type != BTRFS_EXTENT_DATA_KEY)
3940 goto not_found;
3941 if (start + len <= found_key.offset)
3942 goto not_found;
3943 em->start = start;
3944 em->len = found_key.offset - start;
3945 goto not_found_em;
3946 }
3947
Yan Zhengd899e052008-10-30 14:25:28 -04003948 if (found_type == BTRFS_FILE_EXTENT_REG ||
3949 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04003950 em->start = extent_start;
3951 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05003952 em->orig_start = extent_start -
3953 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04003954 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
3955 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003956 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04003957 goto insert;
3958 }
Chris Masonc8b97812008-10-29 14:49:59 -04003959 if (compressed) {
3960 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
3961 em->block_start = bytenr;
3962 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
3963 item);
3964 } else {
3965 bytenr += btrfs_file_extent_offset(leaf, item);
3966 em->block_start = bytenr;
3967 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04003968 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
3969 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04003970 }
Chris Masona52d9a82007-08-27 16:49:44 -04003971 goto insert;
3972 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003973 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04003974 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04003975 size_t size;
3976 size_t extent_offset;
3977 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04003978
Chris Masona52d9a82007-08-27 16:49:44 -04003979 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04003980 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04003981 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04003982 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04003983 goto out;
3984 }
3985
Yan Zheng9036c102008-10-30 14:19:41 -04003986 size = btrfs_file_extent_inline_len(leaf, item);
3987 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05003988 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04003989 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04003990 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05003991 em->len = (copy_size + root->sectorsize - 1) &
3992 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05003993 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04003994 if (compressed)
3995 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04003996 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04003997 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04003998 if (btrfs_file_extent_compression(leaf, item) ==
3999 BTRFS_COMPRESS_ZLIB) {
4000 ret = uncompress_inline(path, inode, page,
4001 pg_offset,
4002 extent_offset, item);
4003 BUG_ON(ret);
4004 } else {
4005 map = kmap(page);
4006 read_extent_buffer(leaf, map + pg_offset, ptr,
4007 copy_size);
4008 kunmap(page);
4009 }
Chris Mason179e29e2007-11-01 11:28:41 -04004010 flush_dcache_page(page);
4011 } else if (create && PageUptodate(page)) {
4012 if (!trans) {
4013 kunmap(page);
4014 free_extent_map(em);
4015 em = NULL;
4016 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004017 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004018 goto again;
4019 }
Chris Masonc8b97812008-10-29 14:49:59 -04004020 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004021 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004022 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004023 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004024 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004025 }
Chris Masond1310b22008-01-24 16:13:08 -05004026 set_extent_uptodate(io_tree, em->start,
4027 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004028 goto insert;
4029 } else {
4030 printk("unkknown found_type %d\n", found_type);
4031 WARN_ON(1);
4032 }
4033not_found:
4034 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004035 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004036not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004037 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004038 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004039insert:
4040 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004041 if (em->start > start || extent_map_end(em) <= start) {
4042 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04004043 err = -EIO;
4044 goto out;
4045 }
Chris Masond1310b22008-01-24 16:13:08 -05004046
4047 err = 0;
4048 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004049 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004050 /* it is possible that someone inserted the extent into the tree
4051 * while we had the lock dropped. It is also possible that
4052 * an overlapping map exists in the tree
4053 */
Chris Masona52d9a82007-08-27 16:49:44 -04004054 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004055 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004056
4057 ret = 0;
4058
Chris Mason3b951512008-04-17 11:29:12 -04004059 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004060 if (existing && (existing->start > start ||
4061 existing->start + existing->len <= start)) {
4062 free_extent_map(existing);
4063 existing = NULL;
4064 }
Chris Mason3b951512008-04-17 11:29:12 -04004065 if (!existing) {
4066 existing = lookup_extent_mapping(em_tree, em->start,
4067 em->len);
4068 if (existing) {
4069 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004070 em, start,
4071 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004072 free_extent_map(existing);
4073 if (err) {
4074 free_extent_map(em);
4075 em = NULL;
4076 }
4077 } else {
4078 err = -EIO;
4079 printk("failing to insert %Lu %Lu\n",
4080 start, len);
4081 free_extent_map(em);
4082 em = NULL;
4083 }
4084 } else {
4085 free_extent_map(em);
4086 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004087 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004088 }
Chris Masona52d9a82007-08-27 16:49:44 -04004089 }
Chris Masond1310b22008-01-24 16:13:08 -05004090 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004091out:
Chris Masonf4219502008-07-22 11:18:09 -04004092 if (path)
4093 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004094 if (trans) {
4095 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004096 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04004097 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004098 }
Chris Masona52d9a82007-08-27 16:49:44 -04004099 }
Chris Masona52d9a82007-08-27 16:49:44 -04004100 if (err) {
4101 free_extent_map(em);
4102 WARN_ON(1);
4103 return ERR_PTR(err);
4104 }
4105 return em;
4106}
4107
Chris Mason16432982008-04-10 10:23:21 -04004108static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4109 const struct iovec *iov, loff_t offset,
4110 unsigned long nr_segs)
4111{
Chris Masone1c4b742008-04-22 13:26:46 -04004112 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004113}
4114
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004115static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04004116{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004117 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004118}
4119
Chris Mason9ebefb182007-06-15 13:50:00 -04004120int btrfs_readpage(struct file *file, struct page *page)
4121{
Chris Masond1310b22008-01-24 16:13:08 -05004122 struct extent_io_tree *tree;
4123 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004124 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004125}
Chris Mason1832a6d2007-12-21 16:27:21 -05004126
Chris Mason39279cc2007-06-12 06:35:45 -04004127static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4128{
Chris Masond1310b22008-01-24 16:13:08 -05004129 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004130
4131
4132 if (current->flags & PF_MEMALLOC) {
4133 redirty_page_for_writepage(wbc, page);
4134 unlock_page(page);
4135 return 0;
4136 }
Chris Masond1310b22008-01-24 16:13:08 -05004137 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004138 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4139}
Chris Mason39279cc2007-06-12 06:35:45 -04004140
Chris Masonf4219502008-07-22 11:18:09 -04004141int btrfs_writepages(struct address_space *mapping,
4142 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04004143{
Chris Masond1310b22008-01-24 16:13:08 -05004144 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004145
Chris Masond1310b22008-01-24 16:13:08 -05004146 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04004147 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4148}
4149
Chris Mason3ab2fb52007-11-08 10:59:22 -05004150static int
4151btrfs_readpages(struct file *file, struct address_space *mapping,
4152 struct list_head *pages, unsigned nr_pages)
4153{
Chris Masond1310b22008-01-24 16:13:08 -05004154 struct extent_io_tree *tree;
4155 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004156 return extent_readpages(tree, mapping, pages, nr_pages,
4157 btrfs_get_extent);
4158}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004159static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004160{
Chris Masond1310b22008-01-24 16:13:08 -05004161 struct extent_io_tree *tree;
4162 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004163 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004164
Chris Masond1310b22008-01-24 16:13:08 -05004165 tree = &BTRFS_I(page->mapping->host)->io_tree;
4166 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004167 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004168 if (ret == 1) {
4169 ClearPagePrivate(page);
4170 set_page_private(page, 0);
4171 page_cache_release(page);
4172 }
4173 return ret;
4174}
Chris Mason39279cc2007-06-12 06:35:45 -04004175
Chris Masone6dcd2d2008-07-17 12:53:50 -04004176static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4177{
Chris Mason98509cf2008-09-11 15:51:43 -04004178 if (PageWriteback(page) || PageDirty(page))
4179 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004180 return __btrfs_releasepage(page, gfp_flags);
4181}
4182
Chris Masona52d9a82007-08-27 16:49:44 -04004183static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4184{
Chris Masond1310b22008-01-24 16:13:08 -05004185 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004186 struct btrfs_ordered_extent *ordered;
4187 u64 page_start = page_offset(page);
4188 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004189
Chris Masone6dcd2d2008-07-17 12:53:50 -04004190 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004191 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004192 if (offset) {
4193 btrfs_releasepage(page, GFP_NOFS);
4194 return;
4195 }
4196
4197 lock_extent(tree, page_start, page_end, GFP_NOFS);
4198 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4199 page_offset(page));
4200 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04004201 /*
4202 * IO on this page will never be started, so we need
4203 * to account for any ordered extents now
4204 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004205 clear_extent_bit(tree, page_start, page_end,
4206 EXTENT_DIRTY | EXTENT_DELALLOC |
4207 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04004208 btrfs_finish_ordered_io(page->mapping->host,
4209 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004210 btrfs_put_ordered_extent(ordered);
4211 lock_extent(tree, page_start, page_end, GFP_NOFS);
4212 }
4213 clear_extent_bit(tree, page_start, page_end,
4214 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4215 EXTENT_ORDERED,
4216 1, 1, GFP_NOFS);
4217 __btrfs_releasepage(page, GFP_NOFS);
4218
Chris Mason4a096752008-07-21 10:29:44 -04004219 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004220 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004221 ClearPagePrivate(page);
4222 set_page_private(page, 0);
4223 page_cache_release(page);
4224 }
Chris Mason39279cc2007-06-12 06:35:45 -04004225}
4226
Chris Mason9ebefb182007-06-15 13:50:00 -04004227/*
4228 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
4229 * called from a page fault handler when a page is first dirtied. Hence we must
4230 * be careful to check for EOF conditions here. We set the page up correctly
4231 * for a written page which means we get ENOSPC checking when writing into
4232 * holes and correct delalloc and unwritten extent mapping on filesystems that
4233 * support these features.
4234 *
4235 * We are not allowed to take the i_mutex here so we have to play games to
4236 * protect against truncate races as the page could now be beyond EOF. Because
4237 * vmtruncate() writes the inode size before removing pages, once we have the
4238 * page lock we can determine safely if the page is beyond EOF. If it is not
4239 * beyond EOF, then the page is guaranteed safe against truncation until we
4240 * unlock the page.
4241 */
4242int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4243{
Chris Mason6da6aba2007-12-18 16:15:09 -05004244 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05004245 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004246 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4247 struct btrfs_ordered_extent *ordered;
4248 char *kaddr;
4249 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04004250 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05004251 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04004252 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004253 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04004254
Chris Mason1832a6d2007-12-21 16:27:21 -05004255 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05004256 if (ret)
4257 goto out;
4258
4259 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004260again:
Chris Mason9ebefb182007-06-15 13:50:00 -04004261 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04004262 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004263 page_start = page_offset(page);
4264 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004265
Chris Mason9ebefb182007-06-15 13:50:00 -04004266 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04004267 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04004268 /* page got truncated out from underneath us */
4269 goto out_unlock;
4270 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004271 wait_on_page_writeback(page);
4272
4273 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
4274 set_page_extent_mapped(page);
4275
Chris Masoneb84ae02008-07-17 13:53:27 -04004276 /*
4277 * we can't set the delalloc bits if there are pending ordered
4278 * extents. Drop our locks and wait for them to finish
4279 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004280 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4281 if (ordered) {
4282 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4283 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004284 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004285 btrfs_put_ordered_extent(ordered);
4286 goto again;
4287 }
4288
Chris Masonea8c2812008-08-04 23:17:27 -04004289 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004290 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04004291
4292 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04004293 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004294 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04004295 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04004296 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04004297
Chris Masone6dcd2d2008-07-17 12:53:50 -04004298 if (zero_start != PAGE_CACHE_SIZE) {
4299 kaddr = kmap(page);
4300 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
4301 flush_dcache_page(page);
4302 kunmap(page);
4303 }
Chris Mason247e7432008-07-17 12:53:51 -04004304 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004305 set_page_dirty(page);
4306 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04004307
4308out_unlock:
4309 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05004310out:
Chris Mason9ebefb182007-06-15 13:50:00 -04004311 return ret;
4312}
4313
Chris Mason39279cc2007-06-12 06:35:45 -04004314static void btrfs_truncate(struct inode *inode)
4315{
4316 struct btrfs_root *root = BTRFS_I(inode)->root;
4317 int ret;
4318 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004319 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04004320 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004321
4322 if (!S_ISREG(inode->i_mode))
4323 return;
4324 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4325 return;
4326
4327 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04004328 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04004329
Chris Mason39279cc2007-06-12 06:35:45 -04004330 trans = btrfs_start_transaction(root, 1);
4331 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04004332 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004333
Josef Bacik7b128762008-07-24 12:17:14 -04004334 ret = btrfs_orphan_add(trans, inode);
4335 if (ret)
4336 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004337 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04004338 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05004339 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004340 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004341
Josef Bacik7b128762008-07-24 12:17:14 -04004342 ret = btrfs_orphan_del(trans, inode);
4343 BUG_ON(ret);
4344
4345out:
4346 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004347 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004348 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004349 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004350}
4351
Sven Wegener3b963622008-06-09 21:57:42 -04004352/*
4353 * Invalidate a single dcache entry at the root of the filesystem.
4354 * Needed after creation of snapshot or subvolume.
4355 */
4356void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
4357 int namelen)
4358{
4359 struct dentry *alias, *entry;
4360 struct qstr qstr;
4361
4362 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
4363 if (alias) {
4364 qstr.name = name;
4365 qstr.len = namelen;
4366 /* change me if btrfs ever gets a d_hash operation */
4367 qstr.hash = full_name_hash(qstr.name, qstr.len);
4368 entry = d_lookup(alias, &qstr);
4369 dput(alias);
4370 if (entry) {
4371 d_invalidate(entry);
4372 dput(entry);
4373 }
4374 }
4375}
4376
Chris Masond352ac62008-09-29 15:18:18 -04004377/*
4378 * create a new subvolume directory/inode (helper for the ioctl).
4379 */
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004380int btrfs_create_subvol_root(struct btrfs_root *new_root, struct dentry *dentry,
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004381 struct btrfs_trans_handle *trans, u64 new_dirid,
4382 struct btrfs_block_group_cache *block_group)
Chris Mason39279cc2007-06-12 06:35:45 -04004383{
Chris Mason39279cc2007-06-12 06:35:45 -04004384 struct inode *inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004385 int error;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004386 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004387
Josef Bacikaec74772008-07-24 12:12:38 -04004388 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004389 new_dirid, block_group, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04004390 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004391 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004392 inode->i_op = &btrfs_dir_inode_operations;
4393 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04004394 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004395
Chris Mason39279cc2007-06-12 06:35:45 -04004396 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04004397 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04004398
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004399 error = btrfs_update_inode(trans, new_root, inode);
4400 if (error)
4401 return error;
4402
Yan Zhengd899e052008-10-30 14:25:28 -04004403 atomic_inc(&inode->i_count);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004404 d_instantiate(dentry, inode);
4405 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004406}
4407
Chris Masond352ac62008-09-29 15:18:18 -04004408/* helper function for file defrag and space balancing. This
4409 * forces readahead on a given range of bytes in an inode
4410 */
Chris Masonedbd8d42007-12-21 16:27:24 -05004411unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04004412 struct file_ra_state *ra, struct file *file,
4413 pgoff_t offset, pgoff_t last_index)
4414{
Chris Mason8e7bf942008-04-28 09:02:36 -04004415 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04004416
Chris Mason86479a02007-09-10 19:58:16 -04004417 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
4418 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04004419}
4420
Chris Mason39279cc2007-06-12 06:35:45 -04004421struct inode *btrfs_alloc_inode(struct super_block *sb)
4422{
4423 struct btrfs_inode *ei;
4424
4425 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
4426 if (!ei)
4427 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04004428 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004429 ei->logged_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004430 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik33268ea2008-07-24 12:16:36 -04004431 ei->i_acl = BTRFS_ACL_NOT_CACHED;
4432 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
Josef Bacik7b128762008-07-24 12:17:14 -04004433 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason39279cc2007-06-12 06:35:45 -04004434 return &ei->vfs_inode;
4435}
4436
4437void btrfs_destroy_inode(struct inode *inode)
4438{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004439 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04004440 WARN_ON(!list_empty(&inode->i_dentry));
4441 WARN_ON(inode->i_data.nrpages);
4442
Josef Bacik33268ea2008-07-24 12:16:36 -04004443 if (BTRFS_I(inode)->i_acl &&
4444 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
4445 posix_acl_release(BTRFS_I(inode)->i_acl);
4446 if (BTRFS_I(inode)->i_default_acl &&
4447 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
4448 posix_acl_release(BTRFS_I(inode)->i_default_acl);
4449
Yanbcc63ab2008-07-30 16:29:20 -04004450 spin_lock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004451 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
4452 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
4453 " list\n", inode->i_ino);
4454 dump_stack();
4455 }
Yanbcc63ab2008-07-30 16:29:20 -04004456 spin_unlock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004457
Chris Masone6dcd2d2008-07-17 12:53:50 -04004458 while(1) {
4459 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
4460 if (!ordered)
4461 break;
4462 else {
4463 printk("found ordered extent %Lu %Lu\n",
4464 ordered->file_offset, ordered->len);
4465 btrfs_remove_ordered_extent(inode, ordered);
4466 btrfs_put_ordered_extent(ordered);
4467 btrfs_put_ordered_extent(ordered);
4468 }
4469 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004470 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004471 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
4472}
4473
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004474static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04004475{
4476 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
4477
4478 inode_init_once(&ei->vfs_inode);
4479}
4480
4481void btrfs_destroy_cachep(void)
4482{
4483 if (btrfs_inode_cachep)
4484 kmem_cache_destroy(btrfs_inode_cachep);
4485 if (btrfs_trans_handle_cachep)
4486 kmem_cache_destroy(btrfs_trans_handle_cachep);
4487 if (btrfs_transaction_cachep)
4488 kmem_cache_destroy(btrfs_transaction_cachep);
4489 if (btrfs_bit_radix_cachep)
4490 kmem_cache_destroy(btrfs_bit_radix_cachep);
4491 if (btrfs_path_cachep)
4492 kmem_cache_destroy(btrfs_path_cachep);
4493}
4494
Chris Mason86479a02007-09-10 19:58:16 -04004495struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04004496 unsigned long extra_flags,
Chris Mason2b1f55b2008-09-24 11:48:04 -04004497 void (*ctor)(void *))
Chris Mason92fee662007-07-25 12:31:35 -04004498{
4499 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
Chris Mason2b1f55b2008-09-24 11:48:04 -04004500 SLAB_MEM_SPREAD | extra_flags), ctor);
Chris Mason92fee662007-07-25 12:31:35 -04004501}
4502
Chris Mason39279cc2007-06-12 06:35:45 -04004503int btrfs_init_cachep(void)
4504{
Chris Mason86479a02007-09-10 19:58:16 -04004505 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04004506 sizeof(struct btrfs_inode),
4507 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04004508 if (!btrfs_inode_cachep)
4509 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004510 btrfs_trans_handle_cachep =
4511 btrfs_cache_create("btrfs_trans_handle_cache",
4512 sizeof(struct btrfs_trans_handle),
4513 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004514 if (!btrfs_trans_handle_cachep)
4515 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004516 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04004517 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04004518 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004519 if (!btrfs_transaction_cachep)
4520 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004521 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04004522 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04004523 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004524 if (!btrfs_path_cachep)
4525 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004526 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04004527 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004528 if (!btrfs_bit_radix_cachep)
4529 goto fail;
4530 return 0;
4531fail:
4532 btrfs_destroy_cachep();
4533 return -ENOMEM;
4534}
4535
4536static int btrfs_getattr(struct vfsmount *mnt,
4537 struct dentry *dentry, struct kstat *stat)
4538{
4539 struct inode *inode = dentry->d_inode;
4540 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05004541 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004542 stat->blocks = (inode_get_bytes(inode) +
4543 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04004544 return 0;
4545}
4546
4547static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
4548 struct inode * new_dir,struct dentry *new_dentry)
4549{
4550 struct btrfs_trans_handle *trans;
4551 struct btrfs_root *root = BTRFS_I(old_dir)->root;
4552 struct inode *new_inode = new_dentry->d_inode;
4553 struct inode *old_inode = old_dentry->d_inode;
4554 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004555 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004556 int ret;
4557
4558 if (S_ISDIR(old_inode->i_mode) && new_inode &&
4559 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
4560 return -ENOTEMPTY;
4561 }
Chris Mason5f39d392007-10-15 16:14:19 -04004562
Chris Mason1832a6d2007-12-21 16:27:21 -05004563 ret = btrfs_check_free_space(root, 1, 0);
4564 if (ret)
4565 goto out_unlock;
4566
Chris Mason39279cc2007-06-12 06:35:45 -04004567 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004568
Chris Mason39279cc2007-06-12 06:35:45 -04004569 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004570
Chris Masone02119d2008-09-05 16:13:11 -04004571 btrfs_inc_nlink(old_dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004572 old_dir->i_ctime = old_dir->i_mtime = ctime;
4573 new_dir->i_ctime = new_dir->i_mtime = ctime;
4574 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04004575
Chris Masone02119d2008-09-05 16:13:11 -04004576 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
4577 old_dentry->d_name.name,
4578 old_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004579 if (ret)
4580 goto out_fail;
4581
4582 if (new_inode) {
4583 new_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004584 ret = btrfs_unlink_inode(trans, root, new_dir,
4585 new_dentry->d_inode,
4586 new_dentry->d_name.name,
4587 new_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004588 if (ret)
4589 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04004590 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004591 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004592 if (ret)
4593 goto out_fail;
4594 }
Chris Masone02119d2008-09-05 16:13:11 -04004595
Chris Mason39279cc2007-06-12 06:35:45 -04004596 }
Chris Mason00e4e6b2008-08-05 11:18:09 -04004597 ret = btrfs_set_inode_index(new_dir, old_inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004598 if (ret)
4599 goto out_fail;
4600
Chris Masone02119d2008-09-05 16:13:11 -04004601 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
4602 old_inode, new_dentry->d_name.name,
4603 new_dentry->d_name.len, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004604 if (ret)
4605 goto out_fail;
4606
4607out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04004608 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004609out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04004610 return ret;
4611}
4612
Chris Masond352ac62008-09-29 15:18:18 -04004613/*
4614 * some fairly slow code that needs optimization. This walks the list
4615 * of all the inodes with pending delalloc and forces them to disk.
4616 */
Chris Masonea8c2812008-08-04 23:17:27 -04004617int btrfs_start_delalloc_inodes(struct btrfs_root *root)
4618{
4619 struct list_head *head = &root->fs_info->delalloc_inodes;
4620 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004621 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04004622 unsigned long flags;
4623
4624 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4625 while(!list_empty(head)) {
4626 binode = list_entry(head->next, struct btrfs_inode,
4627 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004628 inode = igrab(&binode->vfs_inode);
4629 if (!inode)
4630 list_del_init(&binode->delalloc_inodes);
Chris Masonea8c2812008-08-04 23:17:27 -04004631 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004632 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004633 filemap_flush(inode->i_mapping);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004634 iput(inode);
4635 }
4636 cond_resched();
Chris Masonea8c2812008-08-04 23:17:27 -04004637 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4638 }
4639 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason8c8bee12008-09-29 11:19:10 -04004640
4641 /* the filemap_flush will queue IO into the worker threads, but
4642 * we have to make sure the IO is actually started and that
4643 * ordered extents get created before we return
4644 */
4645 atomic_inc(&root->fs_info->async_submit_draining);
Chris Mason771ed682008-11-06 22:02:51 -05004646 while(atomic_read(&root->fs_info->nr_async_submits) ||
4647 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004648 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05004649 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
4650 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04004651 }
4652 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04004653 return 0;
4654}
4655
Chris Mason39279cc2007-06-12 06:35:45 -04004656static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
4657 const char *symname)
4658{
4659 struct btrfs_trans_handle *trans;
4660 struct btrfs_root *root = BTRFS_I(dir)->root;
4661 struct btrfs_path *path;
4662 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05004663 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004664 int err;
4665 int drop_inode = 0;
4666 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004667 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04004668 int name_len;
4669 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04004670 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004671 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04004672 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05004673 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004674
4675 name_len = strlen(symname) + 1;
4676 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
4677 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05004678
Chris Mason1832a6d2007-12-21 16:27:21 -05004679 err = btrfs_check_free_space(root, 1, 0);
4680 if (err)
4681 goto out_fail;
4682
Chris Mason39279cc2007-06-12 06:35:45 -04004683 trans = btrfs_start_transaction(root, 1);
4684 btrfs_set_trans_block_group(trans, dir);
4685
4686 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4687 if (err) {
4688 err = -ENOSPC;
4689 goto out_unlock;
4690 }
4691
Josef Bacikaec74772008-07-24 12:12:38 -04004692 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004693 dentry->d_name.len,
4694 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004695 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
4696 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004697 err = PTR_ERR(inode);
4698 if (IS_ERR(inode))
4699 goto out_unlock;
4700
Josef Bacik33268ea2008-07-24 12:16:36 -04004701 err = btrfs_init_acl(inode, dir);
4702 if (err) {
4703 drop_inode = 1;
4704 goto out_unlock;
4705 }
4706
Chris Mason39279cc2007-06-12 06:35:45 -04004707 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004708 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004709 if (err)
4710 drop_inode = 1;
4711 else {
4712 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004713 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004714 inode->i_fop = &btrfs_file_operations;
4715 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004716 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004717 }
4718 dir->i_sb->s_dirt = 1;
4719 btrfs_update_inode_block_group(trans, inode);
4720 btrfs_update_inode_block_group(trans, dir);
4721 if (drop_inode)
4722 goto out_unlock;
4723
4724 path = btrfs_alloc_path();
4725 BUG_ON(!path);
4726 key.objectid = inode->i_ino;
4727 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004728 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
4729 datasize = btrfs_file_extent_calc_inline_size(name_len);
4730 err = btrfs_insert_empty_item(trans, root, path, &key,
4731 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04004732 if (err) {
4733 drop_inode = 1;
4734 goto out_unlock;
4735 }
Chris Mason5f39d392007-10-15 16:14:19 -04004736 leaf = path->nodes[0];
4737 ei = btrfs_item_ptr(leaf, path->slots[0],
4738 struct btrfs_file_extent_item);
4739 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
4740 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04004741 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04004742 btrfs_set_file_extent_encryption(leaf, ei, 0);
4743 btrfs_set_file_extent_compression(leaf, ei, 0);
4744 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
4745 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
4746
Chris Mason39279cc2007-06-12 06:35:45 -04004747 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04004748 write_extent_buffer(leaf, symname, ptr, name_len);
4749 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004750 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04004751
Chris Mason39279cc2007-06-12 06:35:45 -04004752 inode->i_op = &btrfs_symlink_inode_operations;
4753 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04004754 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04004755 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04004756 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04004757 err = btrfs_update_inode(trans, root, inode);
4758 if (err)
4759 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004760
4761out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004762 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004763 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004764out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004765 if (drop_inode) {
4766 inode_dec_link_count(inode);
4767 iput(inode);
4768 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004769 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004770 return err;
4771}
Chris Mason16432982008-04-10 10:23:21 -04004772
Yan Zhengd899e052008-10-30 14:25:28 -04004773static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
4774 u64 alloc_hint, int mode)
4775{
4776 struct btrfs_trans_handle *trans;
4777 struct btrfs_root *root = BTRFS_I(inode)->root;
4778 struct btrfs_key ins;
4779 u64 alloc_size;
4780 u64 cur_offset = start;
4781 u64 num_bytes = end - start;
4782 int ret = 0;
4783
4784 trans = btrfs_join_transaction(root, 1);
4785 BUG_ON(!trans);
4786 btrfs_set_trans_block_group(trans, inode);
4787
4788 while (num_bytes > 0) {
4789 alloc_size = min(num_bytes, root->fs_info->max_extent);
4790 ret = btrfs_reserve_extent(trans, root, alloc_size,
4791 root->sectorsize, 0, alloc_hint,
4792 (u64)-1, &ins, 1);
4793 if (ret) {
4794 WARN_ON(1);
4795 goto out;
4796 }
4797 ret = insert_reserved_file_extent(trans, inode,
4798 cur_offset, ins.objectid,
4799 ins.offset, ins.offset,
4800 ins.offset, 0, 0, 0,
4801 BTRFS_FILE_EXTENT_PREALLOC);
4802 BUG_ON(ret);
4803 num_bytes -= ins.offset;
4804 cur_offset += ins.offset;
4805 alloc_hint = ins.objectid + ins.offset;
4806 }
4807out:
4808 if (cur_offset > start) {
4809 inode->i_ctime = CURRENT_TIME;
4810 btrfs_set_flag(inode, PREALLOC);
4811 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
4812 cur_offset > i_size_read(inode))
4813 btrfs_i_size_write(inode, cur_offset);
4814 ret = btrfs_update_inode(trans, root, inode);
4815 BUG_ON(ret);
4816 }
4817
4818 btrfs_end_transaction(trans, root);
4819 return ret;
4820}
4821
4822static long btrfs_fallocate(struct inode *inode, int mode,
4823 loff_t offset, loff_t len)
4824{
4825 u64 cur_offset;
4826 u64 last_byte;
4827 u64 alloc_start;
4828 u64 alloc_end;
4829 u64 alloc_hint = 0;
4830 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
4831 struct extent_map *em;
4832 int ret;
4833
4834 alloc_start = offset & ~mask;
4835 alloc_end = (offset + len + mask) & ~mask;
4836
4837 mutex_lock(&inode->i_mutex);
4838 if (alloc_start > inode->i_size) {
4839 ret = btrfs_cont_expand(inode, alloc_start);
4840 if (ret)
4841 goto out;
4842 }
4843
4844 while (1) {
4845 struct btrfs_ordered_extent *ordered;
4846 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start,
4847 alloc_end - 1, GFP_NOFS);
4848 ordered = btrfs_lookup_first_ordered_extent(inode,
4849 alloc_end - 1);
4850 if (ordered &&
4851 ordered->file_offset + ordered->len > alloc_start &&
4852 ordered->file_offset < alloc_end) {
4853 btrfs_put_ordered_extent(ordered);
4854 unlock_extent(&BTRFS_I(inode)->io_tree,
4855 alloc_start, alloc_end - 1, GFP_NOFS);
4856 btrfs_wait_ordered_range(inode, alloc_start,
4857 alloc_end - alloc_start);
4858 } else {
4859 if (ordered)
4860 btrfs_put_ordered_extent(ordered);
4861 break;
4862 }
4863 }
4864
4865 cur_offset = alloc_start;
4866 while (1) {
4867 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4868 alloc_end - cur_offset, 0);
4869 BUG_ON(IS_ERR(em) || !em);
4870 last_byte = min(extent_map_end(em), alloc_end);
4871 last_byte = (last_byte + mask) & ~mask;
4872 if (em->block_start == EXTENT_MAP_HOLE) {
4873 ret = prealloc_file_range(inode, cur_offset,
4874 last_byte, alloc_hint, mode);
4875 if (ret < 0) {
4876 free_extent_map(em);
4877 break;
4878 }
4879 }
4880 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
4881 alloc_hint = em->block_start;
4882 free_extent_map(em);
4883
4884 cur_offset = last_byte;
4885 if (cur_offset >= alloc_end) {
4886 ret = 0;
4887 break;
4888 }
4889 }
4890 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, alloc_end - 1,
4891 GFP_NOFS);
4892out:
4893 mutex_unlock(&inode->i_mutex);
4894 return ret;
4895}
4896
Chris Masone6dcd2d2008-07-17 12:53:50 -04004897static int btrfs_set_page_dirty(struct page *page)
4898{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004899 return __set_page_dirty_nobuffers(page);
4900}
4901
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004902static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05004903{
4904 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
4905 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04004906 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05004907}
Chris Mason39279cc2007-06-12 06:35:45 -04004908
4909static struct inode_operations btrfs_dir_inode_operations = {
4910 .lookup = btrfs_lookup,
4911 .create = btrfs_create,
4912 .unlink = btrfs_unlink,
4913 .link = btrfs_link,
4914 .mkdir = btrfs_mkdir,
4915 .rmdir = btrfs_rmdir,
4916 .rename = btrfs_rename,
4917 .symlink = btrfs_symlink,
4918 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04004919 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004920 .setxattr = btrfs_setxattr,
4921 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05004922 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004923 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05004924 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004925};
Chris Mason39279cc2007-06-12 06:35:45 -04004926static struct inode_operations btrfs_dir_ro_inode_operations = {
4927 .lookup = btrfs_lookup,
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 file_operations btrfs_dir_file_operations = {
4931 .llseek = generic_file_llseek,
4932 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01004933 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004934 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004935#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004936 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004937#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04004938 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04004939 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04004940};
4941
Chris Masond1310b22008-01-24 16:13:08 -05004942static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04004943 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05004944 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04004945 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004946 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004947 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04004948 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04004949 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05004950 .set_bit_hook = btrfs_set_bit_hook,
4951 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004952};
4953
Chris Mason39279cc2007-06-12 06:35:45 -04004954static struct address_space_operations btrfs_aops = {
4955 .readpage = btrfs_readpage,
4956 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04004957 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05004958 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04004959 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04004960 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04004961 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04004962 .invalidatepage = btrfs_invalidatepage,
4963 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004964 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04004965};
4966
4967static struct address_space_operations btrfs_symlink_aops = {
4968 .readpage = btrfs_readpage,
4969 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04004970 .invalidatepage = btrfs_invalidatepage,
4971 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04004972};
4973
4974static struct inode_operations btrfs_file_inode_operations = {
4975 .truncate = btrfs_truncate,
4976 .getattr = btrfs_getattr,
4977 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004978 .setxattr = btrfs_setxattr,
4979 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05004980 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004981 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05004982 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04004983 .fallocate = btrfs_fallocate,
Chris Mason39279cc2007-06-12 06:35:45 -04004984};
Josef Bacik618e21d2007-07-11 10:18:17 -04004985static struct inode_operations btrfs_special_inode_operations = {
4986 .getattr = btrfs_getattr,
4987 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05004988 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004989 .setxattr = btrfs_setxattr,
4990 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04004991 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004992 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04004993};
Chris Mason39279cc2007-06-12 06:35:45 -04004994static struct inode_operations btrfs_symlink_inode_operations = {
4995 .readlink = generic_readlink,
4996 .follow_link = page_follow_link_light,
4997 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05004998 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004999};