blob: 2c77e0957f743ed13ac4f7ac978b24d1618b3c2c [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
29#include <linux/smp_lock.h>
30#include <linux/backing-dev.h>
31#include <linux/mpage.h>
32#include <linux/swap.h>
33#include <linux/writeback.h>
34#include <linux/statfs.h>
35#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040036#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040037#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050038#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040039#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040040#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040041#include "ctree.h"
42#include "disk-io.h"
43#include "transaction.h"
44#include "btrfs_inode.h"
45#include "ioctl.h"
46#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040047#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040048#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040049#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040050#include "compat.h"
51#include "tree-log.h"
Yan Zheng5b84e8d2008-10-09 11:46:19 -040052#include "ref-cache.h"
Chris Masonc8b97812008-10-29 14:49:59 -040053#include "compression.h"
Chris Mason39279cc2007-06-12 06:35:45 -040054
55struct btrfs_iget_args {
56 u64 ino;
57 struct btrfs_root *root;
58};
59
60static struct inode_operations btrfs_dir_inode_operations;
61static struct inode_operations btrfs_symlink_inode_operations;
62static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040063static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040064static struct inode_operations btrfs_file_inode_operations;
65static struct address_space_operations btrfs_aops;
66static struct address_space_operations btrfs_symlink_aops;
67static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050068static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040069
70static struct kmem_cache *btrfs_inode_cachep;
71struct kmem_cache *btrfs_trans_handle_cachep;
72struct kmem_cache *btrfs_transaction_cachep;
73struct kmem_cache *btrfs_bit_radix_cachep;
74struct kmem_cache *btrfs_path_cachep;
75
76#define S_SHIFT 12
77static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
78 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
79 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
80 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
81 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
82 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
83 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
84 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
85};
86
Josef Bacik7b128762008-07-24 12:17:14 -040087static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040088static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050089static noinline int cow_file_range(struct inode *inode,
90 struct page *locked_page,
91 u64 start, u64 end, int *page_started,
92 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040093
Chris Masond352ac62008-09-29 15:18:18 -040094/*
95 * a very lame attempt at stopping writes when the FS is 85% full. There
96 * are countless ways this is incorrect, but it is better than nothing.
97 */
Chris Mason1832a6d2007-12-21 16:27:21 -050098int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
99 int for_del)
100{
Chris Masona2135012008-06-25 16:01:30 -0400101 u64 total;
102 u64 used;
Chris Mason1832a6d2007-12-21 16:27:21 -0500103 u64 thresh;
Chris Masonbcbfce82008-04-22 13:26:47 -0400104 unsigned long flags;
Chris Mason1832a6d2007-12-21 16:27:21 -0500105 int ret = 0;
106
Chris Masona2135012008-06-25 16:01:30 -0400107 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
108 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
109 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
Chris Mason1832a6d2007-12-21 16:27:21 -0500110 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -0500111 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -0500112 else
Chris Masonf9ef6602008-01-03 09:22:38 -0500113 thresh = total * 85;
114
115 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -0500116
Chris Mason1832a6d2007-12-21 16:27:21 -0500117 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
118 ret = -ENOSPC;
Chris Masonbcbfce82008-04-22 13:26:47 -0400119 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -0500120 return ret;
121}
122
Chris Masond352ac62008-09-29 15:18:18 -0400123/*
Chris Masonc8b97812008-10-29 14:49:59 -0400124 * this does all the hard work for inserting an inline extent into
125 * the btree. The caller should have done a btrfs_drop_extents so that
126 * no overlapping inline items exist in the btree
127 */
128static int noinline insert_inline_extent(struct btrfs_trans_handle *trans,
129 struct btrfs_root *root, struct inode *inode,
130 u64 start, size_t size, size_t compressed_size,
131 struct page **compressed_pages)
132{
133 struct btrfs_key key;
134 struct btrfs_path *path;
135 struct extent_buffer *leaf;
136 struct page *page = NULL;
137 char *kaddr;
138 unsigned long ptr;
139 struct btrfs_file_extent_item *ei;
140 int err = 0;
141 int ret;
142 size_t cur_size = size;
143 size_t datasize;
144 unsigned long offset;
145 int use_compress = 0;
146
147 if (compressed_size && compressed_pages) {
148 use_compress = 1;
149 cur_size = compressed_size;
150 }
151
152 path = btrfs_alloc_path(); if (!path)
153 return -ENOMEM;
154
155 btrfs_set_trans_block_group(trans, inode);
156
157 key.objectid = inode->i_ino;
158 key.offset = start;
159 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
160 inode_add_bytes(inode, size);
161 datasize = btrfs_file_extent_calc_inline_size(cur_size);
162
163 inode_add_bytes(inode, size);
164 ret = btrfs_insert_empty_item(trans, root, path, &key,
165 datasize);
166 BUG_ON(ret);
167 if (ret) {
168 err = ret;
169 printk("got bad ret %d\n", ret);
170 goto fail;
171 }
172 leaf = path->nodes[0];
173 ei = btrfs_item_ptr(leaf, path->slots[0],
174 struct btrfs_file_extent_item);
175 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
176 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
177 btrfs_set_file_extent_encryption(leaf, ei, 0);
178 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
179 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
180 ptr = btrfs_file_extent_inline_start(ei);
181
182 if (use_compress) {
183 struct page *cpage;
184 int i = 0;
185 while(compressed_size > 0) {
186 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500187 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400188 PAGE_CACHE_SIZE);
189
190 kaddr = kmap(cpage);
191 write_extent_buffer(leaf, kaddr, ptr, cur_size);
192 kunmap(cpage);
193
194 i++;
195 ptr += cur_size;
196 compressed_size -= cur_size;
197 }
198 btrfs_set_file_extent_compression(leaf, ei,
199 BTRFS_COMPRESS_ZLIB);
200 } else {
201 page = find_get_page(inode->i_mapping,
202 start >> PAGE_CACHE_SHIFT);
203 btrfs_set_file_extent_compression(leaf, ei, 0);
204 kaddr = kmap_atomic(page, KM_USER0);
205 offset = start & (PAGE_CACHE_SIZE - 1);
206 write_extent_buffer(leaf, kaddr + offset, ptr, size);
207 kunmap_atomic(kaddr, KM_USER0);
208 page_cache_release(page);
209 }
210 btrfs_mark_buffer_dirty(leaf);
211 btrfs_free_path(path);
212
213 BTRFS_I(inode)->disk_i_size = inode->i_size;
214 btrfs_update_inode(trans, root, inode);
215 return 0;
216fail:
217 btrfs_free_path(path);
218 return err;
219}
220
221
222/*
223 * conditionally insert an inline extent into the file. This
224 * does the checks required to make sure the data is small enough
225 * to fit as an inline extent.
226 */
227static int cow_file_range_inline(struct btrfs_trans_handle *trans,
228 struct btrfs_root *root,
229 struct inode *inode, u64 start, u64 end,
230 size_t compressed_size,
231 struct page **compressed_pages)
232{
233 u64 isize = i_size_read(inode);
234 u64 actual_end = min(end + 1, isize);
235 u64 inline_len = actual_end - start;
236 u64 aligned_end = (end + root->sectorsize - 1) &
237 ~((u64)root->sectorsize - 1);
238 u64 hint_byte;
239 u64 data_len = inline_len;
240 int ret;
241
242 if (compressed_size)
243 data_len = compressed_size;
244
245 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400246 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400247 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
248 (!compressed_size &&
249 (actual_end & (root->sectorsize - 1)) == 0) ||
250 end + 1 < isize ||
251 data_len > root->fs_info->max_inline) {
252 return 1;
253 }
254
Chris Masonc8b97812008-10-29 14:49:59 -0400255 ret = btrfs_drop_extents(trans, root, inode, start,
Chris Mason70b99e62008-10-31 12:46:39 -0400256 aligned_end, start, &hint_byte);
Chris Masonc8b97812008-10-29 14:49:59 -0400257 BUG_ON(ret);
258
259 if (isize > actual_end)
260 inline_len = min_t(u64, isize, actual_end);
261 ret = insert_inline_extent(trans, root, inode, start,
262 inline_len, compressed_size,
263 compressed_pages);
264 BUG_ON(ret);
265 btrfs_drop_extent_cache(inode, start, aligned_end, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400266 return 0;
267}
268
Chris Mason771ed682008-11-06 22:02:51 -0500269struct async_extent {
270 u64 start;
271 u64 ram_size;
272 u64 compressed_size;
273 struct page **pages;
274 unsigned long nr_pages;
275 struct list_head list;
276};
277
278struct async_cow {
279 struct inode *inode;
280 struct btrfs_root *root;
281 struct page *locked_page;
282 u64 start;
283 u64 end;
284 struct list_head extents;
285 struct btrfs_work work;
286};
287
288static noinline int add_async_extent(struct async_cow *cow,
289 u64 start, u64 ram_size,
290 u64 compressed_size,
291 struct page **pages,
292 unsigned long nr_pages)
293{
294 struct async_extent *async_extent;
295
296 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
297 async_extent->start = start;
298 async_extent->ram_size = ram_size;
299 async_extent->compressed_size = compressed_size;
300 async_extent->pages = pages;
301 async_extent->nr_pages = nr_pages;
302 list_add_tail(&async_extent->list, &cow->extents);
303 return 0;
304}
305
Chris Masonc8b97812008-10-29 14:49:59 -0400306/*
Chris Mason771ed682008-11-06 22:02:51 -0500307 * we create compressed extents in two phases. The first
308 * phase compresses a range of pages that have already been
309 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400310 *
Chris Mason771ed682008-11-06 22:02:51 -0500311 * This is done inside an ordered work queue, and the compression
312 * is spread across many cpus. The actual IO submission is step
313 * two, and the ordered work queue takes care of making sure that
314 * happens in the same order things were put onto the queue by
315 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400316 *
Chris Mason771ed682008-11-06 22:02:51 -0500317 * If this code finds it can't get good compression, it puts an
318 * entry onto the work queue to write the uncompressed bytes. This
319 * makes sure that both compressed inodes and uncompressed inodes
320 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400321 */
Chris Mason771ed682008-11-06 22:02:51 -0500322static noinline int compress_file_range(struct inode *inode,
323 struct page *locked_page,
324 u64 start, u64 end,
325 struct async_cow *async_cow,
326 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400327{
328 struct btrfs_root *root = BTRFS_I(inode)->root;
329 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400330 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -0400331 u64 orig_start;
332 u64 disk_num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400333 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400334 u64 actual_end;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400335 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400336 struct page **pages = NULL;
337 unsigned long nr_pages;
338 unsigned long nr_pages_ret = 0;
339 unsigned long total_compressed = 0;
340 unsigned long total_in = 0;
341 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500342 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400343 int i;
344 int will_compress;
Chris Masonb888db22007-08-27 16:49:44 -0400345
Chris Masonc8b97812008-10-29 14:49:59 -0400346 orig_start = start;
Chris Masonbe20aa92007-12-17 20:14:01 -0500347
Chris Masonc8b97812008-10-29 14:49:59 -0400348again:
349 will_compress = 0;
350 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
351 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
352
353 actual_end = min_t(u64, i_size_read(inode), end + 1);
354 total_compressed = actual_end - start;
355
356 /* we want to make sure that amount of ram required to uncompress
357 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500358 * of a compressed extent to 128k. This is a crucial number
359 * because it also controls how easily we can spread reads across
360 * cpus for decompression.
361 *
362 * We also want to make sure the amount of IO required to do
363 * a random read is reasonably small, so we limit the size of
364 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400365 */
366 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400367 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500368 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400369 disk_num_bytes = num_bytes;
370 total_in = 0;
371 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400372
Chris Mason771ed682008-11-06 22:02:51 -0500373 /*
374 * we do compression for mount -o compress and when the
375 * inode has not been flagged as nocompress. This flag can
376 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400377 */
378 if (!btrfs_test_flag(inode, NOCOMPRESS) &&
379 btrfs_test_opt(root, COMPRESS)) {
380 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400381 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400382
Chris Masonc8b97812008-10-29 14:49:59 -0400383 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
384 total_compressed, pages,
385 nr_pages, &nr_pages_ret,
386 &total_in,
387 &total_compressed,
388 max_compressed);
389
390 if (!ret) {
391 unsigned long offset = total_compressed &
392 (PAGE_CACHE_SIZE - 1);
393 struct page *page = pages[nr_pages_ret - 1];
394 char *kaddr;
395
396 /* zero the tail end of the last page, we might be
397 * sending it down to disk
398 */
399 if (offset) {
400 kaddr = kmap_atomic(page, KM_USER0);
401 memset(kaddr + offset, 0,
402 PAGE_CACHE_SIZE - offset);
403 kunmap_atomic(kaddr, KM_USER0);
404 }
405 will_compress = 1;
406 }
407 }
408 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500409 trans = btrfs_join_transaction(root, 1);
410 BUG_ON(!trans);
411 btrfs_set_trans_block_group(trans, inode);
412
Chris Masonc8b97812008-10-29 14:49:59 -0400413 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500414 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400415 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500416 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400417 */
418 ret = cow_file_range_inline(trans, root, inode,
419 start, end, 0, NULL);
420 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500421 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400422 ret = cow_file_range_inline(trans, root, inode,
423 start, end,
424 total_compressed, pages);
425 }
Chris Mason771ed682008-11-06 22:02:51 -0500426 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400427 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500428 /*
429 * inline extent creation worked, we don't need
430 * to create any more async work items. Unlock
431 * and free up our temp pages.
432 */
Chris Masonc8b97812008-10-29 14:49:59 -0400433 extent_clear_unlock_delalloc(inode,
434 &BTRFS_I(inode)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -0500435 start, end, NULL, 1, 0,
436 0, 1, 1, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400437 ret = 0;
438 goto free_pages_out;
439 }
440 }
441
442 if (will_compress) {
443 /*
444 * we aren't doing an inline extent round the compressed size
445 * up to a block size boundary so the allocator does sane
446 * things
447 */
448 total_compressed = (total_compressed + blocksize - 1) &
449 ~(blocksize - 1);
450
451 /*
452 * one last check to make sure the compression is really a
453 * win, compare the page count read with the blocks on disk
454 */
455 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
456 ~(PAGE_CACHE_SIZE - 1);
457 if (total_compressed >= total_in) {
458 will_compress = 0;
459 } else {
460 disk_num_bytes = total_compressed;
461 num_bytes = total_in;
462 }
463 }
464 if (!will_compress && pages) {
465 /*
466 * the compression code ran but failed to make things smaller,
467 * free any pages it allocated and our page pointer array
468 */
469 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400470 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400471 page_cache_release(pages[i]);
472 }
473 kfree(pages);
474 pages = NULL;
475 total_compressed = 0;
476 nr_pages_ret = 0;
477
478 /* flag the file so we don't compress in the future */
479 btrfs_set_flag(inode, NOCOMPRESS);
480 }
Chris Mason771ed682008-11-06 22:02:51 -0500481 if (will_compress) {
482 *num_added += 1;
483
484 /* the async work queues will take care of doing actual
485 * allocation on disk for these compressed pages,
486 * and will submit them to the elevator.
487 */
488 add_async_extent(async_cow, start, num_bytes,
489 total_compressed, pages, nr_pages_ret);
490
491 if (start + num_bytes < end) {
492 start += num_bytes;
493 pages = NULL;
494 cond_resched();
495 goto again;
496 }
497 } else {
498 /*
499 * No compression, but we still need to write the pages in
500 * the file we've been given so far. redirty the locked
501 * page if it corresponds to our extent and set things up
502 * for the async work queue to run cow_file_range to do
503 * the normal delalloc dance
504 */
505 if (page_offset(locked_page) >= start &&
506 page_offset(locked_page) <= end) {
507 __set_page_dirty_nobuffers(locked_page);
508 /* unlocked later on in the async handlers */
509 }
510 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
511 *num_added += 1;
512 }
513
514out:
515 return 0;
516
517free_pages_out:
518 for (i = 0; i < nr_pages_ret; i++) {
519 WARN_ON(pages[i]->mapping);
520 page_cache_release(pages[i]);
521 }
522 if (pages)
523 kfree(pages);
524
525 goto out;
526}
527
528/*
529 * phase two of compressed writeback. This is the ordered portion
530 * of the code, which only gets called in the order the work was
531 * queued. We walk all the async extents created by compress_file_range
532 * and send them down to the disk.
533 */
534static noinline int submit_compressed_extents(struct inode *inode,
535 struct async_cow *async_cow)
536{
537 struct async_extent *async_extent;
538 u64 alloc_hint = 0;
539 struct btrfs_trans_handle *trans;
540 struct btrfs_key ins;
541 struct extent_map *em;
542 struct btrfs_root *root = BTRFS_I(inode)->root;
543 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
544 struct extent_io_tree *io_tree;
545 int ret;
546
547 if (list_empty(&async_cow->extents))
548 return 0;
549
550 trans = btrfs_join_transaction(root, 1);
551
552 while(!list_empty(&async_cow->extents)) {
553 async_extent = list_entry(async_cow->extents.next,
554 struct async_extent, list);
555 list_del(&async_extent->list);
556
557 io_tree = &BTRFS_I(inode)->io_tree;
558
559 /* did the compression code fall back to uncompressed IO? */
560 if (!async_extent->pages) {
561 int page_started = 0;
562 unsigned long nr_written = 0;
563
564 lock_extent(io_tree, async_extent->start,
565 async_extent->start + async_extent->ram_size - 1,
566 GFP_NOFS);
567
568 /* allocate blocks */
569 cow_file_range(inode, async_cow->locked_page,
570 async_extent->start,
571 async_extent->start +
572 async_extent->ram_size - 1,
573 &page_started, &nr_written, 0);
574
575 /*
576 * if page_started, cow_file_range inserted an
577 * inline extent and took care of all the unlocking
578 * and IO for us. Otherwise, we need to submit
579 * all those pages down to the drive.
580 */
581 if (!page_started)
582 extent_write_locked_range(io_tree,
583 inode, async_extent->start,
584 async_extent->start +
585 async_extent->ram_size - 1,
586 btrfs_get_extent,
587 WB_SYNC_ALL);
588 kfree(async_extent);
589 cond_resched();
590 continue;
591 }
592
593 lock_extent(io_tree, async_extent->start,
594 async_extent->start + async_extent->ram_size - 1,
595 GFP_NOFS);
596 /*
597 * here we're doing allocation and writeback of the
598 * compressed pages
599 */
600 btrfs_drop_extent_cache(inode, async_extent->start,
601 async_extent->start +
602 async_extent->ram_size - 1, 0);
603
604 ret = btrfs_reserve_extent(trans, root,
605 async_extent->compressed_size,
606 async_extent->compressed_size,
607 0, alloc_hint,
608 (u64)-1, &ins, 1);
609 BUG_ON(ret);
610 em = alloc_extent_map(GFP_NOFS);
611 em->start = async_extent->start;
612 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500613 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500614
615 em->block_start = ins.objectid;
616 em->block_len = ins.offset;
617 em->bdev = root->fs_info->fs_devices->latest_bdev;
618 set_bit(EXTENT_FLAG_PINNED, &em->flags);
619 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
620
621 while(1) {
622 spin_lock(&em_tree->lock);
623 ret = add_extent_mapping(em_tree, em);
624 spin_unlock(&em_tree->lock);
625 if (ret != -EEXIST) {
626 free_extent_map(em);
627 break;
628 }
629 btrfs_drop_extent_cache(inode, async_extent->start,
630 async_extent->start +
631 async_extent->ram_size - 1, 0);
632 }
633
634 ret = btrfs_add_ordered_extent(inode, async_extent->start,
635 ins.objectid,
636 async_extent->ram_size,
637 ins.offset,
638 BTRFS_ORDERED_COMPRESSED);
639 BUG_ON(ret);
640
641 btrfs_end_transaction(trans, root);
642
643 /*
644 * clear dirty, set writeback and unlock the pages.
645 */
646 extent_clear_unlock_delalloc(inode,
647 &BTRFS_I(inode)->io_tree,
648 async_extent->start,
649 async_extent->start +
650 async_extent->ram_size - 1,
651 NULL, 1, 1, 0, 1, 1, 0);
652
653 ret = btrfs_submit_compressed_write(inode,
654 async_extent->start,
655 async_extent->ram_size,
656 ins.objectid,
657 ins.offset, async_extent->pages,
658 async_extent->nr_pages);
659
660 BUG_ON(ret);
661 trans = btrfs_join_transaction(root, 1);
662 alloc_hint = ins.objectid + ins.offset;
663 kfree(async_extent);
664 cond_resched();
665 }
666
667 btrfs_end_transaction(trans, root);
668 return 0;
669}
670
671/*
672 * when extent_io.c finds a delayed allocation range in the file,
673 * the call backs end up in this code. The basic idea is to
674 * allocate extents on disk for the range, and create ordered data structs
675 * in ram to track those extents.
676 *
677 * locked_page is the page that writepage had locked already. We use
678 * it to make sure we don't do extra locks or unlocks.
679 *
680 * *page_started is set to one if we unlock locked_page and do everything
681 * required to start IO on it. It may be clean and already done with
682 * IO when we return.
683 */
684static noinline int cow_file_range(struct inode *inode,
685 struct page *locked_page,
686 u64 start, u64 end, int *page_started,
687 unsigned long *nr_written,
688 int unlock)
689{
690 struct btrfs_root *root = BTRFS_I(inode)->root;
691 struct btrfs_trans_handle *trans;
692 u64 alloc_hint = 0;
693 u64 num_bytes;
694 unsigned long ram_size;
695 u64 disk_num_bytes;
696 u64 cur_alloc_size;
697 u64 blocksize = root->sectorsize;
698 u64 actual_end;
699 struct btrfs_key ins;
700 struct extent_map *em;
701 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
702 int ret = 0;
703
704 trans = btrfs_join_transaction(root, 1);
705 BUG_ON(!trans);
706 btrfs_set_trans_block_group(trans, inode);
707
708 actual_end = min_t(u64, i_size_read(inode), end + 1);
709
710 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
711 num_bytes = max(blocksize, num_bytes);
712 disk_num_bytes = num_bytes;
713 ret = 0;
714
715 if (start == 0) {
716 /* lets try to make an inline extent */
717 ret = cow_file_range_inline(trans, root, inode,
718 start, end, 0, NULL);
719 if (ret == 0) {
720 extent_clear_unlock_delalloc(inode,
721 &BTRFS_I(inode)->io_tree,
722 start, end, NULL, 1, 1,
723 1, 1, 1, 1);
724 *nr_written = *nr_written +
725 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
726 *page_started = 1;
727 ret = 0;
728 goto out;
729 }
730 }
Chris Masonc8b97812008-10-29 14:49:59 -0400731
732 BUG_ON(disk_num_bytes >
733 btrfs_super_total_bytes(&root->fs_info->super_copy));
734
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400735 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400736
Chris Masonc8b97812008-10-29 14:49:59 -0400737 while(disk_num_bytes > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400738 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400739 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500740 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400741 (u64)-1, &ins, 1);
Chris Masonc59f8952007-12-17 20:14:04 -0500742 if (ret) {
Chris Mason771ed682008-11-06 22:02:51 -0500743 BUG();
Chris Masonc59f8952007-12-17 20:14:04 -0500744 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400745 em = alloc_extent_map(GFP_NOFS);
746 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500747 em->orig_start = em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400748
Chris Mason771ed682008-11-06 22:02:51 -0500749 ram_size = ins.offset;
750 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400751
Chris Masone6dcd2d2008-07-17 12:53:50 -0400752 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400753 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400754 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400755 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400756
Chris Masone6dcd2d2008-07-17 12:53:50 -0400757 while(1) {
758 spin_lock(&em_tree->lock);
759 ret = add_extent_mapping(em_tree, em);
760 spin_unlock(&em_tree->lock);
761 if (ret != -EEXIST) {
762 free_extent_map(em);
763 break;
764 }
765 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400766 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400767 }
768
Chris Mason98d20f62008-04-14 09:46:10 -0400769 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400770 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500771 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400772 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400773
774 if (disk_num_bytes < cur_alloc_size) {
775 printk("num_bytes %Lu cur_alloc %Lu\n", disk_num_bytes,
Chris Mason3b951512008-04-17 11:29:12 -0400776 cur_alloc_size);
777 break;
778 }
Chris Masonc8b97812008-10-29 14:49:59 -0400779 /* we're not doing compressed IO, don't unlock the first
780 * page (which the caller expects to stay locked), don't
781 * clear any dirty bits and don't set any writeback bits
782 */
783 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
784 start, start + ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500785 locked_page, unlock, 1,
786 1, 0, 0, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400787 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500788 num_bytes -= cur_alloc_size;
789 alloc_hint = ins.objectid + ins.offset;
790 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400791 }
Chris Masonb888db22007-08-27 16:49:44 -0400792out:
Chris Mason771ed682008-11-06 22:02:51 -0500793 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400794 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400795
Chris Masonbe20aa92007-12-17 20:14:01 -0500796 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500797}
Chris Masonc8b97812008-10-29 14:49:59 -0400798
Chris Mason771ed682008-11-06 22:02:51 -0500799/*
800 * work queue call back to started compression on a file and pages
801 */
802static noinline void async_cow_start(struct btrfs_work *work)
803{
804 struct async_cow *async_cow;
805 int num_added = 0;
806 async_cow = container_of(work, struct async_cow, work);
807
808 compress_file_range(async_cow->inode, async_cow->locked_page,
809 async_cow->start, async_cow->end, async_cow,
810 &num_added);
811 if (num_added == 0)
812 async_cow->inode = NULL;
813}
814
815/*
816 * work queue call back to submit previously compressed pages
817 */
818static noinline void async_cow_submit(struct btrfs_work *work)
819{
820 struct async_cow *async_cow;
821 struct btrfs_root *root;
822 unsigned long nr_pages;
823
824 async_cow = container_of(work, struct async_cow, work);
825
826 root = async_cow->root;
827 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
828 PAGE_CACHE_SHIFT;
829
830 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
831
832 if (atomic_read(&root->fs_info->async_delalloc_pages) <
833 5 * 1042 * 1024 &&
834 waitqueue_active(&root->fs_info->async_submit_wait))
835 wake_up(&root->fs_info->async_submit_wait);
836
837 if (async_cow->inode) {
838 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason70b99e62008-10-31 12:46:39 -0400839 }
Chris Mason771ed682008-11-06 22:02:51 -0500840}
Chris Masonc8b97812008-10-29 14:49:59 -0400841
Chris Mason771ed682008-11-06 22:02:51 -0500842static noinline void async_cow_free(struct btrfs_work *work)
843{
844 struct async_cow *async_cow;
845 async_cow = container_of(work, struct async_cow, work);
846 kfree(async_cow);
847}
848
849static int cow_file_range_async(struct inode *inode, struct page *locked_page,
850 u64 start, u64 end, int *page_started,
851 unsigned long *nr_written)
852{
853 struct async_cow *async_cow;
854 struct btrfs_root *root = BTRFS_I(inode)->root;
855 unsigned long nr_pages;
856 u64 cur_end;
857 int limit = 10 * 1024 * 1042;
858
859 if (!btrfs_test_opt(root, COMPRESS)) {
860 return cow_file_range(inode, locked_page, start, end,
861 page_started, nr_written, 1);
862 }
863
864 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED |
865 EXTENT_DELALLOC, 1, 0, GFP_NOFS);
866 while(start < end) {
867 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
868 async_cow->inode = inode;
869 async_cow->root = root;
870 async_cow->locked_page = locked_page;
871 async_cow->start = start;
872
873 if (btrfs_test_flag(inode, NOCOMPRESS))
874 cur_end = end;
875 else
876 cur_end = min(end, start + 512 * 1024 - 1);
877
878 async_cow->end = cur_end;
879 INIT_LIST_HEAD(&async_cow->extents);
880
881 async_cow->work.func = async_cow_start;
882 async_cow->work.ordered_func = async_cow_submit;
883 async_cow->work.ordered_free = async_cow_free;
884 async_cow->work.flags = 0;
885
Chris Mason771ed682008-11-06 22:02:51 -0500886 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
887 PAGE_CACHE_SHIFT;
888 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
889
890 btrfs_queue_worker(&root->fs_info->delalloc_workers,
891 &async_cow->work);
892
893 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
894 wait_event(root->fs_info->async_submit_wait,
895 (atomic_read(&root->fs_info->async_delalloc_pages) <
896 limit));
897 }
898
899 while(atomic_read(&root->fs_info->async_submit_draining) &&
900 atomic_read(&root->fs_info->async_delalloc_pages)) {
901 wait_event(root->fs_info->async_submit_wait,
902 (atomic_read(&root->fs_info->async_delalloc_pages) ==
903 0));
904 }
905
906 *nr_written += nr_pages;
907 start = cur_end + 1;
908 }
909 *page_started = 1;
910 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500911}
912
Chris Masond352ac62008-09-29 15:18:18 -0400913/*
914 * when nowcow writeback call back. This checks for snapshots or COW copies
915 * of the extents that exist in the file, and COWs the file as required.
916 *
917 * If no cow copies or snapshots exist, we write directly to the existing
918 * blocks on disk
919 */
Chris Masonc8b97812008-10-29 14:49:59 -0400920static int run_delalloc_nocow(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -0500921 u64 start, u64 end, int *page_started, int force,
922 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -0500923{
Chris Masonbe20aa92007-12-17 20:14:01 -0500924 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400925 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -0500926 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -0500927 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -0400928 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -0500929 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -0400930 u64 cow_start;
931 u64 cur_offset;
932 u64 extent_end;
933 u64 disk_bytenr;
934 u64 num_bytes;
935 int extent_type;
936 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -0400937 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -0400938 int nocow;
939 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500940
941 path = btrfs_alloc_path();
942 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400943 trans = btrfs_join_transaction(root, 1);
944 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500945
Yan Zheng80ff3852008-10-30 14:20:02 -0400946 cow_start = (u64)-1;
947 cur_offset = start;
948 while (1) {
949 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
950 cur_offset, 0);
951 BUG_ON(ret < 0);
952 if (ret > 0 && path->slots[0] > 0 && check_prev) {
953 leaf = path->nodes[0];
954 btrfs_item_key_to_cpu(leaf, &found_key,
955 path->slots[0] - 1);
956 if (found_key.objectid == inode->i_ino &&
957 found_key.type == BTRFS_EXTENT_DATA_KEY)
958 path->slots[0]--;
959 }
960 check_prev = 0;
961next_slot:
962 leaf = path->nodes[0];
963 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
964 ret = btrfs_next_leaf(root, path);
965 if (ret < 0)
966 BUG_ON(1);
967 if (ret > 0)
968 break;
969 leaf = path->nodes[0];
970 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500971
Yan Zheng80ff3852008-10-30 14:20:02 -0400972 nocow = 0;
973 disk_bytenr = 0;
974 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500975
Yan Zheng80ff3852008-10-30 14:20:02 -0400976 if (found_key.objectid > inode->i_ino ||
977 found_key.type > BTRFS_EXTENT_DATA_KEY ||
978 found_key.offset > end)
979 break;
Chris Masonbe20aa92007-12-17 20:14:01 -0500980
Yan Zheng80ff3852008-10-30 14:20:02 -0400981 if (found_key.offset > cur_offset) {
982 extent_end = found_key.offset;
983 goto out_check;
984 }
Chris Masonc31f8832008-01-08 15:46:31 -0500985
Yan Zheng80ff3852008-10-30 14:20:02 -0400986 fi = btrfs_item_ptr(leaf, path->slots[0],
987 struct btrfs_file_extent_item);
988 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -0500989
Yan Zhengd899e052008-10-30 14:25:28 -0400990 if (extent_type == BTRFS_FILE_EXTENT_REG ||
991 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -0400992 struct btrfs_block_group_cache *block_group;
993 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
994 extent_end = found_key.offset +
995 btrfs_file_extent_num_bytes(leaf, fi);
996 if (extent_end <= start) {
997 path->slots[0]++;
998 goto next_slot;
999 }
1000 if (btrfs_file_extent_compression(leaf, fi) ||
1001 btrfs_file_extent_encryption(leaf, fi) ||
1002 btrfs_file_extent_other_encoding(leaf, fi))
1003 goto out_check;
1004 if (disk_bytenr == 0)
1005 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001006 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1007 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001008 if (btrfs_cross_ref_exist(trans, root, disk_bytenr))
1009 goto out_check;
1010 block_group = btrfs_lookup_block_group(root->fs_info,
1011 disk_bytenr);
1012 if (!block_group || block_group->ro)
1013 goto out_check;
1014 disk_bytenr += btrfs_file_extent_offset(leaf, fi);
1015 nocow = 1;
1016 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1017 extent_end = found_key.offset +
1018 btrfs_file_extent_inline_len(leaf, fi);
1019 extent_end = ALIGN(extent_end, root->sectorsize);
1020 } else {
1021 BUG_ON(1);
1022 }
1023out_check:
1024 if (extent_end <= start) {
1025 path->slots[0]++;
1026 goto next_slot;
1027 }
1028 if (!nocow) {
1029 if (cow_start == (u64)-1)
1030 cow_start = cur_offset;
1031 cur_offset = extent_end;
1032 if (cur_offset > end)
1033 break;
1034 path->slots[0]++;
1035 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001036 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001037
Yan Zheng7ea394f2008-08-05 13:05:02 -04001038 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001039 if (cow_start != (u64)-1) {
1040 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001041 found_key.offset - 1, page_started,
1042 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001043 BUG_ON(ret);
1044 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001045 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001046
1047 disk_bytenr += cur_offset - found_key.offset;
1048 num_bytes = min(end + 1, extent_end) - cur_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001049 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1050 struct extent_map *em;
1051 struct extent_map_tree *em_tree;
1052 em_tree = &BTRFS_I(inode)->extent_tree;
1053 em = alloc_extent_map(GFP_NOFS);
1054 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001055 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001056 em->len = num_bytes;
1057 em->block_len = num_bytes;
1058 em->block_start = disk_bytenr;
1059 em->bdev = root->fs_info->fs_devices->latest_bdev;
1060 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1061 while (1) {
1062 spin_lock(&em_tree->lock);
1063 ret = add_extent_mapping(em_tree, em);
1064 spin_unlock(&em_tree->lock);
1065 if (ret != -EEXIST) {
1066 free_extent_map(em);
1067 break;
1068 }
1069 btrfs_drop_extent_cache(inode, em->start,
1070 em->start + em->len - 1, 0);
1071 }
1072 type = BTRFS_ORDERED_PREALLOC;
1073 } else {
1074 type = BTRFS_ORDERED_NOCOW;
1075 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001076
1077 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001078 num_bytes, num_bytes, type);
1079 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001080
Yan Zhengd899e052008-10-30 14:25:28 -04001081 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
1082 cur_offset, cur_offset + num_bytes - 1,
Chris Mason771ed682008-11-06 22:02:51 -05001083 locked_page, 1, 1, 1, 0, 0, 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04001084 cur_offset = extent_end;
1085 if (cur_offset > end)
1086 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001087 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001088 btrfs_release_path(root, path);
1089
1090 if (cur_offset <= end && cow_start == (u64)-1)
1091 cow_start = cur_offset;
1092 if (cow_start != (u64)-1) {
1093 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001094 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001095 BUG_ON(ret);
1096 }
1097
1098 ret = btrfs_end_transaction(trans, root);
1099 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001100 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001101 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001102}
1103
Chris Masond352ac62008-09-29 15:18:18 -04001104/*
1105 * extent_io.c call back to do delayed allocation processing
1106 */
Chris Masonc8b97812008-10-29 14:49:59 -04001107static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001108 u64 start, u64 end, int *page_started,
1109 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001110{
1111 struct btrfs_root *root = BTRFS_I(inode)->root;
1112 int ret;
Chris Masona2135012008-06-25 16:01:30 -04001113
Yanb98b6762008-01-08 15:54:37 -05001114 if (btrfs_test_opt(root, NODATACOW) ||
1115 btrfs_test_flag(inode, NODATACOW))
Chris Masonc8b97812008-10-29 14:49:59 -04001116 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001117 page_started, 0, nr_written);
Yan Zhengd899e052008-10-30 14:25:28 -04001118 else if (btrfs_test_flag(inode, PREALLOC))
1119 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001120 page_started, 1, nr_written);
Chris Masonbe20aa92007-12-17 20:14:01 -05001121 else
Chris Mason771ed682008-11-06 22:02:51 -05001122 ret = cow_file_range_async(inode, locked_page, start, end,
1123 page_started, nr_written);
Chris Mason1832a6d2007-12-21 16:27:21 -05001124
Chris Masonb888db22007-08-27 16:49:44 -04001125 return ret;
1126}
1127
Chris Masond352ac62008-09-29 15:18:18 -04001128/*
1129 * extent_io.c set_bit_hook, used to track delayed allocation
1130 * bytes in this file, and to maintain the list of inodes that
1131 * have pending delalloc work to be done.
1132 */
Chris Mason291d6732008-01-29 15:55:23 -05001133int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001134 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001135{
Chris Masonbcbfce82008-04-22 13:26:47 -04001136 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -05001137 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001138 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001139 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -05001140 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001141 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001142 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1143 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1144 &root->fs_info->delalloc_inodes);
1145 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001146 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001147 }
1148 return 0;
1149}
1150
Chris Masond352ac62008-09-29 15:18:18 -04001151/*
1152 * extent_io.c clear_bit_hook, see set_bit_hook for why
1153 */
Chris Mason291d6732008-01-29 15:55:23 -05001154int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001155 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001156{
Chris Masonb0c68f82008-01-31 11:05:37 -05001157 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001158 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001159 unsigned long flags;
1160
1161 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -05001162 if (end - start + 1 > root->fs_info->delalloc_bytes) {
1163 printk("warning: delalloc account %Lu %Lu\n",
1164 end - start + 1, root->fs_info->delalloc_bytes);
1165 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001166 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001167 } else {
1168 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -05001169 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001170 }
Chris Masonea8c2812008-08-04 23:17:27 -04001171 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1172 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1173 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1174 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001175 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001176 }
1177 return 0;
1178}
1179
Chris Masond352ac62008-09-29 15:18:18 -04001180/*
1181 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1182 * we don't create bios that span stripes or chunks
1183 */
Chris Mason239b14b2008-03-24 15:02:07 -04001184int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001185 size_t size, struct bio *bio,
1186 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001187{
1188 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1189 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001190 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001191 u64 length = 0;
1192 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001193 int ret;
1194
Chris Mason771ed682008-11-06 22:02:51 -05001195 if (bio_flags & EXTENT_BIO_COMPRESSED)
1196 return 0;
1197
Chris Masonf2d8d742008-04-21 10:03:05 -04001198 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001199 map_tree = &root->fs_info->mapping_tree;
1200 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001201 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001202 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001203
Chris Mason239b14b2008-03-24 15:02:07 -04001204 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -04001205 return 1;
1206 }
1207 return 0;
1208}
1209
Chris Masond352ac62008-09-29 15:18:18 -04001210/*
1211 * in order to insert checksums into the metadata in large chunks,
1212 * we wait until bio submission time. All the pages in the bio are
1213 * checksummed and sums are attached onto the ordered extent record.
1214 *
1215 * At IO completion time the cums attached on the ordered extent record
1216 * are inserted into the btree
1217 */
Chris Mason4a69a412008-11-06 22:03:00 -05001218int __btrfs_submit_bio_start(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001219 int mirror_num, unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001220{
Chris Mason065631f2008-02-20 12:07:25 -05001221 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001222 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001223
Chris Mason3edf7d32008-07-18 06:17:13 -04001224 ret = btrfs_csum_one_bio(root, inode, bio);
Chris Mason44b8bd72008-04-16 11:14:51 -04001225 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001226 return 0;
1227}
Chris Masone0156402008-04-16 11:15:20 -04001228
Chris Mason4a69a412008-11-06 22:03:00 -05001229/*
1230 * in order to insert checksums into the metadata in large chunks,
1231 * we wait until bio submission time. All the pages in the bio are
1232 * checksummed and sums are attached onto the ordered extent record.
1233 *
1234 * At IO completion time the cums attached on the ordered extent record
1235 * are inserted into the btree
1236 */
1237int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
1238 int mirror_num, unsigned long bio_flags)
1239{
1240 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001241 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001242}
1243
Chris Masond352ac62008-09-29 15:18:18 -04001244/*
1245 * extent_io.c submission hook. This does the right thing for csum calculation on write,
1246 * or reading the csums from the tree before a read
1247 */
Chris Mason44b8bd72008-04-16 11:14:51 -04001248int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001249 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001250{
1251 struct btrfs_root *root = BTRFS_I(inode)->root;
1252 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001253 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001254
Chris Masone6dcd2d2008-07-17 12:53:50 -04001255 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1256 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001257
Chris Mason19b9bdb2008-10-30 14:23:13 -04001258 skip_sum = btrfs_test_opt(root, NODATASUM) ||
1259 btrfs_test_flag(inode, NODATASUM);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001260
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001261 if (!(rw & (1 << BIO_RW))) {
Chris Masonc8b97812008-10-29 14:49:59 -04001262
Chris Mason19b9bdb2008-10-30 14:23:13 -04001263 if (bio_flags & EXTENT_BIO_COMPRESSED)
Chris Masonc8b97812008-10-29 14:49:59 -04001264 return btrfs_submit_compressed_read(inode, bio,
1265 mirror_num, bio_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001266 else if (!skip_sum)
1267 btrfs_lookup_bio_sums(root, inode, bio);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001268 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001269 } else if (!skip_sum) {
1270 /* we're doing a write, do the async checksumming */
1271 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001272 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001273 bio_flags, __btrfs_submit_bio_start,
1274 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001275 }
1276
Chris Mason0b86a832008-03-24 15:01:56 -04001277mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001278 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001279}
Chris Mason6885f302008-02-20 16:11:05 -05001280
Chris Masond352ac62008-09-29 15:18:18 -04001281/*
1282 * given a list of ordered sums record them in the inode. This happens
1283 * at IO completion time based on sums calculated at bio submission time.
1284 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001285static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001286 struct inode *inode, u64 file_offset,
1287 struct list_head *list)
1288{
1289 struct list_head *cur;
1290 struct btrfs_ordered_sum *sum;
1291
1292 btrfs_set_trans_block_group(trans, inode);
Chris Masonba1da2f2008-07-17 12:54:15 -04001293 list_for_each(cur, list) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04001294 sum = list_entry(cur, struct btrfs_ordered_sum, list);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001295 btrfs_csum_file_blocks(trans, BTRFS_I(inode)->root,
1296 inode, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001297 }
1298 return 0;
1299}
1300
Chris Masonea8c2812008-08-04 23:17:27 -04001301int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1302{
Chris Mason771ed682008-11-06 22:02:51 -05001303 if ((end & (PAGE_CACHE_SIZE - 1)) == 0) {
1304 WARN_ON(1);
1305 }
Chris Masonea8c2812008-08-04 23:17:27 -04001306 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1307 GFP_NOFS);
1308}
1309
Chris Masond352ac62008-09-29 15:18:18 -04001310/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001311struct btrfs_writepage_fixup {
1312 struct page *page;
1313 struct btrfs_work work;
1314};
1315
Chris Mason247e7432008-07-17 12:53:51 -04001316void btrfs_writepage_fixup_worker(struct btrfs_work *work)
1317{
1318 struct btrfs_writepage_fixup *fixup;
1319 struct btrfs_ordered_extent *ordered;
1320 struct page *page;
1321 struct inode *inode;
1322 u64 page_start;
1323 u64 page_end;
1324
1325 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1326 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001327again:
Chris Mason247e7432008-07-17 12:53:51 -04001328 lock_page(page);
1329 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1330 ClearPageChecked(page);
1331 goto out_page;
1332 }
1333
1334 inode = page->mapping->host;
1335 page_start = page_offset(page);
1336 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1337
1338 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001339
1340 /* already ordered? We're done */
1341 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
1342 EXTENT_ORDERED, 0)) {
Chris Mason247e7432008-07-17 12:53:51 -04001343 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001344 }
1345
1346 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1347 if (ordered) {
1348 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1349 page_end, GFP_NOFS);
1350 unlock_page(page);
1351 btrfs_start_ordered_extent(inode, ordered, 1);
1352 goto again;
1353 }
Chris Mason247e7432008-07-17 12:53:51 -04001354
Chris Masonea8c2812008-08-04 23:17:27 -04001355 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001356 ClearPageChecked(page);
1357out:
1358 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1359out_page:
1360 unlock_page(page);
1361 page_cache_release(page);
1362}
1363
1364/*
1365 * There are a few paths in the higher layers of the kernel that directly
1366 * set the page dirty bit without asking the filesystem if it is a
1367 * good idea. This causes problems because we want to make sure COW
1368 * properly happens and the data=ordered rules are followed.
1369 *
Chris Masonc8b97812008-10-29 14:49:59 -04001370 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001371 * hasn't been properly setup for IO. We kick off an async process
1372 * to fix it up. The async helper will wait for ordered extents, set
1373 * the delalloc bit and make it safe to write the page.
1374 */
1375int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
1376{
1377 struct inode *inode = page->mapping->host;
1378 struct btrfs_writepage_fixup *fixup;
1379 struct btrfs_root *root = BTRFS_I(inode)->root;
1380 int ret;
1381
1382 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1383 EXTENT_ORDERED, 0);
1384 if (ret)
1385 return 0;
1386
1387 if (PageChecked(page))
1388 return -EAGAIN;
1389
1390 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1391 if (!fixup)
1392 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001393
Chris Mason247e7432008-07-17 12:53:51 -04001394 SetPageChecked(page);
1395 page_cache_get(page);
1396 fixup->work.func = btrfs_writepage_fixup_worker;
1397 fixup->page = page;
1398 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1399 return -EAGAIN;
1400}
1401
Yan Zhengd899e052008-10-30 14:25:28 -04001402static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1403 struct inode *inode, u64 file_pos,
1404 u64 disk_bytenr, u64 disk_num_bytes,
1405 u64 num_bytes, u64 ram_bytes,
1406 u8 compression, u8 encryption,
1407 u16 other_encoding, int extent_type)
1408{
1409 struct btrfs_root *root = BTRFS_I(inode)->root;
1410 struct btrfs_file_extent_item *fi;
1411 struct btrfs_path *path;
1412 struct extent_buffer *leaf;
1413 struct btrfs_key ins;
1414 u64 hint;
1415 int ret;
1416
1417 path = btrfs_alloc_path();
1418 BUG_ON(!path);
1419
1420 ret = btrfs_drop_extents(trans, root, inode, file_pos,
1421 file_pos + num_bytes, file_pos, &hint);
1422 BUG_ON(ret);
1423
1424 ins.objectid = inode->i_ino;
1425 ins.offset = file_pos;
1426 ins.type = BTRFS_EXTENT_DATA_KEY;
1427 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1428 BUG_ON(ret);
1429 leaf = path->nodes[0];
1430 fi = btrfs_item_ptr(leaf, path->slots[0],
1431 struct btrfs_file_extent_item);
1432 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1433 btrfs_set_file_extent_type(leaf, fi, extent_type);
1434 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1435 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1436 btrfs_set_file_extent_offset(leaf, fi, 0);
1437 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1438 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1439 btrfs_set_file_extent_compression(leaf, fi, compression);
1440 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1441 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
1442 btrfs_mark_buffer_dirty(leaf);
1443
1444 inode_add_bytes(inode, num_bytes);
1445 btrfs_drop_extent_cache(inode, file_pos, file_pos + num_bytes - 1, 0);
1446
1447 ins.objectid = disk_bytenr;
1448 ins.offset = disk_num_bytes;
1449 ins.type = BTRFS_EXTENT_ITEM_KEY;
1450 ret = btrfs_alloc_reserved_extent(trans, root, leaf->start,
1451 root->root_key.objectid,
1452 trans->transid, inode->i_ino, &ins);
1453 BUG_ON(ret);
1454
1455 btrfs_free_path(path);
1456 return 0;
1457}
1458
Chris Masond352ac62008-09-29 15:18:18 -04001459/* as ordered data IO finishes, this gets called so we can finish
1460 * an ordered extent if the range of bytes in the file it covers are
1461 * fully written.
1462 */
Chris Mason211f90e2008-07-18 11:56:15 -04001463static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001464{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001465 struct btrfs_root *root = BTRFS_I(inode)->root;
1466 struct btrfs_trans_handle *trans;
1467 struct btrfs_ordered_extent *ordered_extent;
1468 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan Zhengd899e052008-10-30 14:25:28 -04001469 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001470 int ret;
1471
1472 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001473 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001474 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001475
Chris Masonf9295742008-07-17 12:54:14 -04001476 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001477
1478 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
1479 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001480 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
1481 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001482
1483 lock_extent(io_tree, ordered_extent->file_offset,
1484 ordered_extent->file_offset + ordered_extent->len - 1,
1485 GFP_NOFS);
1486
Chris Masonc8b97812008-10-29 14:49:59 -04001487 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001488 compressed = 1;
1489 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1490 BUG_ON(compressed);
1491 ret = btrfs_mark_extent_written(trans, root, inode,
1492 ordered_extent->file_offset,
1493 ordered_extent->file_offset +
1494 ordered_extent->len);
1495 BUG_ON(ret);
1496 } else {
1497 ret = insert_reserved_file_extent(trans, inode,
1498 ordered_extent->file_offset,
1499 ordered_extent->start,
1500 ordered_extent->disk_len,
1501 ordered_extent->len,
1502 ordered_extent->len,
1503 compressed, 0, 0,
1504 BTRFS_FILE_EXTENT_REG);
1505 BUG_ON(ret);
1506 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001507 unlock_extent(io_tree, ordered_extent->file_offset,
1508 ordered_extent->file_offset + ordered_extent->len - 1,
1509 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001510nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001511 add_pending_csums(trans, inode, ordered_extent->file_offset,
1512 &ordered_extent->list);
1513
Chris Mason34353022008-09-23 20:19:49 -04001514 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masondbe674a2008-07-17 12:54:05 -04001515 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -04001516 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001517 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason34353022008-09-23 20:19:49 -04001518 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -04001519
Chris Masone6dcd2d2008-07-17 12:53:50 -04001520 /* once for us */
1521 btrfs_put_ordered_extent(ordered_extent);
1522 /* once for the tree */
1523 btrfs_put_ordered_extent(ordered_extent);
1524
Chris Masone6dcd2d2008-07-17 12:53:50 -04001525 btrfs_end_transaction(trans, root);
1526 return 0;
1527}
1528
Chris Mason211f90e2008-07-18 11:56:15 -04001529int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
1530 struct extent_state *state, int uptodate)
1531{
1532 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1533}
1534
Chris Masond352ac62008-09-29 15:18:18 -04001535/*
1536 * When IO fails, either with EIO or csum verification fails, we
1537 * try other mirrors that might have a good copy of the data. This
1538 * io_failure_record is used to record state as we go through all the
1539 * mirrors. If another mirror has good data, the page is set up to date
1540 * and things continue. If a good mirror can't be found, the original
1541 * bio end_io callback is called to indicate things have failed.
1542 */
Chris Mason7e383262008-04-09 16:28:12 -04001543struct io_failure_record {
1544 struct page *page;
1545 u64 start;
1546 u64 len;
1547 u64 logical;
1548 int last_mirror;
1549};
1550
Chris Mason1259ab72008-05-12 13:39:03 -04001551int btrfs_io_failed_hook(struct bio *failed_bio,
1552 struct page *page, u64 start, u64 end,
1553 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001554{
1555 struct io_failure_record *failrec = NULL;
1556 u64 private;
1557 struct extent_map *em;
1558 struct inode *inode = page->mapping->host;
1559 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001560 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001561 struct bio *bio;
1562 int num_copies;
1563 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001564 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001565 u64 logical;
Chris Masonc8b97812008-10-29 14:49:59 -04001566 unsigned long bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001567
1568 ret = get_state_private(failure_tree, start, &private);
1569 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001570 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1571 if (!failrec)
1572 return -ENOMEM;
1573 failrec->start = start;
1574 failrec->len = end - start + 1;
1575 failrec->last_mirror = 0;
1576
Chris Mason3b951512008-04-17 11:29:12 -04001577 spin_lock(&em_tree->lock);
1578 em = lookup_extent_mapping(em_tree, start, failrec->len);
1579 if (em->start > start || em->start + em->len < start) {
1580 free_extent_map(em);
1581 em = NULL;
1582 }
1583 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001584
1585 if (!em || IS_ERR(em)) {
1586 kfree(failrec);
1587 return -EIO;
1588 }
1589 logical = start - em->start;
1590 logical = em->block_start + logical;
Chris Masonc8b97812008-10-29 14:49:59 -04001591 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
1592 bio_flags = EXTENT_BIO_COMPRESSED;
Chris Mason7e383262008-04-09 16:28:12 -04001593 failrec->logical = logical;
1594 free_extent_map(em);
1595 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1596 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001597 set_state_private(failure_tree, start,
1598 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001599 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001600 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001601 }
1602 num_copies = btrfs_num_copies(
1603 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1604 failrec->logical, failrec->len);
1605 failrec->last_mirror++;
1606 if (!state) {
1607 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
1608 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1609 failrec->start,
1610 EXTENT_LOCKED);
1611 if (state && state->start != failrec->start)
1612 state = NULL;
1613 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
1614 }
1615 if (!state || failrec->last_mirror > num_copies) {
1616 set_state_private(failure_tree, failrec->start, 0);
1617 clear_extent_bits(failure_tree, failrec->start,
1618 failrec->start + failrec->len - 1,
1619 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1620 kfree(failrec);
1621 return -EIO;
1622 }
1623 bio = bio_alloc(GFP_NOFS, 1);
1624 bio->bi_private = state;
1625 bio->bi_end_io = failed_bio->bi_end_io;
1626 bio->bi_sector = failrec->logical >> 9;
1627 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001628 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001629 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001630 if (failed_bio->bi_rw & (1 << BIO_RW))
1631 rw = WRITE;
1632 else
1633 rw = READ;
1634
1635 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001636 failrec->last_mirror,
1637 bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001638 return 0;
1639}
1640
Chris Masond352ac62008-09-29 15:18:18 -04001641/*
1642 * each time an IO finishes, we do a fast check in the IO failure tree
1643 * to see if we need to process or clean up an io_failure_record
1644 */
Chris Mason1259ab72008-05-12 13:39:03 -04001645int btrfs_clean_io_failures(struct inode *inode, u64 start)
1646{
1647 u64 private;
1648 u64 private_failure;
1649 struct io_failure_record *failure;
1650 int ret;
1651
1652 private = 0;
1653 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1654 (u64)-1, 1, EXTENT_DIRTY)) {
1655 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1656 start, &private_failure);
1657 if (ret == 0) {
1658 failure = (struct io_failure_record *)(unsigned long)
1659 private_failure;
1660 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1661 failure->start, 0);
1662 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1663 failure->start,
1664 failure->start + failure->len - 1,
1665 EXTENT_DIRTY | EXTENT_LOCKED,
1666 GFP_NOFS);
1667 kfree(failure);
1668 }
1669 }
Chris Mason7e383262008-04-09 16:28:12 -04001670 return 0;
1671}
1672
Chris Masond352ac62008-09-29 15:18:18 -04001673/*
1674 * when reads are done, we need to check csums to verify the data is correct
1675 * if there's a match, we allow the bio to finish. If not, we go through
1676 * the io_failure_record routines to find good copies
1677 */
Chris Mason70dec802008-01-29 09:59:12 -05001678int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
1679 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001680{
Chris Mason35ebb932007-10-30 16:56:53 -04001681 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001682 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001683 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001684 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001685 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001686 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001687 struct btrfs_root *root = BTRFS_I(inode)->root;
1688 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -04001689 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -05001690
Yanb98b6762008-01-08 15:54:37 -05001691 if (btrfs_test_opt(root, NODATASUM) ||
1692 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -05001693 return 0;
Yanc2e639f2008-02-04 08:57:25 -05001694 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001695 private = state->private;
1696 ret = 0;
1697 } else {
1698 ret = get_state_private(io_tree, start, &private);
1699 }
Jens Axboebbf0d002007-10-19 09:23:07 -04001700 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -04001701 kaddr = kmap_atomic(page, KM_IRQ0);
1702 if (ret) {
1703 goto zeroit;
1704 }
Chris Masonff79f812007-10-15 16:22:25 -04001705 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1706 btrfs_csum_final(csum, (char *)&csum);
1707 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -04001708 goto zeroit;
1709 }
1710 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001711 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -04001712
1713 /* if the io failure tree for this inode is non-empty,
1714 * check to see if we've recovered from a failed IO
1715 */
Chris Mason1259ab72008-05-12 13:39:03 -04001716 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001717 return 0;
1718
1719zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -05001720 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
1721 page->mapping->host->i_ino, (unsigned long long)start, csum,
1722 private);
Chris Masondb945352007-10-15 16:15:53 -04001723 memset(kaddr + offset, 1, end - start + 1);
1724 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -04001725 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001726 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -04001727 if (private == 0)
1728 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001729 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001730}
Chris Masonb888db22007-08-27 16:49:44 -04001731
Josef Bacik7b128762008-07-24 12:17:14 -04001732/*
1733 * This creates an orphan entry for the given inode in case something goes
1734 * wrong in the middle of an unlink/truncate.
1735 */
1736int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1737{
1738 struct btrfs_root *root = BTRFS_I(inode)->root;
1739 int ret = 0;
1740
Yanbcc63ab2008-07-30 16:29:20 -04001741 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001742
1743 /* already on the orphan list, we're good */
1744 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001745 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001746 return 0;
1747 }
1748
1749 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
1750
Yanbcc63ab2008-07-30 16:29:20 -04001751 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001752
1753 /*
1754 * insert an orphan item to track this unlinked/truncated file
1755 */
1756 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
1757
1758 return ret;
1759}
1760
1761/*
1762 * We have done the truncate/delete so we can go ahead and remove the orphan
1763 * item for this particular inode.
1764 */
1765int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
1766{
1767 struct btrfs_root *root = BTRFS_I(inode)->root;
1768 int ret = 0;
1769
Yanbcc63ab2008-07-30 16:29:20 -04001770 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001771
1772 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001773 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001774 return 0;
1775 }
1776
1777 list_del_init(&BTRFS_I(inode)->i_orphan);
1778 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04001779 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001780 return 0;
1781 }
1782
Yanbcc63ab2008-07-30 16:29:20 -04001783 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001784
1785 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
1786
1787 return ret;
1788}
1789
1790/*
1791 * this cleans up any orphans that may be left on the list from the last use
1792 * of this root.
1793 */
1794void btrfs_orphan_cleanup(struct btrfs_root *root)
1795{
1796 struct btrfs_path *path;
1797 struct extent_buffer *leaf;
1798 struct btrfs_item *item;
1799 struct btrfs_key key, found_key;
1800 struct btrfs_trans_handle *trans;
1801 struct inode *inode;
1802 int ret = 0, nr_unlink = 0, nr_truncate = 0;
1803
Josef Bacik7b128762008-07-24 12:17:14 -04001804 path = btrfs_alloc_path();
1805 if (!path)
1806 return;
1807 path->reada = -1;
1808
1809 key.objectid = BTRFS_ORPHAN_OBJECTID;
1810 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1811 key.offset = (u64)-1;
1812
Josef Bacik7b128762008-07-24 12:17:14 -04001813
1814 while (1) {
1815 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1816 if (ret < 0) {
1817 printk(KERN_ERR "Error searching slot for orphan: %d"
1818 "\n", ret);
1819 break;
1820 }
1821
1822 /*
1823 * if ret == 0 means we found what we were searching for, which
1824 * is weird, but possible, so only screw with path if we didnt
1825 * find the key and see if we have stuff that matches
1826 */
1827 if (ret > 0) {
1828 if (path->slots[0] == 0)
1829 break;
1830 path->slots[0]--;
1831 }
1832
1833 /* pull out the item */
1834 leaf = path->nodes[0];
1835 item = btrfs_item_nr(leaf, path->slots[0]);
1836 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1837
1838 /* make sure the item matches what we want */
1839 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
1840 break;
1841 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
1842 break;
1843
1844 /* release the path since we're done with it */
1845 btrfs_release_path(root, path);
1846
1847 /*
1848 * this is where we are basically btrfs_lookup, without the
1849 * crossing root thing. we store the inode number in the
1850 * offset of the orphan item.
1851 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001852 inode = btrfs_iget_locked(root->fs_info->sb,
Josef Bacik7b128762008-07-24 12:17:14 -04001853 found_key.offset, root);
1854 if (!inode)
1855 break;
1856
1857 if (inode->i_state & I_NEW) {
1858 BTRFS_I(inode)->root = root;
1859
1860 /* have to set the location manually */
1861 BTRFS_I(inode)->location.objectid = inode->i_ino;
1862 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
1863 BTRFS_I(inode)->location.offset = 0;
1864
1865 btrfs_read_locked_inode(inode);
1866 unlock_new_inode(inode);
1867 }
1868
1869 /*
1870 * add this inode to the orphan list so btrfs_orphan_del does
1871 * the proper thing when we hit it
1872 */
Yanbcc63ab2008-07-30 16:29:20 -04001873 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001874 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04001875 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001876
1877 /*
1878 * if this is a bad inode, means we actually succeeded in
1879 * removing the inode, but not the orphan record, which means
1880 * we need to manually delete the orphan since iput will just
1881 * do a destroy_inode
1882 */
1883 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001884 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04001885 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001886 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04001887 iput(inode);
1888 continue;
1889 }
1890
1891 /* if we have links, this was a truncate, lets do that */
1892 if (inode->i_nlink) {
1893 nr_truncate++;
1894 btrfs_truncate(inode);
1895 } else {
1896 nr_unlink++;
1897 }
1898
1899 /* this will do delete_inode and everything for us */
1900 iput(inode);
1901 }
1902
1903 if (nr_unlink)
1904 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
1905 if (nr_truncate)
1906 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
1907
1908 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04001909}
1910
Chris Masond352ac62008-09-29 15:18:18 -04001911/*
1912 * read an inode from the btree into the in-memory inode
1913 */
Chris Mason39279cc2007-06-12 06:35:45 -04001914void btrfs_read_locked_inode(struct inode *inode)
1915{
1916 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001917 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001918 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04001919 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04001920 struct btrfs_root *root = BTRFS_I(inode)->root;
1921 struct btrfs_key location;
1922 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04001923 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04001924 int ret;
1925
1926 path = btrfs_alloc_path();
1927 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001928 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05001929
Chris Mason39279cc2007-06-12 06:35:45 -04001930 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001931 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001932 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04001933
Chris Mason5f39d392007-10-15 16:14:19 -04001934 leaf = path->nodes[0];
1935 inode_item = btrfs_item_ptr(leaf, path->slots[0],
1936 struct btrfs_inode_item);
1937
1938 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
1939 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
1940 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
1941 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04001942 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04001943
1944 tspec = btrfs_inode_atime(inode_item);
1945 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1946 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1947
1948 tspec = btrfs_inode_mtime(inode_item);
1949 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1950 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1951
1952 tspec = btrfs_inode_ctime(inode_item);
1953 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1954 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1955
Yan Zhenga76a3cd2008-10-09 11:46:29 -04001956 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04001957 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
1958 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04001959 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001960 rdev = btrfs_inode_rdev(leaf, inode_item);
1961
Josef Bacikaec74772008-07-24 12:12:38 -04001962 BTRFS_I(inode)->index_cnt = (u64)-1;
1963
Chris Mason5f39d392007-10-15 16:14:19 -04001964 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04001965 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
1966 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -05001967 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -05001968 if (!BTRFS_I(inode)->block_group) {
1969 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -04001970 NULL, 0,
1971 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -05001972 }
Chris Mason39279cc2007-06-12 06:35:45 -04001973 btrfs_free_path(path);
1974 inode_item = NULL;
1975
Chris Mason39279cc2007-06-12 06:35:45 -04001976 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04001977 case S_IFREG:
1978 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001979 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05001980 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001981 inode->i_fop = &btrfs_file_operations;
1982 inode->i_op = &btrfs_file_inode_operations;
1983 break;
1984 case S_IFDIR:
1985 inode->i_fop = &btrfs_dir_file_operations;
1986 if (root == root->fs_info->tree_root)
1987 inode->i_op = &btrfs_dir_ro_inode_operations;
1988 else
1989 inode->i_op = &btrfs_dir_inode_operations;
1990 break;
1991 case S_IFLNK:
1992 inode->i_op = &btrfs_symlink_inode_operations;
1993 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04001994 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001995 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04001996 default:
1997 init_special_inode(inode, inode->i_mode, rdev);
1998 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001999 }
2000 return;
2001
2002make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002003 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002004 make_bad_inode(inode);
2005}
2006
Chris Masond352ac62008-09-29 15:18:18 -04002007/*
2008 * given a leaf and an inode, copy the inode fields into the leaf
2009 */
Chris Masone02119d2008-09-05 16:13:11 -04002010static void fill_inode_item(struct btrfs_trans_handle *trans,
2011 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002012 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002013 struct inode *inode)
2014{
Chris Mason5f39d392007-10-15 16:14:19 -04002015 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2016 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002017 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002018 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2019 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2020
2021 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2022 inode->i_atime.tv_sec);
2023 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2024 inode->i_atime.tv_nsec);
2025
2026 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2027 inode->i_mtime.tv_sec);
2028 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2029 inode->i_mtime.tv_nsec);
2030
2031 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2032 inode->i_ctime.tv_sec);
2033 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2034 inode->i_ctime.tv_nsec);
2035
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002036 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002037 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
2038 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002039 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002040 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -04002041 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -04002042 BTRFS_I(inode)->block_group->key.objectid);
2043}
2044
Chris Masond352ac62008-09-29 15:18:18 -04002045/*
2046 * copy everything in the in-memory inode into the btree.
2047 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002048int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -04002049 struct btrfs_root *root,
2050 struct inode *inode)
2051{
2052 struct btrfs_inode_item *inode_item;
2053 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002054 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002055 int ret;
2056
2057 path = btrfs_alloc_path();
2058 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002059 ret = btrfs_lookup_inode(trans, root, path,
2060 &BTRFS_I(inode)->location, 1);
2061 if (ret) {
2062 if (ret > 0)
2063 ret = -ENOENT;
2064 goto failed;
2065 }
2066
Chris Mason5f39d392007-10-15 16:14:19 -04002067 leaf = path->nodes[0];
2068 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002069 struct btrfs_inode_item);
2070
Chris Masone02119d2008-09-05 16:13:11 -04002071 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002072 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002073 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002074 ret = 0;
2075failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002076 btrfs_free_path(path);
2077 return ret;
2078}
2079
2080
Chris Masond352ac62008-09-29 15:18:18 -04002081/*
2082 * unlink helper that gets used here in inode.c and in the tree logging
2083 * recovery code. It remove a link in a directory with a given name, and
2084 * also drops the back refs in the inode to the directory
2085 */
Chris Masone02119d2008-09-05 16:13:11 -04002086int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2087 struct btrfs_root *root,
2088 struct inode *dir, struct inode *inode,
2089 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002090{
2091 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002092 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002093 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002094 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002095 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002096 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002097
2098 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002099 if (!path) {
2100 ret = -ENOMEM;
2101 goto err;
2102 }
2103
Chris Mason39279cc2007-06-12 06:35:45 -04002104 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2105 name, name_len, -1);
2106 if (IS_ERR(di)) {
2107 ret = PTR_ERR(di);
2108 goto err;
2109 }
2110 if (!di) {
2111 ret = -ENOENT;
2112 goto err;
2113 }
Chris Mason5f39d392007-10-15 16:14:19 -04002114 leaf = path->nodes[0];
2115 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002116 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002117 if (ret)
2118 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002119 btrfs_release_path(root, path);
2120
Josef Bacikaec74772008-07-24 12:12:38 -04002121 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002122 inode->i_ino,
2123 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002124 if (ret) {
2125 printk("failed to delete reference to %.*s, "
2126 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002127 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002128 goto err;
2129 }
2130
Chris Mason39279cc2007-06-12 06:35:45 -04002131 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002132 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002133 if (IS_ERR(di)) {
2134 ret = PTR_ERR(di);
2135 goto err;
2136 }
2137 if (!di) {
2138 ret = -ENOENT;
2139 goto err;
2140 }
2141 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002142 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002143
Chris Masone02119d2008-09-05 16:13:11 -04002144 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2145 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002146 BUG_ON(ret != 0 && ret != -ENOENT);
2147 if (ret != -ENOENT)
2148 BTRFS_I(dir)->log_dirty_trans = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04002149
2150 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2151 dir, index);
2152 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002153err:
2154 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002155 if (ret)
2156 goto out;
2157
2158 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2159 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2160 btrfs_update_inode(trans, root, dir);
2161 btrfs_drop_nlink(inode);
2162 ret = btrfs_update_inode(trans, root, inode);
2163 dir->i_sb->s_dirt = 1;
2164out:
Chris Mason39279cc2007-06-12 06:35:45 -04002165 return ret;
2166}
2167
2168static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2169{
2170 struct btrfs_root *root;
2171 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002172 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002173 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002174 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002175
2176 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002177
2178 ret = btrfs_check_free_space(root, 1, 1);
2179 if (ret)
2180 goto fail;
2181
Chris Mason39279cc2007-06-12 06:35:45 -04002182 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002183
Chris Mason39279cc2007-06-12 06:35:45 -04002184 btrfs_set_trans_block_group(trans, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002185 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2186 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002187
2188 if (inode->i_nlink == 0)
2189 ret = btrfs_orphan_add(trans, inode);
2190
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002191 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002192
Chris Mason89ce8a62008-06-25 16:01:31 -04002193 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002194fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002195 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002196 return ret;
2197}
2198
2199static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2200{
2201 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002202 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002203 int ret;
2204 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002205 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002206 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002207
Chris Mason3394e162008-11-17 20:42:26 -05002208 /*
2209 * the FIRST_FREE_OBJECTID check makes sure we don't try to rmdir
2210 * the root of a subvolume or snapshot
2211 */
2212 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
2213 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) {
Yan134d4512007-10-25 15:49:25 -04002214 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04002215 }
Yan134d4512007-10-25 15:49:25 -04002216
Chris Mason1832a6d2007-12-21 16:27:21 -05002217 ret = btrfs_check_free_space(root, 1, 1);
2218 if (ret)
2219 goto fail;
2220
Chris Mason39279cc2007-06-12 06:35:45 -04002221 trans = btrfs_start_transaction(root, 1);
2222 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002223
Josef Bacik7b128762008-07-24 12:17:14 -04002224 err = btrfs_orphan_add(trans, inode);
2225 if (err)
2226 goto fail_trans;
2227
Chris Mason39279cc2007-06-12 06:35:45 -04002228 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002229 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2230 dentry->d_name.name, dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002231 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04002232 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002233 }
Chris Mason39544012007-12-12 14:38:19 -05002234
Josef Bacik7b128762008-07-24 12:17:14 -04002235fail_trans:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002236 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002237 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002238fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002239 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002240
Chris Mason39279cc2007-06-12 06:35:45 -04002241 if (ret && !err)
2242 err = ret;
2243 return err;
2244}
2245
Chris Mason39279cc2007-06-12 06:35:45 -04002246/*
Chris Mason323ac952008-10-01 19:05:46 -04002247 * when truncating bytes in a file, it is possible to avoid reading
2248 * the leaves that contain only checksum items. This can be the
2249 * majority of the IO required to delete a large file, but it must
2250 * be done carefully.
2251 *
2252 * The keys in the level just above the leaves are checked to make sure
2253 * the lowest key in a given leaf is a csum key, and starts at an offset
2254 * after the new size.
2255 *
2256 * Then the key for the next leaf is checked to make sure it also has
2257 * a checksum item for the same file. If it does, we know our target leaf
2258 * contains only checksum items, and it can be safely freed without reading
2259 * it.
2260 *
2261 * This is just an optimization targeted at large files. It may do
2262 * nothing. It will return 0 unless things went badly.
2263 */
2264static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2265 struct btrfs_root *root,
2266 struct btrfs_path *path,
2267 struct inode *inode, u64 new_size)
2268{
2269 struct btrfs_key key;
2270 int ret;
2271 int nritems;
2272 struct btrfs_key found_key;
2273 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002274 struct btrfs_leaf_ref *ref;
2275 u64 leaf_gen;
2276 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002277
2278 path->lowest_level = 1;
2279 key.objectid = inode->i_ino;
2280 key.type = BTRFS_CSUM_ITEM_KEY;
2281 key.offset = new_size;
2282again:
2283 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2284 if (ret < 0)
2285 goto out;
2286
2287 if (path->nodes[1] == NULL) {
2288 ret = 0;
2289 goto out;
2290 }
2291 ret = 0;
2292 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2293 nritems = btrfs_header_nritems(path->nodes[1]);
2294
2295 if (!nritems)
2296 goto out;
2297
2298 if (path->slots[1] >= nritems)
2299 goto next_node;
2300
2301 /* did we find a key greater than anything we want to delete? */
2302 if (found_key.objectid > inode->i_ino ||
2303 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2304 goto out;
2305
2306 /* we check the next key in the node to make sure the leave contains
2307 * only checksum items. This comparison doesn't work if our
2308 * leaf is the last one in the node
2309 */
2310 if (path->slots[1] + 1 >= nritems) {
2311next_node:
2312 /* search forward from the last key in the node, this
2313 * will bring us into the next node in the tree
2314 */
2315 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2316
2317 /* unlikely, but we inc below, so check to be safe */
2318 if (found_key.offset == (u64)-1)
2319 goto out;
2320
2321 /* search_forward needs a path with locks held, do the
2322 * search again for the original key. It is possible
2323 * this will race with a balance and return a path that
2324 * we could modify, but this drop is just an optimization
2325 * and is allowed to miss some leaves.
2326 */
2327 btrfs_release_path(root, path);
2328 found_key.offset++;
2329
2330 /* setup a max key for search_forward */
2331 other_key.offset = (u64)-1;
2332 other_key.type = key.type;
2333 other_key.objectid = key.objectid;
2334
2335 path->keep_locks = 1;
2336 ret = btrfs_search_forward(root, &found_key, &other_key,
2337 path, 0, 0);
2338 path->keep_locks = 0;
2339 if (ret || found_key.objectid != key.objectid ||
2340 found_key.type != key.type) {
2341 ret = 0;
2342 goto out;
2343 }
2344
2345 key.offset = found_key.offset;
2346 btrfs_release_path(root, path);
2347 cond_resched();
2348 goto again;
2349 }
2350
2351 /* we know there's one more slot after us in the tree,
2352 * read that key so we can verify it is also a checksum item
2353 */
2354 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2355
2356 if (found_key.objectid < inode->i_ino)
2357 goto next_key;
2358
2359 if (found_key.type != key.type || found_key.offset < new_size)
2360 goto next_key;
2361
2362 /*
2363 * if the key for the next leaf isn't a csum key from this objectid,
2364 * we can't be sure there aren't good items inside this leaf.
2365 * Bail out
2366 */
2367 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2368 goto out;
2369
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002370 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2371 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002372 /*
2373 * it is safe to delete this leaf, it contains only
2374 * csum items from this inode at an offset >= new_size
2375 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002376 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002377 BUG_ON(ret);
2378
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002379 if (root->ref_cows && leaf_gen < trans->transid) {
2380 ref = btrfs_alloc_leaf_ref(root, 0);
2381 if (ref) {
2382 ref->root_gen = root->root_key.offset;
2383 ref->bytenr = leaf_start;
2384 ref->owner = 0;
2385 ref->generation = leaf_gen;
2386 ref->nritems = 0;
2387
2388 ret = btrfs_add_leaf_ref(root, ref, 0);
2389 WARN_ON(ret);
2390 btrfs_free_leaf_ref(root, ref);
2391 } else {
2392 WARN_ON(1);
2393 }
2394 }
Chris Mason323ac952008-10-01 19:05:46 -04002395next_key:
2396 btrfs_release_path(root, path);
2397
2398 if (other_key.objectid == inode->i_ino &&
2399 other_key.type == key.type && other_key.offset > key.offset) {
2400 key.offset = other_key.offset;
2401 cond_resched();
2402 goto again;
2403 }
2404 ret = 0;
2405out:
2406 /* fixup any changes we've made to the path */
2407 path->lowest_level = 0;
2408 path->keep_locks = 0;
2409 btrfs_release_path(root, path);
2410 return ret;
2411}
2412
2413/*
Chris Mason39279cc2007-06-12 06:35:45 -04002414 * this can truncate away extent items, csum items and directory items.
2415 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002416 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002417 *
2418 * csum items that cross the new i_size are truncated to the new size
2419 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002420 *
2421 * min_type is the minimum key type to truncate down to. If set to 0, this
2422 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002423 */
Chris Masone02119d2008-09-05 16:13:11 -04002424noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2425 struct btrfs_root *root,
2426 struct inode *inode,
2427 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002428{
2429 int ret;
2430 struct btrfs_path *path;
2431 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002432 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002433 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04002434 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002435 struct btrfs_file_extent_item *fi;
2436 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002437 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002438 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002439 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05002440 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002441 int found_extent;
2442 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002443 int pending_del_nr = 0;
2444 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002445 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002446 int encoding;
Chris Mason3b951512008-04-17 11:29:12 -04002447 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002448
Chris Masone02119d2008-09-05 16:13:11 -04002449 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002450 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002451 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04002452 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04002453 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04002454
Chris Mason39279cc2007-06-12 06:35:45 -04002455 /* FIXME, add redo link to tree so we don't leak on crash */
2456 key.objectid = inode->i_ino;
2457 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002458 key.type = (u8)-1;
2459
Chris Mason85e21ba2008-01-29 15:11:36 -05002460 btrfs_init_path(path);
Chris Mason323ac952008-10-01 19:05:46 -04002461
2462 ret = drop_csum_leaves(trans, root, path, inode, new_size);
2463 BUG_ON(ret);
2464
Chris Mason85e21ba2008-01-29 15:11:36 -05002465search_again:
2466 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2467 if (ret < 0) {
2468 goto error;
2469 }
2470 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002471 /* there are no items in the tree for us to truncate, we're
2472 * done
2473 */
2474 if (path->slots[0] == 0) {
2475 ret = 0;
2476 goto error;
2477 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002478 path->slots[0]--;
2479 }
2480
Chris Mason39279cc2007-06-12 06:35:45 -04002481 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002482 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002483 leaf = path->nodes[0];
2484 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2485 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002486 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002487
Chris Mason5f39d392007-10-15 16:14:19 -04002488 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002489 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002490
Chris Mason85e21ba2008-01-29 15:11:36 -05002491 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002492 break;
2493
Chris Mason5f39d392007-10-15 16:14:19 -04002494 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002495 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002496 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002497 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002498 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002499 encoding = btrfs_file_extent_compression(leaf, fi);
2500 encoding |= btrfs_file_extent_encryption(leaf, fi);
2501 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2502
Chris Mason179e29e2007-11-01 11:28:41 -04002503 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002504 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002505 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002506 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002507 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002508 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002509 }
Yan008630c2007-11-07 13:31:09 -05002510 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002511 }
2512 if (found_type == BTRFS_CSUM_ITEM_KEY) {
2513 ret = btrfs_csum_truncate(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002514 new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04002515 BUG_ON(ret);
2516 }
Chris Masone02119d2008-09-05 16:13:11 -04002517 if (item_end < new_size) {
Chris Masonb888db22007-08-27 16:49:44 -04002518 if (found_type == BTRFS_DIR_ITEM_KEY) {
2519 found_type = BTRFS_INODE_ITEM_KEY;
2520 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
2521 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05002522 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
2523 found_type = BTRFS_XATTR_ITEM_KEY;
2524 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
2525 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04002526 } else if (found_type) {
2527 found_type--;
2528 } else {
2529 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002530 }
Yana61721d2007-09-17 11:08:38 -04002531 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05002532 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04002533 }
Chris Masone02119d2008-09-05 16:13:11 -04002534 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04002535 del_item = 1;
2536 else
2537 del_item = 0;
2538 found_extent = 0;
2539
2540 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002541 if (found_type != BTRFS_EXTENT_DATA_KEY)
2542 goto delete;
2543
2544 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002545 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002546 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002547 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002548 u64 orig_num_bytes =
2549 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002550 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002551 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002552 extent_num_bytes = extent_num_bytes &
2553 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002554 btrfs_set_file_extent_num_bytes(leaf, fi,
2555 extent_num_bytes);
2556 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002557 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002558 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002559 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002560 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002561 } else {
Chris Masondb945352007-10-15 16:15:53 -04002562 extent_num_bytes =
2563 btrfs_file_extent_disk_num_bytes(leaf,
2564 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002565 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002566 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002567 if (extent_start != 0) {
2568 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002569 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002570 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002571 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002572 root_gen = btrfs_header_generation(leaf);
Chris Masond8d5f3e2007-12-11 12:42:00 -05002573 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002574 }
Chris Mason90692182008-02-08 13:49:28 -05002575 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002576 /*
2577 * we can't truncate inline items that have had
2578 * special encodings
2579 */
2580 if (!del_item &&
2581 btrfs_file_extent_compression(leaf, fi) == 0 &&
2582 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2583 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002584 u32 size = new_size - found_key.offset;
2585
2586 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002587 inode_sub_bytes(inode, item_end + 1 -
2588 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04002589 }
2590 size =
2591 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05002592 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002593 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05002594 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04002595 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002596 inode_sub_bytes(inode, item_end + 1 -
2597 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05002598 }
Chris Mason39279cc2007-06-12 06:35:45 -04002599 }
Chris Mason179e29e2007-11-01 11:28:41 -04002600delete:
Chris Mason39279cc2007-06-12 06:35:45 -04002601 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05002602 if (!pending_del_nr) {
2603 /* no pending yet, add ourselves */
2604 pending_del_slot = path->slots[0];
2605 pending_del_nr = 1;
2606 } else if (pending_del_nr &&
2607 path->slots[0] + 1 == pending_del_slot) {
2608 /* hop on the pending chunk */
2609 pending_del_nr++;
2610 pending_del_slot = path->slots[0];
2611 } else {
2612 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
2613 }
Chris Mason39279cc2007-06-12 06:35:45 -04002614 } else {
2615 break;
2616 }
Chris Mason39279cc2007-06-12 06:35:45 -04002617 if (found_extent) {
2618 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05002619 extent_num_bytes,
Zheng Yan31840ae2008-09-23 13:14:14 -04002620 leaf->start, root_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04002621 root_gen, inode->i_ino, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002622 BUG_ON(ret);
2623 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002624next:
2625 if (path->slots[0] == 0) {
2626 if (pending_del_nr)
2627 goto del_pending;
2628 btrfs_release_path(root, path);
2629 goto search_again;
2630 }
2631
2632 path->slots[0]--;
2633 if (pending_del_nr &&
2634 path->slots[0] + 1 != pending_del_slot) {
2635 struct btrfs_key debug;
2636del_pending:
2637 btrfs_item_key_to_cpu(path->nodes[0], &debug,
2638 pending_del_slot);
2639 ret = btrfs_del_items(trans, root, path,
2640 pending_del_slot,
2641 pending_del_nr);
2642 BUG_ON(ret);
2643 pending_del_nr = 0;
2644 btrfs_release_path(root, path);
2645 goto search_again;
2646 }
Chris Mason39279cc2007-06-12 06:35:45 -04002647 }
2648 ret = 0;
2649error:
Chris Mason85e21ba2008-01-29 15:11:36 -05002650 if (pending_del_nr) {
2651 ret = btrfs_del_items(trans, root, path, pending_del_slot,
2652 pending_del_nr);
2653 }
Chris Mason39279cc2007-06-12 06:35:45 -04002654 btrfs_free_path(path);
2655 inode->i_sb->s_dirt = 1;
2656 return ret;
2657}
2658
Chris Masona52d9a82007-08-27 16:49:44 -04002659/*
2660 * taken from block_truncate_page, but does cow as it zeros out
2661 * any bytes left in the last page in the file.
2662 */
2663static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
2664{
2665 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04002666 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002667 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2668 struct btrfs_ordered_extent *ordered;
2669 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04002670 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04002671 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2672 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2673 struct page *page;
2674 int ret = 0;
2675 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002676 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04002677
2678 if ((offset & (blocksize - 1)) == 0)
2679 goto out;
2680
2681 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04002682again:
Chris Masona52d9a82007-08-27 16:49:44 -04002683 page = grab_cache_page(mapping, index);
2684 if (!page)
2685 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002686
2687 page_start = page_offset(page);
2688 page_end = page_start + PAGE_CACHE_SIZE - 1;
2689
Chris Masona52d9a82007-08-27 16:49:44 -04002690 if (!PageUptodate(page)) {
2691 ret = btrfs_readpage(NULL, page);
2692 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04002693 if (page->mapping != mapping) {
2694 unlock_page(page);
2695 page_cache_release(page);
2696 goto again;
2697 }
Chris Masona52d9a82007-08-27 16:49:44 -04002698 if (!PageUptodate(page)) {
2699 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04002700 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04002701 }
2702 }
Chris Mason211c17f2008-05-15 09:13:45 -04002703 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002704
2705 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2706 set_page_extent_mapped(page);
2707
2708 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2709 if (ordered) {
2710 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2711 unlock_page(page);
2712 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002713 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002714 btrfs_put_ordered_extent(ordered);
2715 goto again;
2716 }
2717
Chris Masonea8c2812008-08-04 23:17:27 -04002718 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002719 ret = 0;
2720 if (offset != PAGE_CACHE_SIZE) {
2721 kaddr = kmap(page);
2722 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2723 flush_dcache_page(page);
2724 kunmap(page);
2725 }
Chris Mason247e7432008-07-17 12:53:51 -04002726 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002727 set_page_dirty(page);
2728 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002729
Chris Mason89642222008-07-24 09:41:53 -04002730out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002731 unlock_page(page);
2732 page_cache_release(page);
2733out:
2734 return ret;
2735}
2736
Yan Zheng9036c102008-10-30 14:19:41 -04002737int btrfs_cont_expand(struct inode *inode, loff_t size)
2738{
2739 struct btrfs_trans_handle *trans;
2740 struct btrfs_root *root = BTRFS_I(inode)->root;
2741 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2742 struct extent_map *em;
2743 u64 mask = root->sectorsize - 1;
2744 u64 hole_start = (inode->i_size + mask) & ~mask;
2745 u64 block_end = (size + mask) & ~mask;
2746 u64 last_byte;
2747 u64 cur_offset;
2748 u64 hole_size;
2749 int err;
2750
2751 if (size <= hole_start)
2752 return 0;
2753
2754 err = btrfs_check_free_space(root, 1, 0);
2755 if (err)
2756 return err;
2757
2758 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2759
2760 while (1) {
2761 struct btrfs_ordered_extent *ordered;
2762 btrfs_wait_ordered_range(inode, hole_start,
2763 block_end - hole_start);
2764 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2765 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
2766 if (!ordered)
2767 break;
2768 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2769 btrfs_put_ordered_extent(ordered);
2770 }
2771
2772 trans = btrfs_start_transaction(root, 1);
2773 btrfs_set_trans_block_group(trans, inode);
2774
2775 cur_offset = hole_start;
2776 while (1) {
2777 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2778 block_end - cur_offset, 0);
2779 BUG_ON(IS_ERR(em) || !em);
2780 last_byte = min(extent_map_end(em), block_end);
2781 last_byte = (last_byte + mask) & ~mask;
2782 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05002783 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04002784 hole_size = last_byte - cur_offset;
Chris Mason771ed682008-11-06 22:02:51 -05002785 err = btrfs_drop_extents(trans, root, inode,
2786 cur_offset,
2787 cur_offset + hole_size,
2788 cur_offset, &hint_byte);
2789 if (err)
2790 break;
Yan Zheng9036c102008-10-30 14:19:41 -04002791 err = btrfs_insert_file_extent(trans, root,
2792 inode->i_ino, cur_offset, 0,
2793 0, hole_size, 0, hole_size,
2794 0, 0, 0);
2795 btrfs_drop_extent_cache(inode, hole_start,
2796 last_byte - 1, 0);
2797 }
2798 free_extent_map(em);
2799 cur_offset = last_byte;
2800 if (err || cur_offset >= block_end)
2801 break;
2802 }
2803
2804 btrfs_end_transaction(trans, root);
2805 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2806 return err;
2807}
2808
Chris Mason39279cc2007-06-12 06:35:45 -04002809static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
2810{
2811 struct inode *inode = dentry->d_inode;
2812 int err;
2813
2814 err = inode_change_ok(inode, attr);
2815 if (err)
2816 return err;
2817
2818 if (S_ISREG(inode->i_mode) &&
2819 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
Yan Zheng9036c102008-10-30 14:19:41 -04002820 err = btrfs_cont_expand(inode, attr->ia_size);
Chris Mason54aa1f42007-06-22 14:16:25 -04002821 if (err)
2822 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04002823 }
Yan Zheng9036c102008-10-30 14:19:41 -04002824
Chris Mason39279cc2007-06-12 06:35:45 -04002825 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04002826
2827 if (!err && ((attr->ia_valid & ATTR_MODE)))
2828 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002829 return err;
2830}
Chris Mason61295eb2008-01-14 16:24:38 -05002831
Chris Mason39279cc2007-06-12 06:35:45 -04002832void btrfs_delete_inode(struct inode *inode)
2833{
2834 struct btrfs_trans_handle *trans;
2835 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002836 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002837 int ret;
2838
2839 truncate_inode_pages(&inode->i_data, 0);
2840 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04002841 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002842 goto no_delete;
2843 }
Chris Mason4a096752008-07-21 10:29:44 -04002844 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04002845
Chris Masondbe674a2008-07-17 12:54:05 -04002846 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002847 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002848
Chris Mason39279cc2007-06-12 06:35:45 -04002849 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002850 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04002851 if (ret) {
2852 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002853 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04002854 }
2855
2856 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05002857
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002858 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05002859 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002860
Chris Mason39279cc2007-06-12 06:35:45 -04002861 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002862 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002863 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04002864
2865no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002866 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04002867 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002868 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002869no_delete:
2870 clear_inode(inode);
2871}
2872
2873/*
2874 * this returns the key found in the dir entry in the location pointer.
2875 * If no dir entries were found, location->objectid is 0.
2876 */
2877static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
2878 struct btrfs_key *location)
2879{
2880 const char *name = dentry->d_name.name;
2881 int namelen = dentry->d_name.len;
2882 struct btrfs_dir_item *di;
2883 struct btrfs_path *path;
2884 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04002885 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002886
2887 path = btrfs_alloc_path();
2888 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05002889
Chris Mason39279cc2007-06-12 06:35:45 -04002890 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
2891 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04002892 if (IS_ERR(di))
2893 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04002894 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05002895 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04002896 }
Chris Mason5f39d392007-10-15 16:14:19 -04002897 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04002898out:
Chris Mason39279cc2007-06-12 06:35:45 -04002899 btrfs_free_path(path);
2900 return ret;
Chris Mason39544012007-12-12 14:38:19 -05002901out_err:
2902 location->objectid = 0;
2903 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002904}
2905
2906/*
2907 * when we hit a tree root in a directory, the btrfs part of the inode
2908 * needs to be changed to reflect the root directory of the tree root. This
2909 * is kind of like crossing a mount point.
2910 */
2911static int fixup_tree_root_location(struct btrfs_root *root,
2912 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04002913 struct btrfs_root **sub_root,
2914 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04002915{
Chris Mason39279cc2007-06-12 06:35:45 -04002916 struct btrfs_root_item *ri;
2917
2918 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
2919 return 0;
2920 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
2921 return 0;
2922
Josef Bacik58176a92007-08-29 15:47:34 -04002923 *sub_root = btrfs_read_fs_root(root->fs_info, location,
2924 dentry->d_name.name,
2925 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002926 if (IS_ERR(*sub_root))
2927 return PTR_ERR(*sub_root);
2928
2929 ri = &(*sub_root)->root_item;
2930 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04002931 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2932 location->offset = 0;
2933
Chris Mason39279cc2007-06-12 06:35:45 -04002934 return 0;
2935}
2936
Chris Masone02119d2008-09-05 16:13:11 -04002937static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002938{
Chris Masone02119d2008-09-05 16:13:11 -04002939 struct btrfs_inode *bi = BTRFS_I(inode);
2940
2941 bi->i_acl = NULL;
2942 bi->i_default_acl = NULL;
2943
2944 bi->generation = 0;
2945 bi->last_trans = 0;
2946 bi->logged_trans = 0;
2947 bi->delalloc_bytes = 0;
2948 bi->disk_i_size = 0;
2949 bi->flags = 0;
2950 bi->index_cnt = (u64)-1;
Chris Mason49eb7e42008-09-11 15:53:12 -04002951 bi->log_dirty_trans = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002952 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2953 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04002954 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002955 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2956 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04002957 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Masonba1da2f2008-07-17 12:54:15 -04002958 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04002959 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04002960 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04002961 mutex_init(&BTRFS_I(inode)->log_mutex);
2962}
2963
2964static int btrfs_init_locked_inode(struct inode *inode, void *p)
2965{
2966 struct btrfs_iget_args *args = p;
2967 inode->i_ino = args->ino;
2968 init_btrfs_i(inode);
2969 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002970 return 0;
2971}
2972
2973static int btrfs_find_actor(struct inode *inode, void *opaque)
2974{
2975 struct btrfs_iget_args *args = opaque;
2976 return (args->ino == inode->i_ino &&
2977 args->root == BTRFS_I(inode)->root);
2978}
2979
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002980struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
2981 struct btrfs_root *root, int wait)
2982{
2983 struct inode *inode;
2984 struct btrfs_iget_args args;
2985 args.ino = objectid;
2986 args.root = root;
2987
2988 if (wait) {
2989 inode = ilookup5(s, objectid, btrfs_find_actor,
2990 (void *)&args);
2991 } else {
2992 inode = ilookup5_nowait(s, objectid, btrfs_find_actor,
2993 (void *)&args);
2994 }
2995 return inode;
2996}
2997
Chris Mason39279cc2007-06-12 06:35:45 -04002998struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
2999 struct btrfs_root *root)
3000{
3001 struct inode *inode;
3002 struct btrfs_iget_args args;
3003 args.ino = objectid;
3004 args.root = root;
3005
3006 inode = iget5_locked(s, objectid, btrfs_find_actor,
3007 btrfs_init_locked_inode,
3008 (void *)&args);
3009 return inode;
3010}
3011
Balaji Rao1a54ef82008-07-21 02:01:04 +05303012/* Get an inode object given its location and corresponding root.
3013 * Returns in *is_new if the inode was read from disk
3014 */
3015struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
3016 struct btrfs_root *root, int *is_new)
3017{
3018 struct inode *inode;
3019
3020 inode = btrfs_iget_locked(s, location->objectid, root);
3021 if (!inode)
3022 return ERR_PTR(-EACCES);
3023
3024 if (inode->i_state & I_NEW) {
3025 BTRFS_I(inode)->root = root;
3026 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3027 btrfs_read_locked_inode(inode);
3028 unlock_new_inode(inode);
3029 if (is_new)
3030 *is_new = 1;
3031 } else {
3032 if (is_new)
3033 *is_new = 0;
3034 }
3035
3036 return inode;
3037}
3038
Chris Mason3de45862008-11-17 21:02:50 -05003039struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003040{
3041 struct inode * inode;
3042 struct btrfs_inode *bi = BTRFS_I(dir);
3043 struct btrfs_root *root = bi->root;
3044 struct btrfs_root *sub_root = root;
3045 struct btrfs_key location;
Yan Zhengc146afa2008-11-12 14:34:12 -05003046 int ret, new;
Chris Mason39279cc2007-06-12 06:35:45 -04003047
3048 if (dentry->d_name.len > BTRFS_NAME_LEN)
3049 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003050
Chris Mason39279cc2007-06-12 06:35:45 -04003051 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003052
Chris Mason39279cc2007-06-12 06:35:45 -04003053 if (ret < 0)
3054 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003055
Chris Mason39279cc2007-06-12 06:35:45 -04003056 inode = NULL;
3057 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04003058 ret = fixup_tree_root_location(root, &location, &sub_root,
3059 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04003060 if (ret < 0)
3061 return ERR_PTR(ret);
3062 if (ret > 0)
3063 return ERR_PTR(-ENOENT);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303064 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
3065 if (IS_ERR(inode))
3066 return ERR_CAST(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003067 }
Chris Mason3de45862008-11-17 21:02:50 -05003068 return inode;
3069}
3070
3071static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3072 struct nameidata *nd)
3073{
3074 struct inode *inode;
3075
3076 if (dentry->d_name.len > BTRFS_NAME_LEN)
3077 return ERR_PTR(-ENAMETOOLONG);
3078
3079 inode = btrfs_lookup_dentry(dir, dentry);
3080 if (IS_ERR(inode))
3081 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003082
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 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003137 path = btrfs_alloc_path();
3138 path->reada = 2;
3139
Chris Mason39279cc2007-06-12 06:35:45 -04003140 btrfs_set_key_type(&key, key_type);
3141 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003142 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003143
Chris Mason39279cc2007-06-12 06:35:45 -04003144 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3145 if (ret < 0)
3146 goto err;
3147 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003148
3149 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003150 leaf = path->nodes[0];
3151 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003152 slot = path->slots[0];
3153 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003154 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003155 ret = btrfs_next_leaf(root, path);
3156 if (ret)
3157 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003158 leaf = path->nodes[0];
3159 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003160 slot = path->slots[0];
3161 } else {
3162 slot++;
3163 path->slots[0]++;
3164 }
3165 }
Chris Mason3de45862008-11-17 21:02:50 -05003166
Chris Mason39279cc2007-06-12 06:35:45 -04003167 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 Mason3de45862008-11-17 21:02:50 -05003202
3203 /* is this a reference to our own snapshot? If so
3204 * skip it
3205 */
3206 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3207 location.objectid == root->root_key.objectid) {
3208 over = 0;
3209 goto skip;
3210 }
Chris Mason5f39d392007-10-15 16:14:19 -04003211 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003212 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003213 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003214
Chris Mason3de45862008-11-17 21:02:50 -05003215skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003216 if (name_ptr != tmp_name)
3217 kfree(name_ptr);
3218
Chris Mason39279cc2007-06-12 06:35:45 -04003219 if (over)
3220 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003221 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003222 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003223 di_cur += di_len;
3224 di = (struct btrfs_dir_item *)((char *)di + di_len);
3225 }
3226 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003227
3228 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003229 if (key_type == BTRFS_DIR_INDEX_KEY)
3230 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
3231 else
3232 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003233nopos:
3234 ret = 0;
3235err:
Chris Mason39279cc2007-06-12 06:35:45 -04003236 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003237 return ret;
3238}
3239
3240int btrfs_write_inode(struct inode *inode, int wait)
3241{
3242 struct btrfs_root *root = BTRFS_I(inode)->root;
3243 struct btrfs_trans_handle *trans;
3244 int ret = 0;
3245
Yan Zhengc146afa2008-11-12 14:34:12 -05003246 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04003247 return 0;
3248
Chris Mason39279cc2007-06-12 06:35:45 -04003249 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003250 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003251 btrfs_set_trans_block_group(trans, inode);
3252 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003253 }
3254 return ret;
3255}
3256
3257/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003258 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003259 * inode changes. But, it is most likely to find the inode in cache.
3260 * FIXME, needs more benchmarking...there are no reasons other than performance
3261 * to keep or drop this code.
3262 */
3263void btrfs_dirty_inode(struct inode *inode)
3264{
3265 struct btrfs_root *root = BTRFS_I(inode)->root;
3266 struct btrfs_trans_handle *trans;
3267
Chris Masonf9295742008-07-17 12:54:14 -04003268 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003269 btrfs_set_trans_block_group(trans, inode);
3270 btrfs_update_inode(trans, root, inode);
3271 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003272}
3273
Chris Masond352ac62008-09-29 15:18:18 -04003274/*
3275 * find the highest existing sequence number in a directory
3276 * and then set the in-memory index_cnt variable to reflect
3277 * free sequence numbers
3278 */
Josef Bacikaec74772008-07-24 12:12:38 -04003279static int btrfs_set_inode_index_count(struct inode *inode)
3280{
3281 struct btrfs_root *root = BTRFS_I(inode)->root;
3282 struct btrfs_key key, found_key;
3283 struct btrfs_path *path;
3284 struct extent_buffer *leaf;
3285 int ret;
3286
3287 key.objectid = inode->i_ino;
3288 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
3289 key.offset = (u64)-1;
3290
3291 path = btrfs_alloc_path();
3292 if (!path)
3293 return -ENOMEM;
3294
3295 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3296 if (ret < 0)
3297 goto out;
3298 /* FIXME: we should be able to handle this */
3299 if (ret == 0)
3300 goto out;
3301 ret = 0;
3302
3303 /*
3304 * MAGIC NUMBER EXPLANATION:
3305 * since we search a directory based on f_pos we have to start at 2
3306 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
3307 * else has to start at 2
3308 */
3309 if (path->slots[0] == 0) {
3310 BTRFS_I(inode)->index_cnt = 2;
3311 goto out;
3312 }
3313
3314 path->slots[0]--;
3315
3316 leaf = path->nodes[0];
3317 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3318
3319 if (found_key.objectid != inode->i_ino ||
3320 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
3321 BTRFS_I(inode)->index_cnt = 2;
3322 goto out;
3323 }
3324
3325 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
3326out:
3327 btrfs_free_path(path);
3328 return ret;
3329}
3330
Chris Masond352ac62008-09-29 15:18:18 -04003331/*
3332 * helper to find a free sequence number in a given directory. This current
3333 * code is very simple, later versions will do smarter things in the btree
3334 */
Chris Mason3de45862008-11-17 21:02:50 -05003335int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04003336{
3337 int ret = 0;
3338
3339 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
3340 ret = btrfs_set_inode_index_count(dir);
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003341 if (ret) {
Josef Bacikaec74772008-07-24 12:12:38 -04003342 return ret;
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003343 }
Josef Bacikaec74772008-07-24 12:12:38 -04003344 }
3345
Chris Mason00e4e6b2008-08-05 11:18:09 -04003346 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04003347 BTRFS_I(dir)->index_cnt++;
3348
3349 return ret;
3350}
3351
Chris Mason39279cc2007-06-12 06:35:45 -04003352static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
3353 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04003354 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05003355 const char *name, int name_len,
3356 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003357 u64 objectid,
3358 struct btrfs_block_group_cache *group,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003359 int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04003360{
3361 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003362 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04003363 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04003364 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04003365 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05003366 struct btrfs_inode_ref *ref;
3367 struct btrfs_key key[2];
3368 u32 sizes[2];
3369 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003370 int ret;
3371 int owner;
3372
Chris Mason5f39d392007-10-15 16:14:19 -04003373 path = btrfs_alloc_path();
3374 BUG_ON(!path);
3375
Chris Mason39279cc2007-06-12 06:35:45 -04003376 inode = new_inode(root->fs_info->sb);
3377 if (!inode)
3378 return ERR_PTR(-ENOMEM);
3379
Josef Bacikaec74772008-07-24 12:12:38 -04003380 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05003381 ret = btrfs_set_inode_index(dir, index);
Josef Bacikaec74772008-07-24 12:12:38 -04003382 if (ret)
3383 return ERR_PTR(ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003384 }
3385 /*
3386 * index_cnt is ignored for everything but a dir,
3387 * btrfs_get_inode_index_count has an explanation for the magic
3388 * number
3389 */
Chris Masone02119d2008-09-05 16:13:11 -04003390 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003391 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04003392 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04003393 BTRFS_I(inode)->generation = trans->transid;
Chris Masonb888db22007-08-27 16:49:44 -04003394
Chris Mason39279cc2007-06-12 06:35:45 -04003395 if (mode & S_IFDIR)
3396 owner = 0;
3397 else
3398 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04003399 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04003400 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04003401 if (!new_inode_group) {
3402 printk("find_block group failed\n");
3403 new_inode_group = group;
3404 }
3405 BTRFS_I(inode)->block_group = new_inode_group;
Chris Mason9c583092008-01-29 15:15:18 -05003406
3407 key[0].objectid = objectid;
3408 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
3409 key[0].offset = 0;
3410
3411 key[1].objectid = objectid;
3412 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
3413 key[1].offset = ref_objectid;
3414
3415 sizes[0] = sizeof(struct btrfs_inode_item);
3416 sizes[1] = name_len + sizeof(*ref);
3417
3418 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
3419 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04003420 goto fail;
3421
Chris Mason9c583092008-01-29 15:15:18 -05003422 if (objectid > root->highest_inode)
3423 root->highest_inode = objectid;
3424
Chris Mason79683f22008-11-19 22:00:53 -05003425 inode->i_uid = current_fsuid();
3426 inode->i_gid = current_fsgid();
Chris Mason39279cc2007-06-12 06:35:45 -04003427 inode->i_mode = mode;
3428 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003429 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003430 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04003431 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3432 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003433 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003434
3435 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3436 struct btrfs_inode_ref);
3437 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003438 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05003439 ptr = (unsigned long)(ref + 1);
3440 write_extent_buffer(path->nodes[0], name, ptr, name_len);
3441
Chris Mason5f39d392007-10-15 16:14:19 -04003442 btrfs_mark_buffer_dirty(path->nodes[0]);
3443 btrfs_free_path(path);
3444
Chris Mason39279cc2007-06-12 06:35:45 -04003445 location = &BTRFS_I(inode)->location;
3446 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04003447 location->offset = 0;
3448 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
3449
Chris Mason39279cc2007-06-12 06:35:45 -04003450 insert_inode_hash(inode);
3451 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003452fail:
Josef Bacikaec74772008-07-24 12:12:38 -04003453 if (dir)
3454 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04003455 btrfs_free_path(path);
3456 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003457}
3458
3459static inline u8 btrfs_inode_type(struct inode *inode)
3460{
3461 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
3462}
3463
Chris Masond352ac62008-09-29 15:18:18 -04003464/*
3465 * utility function to add 'inode' into 'parent_inode' with
3466 * a give name and a given sequence number.
3467 * if 'add_backref' is true, also insert a backref from the
3468 * inode to the parent directory.
3469 */
Chris Masone02119d2008-09-05 16:13:11 -04003470int btrfs_add_link(struct btrfs_trans_handle *trans,
3471 struct inode *parent_inode, struct inode *inode,
3472 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003473{
3474 int ret;
3475 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04003476 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04003477
Chris Mason39279cc2007-06-12 06:35:45 -04003478 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003479 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
3480 key.offset = 0;
3481
Chris Masone02119d2008-09-05 16:13:11 -04003482 ret = btrfs_insert_dir_item(trans, root, name, name_len,
3483 parent_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04003484 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04003485 index);
Chris Mason39279cc2007-06-12 06:35:45 -04003486 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05003487 if (add_backref) {
3488 ret = btrfs_insert_inode_ref(trans, root,
Chris Masone02119d2008-09-05 16:13:11 -04003489 name, name_len,
3490 inode->i_ino,
3491 parent_inode->i_ino,
3492 index);
Chris Mason9c583092008-01-29 15:15:18 -05003493 }
Chris Masondbe674a2008-07-17 12:54:05 -04003494 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04003495 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04003496 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04003497 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003498 }
3499 return ret;
3500}
3501
3502static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05003503 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003504 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003505{
Chris Masone02119d2008-09-05 16:13:11 -04003506 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3507 inode, dentry->d_name.name,
3508 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003509 if (!err) {
3510 d_instantiate(dentry, inode);
3511 return 0;
3512 }
3513 if (err > 0)
3514 err = -EEXIST;
3515 return err;
3516}
3517
Josef Bacik618e21d2007-07-11 10:18:17 -04003518static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
3519 int mode, dev_t rdev)
3520{
3521 struct btrfs_trans_handle *trans;
3522 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003523 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04003524 int err;
3525 int drop_inode = 0;
3526 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05003527 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003528 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04003529
3530 if (!new_valid_dev(rdev))
3531 return -EINVAL;
3532
Chris Mason1832a6d2007-12-21 16:27:21 -05003533 err = btrfs_check_free_space(root, 1, 0);
3534 if (err)
3535 goto fail;
3536
Josef Bacik618e21d2007-07-11 10:18:17 -04003537 trans = btrfs_start_transaction(root, 1);
3538 btrfs_set_trans_block_group(trans, dir);
3539
3540 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3541 if (err) {
3542 err = -ENOSPC;
3543 goto out_unlock;
3544 }
3545
Josef Bacikaec74772008-07-24 12:12:38 -04003546 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003547 dentry->d_name.len,
3548 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003549 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003550 err = PTR_ERR(inode);
3551 if (IS_ERR(inode))
3552 goto out_unlock;
3553
Josef Bacik33268ea2008-07-24 12:16:36 -04003554 err = btrfs_init_acl(inode, dir);
3555 if (err) {
3556 drop_inode = 1;
3557 goto out_unlock;
3558 }
3559
Josef Bacik618e21d2007-07-11 10:18:17 -04003560 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003561 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003562 if (err)
3563 drop_inode = 1;
3564 else {
3565 inode->i_op = &btrfs_special_inode_operations;
3566 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04003567 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04003568 }
3569 dir->i_sb->s_dirt = 1;
3570 btrfs_update_inode_block_group(trans, inode);
3571 btrfs_update_inode_block_group(trans, dir);
3572out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003573 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003574 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003575fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04003576 if (drop_inode) {
3577 inode_dec_link_count(inode);
3578 iput(inode);
3579 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003580 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04003581 return err;
3582}
3583
Chris Mason39279cc2007-06-12 06:35:45 -04003584static int btrfs_create(struct inode *dir, struct dentry *dentry,
3585 int mode, struct nameidata *nd)
3586{
3587 struct btrfs_trans_handle *trans;
3588 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003589 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003590 int err;
3591 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05003592 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003593 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003594 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003595
Chris Mason1832a6d2007-12-21 16:27:21 -05003596 err = btrfs_check_free_space(root, 1, 0);
3597 if (err)
3598 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003599 trans = btrfs_start_transaction(root, 1);
3600 btrfs_set_trans_block_group(trans, dir);
3601
3602 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3603 if (err) {
3604 err = -ENOSPC;
3605 goto out_unlock;
3606 }
3607
Josef Bacikaec74772008-07-24 12:12:38 -04003608 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003609 dentry->d_name.len,
3610 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003611 objectid, BTRFS_I(dir)->block_group, mode,
3612 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003613 err = PTR_ERR(inode);
3614 if (IS_ERR(inode))
3615 goto out_unlock;
3616
Josef Bacik33268ea2008-07-24 12:16:36 -04003617 err = btrfs_init_acl(inode, dir);
3618 if (err) {
3619 drop_inode = 1;
3620 goto out_unlock;
3621 }
3622
Chris Mason39279cc2007-06-12 06:35:45 -04003623 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003624 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003625 if (err)
3626 drop_inode = 1;
3627 else {
3628 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003629 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003630 inode->i_fop = &btrfs_file_operations;
3631 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003632 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003633 }
3634 dir->i_sb->s_dirt = 1;
3635 btrfs_update_inode_block_group(trans, inode);
3636 btrfs_update_inode_block_group(trans, dir);
3637out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003638 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003639 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003640fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003641 if (drop_inode) {
3642 inode_dec_link_count(inode);
3643 iput(inode);
3644 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003645 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003646 return err;
3647}
3648
3649static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
3650 struct dentry *dentry)
3651{
3652 struct btrfs_trans_handle *trans;
3653 struct btrfs_root *root = BTRFS_I(dir)->root;
3654 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003655 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05003656 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003657 int err;
3658 int drop_inode = 0;
3659
3660 if (inode->i_nlink == 0)
3661 return -ENOENT;
3662
Chris Masone02119d2008-09-05 16:13:11 -04003663 btrfs_inc_nlink(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05003664 err = btrfs_check_free_space(root, 1, 0);
3665 if (err)
3666 goto fail;
Chris Mason3de45862008-11-17 21:02:50 -05003667 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003668 if (err)
3669 goto fail;
3670
Chris Mason39279cc2007-06-12 06:35:45 -04003671 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003672
Chris Mason39279cc2007-06-12 06:35:45 -04003673 btrfs_set_trans_block_group(trans, dir);
3674 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04003675
Chris Mason00e4e6b2008-08-05 11:18:09 -04003676 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04003677
Chris Mason39279cc2007-06-12 06:35:45 -04003678 if (err)
3679 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003680
Chris Mason39279cc2007-06-12 06:35:45 -04003681 dir->i_sb->s_dirt = 1;
3682 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04003683 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003684
Chris Mason54aa1f42007-06-22 14:16:25 -04003685 if (err)
3686 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003687
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003688 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003689 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003690fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003691 if (drop_inode) {
3692 inode_dec_link_count(inode);
3693 iput(inode);
3694 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003695 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003696 return err;
3697}
3698
Chris Mason39279cc2007-06-12 06:35:45 -04003699static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3700{
Chris Masonb9d86662008-05-02 16:13:49 -04003701 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003702 struct btrfs_trans_handle *trans;
3703 struct btrfs_root *root = BTRFS_I(dir)->root;
3704 int err = 0;
3705 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04003706 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003707 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003708 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003709
Chris Mason1832a6d2007-12-21 16:27:21 -05003710 err = btrfs_check_free_space(root, 1, 0);
3711 if (err)
3712 goto out_unlock;
3713
Chris Mason39279cc2007-06-12 06:35:45 -04003714 trans = btrfs_start_transaction(root, 1);
3715 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04003716
Chris Mason39279cc2007-06-12 06:35:45 -04003717 if (IS_ERR(trans)) {
3718 err = PTR_ERR(trans);
3719 goto out_unlock;
3720 }
3721
3722 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3723 if (err) {
3724 err = -ENOSPC;
3725 goto out_unlock;
3726 }
3727
Josef Bacikaec74772008-07-24 12:12:38 -04003728 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003729 dentry->d_name.len,
3730 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003731 BTRFS_I(dir)->block_group, S_IFDIR | mode,
3732 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003733 if (IS_ERR(inode)) {
3734 err = PTR_ERR(inode);
3735 goto out_fail;
3736 }
Chris Mason5f39d392007-10-15 16:14:19 -04003737
Chris Mason39279cc2007-06-12 06:35:45 -04003738 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04003739
3740 err = btrfs_init_acl(inode, dir);
3741 if (err)
3742 goto out_fail;
3743
Chris Mason39279cc2007-06-12 06:35:45 -04003744 inode->i_op = &btrfs_dir_inode_operations;
3745 inode->i_fop = &btrfs_dir_file_operations;
3746 btrfs_set_trans_block_group(trans, inode);
3747
Chris Masondbe674a2008-07-17 12:54:05 -04003748 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003749 err = btrfs_update_inode(trans, root, inode);
3750 if (err)
3751 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003752
Chris Masone02119d2008-09-05 16:13:11 -04003753 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3754 inode, dentry->d_name.name,
3755 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003756 if (err)
3757 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003758
Chris Mason39279cc2007-06-12 06:35:45 -04003759 d_instantiate(dentry, inode);
3760 drop_on_err = 0;
3761 dir->i_sb->s_dirt = 1;
3762 btrfs_update_inode_block_group(trans, inode);
3763 btrfs_update_inode_block_group(trans, dir);
3764
3765out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003766 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003767 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04003768
Chris Mason39279cc2007-06-12 06:35:45 -04003769out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003770 if (drop_on_err)
3771 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003772 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003773 return err;
3774}
3775
Chris Masond352ac62008-09-29 15:18:18 -04003776/* helper for btfs_get_extent. Given an existing extent in the tree,
3777 * and an extent that you want to insert, deal with overlap and insert
3778 * the new extent into the tree.
3779 */
Chris Mason3b951512008-04-17 11:29:12 -04003780static int merge_extent_mapping(struct extent_map_tree *em_tree,
3781 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003782 struct extent_map *em,
3783 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04003784{
3785 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04003786
Chris Masone6dcd2d2008-07-17 12:53:50 -04003787 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
3788 start_diff = map_start - em->start;
3789 em->start = map_start;
3790 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04003791 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
3792 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003793 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04003794 em->block_len -= start_diff;
3795 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003796 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04003797}
3798
Chris Masonc8b97812008-10-29 14:49:59 -04003799static noinline int uncompress_inline(struct btrfs_path *path,
3800 struct inode *inode, struct page *page,
3801 size_t pg_offset, u64 extent_offset,
3802 struct btrfs_file_extent_item *item)
3803{
3804 int ret;
3805 struct extent_buffer *leaf = path->nodes[0];
3806 char *tmp;
3807 size_t max_size;
3808 unsigned long inline_size;
3809 unsigned long ptr;
3810
3811 WARN_ON(pg_offset != 0);
3812 max_size = btrfs_file_extent_ram_bytes(leaf, item);
3813 inline_size = btrfs_file_extent_inline_item_len(leaf,
3814 btrfs_item_nr(leaf, path->slots[0]));
3815 tmp = kmalloc(inline_size, GFP_NOFS);
3816 ptr = btrfs_file_extent_inline_start(item);
3817
3818 read_extent_buffer(leaf, tmp, ptr, inline_size);
3819
Chris Mason5b050f02008-11-11 09:34:41 -05003820 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04003821 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
3822 inline_size, max_size);
3823 if (ret) {
3824 char *kaddr = kmap_atomic(page, KM_USER0);
3825 unsigned long copy_size = min_t(u64,
3826 PAGE_CACHE_SIZE - pg_offset,
3827 max_size - extent_offset);
3828 memset(kaddr + pg_offset, 0, copy_size);
3829 kunmap_atomic(kaddr, KM_USER0);
3830 }
3831 kfree(tmp);
3832 return 0;
3833}
3834
Chris Masond352ac62008-09-29 15:18:18 -04003835/*
3836 * a bit scary, this does extent mapping from logical file offset to the disk.
3837 * the ugly parts come from merging extents from the disk with the
3838 * in-ram representation. This gets more complex because of the data=ordered code,
3839 * where the in-ram extents might be locked pending data=ordered completion.
3840 *
3841 * This also copies inline extents directly into the page.
3842 */
Chris Masona52d9a82007-08-27 16:49:44 -04003843struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05003844 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04003845 int create)
3846{
3847 int ret;
3848 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04003849 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04003850 u64 extent_start = 0;
3851 u64 extent_end = 0;
3852 u64 objectid = inode->i_ino;
3853 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04003854 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04003855 struct btrfs_root *root = BTRFS_I(inode)->root;
3856 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04003857 struct extent_buffer *leaf;
3858 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04003859 struct extent_map *em = NULL;
3860 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05003861 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003862 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003863 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04003864
Chris Masona52d9a82007-08-27 16:49:44 -04003865again:
Chris Masond1310b22008-01-24 16:13:08 -05003866 spin_lock(&em_tree->lock);
3867 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04003868 if (em)
3869 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003870 spin_unlock(&em_tree->lock);
3871
Chris Masona52d9a82007-08-27 16:49:44 -04003872 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04003873 if (em->start > start || em->start + em->len <= start)
3874 free_extent_map(em);
3875 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05003876 free_extent_map(em);
3877 else
3878 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003879 }
Chris Masond1310b22008-01-24 16:13:08 -05003880 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04003881 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05003882 err = -ENOMEM;
3883 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003884 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003885 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003886 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05003887 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05003888 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04003889 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04003890
3891 if (!path) {
3892 path = btrfs_alloc_path();
3893 BUG_ON(!path);
3894 }
3895
Chris Mason179e29e2007-11-01 11:28:41 -04003896 ret = btrfs_lookup_file_extent(trans, root, path,
3897 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04003898 if (ret < 0) {
3899 err = ret;
3900 goto out;
3901 }
3902
3903 if (ret != 0) {
3904 if (path->slots[0] == 0)
3905 goto not_found;
3906 path->slots[0]--;
3907 }
3908
Chris Mason5f39d392007-10-15 16:14:19 -04003909 leaf = path->nodes[0];
3910 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04003911 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04003912 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04003913 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3914 found_type = btrfs_key_type(&found_key);
3915 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04003916 found_type != BTRFS_EXTENT_DATA_KEY) {
3917 goto not_found;
3918 }
3919
Chris Mason5f39d392007-10-15 16:14:19 -04003920 found_type = btrfs_file_extent_type(leaf, item);
3921 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003922 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04003923 if (found_type == BTRFS_FILE_EXTENT_REG ||
3924 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04003925 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04003926 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04003927 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
3928 size_t size;
3929 size = btrfs_file_extent_inline_len(leaf, item);
3930 extent_end = (extent_start + size + root->sectorsize - 1) &
3931 ~((u64)root->sectorsize - 1);
3932 }
3933
3934 if (start >= extent_end) {
3935 path->slots[0]++;
3936 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3937 ret = btrfs_next_leaf(root, path);
3938 if (ret < 0) {
3939 err = ret;
3940 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003941 }
Yan Zheng9036c102008-10-30 14:19:41 -04003942 if (ret > 0)
3943 goto not_found;
3944 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04003945 }
Yan Zheng9036c102008-10-30 14:19:41 -04003946 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3947 if (found_key.objectid != objectid ||
3948 found_key.type != BTRFS_EXTENT_DATA_KEY)
3949 goto not_found;
3950 if (start + len <= found_key.offset)
3951 goto not_found;
3952 em->start = start;
3953 em->len = found_key.offset - start;
3954 goto not_found_em;
3955 }
3956
Yan Zhengd899e052008-10-30 14:25:28 -04003957 if (found_type == BTRFS_FILE_EXTENT_REG ||
3958 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04003959 em->start = extent_start;
3960 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05003961 em->orig_start = extent_start -
3962 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04003963 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
3964 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003965 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04003966 goto insert;
3967 }
Chris Masonc8b97812008-10-29 14:49:59 -04003968 if (compressed) {
3969 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
3970 em->block_start = bytenr;
3971 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
3972 item);
3973 } else {
3974 bytenr += btrfs_file_extent_offset(leaf, item);
3975 em->block_start = bytenr;
3976 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04003977 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
3978 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04003979 }
Chris Masona52d9a82007-08-27 16:49:44 -04003980 goto insert;
3981 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003982 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04003983 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04003984 size_t size;
3985 size_t extent_offset;
3986 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04003987
Chris Masona52d9a82007-08-27 16:49:44 -04003988 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04003989 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04003990 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04003991 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04003992 goto out;
3993 }
3994
Yan Zheng9036c102008-10-30 14:19:41 -04003995 size = btrfs_file_extent_inline_len(leaf, item);
3996 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05003997 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04003998 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04003999 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05004000 em->len = (copy_size + root->sectorsize - 1) &
4001 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004002 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004003 if (compressed)
4004 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004005 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004006 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004007 if (btrfs_file_extent_compression(leaf, item) ==
4008 BTRFS_COMPRESS_ZLIB) {
4009 ret = uncompress_inline(path, inode, page,
4010 pg_offset,
4011 extent_offset, item);
4012 BUG_ON(ret);
4013 } else {
4014 map = kmap(page);
4015 read_extent_buffer(leaf, map + pg_offset, ptr,
4016 copy_size);
4017 kunmap(page);
4018 }
Chris Mason179e29e2007-11-01 11:28:41 -04004019 flush_dcache_page(page);
4020 } else if (create && PageUptodate(page)) {
4021 if (!trans) {
4022 kunmap(page);
4023 free_extent_map(em);
4024 em = NULL;
4025 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004026 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004027 goto again;
4028 }
Chris Masonc8b97812008-10-29 14:49:59 -04004029 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004030 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004031 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004032 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004033 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004034 }
Chris Masond1310b22008-01-24 16:13:08 -05004035 set_extent_uptodate(io_tree, em->start,
4036 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004037 goto insert;
4038 } else {
4039 printk("unkknown found_type %d\n", found_type);
4040 WARN_ON(1);
4041 }
4042not_found:
4043 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004044 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004045not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004046 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004047 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004048insert:
4049 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004050 if (em->start > start || extent_map_end(em) <= start) {
4051 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04004052 err = -EIO;
4053 goto out;
4054 }
Chris Masond1310b22008-01-24 16:13:08 -05004055
4056 err = 0;
4057 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004058 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004059 /* it is possible that someone inserted the extent into the tree
4060 * while we had the lock dropped. It is also possible that
4061 * an overlapping map exists in the tree
4062 */
Chris Masona52d9a82007-08-27 16:49:44 -04004063 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004064 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004065
4066 ret = 0;
4067
Chris Mason3b951512008-04-17 11:29:12 -04004068 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004069 if (existing && (existing->start > start ||
4070 existing->start + existing->len <= start)) {
4071 free_extent_map(existing);
4072 existing = NULL;
4073 }
Chris Mason3b951512008-04-17 11:29:12 -04004074 if (!existing) {
4075 existing = lookup_extent_mapping(em_tree, em->start,
4076 em->len);
4077 if (existing) {
4078 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004079 em, start,
4080 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004081 free_extent_map(existing);
4082 if (err) {
4083 free_extent_map(em);
4084 em = NULL;
4085 }
4086 } else {
4087 err = -EIO;
4088 printk("failing to insert %Lu %Lu\n",
4089 start, len);
4090 free_extent_map(em);
4091 em = NULL;
4092 }
4093 } else {
4094 free_extent_map(em);
4095 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004096 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004097 }
Chris Masona52d9a82007-08-27 16:49:44 -04004098 }
Chris Masond1310b22008-01-24 16:13:08 -05004099 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004100out:
Chris Masonf4219502008-07-22 11:18:09 -04004101 if (path)
4102 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004103 if (trans) {
4104 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004105 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04004106 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004107 }
Chris Masona52d9a82007-08-27 16:49:44 -04004108 }
Chris Masona52d9a82007-08-27 16:49:44 -04004109 if (err) {
4110 free_extent_map(em);
4111 WARN_ON(1);
4112 return ERR_PTR(err);
4113 }
4114 return em;
4115}
4116
Chris Mason16432982008-04-10 10:23:21 -04004117static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4118 const struct iovec *iov, loff_t offset,
4119 unsigned long nr_segs)
4120{
Chris Masone1c4b742008-04-22 13:26:46 -04004121 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004122}
4123
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004124static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04004125{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004126 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004127}
4128
Chris Mason9ebefb182007-06-15 13:50:00 -04004129int btrfs_readpage(struct file *file, struct page *page)
4130{
Chris Masond1310b22008-01-24 16:13:08 -05004131 struct extent_io_tree *tree;
4132 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004133 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004134}
Chris Mason1832a6d2007-12-21 16:27:21 -05004135
Chris Mason39279cc2007-06-12 06:35:45 -04004136static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4137{
Chris Masond1310b22008-01-24 16:13:08 -05004138 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004139
4140
4141 if (current->flags & PF_MEMALLOC) {
4142 redirty_page_for_writepage(wbc, page);
4143 unlock_page(page);
4144 return 0;
4145 }
Chris Masond1310b22008-01-24 16:13:08 -05004146 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004147 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4148}
Chris Mason39279cc2007-06-12 06:35:45 -04004149
Chris Masonf4219502008-07-22 11:18:09 -04004150int btrfs_writepages(struct address_space *mapping,
4151 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04004152{
Chris Masond1310b22008-01-24 16:13:08 -05004153 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004154
Chris Masond1310b22008-01-24 16:13:08 -05004155 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04004156 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4157}
4158
Chris Mason3ab2fb52007-11-08 10:59:22 -05004159static int
4160btrfs_readpages(struct file *file, struct address_space *mapping,
4161 struct list_head *pages, unsigned nr_pages)
4162{
Chris Masond1310b22008-01-24 16:13:08 -05004163 struct extent_io_tree *tree;
4164 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004165 return extent_readpages(tree, mapping, pages, nr_pages,
4166 btrfs_get_extent);
4167}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004168static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004169{
Chris Masond1310b22008-01-24 16:13:08 -05004170 struct extent_io_tree *tree;
4171 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004172 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004173
Chris Masond1310b22008-01-24 16:13:08 -05004174 tree = &BTRFS_I(page->mapping->host)->io_tree;
4175 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004176 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004177 if (ret == 1) {
4178 ClearPagePrivate(page);
4179 set_page_private(page, 0);
4180 page_cache_release(page);
4181 }
4182 return ret;
4183}
Chris Mason39279cc2007-06-12 06:35:45 -04004184
Chris Masone6dcd2d2008-07-17 12:53:50 -04004185static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4186{
Chris Mason98509cf2008-09-11 15:51:43 -04004187 if (PageWriteback(page) || PageDirty(page))
4188 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004189 return __btrfs_releasepage(page, gfp_flags);
4190}
4191
Chris Masona52d9a82007-08-27 16:49:44 -04004192static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4193{
Chris Masond1310b22008-01-24 16:13:08 -05004194 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004195 struct btrfs_ordered_extent *ordered;
4196 u64 page_start = page_offset(page);
4197 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004198
Chris Masone6dcd2d2008-07-17 12:53:50 -04004199 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004200 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004201 if (offset) {
4202 btrfs_releasepage(page, GFP_NOFS);
4203 return;
4204 }
4205
4206 lock_extent(tree, page_start, page_end, GFP_NOFS);
4207 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4208 page_offset(page));
4209 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04004210 /*
4211 * IO on this page will never be started, so we need
4212 * to account for any ordered extents now
4213 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004214 clear_extent_bit(tree, page_start, page_end,
4215 EXTENT_DIRTY | EXTENT_DELALLOC |
4216 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04004217 btrfs_finish_ordered_io(page->mapping->host,
4218 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004219 btrfs_put_ordered_extent(ordered);
4220 lock_extent(tree, page_start, page_end, GFP_NOFS);
4221 }
4222 clear_extent_bit(tree, page_start, page_end,
4223 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4224 EXTENT_ORDERED,
4225 1, 1, GFP_NOFS);
4226 __btrfs_releasepage(page, GFP_NOFS);
4227
Chris Mason4a096752008-07-21 10:29:44 -04004228 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004229 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004230 ClearPagePrivate(page);
4231 set_page_private(page, 0);
4232 page_cache_release(page);
4233 }
Chris Mason39279cc2007-06-12 06:35:45 -04004234}
4235
Chris Mason9ebefb182007-06-15 13:50:00 -04004236/*
4237 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
4238 * called from a page fault handler when a page is first dirtied. Hence we must
4239 * be careful to check for EOF conditions here. We set the page up correctly
4240 * for a written page which means we get ENOSPC checking when writing into
4241 * holes and correct delalloc and unwritten extent mapping on filesystems that
4242 * support these features.
4243 *
4244 * We are not allowed to take the i_mutex here so we have to play games to
4245 * protect against truncate races as the page could now be beyond EOF. Because
4246 * vmtruncate() writes the inode size before removing pages, once we have the
4247 * page lock we can determine safely if the page is beyond EOF. If it is not
4248 * beyond EOF, then the page is guaranteed safe against truncation until we
4249 * unlock the page.
4250 */
4251int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4252{
Chris Mason6da6aba2007-12-18 16:15:09 -05004253 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05004254 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004255 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4256 struct btrfs_ordered_extent *ordered;
4257 char *kaddr;
4258 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04004259 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05004260 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04004261 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004262 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04004263
Chris Mason1832a6d2007-12-21 16:27:21 -05004264 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05004265 if (ret)
4266 goto out;
4267
4268 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004269again:
Chris Mason9ebefb182007-06-15 13:50:00 -04004270 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04004271 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004272 page_start = page_offset(page);
4273 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004274
Chris Mason9ebefb182007-06-15 13:50:00 -04004275 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04004276 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04004277 /* page got truncated out from underneath us */
4278 goto out_unlock;
4279 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004280 wait_on_page_writeback(page);
4281
4282 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
4283 set_page_extent_mapped(page);
4284
Chris Masoneb84ae02008-07-17 13:53:27 -04004285 /*
4286 * we can't set the delalloc bits if there are pending ordered
4287 * extents. Drop our locks and wait for them to finish
4288 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004289 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4290 if (ordered) {
4291 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4292 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004293 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004294 btrfs_put_ordered_extent(ordered);
4295 goto again;
4296 }
4297
Chris Masonea8c2812008-08-04 23:17:27 -04004298 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004299 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04004300
4301 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04004302 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004303 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04004304 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04004305 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04004306
Chris Masone6dcd2d2008-07-17 12:53:50 -04004307 if (zero_start != PAGE_CACHE_SIZE) {
4308 kaddr = kmap(page);
4309 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
4310 flush_dcache_page(page);
4311 kunmap(page);
4312 }
Chris Mason247e7432008-07-17 12:53:51 -04004313 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004314 set_page_dirty(page);
4315 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04004316
4317out_unlock:
4318 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05004319out:
Chris Mason9ebefb182007-06-15 13:50:00 -04004320 return ret;
4321}
4322
Chris Mason39279cc2007-06-12 06:35:45 -04004323static void btrfs_truncate(struct inode *inode)
4324{
4325 struct btrfs_root *root = BTRFS_I(inode)->root;
4326 int ret;
4327 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004328 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04004329 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004330
4331 if (!S_ISREG(inode->i_mode))
4332 return;
4333 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4334 return;
4335
4336 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04004337 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04004338
Chris Mason39279cc2007-06-12 06:35:45 -04004339 trans = btrfs_start_transaction(root, 1);
4340 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04004341 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004342
Josef Bacik7b128762008-07-24 12:17:14 -04004343 ret = btrfs_orphan_add(trans, inode);
4344 if (ret)
4345 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004346 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04004347 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05004348 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004349 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004350
Josef Bacik7b128762008-07-24 12:17:14 -04004351 ret = btrfs_orphan_del(trans, inode);
4352 BUG_ON(ret);
4353
4354out:
4355 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004356 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004357 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004358 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004359}
4360
Sven Wegener3b963622008-06-09 21:57:42 -04004361/*
4362 * Invalidate a single dcache entry at the root of the filesystem.
4363 * Needed after creation of snapshot or subvolume.
4364 */
Chris Mason3de45862008-11-17 21:02:50 -05004365void btrfs_invalidate_dcache_root(struct inode *dir, char *name,
Sven Wegener3b963622008-06-09 21:57:42 -04004366 int namelen)
4367{
4368 struct dentry *alias, *entry;
4369 struct qstr qstr;
4370
Chris Mason3de45862008-11-17 21:02:50 -05004371 alias = d_find_alias(dir);
Sven Wegener3b963622008-06-09 21:57:42 -04004372 if (alias) {
4373 qstr.name = name;
4374 qstr.len = namelen;
4375 /* change me if btrfs ever gets a d_hash operation */
4376 qstr.hash = full_name_hash(qstr.name, qstr.len);
4377 entry = d_lookup(alias, &qstr);
4378 dput(alias);
4379 if (entry) {
4380 d_invalidate(entry);
4381 dput(entry);
4382 }
4383 }
4384}
4385
Chris Masond352ac62008-09-29 15:18:18 -04004386/*
4387 * create a new subvolume directory/inode (helper for the ioctl).
4388 */
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004389int btrfs_create_subvol_root(struct btrfs_root *new_root, struct dentry *dentry,
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004390 struct btrfs_trans_handle *trans, u64 new_dirid,
4391 struct btrfs_block_group_cache *block_group)
Chris Mason39279cc2007-06-12 06:35:45 -04004392{
Chris Mason39279cc2007-06-12 06:35:45 -04004393 struct inode *inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004394 int error;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004395 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004396
Josef Bacikaec74772008-07-24 12:12:38 -04004397 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004398 new_dirid, block_group, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04004399 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004400 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004401 inode->i_op = &btrfs_dir_inode_operations;
4402 inode->i_fop = &btrfs_dir_file_operations;
4403
Chris Mason39279cc2007-06-12 06:35:45 -04004404 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04004405 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04004406
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004407 error = btrfs_update_inode(trans, new_root, inode);
4408 if (error)
4409 return error;
4410
4411 d_instantiate(dentry, inode);
4412 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004413}
4414
Chris Masond352ac62008-09-29 15:18:18 -04004415/* helper function for file defrag and space balancing. This
4416 * forces readahead on a given range of bytes in an inode
4417 */
Chris Masonedbd8d42007-12-21 16:27:24 -05004418unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04004419 struct file_ra_state *ra, struct file *file,
4420 pgoff_t offset, pgoff_t last_index)
4421{
Chris Mason8e7bf942008-04-28 09:02:36 -04004422 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04004423
Chris Mason86479a02007-09-10 19:58:16 -04004424 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
4425 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04004426}
4427
Chris Mason39279cc2007-06-12 06:35:45 -04004428struct inode *btrfs_alloc_inode(struct super_block *sb)
4429{
4430 struct btrfs_inode *ei;
4431
4432 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
4433 if (!ei)
4434 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04004435 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004436 ei->logged_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004437 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik33268ea2008-07-24 12:16:36 -04004438 ei->i_acl = BTRFS_ACL_NOT_CACHED;
4439 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
Josef Bacik7b128762008-07-24 12:17:14 -04004440 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason39279cc2007-06-12 06:35:45 -04004441 return &ei->vfs_inode;
4442}
4443
4444void btrfs_destroy_inode(struct inode *inode)
4445{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004446 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04004447 WARN_ON(!list_empty(&inode->i_dentry));
4448 WARN_ON(inode->i_data.nrpages);
4449
Josef Bacik33268ea2008-07-24 12:16:36 -04004450 if (BTRFS_I(inode)->i_acl &&
4451 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
4452 posix_acl_release(BTRFS_I(inode)->i_acl);
4453 if (BTRFS_I(inode)->i_default_acl &&
4454 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
4455 posix_acl_release(BTRFS_I(inode)->i_default_acl);
4456
Yanbcc63ab2008-07-30 16:29:20 -04004457 spin_lock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004458 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
4459 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
4460 " list\n", inode->i_ino);
4461 dump_stack();
4462 }
Yanbcc63ab2008-07-30 16:29:20 -04004463 spin_unlock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004464
Chris Masone6dcd2d2008-07-17 12:53:50 -04004465 while(1) {
4466 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
4467 if (!ordered)
4468 break;
4469 else {
4470 printk("found ordered extent %Lu %Lu\n",
4471 ordered->file_offset, ordered->len);
4472 btrfs_remove_ordered_extent(inode, ordered);
4473 btrfs_put_ordered_extent(ordered);
4474 btrfs_put_ordered_extent(ordered);
4475 }
4476 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004477 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004478 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
4479}
4480
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004481static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04004482{
4483 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
4484
4485 inode_init_once(&ei->vfs_inode);
4486}
4487
4488void btrfs_destroy_cachep(void)
4489{
4490 if (btrfs_inode_cachep)
4491 kmem_cache_destroy(btrfs_inode_cachep);
4492 if (btrfs_trans_handle_cachep)
4493 kmem_cache_destroy(btrfs_trans_handle_cachep);
4494 if (btrfs_transaction_cachep)
4495 kmem_cache_destroy(btrfs_transaction_cachep);
4496 if (btrfs_bit_radix_cachep)
4497 kmem_cache_destroy(btrfs_bit_radix_cachep);
4498 if (btrfs_path_cachep)
4499 kmem_cache_destroy(btrfs_path_cachep);
4500}
4501
Chris Mason86479a02007-09-10 19:58:16 -04004502struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04004503 unsigned long extra_flags,
Chris Mason2b1f55b2008-09-24 11:48:04 -04004504 void (*ctor)(void *))
Chris Mason92fee662007-07-25 12:31:35 -04004505{
4506 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
Chris Mason2b1f55b2008-09-24 11:48:04 -04004507 SLAB_MEM_SPREAD | extra_flags), ctor);
Chris Mason92fee662007-07-25 12:31:35 -04004508}
4509
Chris Mason39279cc2007-06-12 06:35:45 -04004510int btrfs_init_cachep(void)
4511{
Chris Mason86479a02007-09-10 19:58:16 -04004512 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04004513 sizeof(struct btrfs_inode),
4514 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04004515 if (!btrfs_inode_cachep)
4516 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004517 btrfs_trans_handle_cachep =
4518 btrfs_cache_create("btrfs_trans_handle_cache",
4519 sizeof(struct btrfs_trans_handle),
4520 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004521 if (!btrfs_trans_handle_cachep)
4522 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004523 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04004524 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04004525 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004526 if (!btrfs_transaction_cachep)
4527 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004528 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04004529 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04004530 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004531 if (!btrfs_path_cachep)
4532 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004533 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04004534 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004535 if (!btrfs_bit_radix_cachep)
4536 goto fail;
4537 return 0;
4538fail:
4539 btrfs_destroy_cachep();
4540 return -ENOMEM;
4541}
4542
4543static int btrfs_getattr(struct vfsmount *mnt,
4544 struct dentry *dentry, struct kstat *stat)
4545{
4546 struct inode *inode = dentry->d_inode;
4547 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05004548 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05004549 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004550 stat->blocks = (inode_get_bytes(inode) +
4551 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04004552 return 0;
4553}
4554
4555static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
4556 struct inode * new_dir,struct dentry *new_dentry)
4557{
4558 struct btrfs_trans_handle *trans;
4559 struct btrfs_root *root = BTRFS_I(old_dir)->root;
4560 struct inode *new_inode = new_dentry->d_inode;
4561 struct inode *old_inode = old_dentry->d_inode;
4562 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004563 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004564 int ret;
4565
Chris Mason3394e162008-11-17 20:42:26 -05004566 /* we're not allowed to rename between subvolumes */
4567 if (BTRFS_I(old_inode)->root->root_key.objectid !=
4568 BTRFS_I(new_dir)->root->root_key.objectid)
4569 return -EXDEV;
4570
Chris Mason39279cc2007-06-12 06:35:45 -04004571 if (S_ISDIR(old_inode->i_mode) && new_inode &&
4572 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
4573 return -ENOTEMPTY;
4574 }
Chris Mason5f39d392007-10-15 16:14:19 -04004575
Chris Mason0660b5a2008-11-17 20:37:39 -05004576 /* to rename a snapshot or subvolume, we need to juggle the
4577 * backrefs. This isn't coded yet
4578 */
4579 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
4580 return -EXDEV;
4581
Chris Mason1832a6d2007-12-21 16:27:21 -05004582 ret = btrfs_check_free_space(root, 1, 0);
4583 if (ret)
4584 goto out_unlock;
4585
Chris Mason39279cc2007-06-12 06:35:45 -04004586 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004587
Chris Mason39279cc2007-06-12 06:35:45 -04004588 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004589
Chris Masone02119d2008-09-05 16:13:11 -04004590 btrfs_inc_nlink(old_dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004591 old_dir->i_ctime = old_dir->i_mtime = ctime;
4592 new_dir->i_ctime = new_dir->i_mtime = ctime;
4593 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04004594
Chris Masone02119d2008-09-05 16:13:11 -04004595 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
4596 old_dentry->d_name.name,
4597 old_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004598 if (ret)
4599 goto out_fail;
4600
4601 if (new_inode) {
4602 new_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004603 ret = btrfs_unlink_inode(trans, root, new_dir,
4604 new_dentry->d_inode,
4605 new_dentry->d_name.name,
4606 new_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004607 if (ret)
4608 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04004609 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004610 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004611 if (ret)
4612 goto out_fail;
4613 }
Chris Masone02119d2008-09-05 16:13:11 -04004614
Chris Mason39279cc2007-06-12 06:35:45 -04004615 }
Chris Mason3de45862008-11-17 21:02:50 -05004616 ret = btrfs_set_inode_index(new_dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004617 if (ret)
4618 goto out_fail;
4619
Chris Masone02119d2008-09-05 16:13:11 -04004620 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
4621 old_inode, new_dentry->d_name.name,
4622 new_dentry->d_name.len, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004623 if (ret)
4624 goto out_fail;
4625
4626out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04004627 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004628out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04004629 return ret;
4630}
4631
Chris Masond352ac62008-09-29 15:18:18 -04004632/*
4633 * some fairly slow code that needs optimization. This walks the list
4634 * of all the inodes with pending delalloc and forces them to disk.
4635 */
Chris Masonea8c2812008-08-04 23:17:27 -04004636int btrfs_start_delalloc_inodes(struct btrfs_root *root)
4637{
4638 struct list_head *head = &root->fs_info->delalloc_inodes;
4639 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004640 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04004641 unsigned long flags;
4642
Yan Zhengc146afa2008-11-12 14:34:12 -05004643 if (root->fs_info->sb->s_flags & MS_RDONLY)
4644 return -EROFS;
4645
Chris Masonea8c2812008-08-04 23:17:27 -04004646 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4647 while(!list_empty(head)) {
4648 binode = list_entry(head->next, struct btrfs_inode,
4649 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004650 inode = igrab(&binode->vfs_inode);
4651 if (!inode)
4652 list_del_init(&binode->delalloc_inodes);
Chris Masonea8c2812008-08-04 23:17:27 -04004653 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004654 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004655 filemap_flush(inode->i_mapping);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004656 iput(inode);
4657 }
4658 cond_resched();
Chris Masonea8c2812008-08-04 23:17:27 -04004659 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4660 }
4661 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason8c8bee12008-09-29 11:19:10 -04004662
4663 /* the filemap_flush will queue IO into the worker threads, but
4664 * we have to make sure the IO is actually started and that
4665 * ordered extents get created before we return
4666 */
4667 atomic_inc(&root->fs_info->async_submit_draining);
Chris Mason771ed682008-11-06 22:02:51 -05004668 while(atomic_read(&root->fs_info->nr_async_submits) ||
4669 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004670 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05004671 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
4672 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04004673 }
4674 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04004675 return 0;
4676}
4677
Chris Mason39279cc2007-06-12 06:35:45 -04004678static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
4679 const char *symname)
4680{
4681 struct btrfs_trans_handle *trans;
4682 struct btrfs_root *root = BTRFS_I(dir)->root;
4683 struct btrfs_path *path;
4684 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05004685 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004686 int err;
4687 int drop_inode = 0;
4688 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004689 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04004690 int name_len;
4691 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04004692 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004693 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04004694 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05004695 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004696
4697 name_len = strlen(symname) + 1;
4698 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
4699 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05004700
Chris Mason1832a6d2007-12-21 16:27:21 -05004701 err = btrfs_check_free_space(root, 1, 0);
4702 if (err)
4703 goto out_fail;
4704
Chris Mason39279cc2007-06-12 06:35:45 -04004705 trans = btrfs_start_transaction(root, 1);
4706 btrfs_set_trans_block_group(trans, dir);
4707
4708 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4709 if (err) {
4710 err = -ENOSPC;
4711 goto out_unlock;
4712 }
4713
Josef Bacikaec74772008-07-24 12:12:38 -04004714 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004715 dentry->d_name.len,
4716 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004717 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
4718 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004719 err = PTR_ERR(inode);
4720 if (IS_ERR(inode))
4721 goto out_unlock;
4722
Josef Bacik33268ea2008-07-24 12:16:36 -04004723 err = btrfs_init_acl(inode, dir);
4724 if (err) {
4725 drop_inode = 1;
4726 goto out_unlock;
4727 }
4728
Chris Mason39279cc2007-06-12 06:35:45 -04004729 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004730 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004731 if (err)
4732 drop_inode = 1;
4733 else {
4734 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004735 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004736 inode->i_fop = &btrfs_file_operations;
4737 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004738 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004739 }
4740 dir->i_sb->s_dirt = 1;
4741 btrfs_update_inode_block_group(trans, inode);
4742 btrfs_update_inode_block_group(trans, dir);
4743 if (drop_inode)
4744 goto out_unlock;
4745
4746 path = btrfs_alloc_path();
4747 BUG_ON(!path);
4748 key.objectid = inode->i_ino;
4749 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004750 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
4751 datasize = btrfs_file_extent_calc_inline_size(name_len);
4752 err = btrfs_insert_empty_item(trans, root, path, &key,
4753 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04004754 if (err) {
4755 drop_inode = 1;
4756 goto out_unlock;
4757 }
Chris Mason5f39d392007-10-15 16:14:19 -04004758 leaf = path->nodes[0];
4759 ei = btrfs_item_ptr(leaf, path->slots[0],
4760 struct btrfs_file_extent_item);
4761 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
4762 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04004763 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04004764 btrfs_set_file_extent_encryption(leaf, ei, 0);
4765 btrfs_set_file_extent_compression(leaf, ei, 0);
4766 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
4767 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
4768
Chris Mason39279cc2007-06-12 06:35:45 -04004769 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04004770 write_extent_buffer(leaf, symname, ptr, name_len);
4771 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004772 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04004773
Chris Mason39279cc2007-06-12 06:35:45 -04004774 inode->i_op = &btrfs_symlink_inode_operations;
4775 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04004776 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04004777 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04004778 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04004779 err = btrfs_update_inode(trans, root, inode);
4780 if (err)
4781 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004782
4783out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004784 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004785 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004786out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004787 if (drop_inode) {
4788 inode_dec_link_count(inode);
4789 iput(inode);
4790 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004791 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004792 return err;
4793}
Chris Mason16432982008-04-10 10:23:21 -04004794
Yan Zhengd899e052008-10-30 14:25:28 -04004795static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
4796 u64 alloc_hint, int mode)
4797{
4798 struct btrfs_trans_handle *trans;
4799 struct btrfs_root *root = BTRFS_I(inode)->root;
4800 struct btrfs_key ins;
4801 u64 alloc_size;
4802 u64 cur_offset = start;
4803 u64 num_bytes = end - start;
4804 int ret = 0;
4805
4806 trans = btrfs_join_transaction(root, 1);
4807 BUG_ON(!trans);
4808 btrfs_set_trans_block_group(trans, inode);
4809
4810 while (num_bytes > 0) {
4811 alloc_size = min(num_bytes, root->fs_info->max_extent);
4812 ret = btrfs_reserve_extent(trans, root, alloc_size,
4813 root->sectorsize, 0, alloc_hint,
4814 (u64)-1, &ins, 1);
4815 if (ret) {
4816 WARN_ON(1);
4817 goto out;
4818 }
4819 ret = insert_reserved_file_extent(trans, inode,
4820 cur_offset, ins.objectid,
4821 ins.offset, ins.offset,
4822 ins.offset, 0, 0, 0,
4823 BTRFS_FILE_EXTENT_PREALLOC);
4824 BUG_ON(ret);
4825 num_bytes -= ins.offset;
4826 cur_offset += ins.offset;
4827 alloc_hint = ins.objectid + ins.offset;
4828 }
4829out:
4830 if (cur_offset > start) {
4831 inode->i_ctime = CURRENT_TIME;
4832 btrfs_set_flag(inode, PREALLOC);
4833 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
4834 cur_offset > i_size_read(inode))
4835 btrfs_i_size_write(inode, cur_offset);
4836 ret = btrfs_update_inode(trans, root, inode);
4837 BUG_ON(ret);
4838 }
4839
4840 btrfs_end_transaction(trans, root);
4841 return ret;
4842}
4843
4844static long btrfs_fallocate(struct inode *inode, int mode,
4845 loff_t offset, loff_t len)
4846{
4847 u64 cur_offset;
4848 u64 last_byte;
4849 u64 alloc_start;
4850 u64 alloc_end;
4851 u64 alloc_hint = 0;
4852 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
4853 struct extent_map *em;
4854 int ret;
4855
4856 alloc_start = offset & ~mask;
4857 alloc_end = (offset + len + mask) & ~mask;
4858
4859 mutex_lock(&inode->i_mutex);
4860 if (alloc_start > inode->i_size) {
4861 ret = btrfs_cont_expand(inode, alloc_start);
4862 if (ret)
4863 goto out;
4864 }
4865
4866 while (1) {
4867 struct btrfs_ordered_extent *ordered;
4868 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start,
4869 alloc_end - 1, GFP_NOFS);
4870 ordered = btrfs_lookup_first_ordered_extent(inode,
4871 alloc_end - 1);
4872 if (ordered &&
4873 ordered->file_offset + ordered->len > alloc_start &&
4874 ordered->file_offset < alloc_end) {
4875 btrfs_put_ordered_extent(ordered);
4876 unlock_extent(&BTRFS_I(inode)->io_tree,
4877 alloc_start, alloc_end - 1, GFP_NOFS);
4878 btrfs_wait_ordered_range(inode, alloc_start,
4879 alloc_end - alloc_start);
4880 } else {
4881 if (ordered)
4882 btrfs_put_ordered_extent(ordered);
4883 break;
4884 }
4885 }
4886
4887 cur_offset = alloc_start;
4888 while (1) {
4889 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4890 alloc_end - cur_offset, 0);
4891 BUG_ON(IS_ERR(em) || !em);
4892 last_byte = min(extent_map_end(em), alloc_end);
4893 last_byte = (last_byte + mask) & ~mask;
4894 if (em->block_start == EXTENT_MAP_HOLE) {
4895 ret = prealloc_file_range(inode, cur_offset,
4896 last_byte, alloc_hint, mode);
4897 if (ret < 0) {
4898 free_extent_map(em);
4899 break;
4900 }
4901 }
4902 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
4903 alloc_hint = em->block_start;
4904 free_extent_map(em);
4905
4906 cur_offset = last_byte;
4907 if (cur_offset >= alloc_end) {
4908 ret = 0;
4909 break;
4910 }
4911 }
4912 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, alloc_end - 1,
4913 GFP_NOFS);
4914out:
4915 mutex_unlock(&inode->i_mutex);
4916 return ret;
4917}
4918
Chris Masone6dcd2d2008-07-17 12:53:50 -04004919static int btrfs_set_page_dirty(struct page *page)
4920{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004921 return __set_page_dirty_nobuffers(page);
4922}
4923
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004924static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05004925{
4926 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
4927 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04004928 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05004929}
Chris Mason39279cc2007-06-12 06:35:45 -04004930
4931static struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05004932 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04004933 .lookup = btrfs_lookup,
4934 .create = btrfs_create,
4935 .unlink = btrfs_unlink,
4936 .link = btrfs_link,
4937 .mkdir = btrfs_mkdir,
4938 .rmdir = btrfs_rmdir,
4939 .rename = btrfs_rename,
4940 .symlink = btrfs_symlink,
4941 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04004942 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004943 .setxattr = btrfs_setxattr,
4944 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05004945 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004946 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05004947 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004948};
Chris Mason39279cc2007-06-12 06:35:45 -04004949static struct inode_operations btrfs_dir_ro_inode_operations = {
4950 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05004951 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004952};
Chris Mason39279cc2007-06-12 06:35:45 -04004953static struct file_operations btrfs_dir_file_operations = {
4954 .llseek = generic_file_llseek,
4955 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01004956 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004957 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004958#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004959 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004960#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04004961 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04004962 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04004963};
4964
Chris Masond1310b22008-01-24 16:13:08 -05004965static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04004966 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05004967 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04004968 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004969 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004970 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04004971 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04004972 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05004973 .set_bit_hook = btrfs_set_bit_hook,
4974 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004975};
4976
Chris Mason39279cc2007-06-12 06:35:45 -04004977static struct address_space_operations btrfs_aops = {
4978 .readpage = btrfs_readpage,
4979 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04004980 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05004981 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04004982 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04004983 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04004984 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04004985 .invalidatepage = btrfs_invalidatepage,
4986 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004987 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04004988};
4989
4990static struct address_space_operations btrfs_symlink_aops = {
4991 .readpage = btrfs_readpage,
4992 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04004993 .invalidatepage = btrfs_invalidatepage,
4994 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04004995};
4996
4997static struct inode_operations btrfs_file_inode_operations = {
4998 .truncate = btrfs_truncate,
4999 .getattr = btrfs_getattr,
5000 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005001 .setxattr = btrfs_setxattr,
5002 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005003 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005004 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005005 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04005006 .fallocate = btrfs_fallocate,
Chris Mason39279cc2007-06-12 06:35:45 -04005007};
Josef Bacik618e21d2007-07-11 10:18:17 -04005008static struct inode_operations btrfs_special_inode_operations = {
5009 .getattr = btrfs_getattr,
5010 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05005011 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005012 .setxattr = btrfs_setxattr,
5013 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04005014 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005015 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005016};
Chris Mason39279cc2007-06-12 06:35:45 -04005017static struct inode_operations btrfs_symlink_inode_operations = {
5018 .readlink = generic_readlink,
5019 .follow_link = page_follow_link_light,
5020 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05005021 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005022};