blob: 0a28b7706314cbb9611141d3070b091aedfc0b61 [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 Mason4b4e25f2008-11-20 10:22:27 -050041#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040042#include "ctree.h"
43#include "disk-io.h"
44#include "transaction.h"
45#include "btrfs_inode.h"
46#include "ioctl.h"
47#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040048#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040049#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040050#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040051#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 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
993 extent_end = found_key.offset +
994 btrfs_file_extent_num_bytes(leaf, fi);
995 if (extent_end <= start) {
996 path->slots[0]++;
997 goto next_slot;
998 }
999 if (btrfs_file_extent_compression(leaf, fi) ||
1000 btrfs_file_extent_encryption(leaf, fi) ||
1001 btrfs_file_extent_other_encoding(leaf, fi))
1002 goto out_check;
1003 if (disk_bytenr == 0)
1004 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001005 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1006 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001007 if (btrfs_cross_ref_exist(trans, root, disk_bytenr))
1008 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001009 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001010 goto out_check;
1011 disk_bytenr += btrfs_file_extent_offset(leaf, fi);
1012 nocow = 1;
1013 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1014 extent_end = found_key.offset +
1015 btrfs_file_extent_inline_len(leaf, fi);
1016 extent_end = ALIGN(extent_end, root->sectorsize);
1017 } else {
1018 BUG_ON(1);
1019 }
1020out_check:
1021 if (extent_end <= start) {
1022 path->slots[0]++;
1023 goto next_slot;
1024 }
1025 if (!nocow) {
1026 if (cow_start == (u64)-1)
1027 cow_start = cur_offset;
1028 cur_offset = extent_end;
1029 if (cur_offset > end)
1030 break;
1031 path->slots[0]++;
1032 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001033 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001034
Yan Zheng7ea394f2008-08-05 13:05:02 -04001035 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001036 if (cow_start != (u64)-1) {
1037 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001038 found_key.offset - 1, page_started,
1039 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001040 BUG_ON(ret);
1041 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001042 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001043
1044 disk_bytenr += cur_offset - found_key.offset;
1045 num_bytes = min(end + 1, extent_end) - cur_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001046 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1047 struct extent_map *em;
1048 struct extent_map_tree *em_tree;
1049 em_tree = &BTRFS_I(inode)->extent_tree;
1050 em = alloc_extent_map(GFP_NOFS);
1051 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001052 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001053 em->len = num_bytes;
1054 em->block_len = num_bytes;
1055 em->block_start = disk_bytenr;
1056 em->bdev = root->fs_info->fs_devices->latest_bdev;
1057 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1058 while (1) {
1059 spin_lock(&em_tree->lock);
1060 ret = add_extent_mapping(em_tree, em);
1061 spin_unlock(&em_tree->lock);
1062 if (ret != -EEXIST) {
1063 free_extent_map(em);
1064 break;
1065 }
1066 btrfs_drop_extent_cache(inode, em->start,
1067 em->start + em->len - 1, 0);
1068 }
1069 type = BTRFS_ORDERED_PREALLOC;
1070 } else {
1071 type = BTRFS_ORDERED_NOCOW;
1072 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001073
1074 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001075 num_bytes, num_bytes, type);
1076 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001077
Yan Zhengd899e052008-10-30 14:25:28 -04001078 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
1079 cur_offset, cur_offset + num_bytes - 1,
Chris Mason771ed682008-11-06 22:02:51 -05001080 locked_page, 1, 1, 1, 0, 0, 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04001081 cur_offset = extent_end;
1082 if (cur_offset > end)
1083 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001084 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001085 btrfs_release_path(root, path);
1086
1087 if (cur_offset <= end && cow_start == (u64)-1)
1088 cow_start = cur_offset;
1089 if (cow_start != (u64)-1) {
1090 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001091 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001092 BUG_ON(ret);
1093 }
1094
1095 ret = btrfs_end_transaction(trans, root);
1096 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001097 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001098 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001099}
1100
Chris Masond352ac62008-09-29 15:18:18 -04001101/*
1102 * extent_io.c call back to do delayed allocation processing
1103 */
Chris Masonc8b97812008-10-29 14:49:59 -04001104static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001105 u64 start, u64 end, int *page_started,
1106 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001107{
1108 struct btrfs_root *root = BTRFS_I(inode)->root;
1109 int ret;
Chris Masona2135012008-06-25 16:01:30 -04001110
Yanb98b6762008-01-08 15:54:37 -05001111 if (btrfs_test_opt(root, NODATACOW) ||
1112 btrfs_test_flag(inode, NODATACOW))
Chris Masonc8b97812008-10-29 14:49:59 -04001113 ret = run_delalloc_nocow(inode, locked_page, start, end,
Liu Huice397c02008-12-01 20:31:40 -05001114 page_started, 1, nr_written);
Yan Zhengd899e052008-10-30 14:25:28 -04001115 else if (btrfs_test_flag(inode, PREALLOC))
1116 ret = run_delalloc_nocow(inode, locked_page, start, end,
Liu Huice397c02008-12-01 20:31:40 -05001117 page_started, 0, nr_written);
Chris Masonbe20aa92007-12-17 20:14:01 -05001118 else
Chris Mason771ed682008-11-06 22:02:51 -05001119 ret = cow_file_range_async(inode, locked_page, start, end,
1120 page_started, nr_written);
Chris Mason1832a6d2007-12-21 16:27:21 -05001121
Chris Masonb888db22007-08-27 16:49:44 -04001122 return ret;
1123}
1124
Chris Masond352ac62008-09-29 15:18:18 -04001125/*
1126 * extent_io.c set_bit_hook, used to track delayed allocation
1127 * bytes in this file, and to maintain the list of inodes that
1128 * have pending delalloc work to be done.
1129 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001130static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001131 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001132{
Chris Masonbcbfce82008-04-22 13:26:47 -04001133 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -05001134 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001135 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001136 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -05001137 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001138 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001139 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1140 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1141 &root->fs_info->delalloc_inodes);
1142 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001143 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001144 }
1145 return 0;
1146}
1147
Chris Masond352ac62008-09-29 15:18:18 -04001148/*
1149 * extent_io.c clear_bit_hook, see set_bit_hook for why
1150 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001151static int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001152 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001153{
Chris Masonb0c68f82008-01-31 11:05:37 -05001154 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001155 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001156 unsigned long flags;
1157
1158 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -05001159 if (end - start + 1 > root->fs_info->delalloc_bytes) {
1160 printk("warning: delalloc account %Lu %Lu\n",
1161 end - start + 1, root->fs_info->delalloc_bytes);
1162 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001163 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001164 } else {
1165 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -05001166 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001167 }
Chris Masonea8c2812008-08-04 23:17:27 -04001168 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1169 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1170 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1171 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001172 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001173 }
1174 return 0;
1175}
1176
Chris Masond352ac62008-09-29 15:18:18 -04001177/*
1178 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1179 * we don't create bios that span stripes or chunks
1180 */
Chris Mason239b14b2008-03-24 15:02:07 -04001181int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001182 size_t size, struct bio *bio,
1183 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001184{
1185 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1186 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001187 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001188 u64 length = 0;
1189 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001190 int ret;
1191
Chris Mason771ed682008-11-06 22:02:51 -05001192 if (bio_flags & EXTENT_BIO_COMPRESSED)
1193 return 0;
1194
Chris Masonf2d8d742008-04-21 10:03:05 -04001195 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001196 map_tree = &root->fs_info->mapping_tree;
1197 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001198 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001199 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001200
Chris Mason239b14b2008-03-24 15:02:07 -04001201 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -04001202 return 1;
1203 }
1204 return 0;
1205}
1206
Chris Masond352ac62008-09-29 15:18:18 -04001207/*
1208 * in order to insert checksums into the metadata in large chunks,
1209 * we wait until bio submission time. All the pages in the bio are
1210 * checksummed and sums are attached onto the ordered extent record.
1211 *
1212 * At IO completion time the cums attached on the ordered extent record
1213 * are inserted into the btree
1214 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001215static int __btrfs_submit_bio_start(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001216 int mirror_num, unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001217{
Chris Mason065631f2008-02-20 12:07:25 -05001218 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001219 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001220
Chris Masond20f7042008-12-08 16:58:54 -05001221 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001222 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001223 return 0;
1224}
Chris Masone0156402008-04-16 11:15:20 -04001225
Chris Mason4a69a412008-11-06 22:03:00 -05001226/*
1227 * in order to insert checksums into the metadata in large chunks,
1228 * we wait until bio submission time. All the pages in the bio are
1229 * checksummed and sums are attached onto the ordered extent record.
1230 *
1231 * At IO completion time the cums attached on the ordered extent record
1232 * are inserted into the btree
1233 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001234static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Mason4a69a412008-11-06 22:03:00 -05001235 int mirror_num, unsigned long bio_flags)
1236{
1237 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001238 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001239}
1240
Chris Masond352ac62008-09-29 15:18:18 -04001241/*
1242 * extent_io.c submission hook. This does the right thing for csum calculation on write,
1243 * or reading the csums from the tree before a read
1244 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001245static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001246 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001247{
1248 struct btrfs_root *root = BTRFS_I(inode)->root;
1249 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001250 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001251
Chris Masone6dcd2d2008-07-17 12:53:50 -04001252 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1253 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001254
Chris Mason19b9bdb2008-10-30 14:23:13 -04001255 skip_sum = btrfs_test_opt(root, NODATASUM) ||
1256 btrfs_test_flag(inode, NODATASUM);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001257
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001258 if (!(rw & (1 << BIO_RW))) {
Chris Masond20f7042008-12-08 16:58:54 -05001259 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001260 return btrfs_submit_compressed_read(inode, bio,
1261 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001262 } else if (!skip_sum)
1263 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001264 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001265 } else if (!skip_sum) {
1266 /* we're doing a write, do the async checksumming */
1267 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001268 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001269 bio_flags, __btrfs_submit_bio_start,
1270 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001271 }
1272
Chris Mason0b86a832008-03-24 15:01:56 -04001273mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001274 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001275}
Chris Mason6885f302008-02-20 16:11:05 -05001276
Chris Masond352ac62008-09-29 15:18:18 -04001277/*
1278 * given a list of ordered sums record them in the inode. This happens
1279 * at IO completion time based on sums calculated at bio submission time.
1280 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001281static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001282 struct inode *inode, u64 file_offset,
1283 struct list_head *list)
1284{
1285 struct list_head *cur;
1286 struct btrfs_ordered_sum *sum;
1287
1288 btrfs_set_trans_block_group(trans, inode);
Chris Masonba1da2f2008-07-17 12:54:15 -04001289 list_for_each(cur, list) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04001290 sum = list_entry(cur, struct btrfs_ordered_sum, list);
Chris Masond20f7042008-12-08 16:58:54 -05001291 btrfs_csum_file_blocks(trans,
1292 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001293 }
1294 return 0;
1295}
1296
Chris Masonea8c2812008-08-04 23:17:27 -04001297int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1298{
Chris Mason771ed682008-11-06 22:02:51 -05001299 if ((end & (PAGE_CACHE_SIZE - 1)) == 0) {
1300 WARN_ON(1);
1301 }
Chris Masonea8c2812008-08-04 23:17:27 -04001302 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1303 GFP_NOFS);
1304}
1305
Chris Masond352ac62008-09-29 15:18:18 -04001306/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001307struct btrfs_writepage_fixup {
1308 struct page *page;
1309 struct btrfs_work work;
1310};
1311
Christoph Hellwigb2950862008-12-02 09:54:17 -05001312static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001313{
1314 struct btrfs_writepage_fixup *fixup;
1315 struct btrfs_ordered_extent *ordered;
1316 struct page *page;
1317 struct inode *inode;
1318 u64 page_start;
1319 u64 page_end;
1320
1321 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1322 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001323again:
Chris Mason247e7432008-07-17 12:53:51 -04001324 lock_page(page);
1325 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1326 ClearPageChecked(page);
1327 goto out_page;
1328 }
1329
1330 inode = page->mapping->host;
1331 page_start = page_offset(page);
1332 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1333
1334 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001335
1336 /* already ordered? We're done */
1337 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
1338 EXTENT_ORDERED, 0)) {
Chris Mason247e7432008-07-17 12:53:51 -04001339 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001340 }
1341
1342 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1343 if (ordered) {
1344 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1345 page_end, GFP_NOFS);
1346 unlock_page(page);
1347 btrfs_start_ordered_extent(inode, ordered, 1);
1348 goto again;
1349 }
Chris Mason247e7432008-07-17 12:53:51 -04001350
Chris Masonea8c2812008-08-04 23:17:27 -04001351 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001352 ClearPageChecked(page);
1353out:
1354 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1355out_page:
1356 unlock_page(page);
1357 page_cache_release(page);
1358}
1359
1360/*
1361 * There are a few paths in the higher layers of the kernel that directly
1362 * set the page dirty bit without asking the filesystem if it is a
1363 * good idea. This causes problems because we want to make sure COW
1364 * properly happens and the data=ordered rules are followed.
1365 *
Chris Masonc8b97812008-10-29 14:49:59 -04001366 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001367 * hasn't been properly setup for IO. We kick off an async process
1368 * to fix it up. The async helper will wait for ordered extents, set
1369 * the delalloc bit and make it safe to write the page.
1370 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001371static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001372{
1373 struct inode *inode = page->mapping->host;
1374 struct btrfs_writepage_fixup *fixup;
1375 struct btrfs_root *root = BTRFS_I(inode)->root;
1376 int ret;
1377
1378 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1379 EXTENT_ORDERED, 0);
1380 if (ret)
1381 return 0;
1382
1383 if (PageChecked(page))
1384 return -EAGAIN;
1385
1386 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1387 if (!fixup)
1388 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001389
Chris Mason247e7432008-07-17 12:53:51 -04001390 SetPageChecked(page);
1391 page_cache_get(page);
1392 fixup->work.func = btrfs_writepage_fixup_worker;
1393 fixup->page = page;
1394 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1395 return -EAGAIN;
1396}
1397
Yan Zhengd899e052008-10-30 14:25:28 -04001398static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1399 struct inode *inode, u64 file_pos,
1400 u64 disk_bytenr, u64 disk_num_bytes,
1401 u64 num_bytes, u64 ram_bytes,
1402 u8 compression, u8 encryption,
1403 u16 other_encoding, int extent_type)
1404{
1405 struct btrfs_root *root = BTRFS_I(inode)->root;
1406 struct btrfs_file_extent_item *fi;
1407 struct btrfs_path *path;
1408 struct extent_buffer *leaf;
1409 struct btrfs_key ins;
1410 u64 hint;
1411 int ret;
1412
1413 path = btrfs_alloc_path();
1414 BUG_ON(!path);
1415
1416 ret = btrfs_drop_extents(trans, root, inode, file_pos,
1417 file_pos + num_bytes, file_pos, &hint);
1418 BUG_ON(ret);
1419
1420 ins.objectid = inode->i_ino;
1421 ins.offset = file_pos;
1422 ins.type = BTRFS_EXTENT_DATA_KEY;
1423 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1424 BUG_ON(ret);
1425 leaf = path->nodes[0];
1426 fi = btrfs_item_ptr(leaf, path->slots[0],
1427 struct btrfs_file_extent_item);
1428 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1429 btrfs_set_file_extent_type(leaf, fi, extent_type);
1430 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1431 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1432 btrfs_set_file_extent_offset(leaf, fi, 0);
1433 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1434 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1435 btrfs_set_file_extent_compression(leaf, fi, compression);
1436 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1437 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
1438 btrfs_mark_buffer_dirty(leaf);
1439
1440 inode_add_bytes(inode, num_bytes);
1441 btrfs_drop_extent_cache(inode, file_pos, file_pos + num_bytes - 1, 0);
1442
1443 ins.objectid = disk_bytenr;
1444 ins.offset = disk_num_bytes;
1445 ins.type = BTRFS_EXTENT_ITEM_KEY;
1446 ret = btrfs_alloc_reserved_extent(trans, root, leaf->start,
1447 root->root_key.objectid,
1448 trans->transid, inode->i_ino, &ins);
1449 BUG_ON(ret);
1450
1451 btrfs_free_path(path);
1452 return 0;
1453}
1454
Chris Masond352ac62008-09-29 15:18:18 -04001455/* as ordered data IO finishes, this gets called so we can finish
1456 * an ordered extent if the range of bytes in the file it covers are
1457 * fully written.
1458 */
Chris Mason211f90e2008-07-18 11:56:15 -04001459static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001460{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001461 struct btrfs_root *root = BTRFS_I(inode)->root;
1462 struct btrfs_trans_handle *trans;
1463 struct btrfs_ordered_extent *ordered_extent;
1464 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan Zhengd899e052008-10-30 14:25:28 -04001465 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001466 int ret;
1467
1468 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001469 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001470 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001471
Chris Masonf9295742008-07-17 12:54:14 -04001472 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001473
1474 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
1475 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001476 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
1477 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001478
1479 lock_extent(io_tree, ordered_extent->file_offset,
1480 ordered_extent->file_offset + ordered_extent->len - 1,
1481 GFP_NOFS);
1482
Chris Masonc8b97812008-10-29 14:49:59 -04001483 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001484 compressed = 1;
1485 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1486 BUG_ON(compressed);
1487 ret = btrfs_mark_extent_written(trans, root, inode,
1488 ordered_extent->file_offset,
1489 ordered_extent->file_offset +
1490 ordered_extent->len);
1491 BUG_ON(ret);
1492 } else {
1493 ret = insert_reserved_file_extent(trans, inode,
1494 ordered_extent->file_offset,
1495 ordered_extent->start,
1496 ordered_extent->disk_len,
1497 ordered_extent->len,
1498 ordered_extent->len,
1499 compressed, 0, 0,
1500 BTRFS_FILE_EXTENT_REG);
1501 BUG_ON(ret);
1502 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001503 unlock_extent(io_tree, ordered_extent->file_offset,
1504 ordered_extent->file_offset + ordered_extent->len - 1,
1505 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001506nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001507 add_pending_csums(trans, inode, ordered_extent->file_offset,
1508 &ordered_extent->list);
1509
Chris Mason34353022008-09-23 20:19:49 -04001510 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masondbe674a2008-07-17 12:54:05 -04001511 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -04001512 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001513 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason34353022008-09-23 20:19:49 -04001514 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -04001515
Chris Masone6dcd2d2008-07-17 12:53:50 -04001516 /* once for us */
1517 btrfs_put_ordered_extent(ordered_extent);
1518 /* once for the tree */
1519 btrfs_put_ordered_extent(ordered_extent);
1520
Chris Masone6dcd2d2008-07-17 12:53:50 -04001521 btrfs_end_transaction(trans, root);
1522 return 0;
1523}
1524
Christoph Hellwigb2950862008-12-02 09:54:17 -05001525static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001526 struct extent_state *state, int uptodate)
1527{
1528 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1529}
1530
Chris Masond352ac62008-09-29 15:18:18 -04001531/*
1532 * When IO fails, either with EIO or csum verification fails, we
1533 * try other mirrors that might have a good copy of the data. This
1534 * io_failure_record is used to record state as we go through all the
1535 * mirrors. If another mirror has good data, the page is set up to date
1536 * and things continue. If a good mirror can't be found, the original
1537 * bio end_io callback is called to indicate things have failed.
1538 */
Chris Mason7e383262008-04-09 16:28:12 -04001539struct io_failure_record {
1540 struct page *page;
1541 u64 start;
1542 u64 len;
1543 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001544 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001545 int last_mirror;
1546};
1547
Christoph Hellwigb2950862008-12-02 09:54:17 -05001548static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001549 struct page *page, u64 start, u64 end,
1550 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001551{
1552 struct io_failure_record *failrec = NULL;
1553 u64 private;
1554 struct extent_map *em;
1555 struct inode *inode = page->mapping->host;
1556 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001557 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001558 struct bio *bio;
1559 int num_copies;
1560 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001561 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001562 u64 logical;
1563
1564 ret = get_state_private(failure_tree, start, &private);
1565 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001566 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1567 if (!failrec)
1568 return -ENOMEM;
1569 failrec->start = start;
1570 failrec->len = end - start + 1;
1571 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001572 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001573
Chris Mason3b951512008-04-17 11:29:12 -04001574 spin_lock(&em_tree->lock);
1575 em = lookup_extent_mapping(em_tree, start, failrec->len);
1576 if (em->start > start || em->start + em->len < start) {
1577 free_extent_map(em);
1578 em = NULL;
1579 }
1580 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001581
1582 if (!em || IS_ERR(em)) {
1583 kfree(failrec);
1584 return -EIO;
1585 }
1586 logical = start - em->start;
1587 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001588 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1589 logical = em->block_start;
1590 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1591 }
Chris Mason7e383262008-04-09 16:28:12 -04001592 failrec->logical = logical;
1593 free_extent_map(em);
1594 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1595 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001596 set_state_private(failure_tree, start,
1597 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001598 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001599 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001600 }
1601 num_copies = btrfs_num_copies(
1602 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1603 failrec->logical, failrec->len);
1604 failrec->last_mirror++;
1605 if (!state) {
1606 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
1607 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1608 failrec->start,
1609 EXTENT_LOCKED);
1610 if (state && state->start != failrec->start)
1611 state = NULL;
1612 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
1613 }
1614 if (!state || failrec->last_mirror > num_copies) {
1615 set_state_private(failure_tree, failrec->start, 0);
1616 clear_extent_bits(failure_tree, failrec->start,
1617 failrec->start + failrec->len - 1,
1618 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1619 kfree(failrec);
1620 return -EIO;
1621 }
1622 bio = bio_alloc(GFP_NOFS, 1);
1623 bio->bi_private = state;
1624 bio->bi_end_io = failed_bio->bi_end_io;
1625 bio->bi_sector = failrec->logical >> 9;
1626 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001627 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001628
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,
Chris Masond20f7042008-12-08 16:58:54 -05001637 failrec->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 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001645static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001646{
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 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001678static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001679 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
Chris Masond20f7042008-12-08 16:58:54 -05001691 if (PageChecked(page)) {
1692 ClearPageChecked(page);
1693 goto good;
1694 }
Yanb98b6762008-01-08 15:54:37 -05001695 if (btrfs_test_opt(root, NODATASUM) ||
1696 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -05001697 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001698
Yanc2e639f2008-02-04 08:57:25 -05001699 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001700 private = state->private;
1701 ret = 0;
1702 } else {
1703 ret = get_state_private(io_tree, start, &private);
1704 }
Jens Axboebbf0d002007-10-19 09:23:07 -04001705 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -04001706 kaddr = kmap_atomic(page, KM_IRQ0);
1707 if (ret) {
1708 goto zeroit;
1709 }
Chris Masonff79f812007-10-15 16:22:25 -04001710 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1711 btrfs_csum_final(csum, (char *)&csum);
1712 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -04001713 goto zeroit;
1714 }
1715 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001716 local_irq_restore(flags);
Chris Masond20f7042008-12-08 16:58:54 -05001717good:
Chris Mason7e383262008-04-09 16:28:12 -04001718 /* if the io failure tree for this inode is non-empty,
1719 * check to see if we've recovered from a failed IO
1720 */
Chris Mason1259ab72008-05-12 13:39:03 -04001721 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001722 return 0;
1723
1724zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -05001725 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
1726 page->mapping->host->i_ino, (unsigned long long)start, csum,
1727 private);
Chris Masondb945352007-10-15 16:15:53 -04001728 memset(kaddr + offset, 1, end - start + 1);
1729 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -04001730 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001731 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -04001732 if (private == 0)
1733 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001734 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001735}
Chris Masonb888db22007-08-27 16:49:44 -04001736
Josef Bacik7b128762008-07-24 12:17:14 -04001737/*
1738 * This creates an orphan entry for the given inode in case something goes
1739 * wrong in the middle of an unlink/truncate.
1740 */
1741int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1742{
1743 struct btrfs_root *root = BTRFS_I(inode)->root;
1744 int ret = 0;
1745
Yanbcc63ab2008-07-30 16:29:20 -04001746 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001747
1748 /* already on the orphan list, we're good */
1749 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001750 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001751 return 0;
1752 }
1753
1754 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
1755
Yanbcc63ab2008-07-30 16:29:20 -04001756 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001757
1758 /*
1759 * insert an orphan item to track this unlinked/truncated file
1760 */
1761 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
1762
1763 return ret;
1764}
1765
1766/*
1767 * We have done the truncate/delete so we can go ahead and remove the orphan
1768 * item for this particular inode.
1769 */
1770int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
1771{
1772 struct btrfs_root *root = BTRFS_I(inode)->root;
1773 int ret = 0;
1774
Yanbcc63ab2008-07-30 16:29:20 -04001775 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001776
1777 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001778 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001779 return 0;
1780 }
1781
1782 list_del_init(&BTRFS_I(inode)->i_orphan);
1783 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04001784 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001785 return 0;
1786 }
1787
Yanbcc63ab2008-07-30 16:29:20 -04001788 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001789
1790 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
1791
1792 return ret;
1793}
1794
1795/*
1796 * this cleans up any orphans that may be left on the list from the last use
1797 * of this root.
1798 */
1799void btrfs_orphan_cleanup(struct btrfs_root *root)
1800{
1801 struct btrfs_path *path;
1802 struct extent_buffer *leaf;
1803 struct btrfs_item *item;
1804 struct btrfs_key key, found_key;
1805 struct btrfs_trans_handle *trans;
1806 struct inode *inode;
1807 int ret = 0, nr_unlink = 0, nr_truncate = 0;
1808
Josef Bacik7b128762008-07-24 12:17:14 -04001809 path = btrfs_alloc_path();
1810 if (!path)
1811 return;
1812 path->reada = -1;
1813
1814 key.objectid = BTRFS_ORPHAN_OBJECTID;
1815 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1816 key.offset = (u64)-1;
1817
Josef Bacik7b128762008-07-24 12:17:14 -04001818
1819 while (1) {
1820 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1821 if (ret < 0) {
1822 printk(KERN_ERR "Error searching slot for orphan: %d"
1823 "\n", ret);
1824 break;
1825 }
1826
1827 /*
1828 * if ret == 0 means we found what we were searching for, which
1829 * is weird, but possible, so only screw with path if we didnt
1830 * find the key and see if we have stuff that matches
1831 */
1832 if (ret > 0) {
1833 if (path->slots[0] == 0)
1834 break;
1835 path->slots[0]--;
1836 }
1837
1838 /* pull out the item */
1839 leaf = path->nodes[0];
1840 item = btrfs_item_nr(leaf, path->slots[0]);
1841 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1842
1843 /* make sure the item matches what we want */
1844 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
1845 break;
1846 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
1847 break;
1848
1849 /* release the path since we're done with it */
1850 btrfs_release_path(root, path);
1851
1852 /*
1853 * this is where we are basically btrfs_lookup, without the
1854 * crossing root thing. we store the inode number in the
1855 * offset of the orphan item.
1856 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001857 inode = btrfs_iget_locked(root->fs_info->sb,
Josef Bacik7b128762008-07-24 12:17:14 -04001858 found_key.offset, root);
1859 if (!inode)
1860 break;
1861
1862 if (inode->i_state & I_NEW) {
1863 BTRFS_I(inode)->root = root;
1864
1865 /* have to set the location manually */
1866 BTRFS_I(inode)->location.objectid = inode->i_ino;
1867 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
1868 BTRFS_I(inode)->location.offset = 0;
1869
1870 btrfs_read_locked_inode(inode);
1871 unlock_new_inode(inode);
1872 }
1873
1874 /*
1875 * add this inode to the orphan list so btrfs_orphan_del does
1876 * the proper thing when we hit it
1877 */
Yanbcc63ab2008-07-30 16:29:20 -04001878 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001879 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04001880 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001881
1882 /*
1883 * if this is a bad inode, means we actually succeeded in
1884 * removing the inode, but not the orphan record, which means
1885 * we need to manually delete the orphan since iput will just
1886 * do a destroy_inode
1887 */
1888 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001889 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04001890 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001891 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04001892 iput(inode);
1893 continue;
1894 }
1895
1896 /* if we have links, this was a truncate, lets do that */
1897 if (inode->i_nlink) {
1898 nr_truncate++;
1899 btrfs_truncate(inode);
1900 } else {
1901 nr_unlink++;
1902 }
1903
1904 /* this will do delete_inode and everything for us */
1905 iput(inode);
1906 }
1907
1908 if (nr_unlink)
1909 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
1910 if (nr_truncate)
1911 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
1912
1913 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04001914}
1915
Chris Masond352ac62008-09-29 15:18:18 -04001916/*
1917 * read an inode from the btree into the in-memory inode
1918 */
Chris Mason39279cc2007-06-12 06:35:45 -04001919void btrfs_read_locked_inode(struct inode *inode)
1920{
1921 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001922 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001923 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04001924 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04001925 struct btrfs_root *root = BTRFS_I(inode)->root;
1926 struct btrfs_key location;
1927 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04001928 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04001929 int ret;
1930
1931 path = btrfs_alloc_path();
1932 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001933 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05001934
Chris Mason39279cc2007-06-12 06:35:45 -04001935 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001936 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001937 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04001938
Chris Mason5f39d392007-10-15 16:14:19 -04001939 leaf = path->nodes[0];
1940 inode_item = btrfs_item_ptr(leaf, path->slots[0],
1941 struct btrfs_inode_item);
1942
1943 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
1944 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
1945 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
1946 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04001947 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04001948
1949 tspec = btrfs_inode_atime(inode_item);
1950 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1951 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1952
1953 tspec = btrfs_inode_mtime(inode_item);
1954 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1955 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1956
1957 tspec = btrfs_inode_ctime(inode_item);
1958 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1959 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1960
Yan Zhenga76a3cd2008-10-09 11:46:29 -04001961 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04001962 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05001963 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04001964 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04001965 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001966 rdev = btrfs_inode_rdev(leaf, inode_item);
1967
Josef Bacikaec74772008-07-24 12:12:38 -04001968 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001969 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04001970
Chris Mason5f39d392007-10-15 16:14:19 -04001971 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Yan Zhengd2fb3432008-12-11 16:30:39 -05001972 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
1973 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001974 btrfs_free_path(path);
1975 inode_item = NULL;
1976
Chris Mason39279cc2007-06-12 06:35:45 -04001977 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04001978 case S_IFREG:
1979 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001980 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05001981 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001982 inode->i_fop = &btrfs_file_operations;
1983 inode->i_op = &btrfs_file_inode_operations;
1984 break;
1985 case S_IFDIR:
1986 inode->i_fop = &btrfs_dir_file_operations;
1987 if (root == root->fs_info->tree_root)
1988 inode->i_op = &btrfs_dir_ro_inode_operations;
1989 else
1990 inode->i_op = &btrfs_dir_inode_operations;
1991 break;
1992 case S_IFLNK:
1993 inode->i_op = &btrfs_symlink_inode_operations;
1994 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04001995 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001996 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04001997 default:
1998 init_special_inode(inode, inode->i_mode, rdev);
1999 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002000 }
2001 return;
2002
2003make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002004 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002005 make_bad_inode(inode);
2006}
2007
Chris Masond352ac62008-09-29 15:18:18 -04002008/*
2009 * given a leaf and an inode, copy the inode fields into the leaf
2010 */
Chris Masone02119d2008-09-05 16:13:11 -04002011static void fill_inode_item(struct btrfs_trans_handle *trans,
2012 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002013 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002014 struct inode *inode)
2015{
Chris Mason5f39d392007-10-15 16:14:19 -04002016 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2017 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002018 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002019 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2020 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2021
2022 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2023 inode->i_atime.tv_sec);
2024 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2025 inode->i_atime.tv_nsec);
2026
2027 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2028 inode->i_mtime.tv_sec);
2029 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2030 inode->i_mtime.tv_nsec);
2031
2032 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2033 inode->i_ctime.tv_sec);
2034 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2035 inode->i_ctime.tv_nsec);
2036
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002037 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002038 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002039 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002040 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002041 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002042 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002043 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002044}
2045
Chris Masond352ac62008-09-29 15:18:18 -04002046/*
2047 * copy everything in the in-memory inode into the btree.
2048 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002049int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -04002050 struct btrfs_root *root,
2051 struct inode *inode)
2052{
2053 struct btrfs_inode_item *inode_item;
2054 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002055 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002056 int ret;
2057
2058 path = btrfs_alloc_path();
2059 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002060 ret = btrfs_lookup_inode(trans, root, path,
2061 &BTRFS_I(inode)->location, 1);
2062 if (ret) {
2063 if (ret > 0)
2064 ret = -ENOENT;
2065 goto failed;
2066 }
2067
Chris Mason5f39d392007-10-15 16:14:19 -04002068 leaf = path->nodes[0];
2069 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002070 struct btrfs_inode_item);
2071
Chris Masone02119d2008-09-05 16:13:11 -04002072 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002073 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002074 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002075 ret = 0;
2076failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002077 btrfs_free_path(path);
2078 return ret;
2079}
2080
2081
Chris Masond352ac62008-09-29 15:18:18 -04002082/*
2083 * unlink helper that gets used here in inode.c and in the tree logging
2084 * recovery code. It remove a link in a directory with a given name, and
2085 * also drops the back refs in the inode to the directory
2086 */
Chris Masone02119d2008-09-05 16:13:11 -04002087int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2088 struct btrfs_root *root,
2089 struct inode *dir, struct inode *inode,
2090 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002091{
2092 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002093 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002094 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002095 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002096 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002097 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002098
2099 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002100 if (!path) {
2101 ret = -ENOMEM;
2102 goto err;
2103 }
2104
Chris Mason39279cc2007-06-12 06:35:45 -04002105 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2106 name, name_len, -1);
2107 if (IS_ERR(di)) {
2108 ret = PTR_ERR(di);
2109 goto err;
2110 }
2111 if (!di) {
2112 ret = -ENOENT;
2113 goto err;
2114 }
Chris Mason5f39d392007-10-15 16:14:19 -04002115 leaf = path->nodes[0];
2116 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002117 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002118 if (ret)
2119 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002120 btrfs_release_path(root, path);
2121
Josef Bacikaec74772008-07-24 12:12:38 -04002122 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002123 inode->i_ino,
2124 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002125 if (ret) {
2126 printk("failed to delete reference to %.*s, "
2127 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002128 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002129 goto err;
2130 }
2131
Chris Mason39279cc2007-06-12 06:35:45 -04002132 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002133 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002134 if (IS_ERR(di)) {
2135 ret = PTR_ERR(di);
2136 goto err;
2137 }
2138 if (!di) {
2139 ret = -ENOENT;
2140 goto err;
2141 }
2142 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002143 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002144
Chris Masone02119d2008-09-05 16:13:11 -04002145 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2146 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002147 BUG_ON(ret != 0 && ret != -ENOENT);
2148 if (ret != -ENOENT)
2149 BTRFS_I(dir)->log_dirty_trans = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04002150
2151 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2152 dir, index);
2153 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002154err:
2155 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002156 if (ret)
2157 goto out;
2158
2159 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2160 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2161 btrfs_update_inode(trans, root, dir);
2162 btrfs_drop_nlink(inode);
2163 ret = btrfs_update_inode(trans, root, inode);
2164 dir->i_sb->s_dirt = 1;
2165out:
Chris Mason39279cc2007-06-12 06:35:45 -04002166 return ret;
2167}
2168
2169static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2170{
2171 struct btrfs_root *root;
2172 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002173 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002174 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002175 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002176
2177 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002178
2179 ret = btrfs_check_free_space(root, 1, 1);
2180 if (ret)
2181 goto fail;
2182
Chris Mason39279cc2007-06-12 06:35:45 -04002183 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002184
Chris Mason39279cc2007-06-12 06:35:45 -04002185 btrfs_set_trans_block_group(trans, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002186 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2187 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002188
2189 if (inode->i_nlink == 0)
2190 ret = btrfs_orphan_add(trans, inode);
2191
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002192 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002193
Chris Mason89ce8a62008-06-25 16:01:31 -04002194 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002195fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002196 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002197 return ret;
2198}
2199
2200static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2201{
2202 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002203 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002204 int ret;
2205 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002206 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002207 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002208
Chris Mason3394e162008-11-17 20:42:26 -05002209 /*
2210 * the FIRST_FREE_OBJECTID check makes sure we don't try to rmdir
2211 * the root of a subvolume or snapshot
2212 */
2213 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
2214 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) {
Yan134d4512007-10-25 15:49:25 -04002215 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04002216 }
Yan134d4512007-10-25 15:49:25 -04002217
Chris Mason1832a6d2007-12-21 16:27:21 -05002218 ret = btrfs_check_free_space(root, 1, 1);
2219 if (ret)
2220 goto fail;
2221
Chris Mason39279cc2007-06-12 06:35:45 -04002222 trans = btrfs_start_transaction(root, 1);
2223 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002224
Josef Bacik7b128762008-07-24 12:17:14 -04002225 err = btrfs_orphan_add(trans, inode);
2226 if (err)
2227 goto fail_trans;
2228
Chris Mason39279cc2007-06-12 06:35:45 -04002229 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002230 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2231 dentry->d_name.name, dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002232 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04002233 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002234 }
Chris Mason39544012007-12-12 14:38:19 -05002235
Josef Bacik7b128762008-07-24 12:17:14 -04002236fail_trans:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002237 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002238 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002239fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002240 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002241
Chris Mason39279cc2007-06-12 06:35:45 -04002242 if (ret && !err)
2243 err = ret;
2244 return err;
2245}
2246
Chris Masond20f7042008-12-08 16:58:54 -05002247#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002248/*
Chris Mason323ac952008-10-01 19:05:46 -04002249 * when truncating bytes in a file, it is possible to avoid reading
2250 * the leaves that contain only checksum items. This can be the
2251 * majority of the IO required to delete a large file, but it must
2252 * be done carefully.
2253 *
2254 * The keys in the level just above the leaves are checked to make sure
2255 * the lowest key in a given leaf is a csum key, and starts at an offset
2256 * after the new size.
2257 *
2258 * Then the key for the next leaf is checked to make sure it also has
2259 * a checksum item for the same file. If it does, we know our target leaf
2260 * contains only checksum items, and it can be safely freed without reading
2261 * it.
2262 *
2263 * This is just an optimization targeted at large files. It may do
2264 * nothing. It will return 0 unless things went badly.
2265 */
2266static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2267 struct btrfs_root *root,
2268 struct btrfs_path *path,
2269 struct inode *inode, u64 new_size)
2270{
2271 struct btrfs_key key;
2272 int ret;
2273 int nritems;
2274 struct btrfs_key found_key;
2275 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002276 struct btrfs_leaf_ref *ref;
2277 u64 leaf_gen;
2278 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002279
2280 path->lowest_level = 1;
2281 key.objectid = inode->i_ino;
2282 key.type = BTRFS_CSUM_ITEM_KEY;
2283 key.offset = new_size;
2284again:
2285 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2286 if (ret < 0)
2287 goto out;
2288
2289 if (path->nodes[1] == NULL) {
2290 ret = 0;
2291 goto out;
2292 }
2293 ret = 0;
2294 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2295 nritems = btrfs_header_nritems(path->nodes[1]);
2296
2297 if (!nritems)
2298 goto out;
2299
2300 if (path->slots[1] >= nritems)
2301 goto next_node;
2302
2303 /* did we find a key greater than anything we want to delete? */
2304 if (found_key.objectid > inode->i_ino ||
2305 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2306 goto out;
2307
2308 /* we check the next key in the node to make sure the leave contains
2309 * only checksum items. This comparison doesn't work if our
2310 * leaf is the last one in the node
2311 */
2312 if (path->slots[1] + 1 >= nritems) {
2313next_node:
2314 /* search forward from the last key in the node, this
2315 * will bring us into the next node in the tree
2316 */
2317 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2318
2319 /* unlikely, but we inc below, so check to be safe */
2320 if (found_key.offset == (u64)-1)
2321 goto out;
2322
2323 /* search_forward needs a path with locks held, do the
2324 * search again for the original key. It is possible
2325 * this will race with a balance and return a path that
2326 * we could modify, but this drop is just an optimization
2327 * and is allowed to miss some leaves.
2328 */
2329 btrfs_release_path(root, path);
2330 found_key.offset++;
2331
2332 /* setup a max key for search_forward */
2333 other_key.offset = (u64)-1;
2334 other_key.type = key.type;
2335 other_key.objectid = key.objectid;
2336
2337 path->keep_locks = 1;
2338 ret = btrfs_search_forward(root, &found_key, &other_key,
2339 path, 0, 0);
2340 path->keep_locks = 0;
2341 if (ret || found_key.objectid != key.objectid ||
2342 found_key.type != key.type) {
2343 ret = 0;
2344 goto out;
2345 }
2346
2347 key.offset = found_key.offset;
2348 btrfs_release_path(root, path);
2349 cond_resched();
2350 goto again;
2351 }
2352
2353 /* we know there's one more slot after us in the tree,
2354 * read that key so we can verify it is also a checksum item
2355 */
2356 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2357
2358 if (found_key.objectid < inode->i_ino)
2359 goto next_key;
2360
2361 if (found_key.type != key.type || found_key.offset < new_size)
2362 goto next_key;
2363
2364 /*
2365 * if the key for the next leaf isn't a csum key from this objectid,
2366 * we can't be sure there aren't good items inside this leaf.
2367 * Bail out
2368 */
2369 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2370 goto out;
2371
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002372 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2373 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002374 /*
2375 * it is safe to delete this leaf, it contains only
2376 * csum items from this inode at an offset >= new_size
2377 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002378 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002379 BUG_ON(ret);
2380
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002381 if (root->ref_cows && leaf_gen < trans->transid) {
2382 ref = btrfs_alloc_leaf_ref(root, 0);
2383 if (ref) {
2384 ref->root_gen = root->root_key.offset;
2385 ref->bytenr = leaf_start;
2386 ref->owner = 0;
2387 ref->generation = leaf_gen;
2388 ref->nritems = 0;
2389
2390 ret = btrfs_add_leaf_ref(root, ref, 0);
2391 WARN_ON(ret);
2392 btrfs_free_leaf_ref(root, ref);
2393 } else {
2394 WARN_ON(1);
2395 }
2396 }
Chris Mason323ac952008-10-01 19:05:46 -04002397next_key:
2398 btrfs_release_path(root, path);
2399
2400 if (other_key.objectid == inode->i_ino &&
2401 other_key.type == key.type && other_key.offset > key.offset) {
2402 key.offset = other_key.offset;
2403 cond_resched();
2404 goto again;
2405 }
2406 ret = 0;
2407out:
2408 /* fixup any changes we've made to the path */
2409 path->lowest_level = 0;
2410 path->keep_locks = 0;
2411 btrfs_release_path(root, path);
2412 return ret;
2413}
2414
Chris Masond20f7042008-12-08 16:58:54 -05002415#endif
2416
Chris Mason323ac952008-10-01 19:05:46 -04002417/*
Chris Mason39279cc2007-06-12 06:35:45 -04002418 * this can truncate away extent items, csum items and directory items.
2419 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002420 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002421 *
2422 * csum items that cross the new i_size are truncated to the new size
2423 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002424 *
2425 * min_type is the minimum key type to truncate down to. If set to 0, this
2426 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002427 */
Chris Masone02119d2008-09-05 16:13:11 -04002428noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2429 struct btrfs_root *root,
2430 struct inode *inode,
2431 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002432{
2433 int ret;
2434 struct btrfs_path *path;
2435 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002436 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002437 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04002438 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002439 struct btrfs_file_extent_item *fi;
2440 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002441 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002442 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002443 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05002444 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002445 int found_extent;
2446 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002447 int pending_del_nr = 0;
2448 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002449 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002450 int encoding;
Chris Mason3b951512008-04-17 11:29:12 -04002451 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002452
Chris Masone02119d2008-09-05 16:13:11 -04002453 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002454 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002455 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04002456 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04002457 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04002458
Chris Mason39279cc2007-06-12 06:35:45 -04002459 /* FIXME, add redo link to tree so we don't leak on crash */
2460 key.objectid = inode->i_ino;
2461 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002462 key.type = (u8)-1;
2463
Chris Mason85e21ba2008-01-29 15:11:36 -05002464 btrfs_init_path(path);
Chris Mason323ac952008-10-01 19:05:46 -04002465
Chris Mason85e21ba2008-01-29 15:11:36 -05002466search_again:
2467 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2468 if (ret < 0) {
2469 goto error;
2470 }
2471 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002472 /* there are no items in the tree for us to truncate, we're
2473 * done
2474 */
2475 if (path->slots[0] == 0) {
2476 ret = 0;
2477 goto error;
2478 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002479 path->slots[0]--;
2480 }
2481
Chris Mason39279cc2007-06-12 06:35:45 -04002482 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002483 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002484 leaf = path->nodes[0];
2485 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2486 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002487 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002488
Chris Mason5f39d392007-10-15 16:14:19 -04002489 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002490 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002491
Chris Mason85e21ba2008-01-29 15:11:36 -05002492 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002493 break;
2494
Chris Mason5f39d392007-10-15 16:14:19 -04002495 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002496 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002497 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002498 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002499 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002500 encoding = btrfs_file_extent_compression(leaf, fi);
2501 encoding |= btrfs_file_extent_encryption(leaf, fi);
2502 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2503
Chris Mason179e29e2007-11-01 11:28:41 -04002504 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002505 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002506 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002507 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002508 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002509 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002510 }
Yan008630c2007-11-07 13:31:09 -05002511 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002512 }
Chris Masone02119d2008-09-05 16:13:11 -04002513 if (item_end < new_size) {
Chris Masonb888db22007-08-27 16:49:44 -04002514 if (found_type == BTRFS_DIR_ITEM_KEY) {
2515 found_type = BTRFS_INODE_ITEM_KEY;
2516 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
Chris Masond20f7042008-12-08 16:58:54 -05002517 found_type = BTRFS_EXTENT_DATA_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05002518 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
2519 found_type = BTRFS_XATTR_ITEM_KEY;
2520 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
2521 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04002522 } else if (found_type) {
2523 found_type--;
2524 } else {
2525 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002526 }
Yana61721d2007-09-17 11:08:38 -04002527 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05002528 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04002529 }
Chris Masone02119d2008-09-05 16:13:11 -04002530 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04002531 del_item = 1;
2532 else
2533 del_item = 0;
2534 found_extent = 0;
2535
2536 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002537 if (found_type != BTRFS_EXTENT_DATA_KEY)
2538 goto delete;
2539
2540 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002541 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002542 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002543 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002544 u64 orig_num_bytes =
2545 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002546 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002547 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002548 extent_num_bytes = extent_num_bytes &
2549 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002550 btrfs_set_file_extent_num_bytes(leaf, fi,
2551 extent_num_bytes);
2552 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002553 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002554 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002555 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002556 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002557 } else {
Chris Masondb945352007-10-15 16:15:53 -04002558 extent_num_bytes =
2559 btrfs_file_extent_disk_num_bytes(leaf,
2560 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002561 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002562 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002563 if (extent_start != 0) {
2564 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002565 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002566 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002567 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002568 root_gen = btrfs_header_generation(leaf);
Chris Masond8d5f3e2007-12-11 12:42:00 -05002569 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002570 }
Chris Mason90692182008-02-08 13:49:28 -05002571 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002572 /*
2573 * we can't truncate inline items that have had
2574 * special encodings
2575 */
2576 if (!del_item &&
2577 btrfs_file_extent_compression(leaf, fi) == 0 &&
2578 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2579 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002580 u32 size = new_size - found_key.offset;
2581
2582 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002583 inode_sub_bytes(inode, item_end + 1 -
2584 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04002585 }
2586 size =
2587 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05002588 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002589 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05002590 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04002591 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002592 inode_sub_bytes(inode, item_end + 1 -
2593 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05002594 }
Chris Mason39279cc2007-06-12 06:35:45 -04002595 }
Chris Mason179e29e2007-11-01 11:28:41 -04002596delete:
Chris Mason39279cc2007-06-12 06:35:45 -04002597 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05002598 if (!pending_del_nr) {
2599 /* no pending yet, add ourselves */
2600 pending_del_slot = path->slots[0];
2601 pending_del_nr = 1;
2602 } else if (pending_del_nr &&
2603 path->slots[0] + 1 == pending_del_slot) {
2604 /* hop on the pending chunk */
2605 pending_del_nr++;
2606 pending_del_slot = path->slots[0];
2607 } else {
2608 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
2609 }
Chris Mason39279cc2007-06-12 06:35:45 -04002610 } else {
2611 break;
2612 }
Chris Mason39279cc2007-06-12 06:35:45 -04002613 if (found_extent) {
2614 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05002615 extent_num_bytes,
Zheng Yan31840ae2008-09-23 13:14:14 -04002616 leaf->start, root_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04002617 root_gen, inode->i_ino, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002618 BUG_ON(ret);
2619 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002620next:
2621 if (path->slots[0] == 0) {
2622 if (pending_del_nr)
2623 goto del_pending;
2624 btrfs_release_path(root, path);
2625 goto search_again;
2626 }
2627
2628 path->slots[0]--;
2629 if (pending_del_nr &&
2630 path->slots[0] + 1 != pending_del_slot) {
2631 struct btrfs_key debug;
2632del_pending:
2633 btrfs_item_key_to_cpu(path->nodes[0], &debug,
2634 pending_del_slot);
2635 ret = btrfs_del_items(trans, root, path,
2636 pending_del_slot,
2637 pending_del_nr);
2638 BUG_ON(ret);
2639 pending_del_nr = 0;
2640 btrfs_release_path(root, path);
2641 goto search_again;
2642 }
Chris Mason39279cc2007-06-12 06:35:45 -04002643 }
2644 ret = 0;
2645error:
Chris Mason85e21ba2008-01-29 15:11:36 -05002646 if (pending_del_nr) {
2647 ret = btrfs_del_items(trans, root, path, pending_del_slot,
2648 pending_del_nr);
2649 }
Chris Mason39279cc2007-06-12 06:35:45 -04002650 btrfs_free_path(path);
2651 inode->i_sb->s_dirt = 1;
2652 return ret;
2653}
2654
Chris Masona52d9a82007-08-27 16:49:44 -04002655/*
2656 * taken from block_truncate_page, but does cow as it zeros out
2657 * any bytes left in the last page in the file.
2658 */
2659static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
2660{
2661 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04002662 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002663 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2664 struct btrfs_ordered_extent *ordered;
2665 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04002666 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04002667 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2668 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2669 struct page *page;
2670 int ret = 0;
2671 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002672 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04002673
2674 if ((offset & (blocksize - 1)) == 0)
2675 goto out;
2676
2677 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04002678again:
Chris Masona52d9a82007-08-27 16:49:44 -04002679 page = grab_cache_page(mapping, index);
2680 if (!page)
2681 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002682
2683 page_start = page_offset(page);
2684 page_end = page_start + PAGE_CACHE_SIZE - 1;
2685
Chris Masona52d9a82007-08-27 16:49:44 -04002686 if (!PageUptodate(page)) {
2687 ret = btrfs_readpage(NULL, page);
2688 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04002689 if (page->mapping != mapping) {
2690 unlock_page(page);
2691 page_cache_release(page);
2692 goto again;
2693 }
Chris Masona52d9a82007-08-27 16:49:44 -04002694 if (!PageUptodate(page)) {
2695 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04002696 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04002697 }
2698 }
Chris Mason211c17f2008-05-15 09:13:45 -04002699 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002700
2701 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2702 set_page_extent_mapped(page);
2703
2704 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2705 if (ordered) {
2706 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2707 unlock_page(page);
2708 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002709 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002710 btrfs_put_ordered_extent(ordered);
2711 goto again;
2712 }
2713
Chris Masonea8c2812008-08-04 23:17:27 -04002714 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002715 ret = 0;
2716 if (offset != PAGE_CACHE_SIZE) {
2717 kaddr = kmap(page);
2718 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2719 flush_dcache_page(page);
2720 kunmap(page);
2721 }
Chris Mason247e7432008-07-17 12:53:51 -04002722 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002723 set_page_dirty(page);
2724 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002725
Chris Mason89642222008-07-24 09:41:53 -04002726out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002727 unlock_page(page);
2728 page_cache_release(page);
2729out:
2730 return ret;
2731}
2732
Yan Zheng9036c102008-10-30 14:19:41 -04002733int btrfs_cont_expand(struct inode *inode, loff_t size)
2734{
2735 struct btrfs_trans_handle *trans;
2736 struct btrfs_root *root = BTRFS_I(inode)->root;
2737 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2738 struct extent_map *em;
2739 u64 mask = root->sectorsize - 1;
2740 u64 hole_start = (inode->i_size + mask) & ~mask;
2741 u64 block_end = (size + mask) & ~mask;
2742 u64 last_byte;
2743 u64 cur_offset;
2744 u64 hole_size;
2745 int err;
2746
2747 if (size <= hole_start)
2748 return 0;
2749
2750 err = btrfs_check_free_space(root, 1, 0);
2751 if (err)
2752 return err;
2753
2754 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2755
2756 while (1) {
2757 struct btrfs_ordered_extent *ordered;
2758 btrfs_wait_ordered_range(inode, hole_start,
2759 block_end - hole_start);
2760 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2761 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
2762 if (!ordered)
2763 break;
2764 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2765 btrfs_put_ordered_extent(ordered);
2766 }
2767
2768 trans = btrfs_start_transaction(root, 1);
2769 btrfs_set_trans_block_group(trans, inode);
2770
2771 cur_offset = hole_start;
2772 while (1) {
2773 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2774 block_end - cur_offset, 0);
2775 BUG_ON(IS_ERR(em) || !em);
2776 last_byte = min(extent_map_end(em), block_end);
2777 last_byte = (last_byte + mask) & ~mask;
2778 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05002779 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04002780 hole_size = last_byte - cur_offset;
Chris Mason771ed682008-11-06 22:02:51 -05002781 err = btrfs_drop_extents(trans, root, inode,
2782 cur_offset,
2783 cur_offset + hole_size,
2784 cur_offset, &hint_byte);
2785 if (err)
2786 break;
Yan Zheng9036c102008-10-30 14:19:41 -04002787 err = btrfs_insert_file_extent(trans, root,
2788 inode->i_ino, cur_offset, 0,
2789 0, hole_size, 0, hole_size,
2790 0, 0, 0);
2791 btrfs_drop_extent_cache(inode, hole_start,
2792 last_byte - 1, 0);
2793 }
2794 free_extent_map(em);
2795 cur_offset = last_byte;
2796 if (err || cur_offset >= block_end)
2797 break;
2798 }
2799
2800 btrfs_end_transaction(trans, root);
2801 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2802 return err;
2803}
2804
Chris Mason39279cc2007-06-12 06:35:45 -04002805static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
2806{
2807 struct inode *inode = dentry->d_inode;
2808 int err;
2809
2810 err = inode_change_ok(inode, attr);
2811 if (err)
2812 return err;
2813
2814 if (S_ISREG(inode->i_mode) &&
2815 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
Yan Zheng9036c102008-10-30 14:19:41 -04002816 err = btrfs_cont_expand(inode, attr->ia_size);
Chris Mason54aa1f42007-06-22 14:16:25 -04002817 if (err)
2818 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04002819 }
Yan Zheng9036c102008-10-30 14:19:41 -04002820
Chris Mason39279cc2007-06-12 06:35:45 -04002821 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04002822
2823 if (!err && ((attr->ia_valid & ATTR_MODE)))
2824 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002825 return err;
2826}
Chris Mason61295eb2008-01-14 16:24:38 -05002827
Chris Mason39279cc2007-06-12 06:35:45 -04002828void btrfs_delete_inode(struct inode *inode)
2829{
2830 struct btrfs_trans_handle *trans;
2831 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002832 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002833 int ret;
2834
2835 truncate_inode_pages(&inode->i_data, 0);
2836 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04002837 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002838 goto no_delete;
2839 }
Chris Mason4a096752008-07-21 10:29:44 -04002840 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04002841
Chris Masondbe674a2008-07-17 12:54:05 -04002842 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002843 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002844
Chris Mason39279cc2007-06-12 06:35:45 -04002845 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002846 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04002847 if (ret) {
2848 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002849 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04002850 }
2851
2852 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05002853
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002854 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05002855 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002856
Chris Mason39279cc2007-06-12 06:35:45 -04002857 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002858 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002859 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04002860
2861no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002862 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04002863 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002864 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002865no_delete:
2866 clear_inode(inode);
2867}
2868
2869/*
2870 * this returns the key found in the dir entry in the location pointer.
2871 * If no dir entries were found, location->objectid is 0.
2872 */
2873static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
2874 struct btrfs_key *location)
2875{
2876 const char *name = dentry->d_name.name;
2877 int namelen = dentry->d_name.len;
2878 struct btrfs_dir_item *di;
2879 struct btrfs_path *path;
2880 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04002881 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002882
2883 path = btrfs_alloc_path();
2884 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05002885
Chris Mason39279cc2007-06-12 06:35:45 -04002886 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
2887 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04002888 if (IS_ERR(di))
2889 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04002890 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05002891 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04002892 }
Chris Mason5f39d392007-10-15 16:14:19 -04002893 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04002894out:
Chris Mason39279cc2007-06-12 06:35:45 -04002895 btrfs_free_path(path);
2896 return ret;
Chris Mason39544012007-12-12 14:38:19 -05002897out_err:
2898 location->objectid = 0;
2899 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002900}
2901
2902/*
2903 * when we hit a tree root in a directory, the btrfs part of the inode
2904 * needs to be changed to reflect the root directory of the tree root. This
2905 * is kind of like crossing a mount point.
2906 */
2907static int fixup_tree_root_location(struct btrfs_root *root,
2908 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04002909 struct btrfs_root **sub_root,
2910 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04002911{
Chris Mason39279cc2007-06-12 06:35:45 -04002912 struct btrfs_root_item *ri;
2913
2914 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
2915 return 0;
2916 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
2917 return 0;
2918
Josef Bacik58176a92007-08-29 15:47:34 -04002919 *sub_root = btrfs_read_fs_root(root->fs_info, location,
2920 dentry->d_name.name,
2921 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002922 if (IS_ERR(*sub_root))
2923 return PTR_ERR(*sub_root);
2924
2925 ri = &(*sub_root)->root_item;
2926 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04002927 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2928 location->offset = 0;
2929
Chris Mason39279cc2007-06-12 06:35:45 -04002930 return 0;
2931}
2932
Chris Masone02119d2008-09-05 16:13:11 -04002933static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002934{
Chris Masone02119d2008-09-05 16:13:11 -04002935 struct btrfs_inode *bi = BTRFS_I(inode);
2936
2937 bi->i_acl = NULL;
2938 bi->i_default_acl = NULL;
2939
2940 bi->generation = 0;
Chris Masonc3027eb2008-12-08 16:40:21 -05002941 bi->sequence = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002942 bi->last_trans = 0;
2943 bi->logged_trans = 0;
2944 bi->delalloc_bytes = 0;
2945 bi->disk_i_size = 0;
2946 bi->flags = 0;
2947 bi->index_cnt = (u64)-1;
Chris Mason49eb7e42008-09-11 15:53:12 -04002948 bi->log_dirty_trans = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002949 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2950 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04002951 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002952 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2953 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04002954 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Masonba1da2f2008-07-17 12:54:15 -04002955 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masonee6e6502008-07-17 12:54:40 -04002956 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04002957 mutex_init(&BTRFS_I(inode)->log_mutex);
2958}
2959
2960static int btrfs_init_locked_inode(struct inode *inode, void *p)
2961{
2962 struct btrfs_iget_args *args = p;
2963 inode->i_ino = args->ino;
2964 init_btrfs_i(inode);
2965 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002966 return 0;
2967}
2968
2969static int btrfs_find_actor(struct inode *inode, void *opaque)
2970{
2971 struct btrfs_iget_args *args = opaque;
2972 return (args->ino == inode->i_ino &&
2973 args->root == BTRFS_I(inode)->root);
2974}
2975
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002976struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
2977 struct btrfs_root *root, int wait)
2978{
2979 struct inode *inode;
2980 struct btrfs_iget_args args;
2981 args.ino = objectid;
2982 args.root = root;
2983
2984 if (wait) {
2985 inode = ilookup5(s, objectid, btrfs_find_actor,
2986 (void *)&args);
2987 } else {
2988 inode = ilookup5_nowait(s, objectid, btrfs_find_actor,
2989 (void *)&args);
2990 }
2991 return inode;
2992}
2993
Chris Mason39279cc2007-06-12 06:35:45 -04002994struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
2995 struct btrfs_root *root)
2996{
2997 struct inode *inode;
2998 struct btrfs_iget_args args;
2999 args.ino = objectid;
3000 args.root = root;
3001
3002 inode = iget5_locked(s, objectid, btrfs_find_actor,
3003 btrfs_init_locked_inode,
3004 (void *)&args);
3005 return inode;
3006}
3007
Balaji Rao1a54ef82008-07-21 02:01:04 +05303008/* Get an inode object given its location and corresponding root.
3009 * Returns in *is_new if the inode was read from disk
3010 */
3011struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
3012 struct btrfs_root *root, int *is_new)
3013{
3014 struct inode *inode;
3015
3016 inode = btrfs_iget_locked(s, location->objectid, root);
3017 if (!inode)
3018 return ERR_PTR(-EACCES);
3019
3020 if (inode->i_state & I_NEW) {
3021 BTRFS_I(inode)->root = root;
3022 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3023 btrfs_read_locked_inode(inode);
3024 unlock_new_inode(inode);
3025 if (is_new)
3026 *is_new = 1;
3027 } else {
3028 if (is_new)
3029 *is_new = 0;
3030 }
3031
3032 return inode;
3033}
3034
Chris Mason3de45862008-11-17 21:02:50 -05003035struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003036{
3037 struct inode * inode;
3038 struct btrfs_inode *bi = BTRFS_I(dir);
3039 struct btrfs_root *root = bi->root;
3040 struct btrfs_root *sub_root = root;
3041 struct btrfs_key location;
Yan Zhengc146afa2008-11-12 14:34:12 -05003042 int ret, new;
Chris Mason39279cc2007-06-12 06:35:45 -04003043
3044 if (dentry->d_name.len > BTRFS_NAME_LEN)
3045 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003046
Chris Mason39279cc2007-06-12 06:35:45 -04003047 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003048
Chris Mason39279cc2007-06-12 06:35:45 -04003049 if (ret < 0)
3050 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003051
Chris Mason39279cc2007-06-12 06:35:45 -04003052 inode = NULL;
3053 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04003054 ret = fixup_tree_root_location(root, &location, &sub_root,
3055 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04003056 if (ret < 0)
3057 return ERR_PTR(ret);
3058 if (ret > 0)
3059 return ERR_PTR(-ENOENT);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303060 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
3061 if (IS_ERR(inode))
3062 return ERR_CAST(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003063 }
Chris Mason3de45862008-11-17 21:02:50 -05003064 return inode;
3065}
3066
3067static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3068 struct nameidata *nd)
3069{
3070 struct inode *inode;
3071
3072 if (dentry->d_name.len > BTRFS_NAME_LEN)
3073 return ERR_PTR(-ENAMETOOLONG);
3074
3075 inode = btrfs_lookup_dentry(dir, dentry);
3076 if (IS_ERR(inode))
3077 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003078
Chris Mason39279cc2007-06-12 06:35:45 -04003079 return d_splice_alias(inode, dentry);
3080}
3081
Chris Mason39279cc2007-06-12 06:35:45 -04003082static unsigned char btrfs_filetype_table[] = {
3083 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3084};
3085
David Woodhousecbdf5a22008-08-06 19:42:33 +01003086static int btrfs_real_readdir(struct file *filp, void *dirent,
3087 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003088{
Chris Mason6da6aba2007-12-18 16:15:09 -05003089 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003090 struct btrfs_root *root = BTRFS_I(inode)->root;
3091 struct btrfs_item *item;
3092 struct btrfs_dir_item *di;
3093 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003094 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003095 struct btrfs_path *path;
3096 int ret;
3097 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003098 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003099 int slot;
3100 int advance;
3101 unsigned char d_type;
3102 int over = 0;
3103 u32 di_cur;
3104 u32 di_total;
3105 u32 di_len;
3106 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003107 char tmp_name[32];
3108 char *name_ptr;
3109 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003110
3111 /* FIXME, use a real flag for deciding about the key type */
3112 if (root->fs_info->tree_root == root)
3113 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003114
Chris Mason39544012007-12-12 14:38:19 -05003115 /* special case for "." */
3116 if (filp->f_pos == 0) {
3117 over = filldir(dirent, ".", 1,
3118 1, inode->i_ino,
3119 DT_DIR);
3120 if (over)
3121 return 0;
3122 filp->f_pos = 1;
3123 }
Chris Mason39544012007-12-12 14:38:19 -05003124 /* special case for .., just use the back ref */
3125 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003126 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003127 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003128 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003129 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003130 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003131 filp->f_pos = 2;
3132 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003133 path = btrfs_alloc_path();
3134 path->reada = 2;
3135
Chris Mason39279cc2007-06-12 06:35:45 -04003136 btrfs_set_key_type(&key, key_type);
3137 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003138 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003139
Chris Mason39279cc2007-06-12 06:35:45 -04003140 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3141 if (ret < 0)
3142 goto err;
3143 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003144
3145 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003146 leaf = path->nodes[0];
3147 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003148 slot = path->slots[0];
3149 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003150 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003151 ret = btrfs_next_leaf(root, path);
3152 if (ret)
3153 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003154 leaf = path->nodes[0];
3155 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003156 slot = path->slots[0];
3157 } else {
3158 slot++;
3159 path->slots[0]++;
3160 }
3161 }
Chris Mason3de45862008-11-17 21:02:50 -05003162
Chris Mason39279cc2007-06-12 06:35:45 -04003163 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003164 item = btrfs_item_nr(leaf, slot);
3165 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3166
3167 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003168 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003169 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003170 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003171 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003172 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003173
3174 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003175
Chris Mason39279cc2007-06-12 06:35:45 -04003176 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3177 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003178 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003179
3180 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003181 struct btrfs_key location;
3182
3183 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003184 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003185 name_ptr = tmp_name;
3186 } else {
3187 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003188 if (!name_ptr) {
3189 ret = -ENOMEM;
3190 goto err;
3191 }
Chris Mason5f39d392007-10-15 16:14:19 -04003192 }
3193 read_extent_buffer(leaf, name_ptr,
3194 (unsigned long)(di + 1), name_len);
3195
3196 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3197 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05003198
3199 /* is this a reference to our own snapshot? If so
3200 * skip it
3201 */
3202 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3203 location.objectid == root->root_key.objectid) {
3204 over = 0;
3205 goto skip;
3206 }
Chris Mason5f39d392007-10-15 16:14:19 -04003207 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003208 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003209 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003210
Chris Mason3de45862008-11-17 21:02:50 -05003211skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003212 if (name_ptr != tmp_name)
3213 kfree(name_ptr);
3214
Chris Mason39279cc2007-06-12 06:35:45 -04003215 if (over)
3216 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003217 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003218 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003219 di_cur += di_len;
3220 di = (struct btrfs_dir_item *)((char *)di + di_len);
3221 }
3222 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003223
3224 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003225 if (key_type == BTRFS_DIR_INDEX_KEY)
3226 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
3227 else
3228 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003229nopos:
3230 ret = 0;
3231err:
Chris Mason39279cc2007-06-12 06:35:45 -04003232 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003233 return ret;
3234}
3235
3236int btrfs_write_inode(struct inode *inode, int wait)
3237{
3238 struct btrfs_root *root = BTRFS_I(inode)->root;
3239 struct btrfs_trans_handle *trans;
3240 int ret = 0;
3241
Yan Zhengc146afa2008-11-12 14:34:12 -05003242 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04003243 return 0;
3244
Chris Mason39279cc2007-06-12 06:35:45 -04003245 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003246 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003247 btrfs_set_trans_block_group(trans, inode);
3248 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003249 }
3250 return ret;
3251}
3252
3253/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003254 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003255 * inode changes. But, it is most likely to find the inode in cache.
3256 * FIXME, needs more benchmarking...there are no reasons other than performance
3257 * to keep or drop this code.
3258 */
3259void btrfs_dirty_inode(struct inode *inode)
3260{
3261 struct btrfs_root *root = BTRFS_I(inode)->root;
3262 struct btrfs_trans_handle *trans;
3263
Chris Masonf9295742008-07-17 12:54:14 -04003264 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003265 btrfs_set_trans_block_group(trans, inode);
3266 btrfs_update_inode(trans, root, inode);
3267 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003268}
3269
Chris Masond352ac62008-09-29 15:18:18 -04003270/*
3271 * find the highest existing sequence number in a directory
3272 * and then set the in-memory index_cnt variable to reflect
3273 * free sequence numbers
3274 */
Josef Bacikaec74772008-07-24 12:12:38 -04003275static int btrfs_set_inode_index_count(struct inode *inode)
3276{
3277 struct btrfs_root *root = BTRFS_I(inode)->root;
3278 struct btrfs_key key, found_key;
3279 struct btrfs_path *path;
3280 struct extent_buffer *leaf;
3281 int ret;
3282
3283 key.objectid = inode->i_ino;
3284 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
3285 key.offset = (u64)-1;
3286
3287 path = btrfs_alloc_path();
3288 if (!path)
3289 return -ENOMEM;
3290
3291 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3292 if (ret < 0)
3293 goto out;
3294 /* FIXME: we should be able to handle this */
3295 if (ret == 0)
3296 goto out;
3297 ret = 0;
3298
3299 /*
3300 * MAGIC NUMBER EXPLANATION:
3301 * since we search a directory based on f_pos we have to start at 2
3302 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
3303 * else has to start at 2
3304 */
3305 if (path->slots[0] == 0) {
3306 BTRFS_I(inode)->index_cnt = 2;
3307 goto out;
3308 }
3309
3310 path->slots[0]--;
3311
3312 leaf = path->nodes[0];
3313 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3314
3315 if (found_key.objectid != inode->i_ino ||
3316 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
3317 BTRFS_I(inode)->index_cnt = 2;
3318 goto out;
3319 }
3320
3321 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
3322out:
3323 btrfs_free_path(path);
3324 return ret;
3325}
3326
Chris Masond352ac62008-09-29 15:18:18 -04003327/*
3328 * helper to find a free sequence number in a given directory. This current
3329 * code is very simple, later versions will do smarter things in the btree
3330 */
Chris Mason3de45862008-11-17 21:02:50 -05003331int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04003332{
3333 int ret = 0;
3334
3335 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
3336 ret = btrfs_set_inode_index_count(dir);
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003337 if (ret) {
Josef Bacikaec74772008-07-24 12:12:38 -04003338 return ret;
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003339 }
Josef Bacikaec74772008-07-24 12:12:38 -04003340 }
3341
Chris Mason00e4e6b2008-08-05 11:18:09 -04003342 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04003343 BTRFS_I(dir)->index_cnt++;
3344
3345 return ret;
3346}
3347
Chris Mason39279cc2007-06-12 06:35:45 -04003348static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
3349 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04003350 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05003351 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05003352 u64 ref_objectid, u64 objectid,
3353 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04003354{
3355 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003356 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04003357 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04003358 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05003359 struct btrfs_inode_ref *ref;
3360 struct btrfs_key key[2];
3361 u32 sizes[2];
3362 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003363 int ret;
3364 int owner;
3365
Chris Mason5f39d392007-10-15 16:14:19 -04003366 path = btrfs_alloc_path();
3367 BUG_ON(!path);
3368
Chris Mason39279cc2007-06-12 06:35:45 -04003369 inode = new_inode(root->fs_info->sb);
3370 if (!inode)
3371 return ERR_PTR(-ENOMEM);
3372
Josef Bacikaec74772008-07-24 12:12:38 -04003373 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05003374 ret = btrfs_set_inode_index(dir, index);
Josef Bacikaec74772008-07-24 12:12:38 -04003375 if (ret)
3376 return ERR_PTR(ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003377 }
3378 /*
3379 * index_cnt is ignored for everything but a dir,
3380 * btrfs_get_inode_index_count has an explanation for the magic
3381 * number
3382 */
Chris Masone02119d2008-09-05 16:13:11 -04003383 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003384 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04003385 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04003386 BTRFS_I(inode)->generation = trans->transid;
Chris Masonb888db22007-08-27 16:49:44 -04003387
Chris Mason39279cc2007-06-12 06:35:45 -04003388 if (mode & S_IFDIR)
3389 owner = 0;
3390 else
3391 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003392 BTRFS_I(inode)->block_group =
3393 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05003394
3395 key[0].objectid = objectid;
3396 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
3397 key[0].offset = 0;
3398
3399 key[1].objectid = objectid;
3400 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
3401 key[1].offset = ref_objectid;
3402
3403 sizes[0] = sizeof(struct btrfs_inode_item);
3404 sizes[1] = name_len + sizeof(*ref);
3405
3406 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
3407 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04003408 goto fail;
3409
Chris Mason9c583092008-01-29 15:15:18 -05003410 if (objectid > root->highest_inode)
3411 root->highest_inode = objectid;
3412
Chris Mason79683f22008-11-19 22:00:53 -05003413 inode->i_uid = current_fsuid();
3414 inode->i_gid = current_fsgid();
Chris Mason39279cc2007-06-12 06:35:45 -04003415 inode->i_mode = mode;
3416 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003417 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003418 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04003419 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3420 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003421 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003422
3423 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3424 struct btrfs_inode_ref);
3425 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003426 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05003427 ptr = (unsigned long)(ref + 1);
3428 write_extent_buffer(path->nodes[0], name, ptr, name_len);
3429
Chris Mason5f39d392007-10-15 16:14:19 -04003430 btrfs_mark_buffer_dirty(path->nodes[0]);
3431 btrfs_free_path(path);
3432
Chris Mason39279cc2007-06-12 06:35:45 -04003433 location = &BTRFS_I(inode)->location;
3434 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04003435 location->offset = 0;
3436 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
3437
Chris Mason39279cc2007-06-12 06:35:45 -04003438 insert_inode_hash(inode);
3439 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003440fail:
Josef Bacikaec74772008-07-24 12:12:38 -04003441 if (dir)
3442 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04003443 btrfs_free_path(path);
3444 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003445}
3446
3447static inline u8 btrfs_inode_type(struct inode *inode)
3448{
3449 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
3450}
3451
Chris Masond352ac62008-09-29 15:18:18 -04003452/*
3453 * utility function to add 'inode' into 'parent_inode' with
3454 * a give name and a given sequence number.
3455 * if 'add_backref' is true, also insert a backref from the
3456 * inode to the parent directory.
3457 */
Chris Masone02119d2008-09-05 16:13:11 -04003458int btrfs_add_link(struct btrfs_trans_handle *trans,
3459 struct inode *parent_inode, struct inode *inode,
3460 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003461{
3462 int ret;
3463 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04003464 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04003465
Chris Mason39279cc2007-06-12 06:35:45 -04003466 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003467 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
3468 key.offset = 0;
3469
Chris Masone02119d2008-09-05 16:13:11 -04003470 ret = btrfs_insert_dir_item(trans, root, name, name_len,
3471 parent_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04003472 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04003473 index);
Chris Mason39279cc2007-06-12 06:35:45 -04003474 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05003475 if (add_backref) {
3476 ret = btrfs_insert_inode_ref(trans, root,
Chris Masone02119d2008-09-05 16:13:11 -04003477 name, name_len,
3478 inode->i_ino,
3479 parent_inode->i_ino,
3480 index);
Chris Mason9c583092008-01-29 15:15:18 -05003481 }
Chris Masondbe674a2008-07-17 12:54:05 -04003482 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04003483 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04003484 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04003485 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003486 }
3487 return ret;
3488}
3489
3490static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05003491 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003492 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003493{
Chris Masone02119d2008-09-05 16:13:11 -04003494 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3495 inode, dentry->d_name.name,
3496 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003497 if (!err) {
3498 d_instantiate(dentry, inode);
3499 return 0;
3500 }
3501 if (err > 0)
3502 err = -EEXIST;
3503 return err;
3504}
3505
Josef Bacik618e21d2007-07-11 10:18:17 -04003506static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
3507 int mode, dev_t rdev)
3508{
3509 struct btrfs_trans_handle *trans;
3510 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003511 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04003512 int err;
3513 int drop_inode = 0;
3514 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05003515 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003516 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04003517
3518 if (!new_valid_dev(rdev))
3519 return -EINVAL;
3520
Chris Mason1832a6d2007-12-21 16:27:21 -05003521 err = btrfs_check_free_space(root, 1, 0);
3522 if (err)
3523 goto fail;
3524
Josef Bacik618e21d2007-07-11 10:18:17 -04003525 trans = btrfs_start_transaction(root, 1);
3526 btrfs_set_trans_block_group(trans, dir);
3527
3528 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3529 if (err) {
3530 err = -ENOSPC;
3531 goto out_unlock;
3532 }
3533
Josef Bacikaec74772008-07-24 12:12:38 -04003534 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003535 dentry->d_name.len,
3536 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003537 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003538 err = PTR_ERR(inode);
3539 if (IS_ERR(inode))
3540 goto out_unlock;
3541
Josef Bacik33268ea2008-07-24 12:16:36 -04003542 err = btrfs_init_acl(inode, dir);
3543 if (err) {
3544 drop_inode = 1;
3545 goto out_unlock;
3546 }
3547
Josef Bacik618e21d2007-07-11 10:18:17 -04003548 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003549 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003550 if (err)
3551 drop_inode = 1;
3552 else {
3553 inode->i_op = &btrfs_special_inode_operations;
3554 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04003555 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04003556 }
3557 dir->i_sb->s_dirt = 1;
3558 btrfs_update_inode_block_group(trans, inode);
3559 btrfs_update_inode_block_group(trans, dir);
3560out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003561 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003562 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003563fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04003564 if (drop_inode) {
3565 inode_dec_link_count(inode);
3566 iput(inode);
3567 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003568 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04003569 return err;
3570}
3571
Chris Mason39279cc2007-06-12 06:35:45 -04003572static int btrfs_create(struct inode *dir, struct dentry *dentry,
3573 int mode, struct nameidata *nd)
3574{
3575 struct btrfs_trans_handle *trans;
3576 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003577 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003578 int err;
3579 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05003580 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003581 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003582 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003583
Chris Mason1832a6d2007-12-21 16:27:21 -05003584 err = btrfs_check_free_space(root, 1, 0);
3585 if (err)
3586 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003587 trans = btrfs_start_transaction(root, 1);
3588 btrfs_set_trans_block_group(trans, dir);
3589
3590 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3591 if (err) {
3592 err = -ENOSPC;
3593 goto out_unlock;
3594 }
3595
Josef Bacikaec74772008-07-24 12:12:38 -04003596 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003597 dentry->d_name.len,
3598 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003599 objectid, BTRFS_I(dir)->block_group, mode,
3600 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003601 err = PTR_ERR(inode);
3602 if (IS_ERR(inode))
3603 goto out_unlock;
3604
Josef Bacik33268ea2008-07-24 12:16:36 -04003605 err = btrfs_init_acl(inode, dir);
3606 if (err) {
3607 drop_inode = 1;
3608 goto out_unlock;
3609 }
3610
Chris Mason39279cc2007-06-12 06:35:45 -04003611 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003612 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003613 if (err)
3614 drop_inode = 1;
3615 else {
3616 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003617 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003618 inode->i_fop = &btrfs_file_operations;
3619 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003620 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003621 }
3622 dir->i_sb->s_dirt = 1;
3623 btrfs_update_inode_block_group(trans, inode);
3624 btrfs_update_inode_block_group(trans, dir);
3625out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003626 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003627 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003628fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003629 if (drop_inode) {
3630 inode_dec_link_count(inode);
3631 iput(inode);
3632 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003633 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003634 return err;
3635}
3636
3637static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
3638 struct dentry *dentry)
3639{
3640 struct btrfs_trans_handle *trans;
3641 struct btrfs_root *root = BTRFS_I(dir)->root;
3642 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003643 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05003644 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003645 int err;
3646 int drop_inode = 0;
3647
3648 if (inode->i_nlink == 0)
3649 return -ENOENT;
3650
Chris Masone02119d2008-09-05 16:13:11 -04003651 btrfs_inc_nlink(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05003652 err = btrfs_check_free_space(root, 1, 0);
3653 if (err)
3654 goto fail;
Chris Mason3de45862008-11-17 21:02:50 -05003655 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003656 if (err)
3657 goto fail;
3658
Chris Mason39279cc2007-06-12 06:35:45 -04003659 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003660
Chris Mason39279cc2007-06-12 06:35:45 -04003661 btrfs_set_trans_block_group(trans, dir);
3662 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04003663
Chris Mason00e4e6b2008-08-05 11:18:09 -04003664 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04003665
Chris Mason39279cc2007-06-12 06:35:45 -04003666 if (err)
3667 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003668
Chris Mason39279cc2007-06-12 06:35:45 -04003669 dir->i_sb->s_dirt = 1;
3670 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04003671 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003672
Chris Mason54aa1f42007-06-22 14:16:25 -04003673 if (err)
3674 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003675
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003676 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003677 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003678fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003679 if (drop_inode) {
3680 inode_dec_link_count(inode);
3681 iput(inode);
3682 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003683 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003684 return err;
3685}
3686
Chris Mason39279cc2007-06-12 06:35:45 -04003687static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3688{
Chris Masonb9d86662008-05-02 16:13:49 -04003689 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003690 struct btrfs_trans_handle *trans;
3691 struct btrfs_root *root = BTRFS_I(dir)->root;
3692 int err = 0;
3693 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04003694 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003695 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003696 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003697
Chris Mason1832a6d2007-12-21 16:27:21 -05003698 err = btrfs_check_free_space(root, 1, 0);
3699 if (err)
3700 goto out_unlock;
3701
Chris Mason39279cc2007-06-12 06:35:45 -04003702 trans = btrfs_start_transaction(root, 1);
3703 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04003704
Chris Mason39279cc2007-06-12 06:35:45 -04003705 if (IS_ERR(trans)) {
3706 err = PTR_ERR(trans);
3707 goto out_unlock;
3708 }
3709
3710 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3711 if (err) {
3712 err = -ENOSPC;
3713 goto out_unlock;
3714 }
3715
Josef Bacikaec74772008-07-24 12:12:38 -04003716 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003717 dentry->d_name.len,
3718 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003719 BTRFS_I(dir)->block_group, S_IFDIR | mode,
3720 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003721 if (IS_ERR(inode)) {
3722 err = PTR_ERR(inode);
3723 goto out_fail;
3724 }
Chris Mason5f39d392007-10-15 16:14:19 -04003725
Chris Mason39279cc2007-06-12 06:35:45 -04003726 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04003727
3728 err = btrfs_init_acl(inode, dir);
3729 if (err)
3730 goto out_fail;
3731
Chris Mason39279cc2007-06-12 06:35:45 -04003732 inode->i_op = &btrfs_dir_inode_operations;
3733 inode->i_fop = &btrfs_dir_file_operations;
3734 btrfs_set_trans_block_group(trans, inode);
3735
Chris Masondbe674a2008-07-17 12:54:05 -04003736 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003737 err = btrfs_update_inode(trans, root, inode);
3738 if (err)
3739 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003740
Chris Masone02119d2008-09-05 16:13:11 -04003741 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3742 inode, dentry->d_name.name,
3743 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003744 if (err)
3745 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003746
Chris Mason39279cc2007-06-12 06:35:45 -04003747 d_instantiate(dentry, inode);
3748 drop_on_err = 0;
3749 dir->i_sb->s_dirt = 1;
3750 btrfs_update_inode_block_group(trans, inode);
3751 btrfs_update_inode_block_group(trans, dir);
3752
3753out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003754 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003755 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04003756
Chris Mason39279cc2007-06-12 06:35:45 -04003757out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003758 if (drop_on_err)
3759 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003760 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003761 return err;
3762}
3763
Chris Masond352ac62008-09-29 15:18:18 -04003764/* helper for btfs_get_extent. Given an existing extent in the tree,
3765 * and an extent that you want to insert, deal with overlap and insert
3766 * the new extent into the tree.
3767 */
Chris Mason3b951512008-04-17 11:29:12 -04003768static int merge_extent_mapping(struct extent_map_tree *em_tree,
3769 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003770 struct extent_map *em,
3771 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04003772{
3773 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04003774
Chris Masone6dcd2d2008-07-17 12:53:50 -04003775 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
3776 start_diff = map_start - em->start;
3777 em->start = map_start;
3778 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04003779 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
3780 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003781 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04003782 em->block_len -= start_diff;
3783 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003784 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04003785}
3786
Chris Masonc8b97812008-10-29 14:49:59 -04003787static noinline int uncompress_inline(struct btrfs_path *path,
3788 struct inode *inode, struct page *page,
3789 size_t pg_offset, u64 extent_offset,
3790 struct btrfs_file_extent_item *item)
3791{
3792 int ret;
3793 struct extent_buffer *leaf = path->nodes[0];
3794 char *tmp;
3795 size_t max_size;
3796 unsigned long inline_size;
3797 unsigned long ptr;
3798
3799 WARN_ON(pg_offset != 0);
3800 max_size = btrfs_file_extent_ram_bytes(leaf, item);
3801 inline_size = btrfs_file_extent_inline_item_len(leaf,
3802 btrfs_item_nr(leaf, path->slots[0]));
3803 tmp = kmalloc(inline_size, GFP_NOFS);
3804 ptr = btrfs_file_extent_inline_start(item);
3805
3806 read_extent_buffer(leaf, tmp, ptr, inline_size);
3807
Chris Mason5b050f02008-11-11 09:34:41 -05003808 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04003809 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
3810 inline_size, max_size);
3811 if (ret) {
3812 char *kaddr = kmap_atomic(page, KM_USER0);
3813 unsigned long copy_size = min_t(u64,
3814 PAGE_CACHE_SIZE - pg_offset,
3815 max_size - extent_offset);
3816 memset(kaddr + pg_offset, 0, copy_size);
3817 kunmap_atomic(kaddr, KM_USER0);
3818 }
3819 kfree(tmp);
3820 return 0;
3821}
3822
Chris Masond352ac62008-09-29 15:18:18 -04003823/*
3824 * a bit scary, this does extent mapping from logical file offset to the disk.
3825 * the ugly parts come from merging extents from the disk with the
3826 * in-ram representation. This gets more complex because of the data=ordered code,
3827 * where the in-ram extents might be locked pending data=ordered completion.
3828 *
3829 * This also copies inline extents directly into the page.
3830 */
Chris Masona52d9a82007-08-27 16:49:44 -04003831struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05003832 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04003833 int create)
3834{
3835 int ret;
3836 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04003837 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04003838 u64 extent_start = 0;
3839 u64 extent_end = 0;
3840 u64 objectid = inode->i_ino;
3841 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04003842 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04003843 struct btrfs_root *root = BTRFS_I(inode)->root;
3844 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04003845 struct extent_buffer *leaf;
3846 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04003847 struct extent_map *em = NULL;
3848 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05003849 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003850 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003851 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04003852
Chris Masona52d9a82007-08-27 16:49:44 -04003853again:
Chris Masond1310b22008-01-24 16:13:08 -05003854 spin_lock(&em_tree->lock);
3855 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04003856 if (em)
3857 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003858 spin_unlock(&em_tree->lock);
3859
Chris Masona52d9a82007-08-27 16:49:44 -04003860 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04003861 if (em->start > start || em->start + em->len <= start)
3862 free_extent_map(em);
3863 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05003864 free_extent_map(em);
3865 else
3866 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003867 }
Chris Masond1310b22008-01-24 16:13:08 -05003868 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04003869 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05003870 err = -ENOMEM;
3871 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003872 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003873 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003874 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05003875 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05003876 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04003877 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04003878
3879 if (!path) {
3880 path = btrfs_alloc_path();
3881 BUG_ON(!path);
3882 }
3883
Chris Mason179e29e2007-11-01 11:28:41 -04003884 ret = btrfs_lookup_file_extent(trans, root, path,
3885 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04003886 if (ret < 0) {
3887 err = ret;
3888 goto out;
3889 }
3890
3891 if (ret != 0) {
3892 if (path->slots[0] == 0)
3893 goto not_found;
3894 path->slots[0]--;
3895 }
3896
Chris Mason5f39d392007-10-15 16:14:19 -04003897 leaf = path->nodes[0];
3898 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04003899 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04003900 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04003901 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3902 found_type = btrfs_key_type(&found_key);
3903 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04003904 found_type != BTRFS_EXTENT_DATA_KEY) {
3905 goto not_found;
3906 }
3907
Chris Mason5f39d392007-10-15 16:14:19 -04003908 found_type = btrfs_file_extent_type(leaf, item);
3909 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003910 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04003911 if (found_type == BTRFS_FILE_EXTENT_REG ||
3912 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04003913 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04003914 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04003915 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
3916 size_t size;
3917 size = btrfs_file_extent_inline_len(leaf, item);
3918 extent_end = (extent_start + size + root->sectorsize - 1) &
3919 ~((u64)root->sectorsize - 1);
3920 }
3921
3922 if (start >= extent_end) {
3923 path->slots[0]++;
3924 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3925 ret = btrfs_next_leaf(root, path);
3926 if (ret < 0) {
3927 err = ret;
3928 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003929 }
Yan Zheng9036c102008-10-30 14:19:41 -04003930 if (ret > 0)
3931 goto not_found;
3932 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04003933 }
Yan Zheng9036c102008-10-30 14:19:41 -04003934 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3935 if (found_key.objectid != objectid ||
3936 found_key.type != BTRFS_EXTENT_DATA_KEY)
3937 goto not_found;
3938 if (start + len <= found_key.offset)
3939 goto not_found;
3940 em->start = start;
3941 em->len = found_key.offset - start;
3942 goto not_found_em;
3943 }
3944
Yan Zhengd899e052008-10-30 14:25:28 -04003945 if (found_type == BTRFS_FILE_EXTENT_REG ||
3946 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04003947 em->start = extent_start;
3948 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05003949 em->orig_start = extent_start -
3950 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04003951 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
3952 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003953 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04003954 goto insert;
3955 }
Chris Masonc8b97812008-10-29 14:49:59 -04003956 if (compressed) {
3957 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
3958 em->block_start = bytenr;
3959 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
3960 item);
3961 } else {
3962 bytenr += btrfs_file_extent_offset(leaf, item);
3963 em->block_start = bytenr;
3964 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04003965 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
3966 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04003967 }
Chris Masona52d9a82007-08-27 16:49:44 -04003968 goto insert;
3969 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003970 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04003971 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04003972 size_t size;
3973 size_t extent_offset;
3974 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04003975
Chris Masona52d9a82007-08-27 16:49:44 -04003976 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04003977 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04003978 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04003979 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04003980 goto out;
3981 }
3982
Yan Zheng9036c102008-10-30 14:19:41 -04003983 size = btrfs_file_extent_inline_len(leaf, item);
3984 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05003985 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04003986 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04003987 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05003988 em->len = (copy_size + root->sectorsize - 1) &
3989 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05003990 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04003991 if (compressed)
3992 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04003993 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04003994 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04003995 if (btrfs_file_extent_compression(leaf, item) ==
3996 BTRFS_COMPRESS_ZLIB) {
3997 ret = uncompress_inline(path, inode, page,
3998 pg_offset,
3999 extent_offset, item);
4000 BUG_ON(ret);
4001 } else {
4002 map = kmap(page);
4003 read_extent_buffer(leaf, map + pg_offset, ptr,
4004 copy_size);
4005 kunmap(page);
4006 }
Chris Mason179e29e2007-11-01 11:28:41 -04004007 flush_dcache_page(page);
4008 } else if (create && PageUptodate(page)) {
4009 if (!trans) {
4010 kunmap(page);
4011 free_extent_map(em);
4012 em = NULL;
4013 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004014 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004015 goto again;
4016 }
Chris Masonc8b97812008-10-29 14:49:59 -04004017 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004018 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004019 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004020 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004021 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004022 }
Chris Masond1310b22008-01-24 16:13:08 -05004023 set_extent_uptodate(io_tree, em->start,
4024 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004025 goto insert;
4026 } else {
4027 printk("unkknown found_type %d\n", found_type);
4028 WARN_ON(1);
4029 }
4030not_found:
4031 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004032 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004033not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004034 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004035 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004036insert:
4037 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004038 if (em->start > start || extent_map_end(em) <= start) {
4039 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04004040 err = -EIO;
4041 goto out;
4042 }
Chris Masond1310b22008-01-24 16:13:08 -05004043
4044 err = 0;
4045 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004046 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004047 /* it is possible that someone inserted the extent into the tree
4048 * while we had the lock dropped. It is also possible that
4049 * an overlapping map exists in the tree
4050 */
Chris Masona52d9a82007-08-27 16:49:44 -04004051 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004052 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004053
4054 ret = 0;
4055
Chris Mason3b951512008-04-17 11:29:12 -04004056 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004057 if (existing && (existing->start > start ||
4058 existing->start + existing->len <= start)) {
4059 free_extent_map(existing);
4060 existing = NULL;
4061 }
Chris Mason3b951512008-04-17 11:29:12 -04004062 if (!existing) {
4063 existing = lookup_extent_mapping(em_tree, em->start,
4064 em->len);
4065 if (existing) {
4066 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004067 em, start,
4068 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004069 free_extent_map(existing);
4070 if (err) {
4071 free_extent_map(em);
4072 em = NULL;
4073 }
4074 } else {
4075 err = -EIO;
4076 printk("failing to insert %Lu %Lu\n",
4077 start, len);
4078 free_extent_map(em);
4079 em = NULL;
4080 }
4081 } else {
4082 free_extent_map(em);
4083 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004084 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004085 }
Chris Masona52d9a82007-08-27 16:49:44 -04004086 }
Chris Masond1310b22008-01-24 16:13:08 -05004087 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004088out:
Chris Masonf4219502008-07-22 11:18:09 -04004089 if (path)
4090 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004091 if (trans) {
4092 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004093 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04004094 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004095 }
Chris Masona52d9a82007-08-27 16:49:44 -04004096 }
Chris Masona52d9a82007-08-27 16:49:44 -04004097 if (err) {
4098 free_extent_map(em);
4099 WARN_ON(1);
4100 return ERR_PTR(err);
4101 }
4102 return em;
4103}
4104
Chris Mason16432982008-04-10 10:23:21 -04004105static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4106 const struct iovec *iov, loff_t offset,
4107 unsigned long nr_segs)
4108{
Chris Masone1c4b742008-04-22 13:26:46 -04004109 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004110}
4111
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004112static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04004113{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004114 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004115}
4116
Chris Mason9ebefb182007-06-15 13:50:00 -04004117int btrfs_readpage(struct file *file, struct page *page)
4118{
Chris Masond1310b22008-01-24 16:13:08 -05004119 struct extent_io_tree *tree;
4120 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004121 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004122}
Chris Mason1832a6d2007-12-21 16:27:21 -05004123
Chris Mason39279cc2007-06-12 06:35:45 -04004124static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4125{
Chris Masond1310b22008-01-24 16:13:08 -05004126 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004127
4128
4129 if (current->flags & PF_MEMALLOC) {
4130 redirty_page_for_writepage(wbc, page);
4131 unlock_page(page);
4132 return 0;
4133 }
Chris Masond1310b22008-01-24 16:13:08 -05004134 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004135 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4136}
Chris Mason39279cc2007-06-12 06:35:45 -04004137
Chris Masonf4219502008-07-22 11:18:09 -04004138int btrfs_writepages(struct address_space *mapping,
4139 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04004140{
Chris Masond1310b22008-01-24 16:13:08 -05004141 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004142
Chris Masond1310b22008-01-24 16:13:08 -05004143 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04004144 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4145}
4146
Chris Mason3ab2fb52007-11-08 10:59:22 -05004147static int
4148btrfs_readpages(struct file *file, struct address_space *mapping,
4149 struct list_head *pages, unsigned nr_pages)
4150{
Chris Masond1310b22008-01-24 16:13:08 -05004151 struct extent_io_tree *tree;
4152 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004153 return extent_readpages(tree, mapping, pages, nr_pages,
4154 btrfs_get_extent);
4155}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004156static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004157{
Chris Masond1310b22008-01-24 16:13:08 -05004158 struct extent_io_tree *tree;
4159 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004160 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004161
Chris Masond1310b22008-01-24 16:13:08 -05004162 tree = &BTRFS_I(page->mapping->host)->io_tree;
4163 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004164 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004165 if (ret == 1) {
4166 ClearPagePrivate(page);
4167 set_page_private(page, 0);
4168 page_cache_release(page);
4169 }
4170 return ret;
4171}
Chris Mason39279cc2007-06-12 06:35:45 -04004172
Chris Masone6dcd2d2008-07-17 12:53:50 -04004173static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4174{
Chris Mason98509cf2008-09-11 15:51:43 -04004175 if (PageWriteback(page) || PageDirty(page))
4176 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004177 return __btrfs_releasepage(page, gfp_flags);
4178}
4179
Chris Masona52d9a82007-08-27 16:49:44 -04004180static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4181{
Chris Masond1310b22008-01-24 16:13:08 -05004182 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004183 struct btrfs_ordered_extent *ordered;
4184 u64 page_start = page_offset(page);
4185 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004186
Chris Masone6dcd2d2008-07-17 12:53:50 -04004187 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004188 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004189 if (offset) {
4190 btrfs_releasepage(page, GFP_NOFS);
4191 return;
4192 }
4193
4194 lock_extent(tree, page_start, page_end, GFP_NOFS);
4195 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4196 page_offset(page));
4197 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04004198 /*
4199 * IO on this page will never be started, so we need
4200 * to account for any ordered extents now
4201 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004202 clear_extent_bit(tree, page_start, page_end,
4203 EXTENT_DIRTY | EXTENT_DELALLOC |
4204 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04004205 btrfs_finish_ordered_io(page->mapping->host,
4206 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004207 btrfs_put_ordered_extent(ordered);
4208 lock_extent(tree, page_start, page_end, GFP_NOFS);
4209 }
4210 clear_extent_bit(tree, page_start, page_end,
4211 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4212 EXTENT_ORDERED,
4213 1, 1, GFP_NOFS);
4214 __btrfs_releasepage(page, GFP_NOFS);
4215
Chris Mason4a096752008-07-21 10:29:44 -04004216 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004217 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004218 ClearPagePrivate(page);
4219 set_page_private(page, 0);
4220 page_cache_release(page);
4221 }
Chris Mason39279cc2007-06-12 06:35:45 -04004222}
4223
Chris Mason9ebefb182007-06-15 13:50:00 -04004224/*
4225 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
4226 * called from a page fault handler when a page is first dirtied. Hence we must
4227 * be careful to check for EOF conditions here. We set the page up correctly
4228 * for a written page which means we get ENOSPC checking when writing into
4229 * holes and correct delalloc and unwritten extent mapping on filesystems that
4230 * support these features.
4231 *
4232 * We are not allowed to take the i_mutex here so we have to play games to
4233 * protect against truncate races as the page could now be beyond EOF. Because
4234 * vmtruncate() writes the inode size before removing pages, once we have the
4235 * page lock we can determine safely if the page is beyond EOF. If it is not
4236 * beyond EOF, then the page is guaranteed safe against truncation until we
4237 * unlock the page.
4238 */
4239int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4240{
Chris Mason6da6aba2007-12-18 16:15:09 -05004241 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05004242 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004243 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4244 struct btrfs_ordered_extent *ordered;
4245 char *kaddr;
4246 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04004247 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05004248 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04004249 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004250 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04004251
Chris Mason1832a6d2007-12-21 16:27:21 -05004252 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05004253 if (ret)
4254 goto out;
4255
4256 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004257again:
Chris Mason9ebefb182007-06-15 13:50:00 -04004258 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04004259 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004260 page_start = page_offset(page);
4261 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004262
Chris Mason9ebefb182007-06-15 13:50:00 -04004263 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04004264 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04004265 /* page got truncated out from underneath us */
4266 goto out_unlock;
4267 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004268 wait_on_page_writeback(page);
4269
4270 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
4271 set_page_extent_mapped(page);
4272
Chris Masoneb84ae02008-07-17 13:53:27 -04004273 /*
4274 * we can't set the delalloc bits if there are pending ordered
4275 * extents. Drop our locks and wait for them to finish
4276 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004277 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4278 if (ordered) {
4279 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4280 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004281 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004282 btrfs_put_ordered_extent(ordered);
4283 goto again;
4284 }
4285
Chris Masonea8c2812008-08-04 23:17:27 -04004286 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004287 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04004288
4289 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04004290 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004291 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04004292 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04004293 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04004294
Chris Masone6dcd2d2008-07-17 12:53:50 -04004295 if (zero_start != PAGE_CACHE_SIZE) {
4296 kaddr = kmap(page);
4297 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
4298 flush_dcache_page(page);
4299 kunmap(page);
4300 }
Chris Mason247e7432008-07-17 12:53:51 -04004301 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004302 set_page_dirty(page);
4303 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04004304
4305out_unlock:
4306 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05004307out:
Chris Mason9ebefb182007-06-15 13:50:00 -04004308 return ret;
4309}
4310
Chris Mason39279cc2007-06-12 06:35:45 -04004311static void btrfs_truncate(struct inode *inode)
4312{
4313 struct btrfs_root *root = BTRFS_I(inode)->root;
4314 int ret;
4315 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004316 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04004317 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004318
4319 if (!S_ISREG(inode->i_mode))
4320 return;
4321 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4322 return;
4323
4324 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04004325 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04004326
Chris Mason39279cc2007-06-12 06:35:45 -04004327 trans = btrfs_start_transaction(root, 1);
4328 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04004329 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004330
Josef Bacik7b128762008-07-24 12:17:14 -04004331 ret = btrfs_orphan_add(trans, inode);
4332 if (ret)
4333 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004334 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04004335 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05004336 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004337 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004338
Josef Bacik7b128762008-07-24 12:17:14 -04004339 ret = btrfs_orphan_del(trans, inode);
4340 BUG_ON(ret);
4341
4342out:
4343 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004344 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004345 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004346 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004347}
4348
Sven Wegener3b963622008-06-09 21:57:42 -04004349/*
Chris Masond352ac62008-09-29 15:18:18 -04004350 * create a new subvolume directory/inode (helper for the ioctl).
4351 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05004352int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
4353 struct btrfs_root *new_root, struct dentry *dentry,
4354 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04004355{
Chris Mason39279cc2007-06-12 06:35:45 -04004356 struct inode *inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004357 int error;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004358 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004359
Josef Bacikaec74772008-07-24 12:12:38 -04004360 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004361 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04004362 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004363 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004364 inode->i_op = &btrfs_dir_inode_operations;
4365 inode->i_fop = &btrfs_dir_file_operations;
4366
Chris Mason39279cc2007-06-12 06:35:45 -04004367 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04004368 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04004369
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004370 error = btrfs_update_inode(trans, new_root, inode);
4371 if (error)
4372 return error;
4373
4374 d_instantiate(dentry, inode);
4375 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004376}
4377
Chris Masond352ac62008-09-29 15:18:18 -04004378/* helper function for file defrag and space balancing. This
4379 * forces readahead on a given range of bytes in an inode
4380 */
Chris Masonedbd8d42007-12-21 16:27:24 -05004381unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04004382 struct file_ra_state *ra, struct file *file,
4383 pgoff_t offset, pgoff_t last_index)
4384{
Chris Mason8e7bf942008-04-28 09:02:36 -04004385 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04004386
Chris Mason86479a02007-09-10 19:58:16 -04004387 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
4388 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04004389}
4390
Chris Mason39279cc2007-06-12 06:35:45 -04004391struct inode *btrfs_alloc_inode(struct super_block *sb)
4392{
4393 struct btrfs_inode *ei;
4394
4395 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
4396 if (!ei)
4397 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04004398 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004399 ei->logged_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004400 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik33268ea2008-07-24 12:16:36 -04004401 ei->i_acl = BTRFS_ACL_NOT_CACHED;
4402 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
Josef Bacik7b128762008-07-24 12:17:14 -04004403 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason39279cc2007-06-12 06:35:45 -04004404 return &ei->vfs_inode;
4405}
4406
4407void btrfs_destroy_inode(struct inode *inode)
4408{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004409 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04004410 WARN_ON(!list_empty(&inode->i_dentry));
4411 WARN_ON(inode->i_data.nrpages);
4412
Josef Bacik33268ea2008-07-24 12:16:36 -04004413 if (BTRFS_I(inode)->i_acl &&
4414 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
4415 posix_acl_release(BTRFS_I(inode)->i_acl);
4416 if (BTRFS_I(inode)->i_default_acl &&
4417 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
4418 posix_acl_release(BTRFS_I(inode)->i_default_acl);
4419
Yanbcc63ab2008-07-30 16:29:20 -04004420 spin_lock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004421 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
4422 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
4423 " list\n", inode->i_ino);
4424 dump_stack();
4425 }
Yanbcc63ab2008-07-30 16:29:20 -04004426 spin_unlock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004427
Chris Masone6dcd2d2008-07-17 12:53:50 -04004428 while(1) {
4429 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
4430 if (!ordered)
4431 break;
4432 else {
4433 printk("found ordered extent %Lu %Lu\n",
4434 ordered->file_offset, ordered->len);
4435 btrfs_remove_ordered_extent(inode, ordered);
4436 btrfs_put_ordered_extent(ordered);
4437 btrfs_put_ordered_extent(ordered);
4438 }
4439 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004440 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004441 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
4442}
4443
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004444static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04004445{
4446 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
4447
4448 inode_init_once(&ei->vfs_inode);
4449}
4450
4451void btrfs_destroy_cachep(void)
4452{
4453 if (btrfs_inode_cachep)
4454 kmem_cache_destroy(btrfs_inode_cachep);
4455 if (btrfs_trans_handle_cachep)
4456 kmem_cache_destroy(btrfs_trans_handle_cachep);
4457 if (btrfs_transaction_cachep)
4458 kmem_cache_destroy(btrfs_transaction_cachep);
4459 if (btrfs_bit_radix_cachep)
4460 kmem_cache_destroy(btrfs_bit_radix_cachep);
4461 if (btrfs_path_cachep)
4462 kmem_cache_destroy(btrfs_path_cachep);
4463}
4464
Chris Mason86479a02007-09-10 19:58:16 -04004465struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04004466 unsigned long extra_flags,
Chris Mason2b1f55b2008-09-24 11:48:04 -04004467 void (*ctor)(void *))
Chris Mason92fee662007-07-25 12:31:35 -04004468{
4469 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
Chris Mason2b1f55b2008-09-24 11:48:04 -04004470 SLAB_MEM_SPREAD | extra_flags), ctor);
Chris Mason92fee662007-07-25 12:31:35 -04004471}
4472
Chris Mason39279cc2007-06-12 06:35:45 -04004473int btrfs_init_cachep(void)
4474{
Chris Mason86479a02007-09-10 19:58:16 -04004475 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04004476 sizeof(struct btrfs_inode),
4477 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04004478 if (!btrfs_inode_cachep)
4479 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004480 btrfs_trans_handle_cachep =
4481 btrfs_cache_create("btrfs_trans_handle_cache",
4482 sizeof(struct btrfs_trans_handle),
4483 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004484 if (!btrfs_trans_handle_cachep)
4485 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004486 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04004487 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04004488 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004489 if (!btrfs_transaction_cachep)
4490 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004491 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04004492 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04004493 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004494 if (!btrfs_path_cachep)
4495 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004496 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04004497 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004498 if (!btrfs_bit_radix_cachep)
4499 goto fail;
4500 return 0;
4501fail:
4502 btrfs_destroy_cachep();
4503 return -ENOMEM;
4504}
4505
4506static int btrfs_getattr(struct vfsmount *mnt,
4507 struct dentry *dentry, struct kstat *stat)
4508{
4509 struct inode *inode = dentry->d_inode;
4510 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05004511 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05004512 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004513 stat->blocks = (inode_get_bytes(inode) +
4514 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04004515 return 0;
4516}
4517
4518static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
4519 struct inode * new_dir,struct dentry *new_dentry)
4520{
4521 struct btrfs_trans_handle *trans;
4522 struct btrfs_root *root = BTRFS_I(old_dir)->root;
4523 struct inode *new_inode = new_dentry->d_inode;
4524 struct inode *old_inode = old_dentry->d_inode;
4525 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004526 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004527 int ret;
4528
Chris Mason3394e162008-11-17 20:42:26 -05004529 /* we're not allowed to rename between subvolumes */
4530 if (BTRFS_I(old_inode)->root->root_key.objectid !=
4531 BTRFS_I(new_dir)->root->root_key.objectid)
4532 return -EXDEV;
4533
Chris Mason39279cc2007-06-12 06:35:45 -04004534 if (S_ISDIR(old_inode->i_mode) && new_inode &&
4535 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
4536 return -ENOTEMPTY;
4537 }
Chris Mason5f39d392007-10-15 16:14:19 -04004538
Chris Mason0660b5a2008-11-17 20:37:39 -05004539 /* to rename a snapshot or subvolume, we need to juggle the
4540 * backrefs. This isn't coded yet
4541 */
4542 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
4543 return -EXDEV;
4544
Chris Mason1832a6d2007-12-21 16:27:21 -05004545 ret = btrfs_check_free_space(root, 1, 0);
4546 if (ret)
4547 goto out_unlock;
4548
Chris Mason39279cc2007-06-12 06:35:45 -04004549 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004550
Chris Mason39279cc2007-06-12 06:35:45 -04004551 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004552
Chris Masone02119d2008-09-05 16:13:11 -04004553 btrfs_inc_nlink(old_dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004554 old_dir->i_ctime = old_dir->i_mtime = ctime;
4555 new_dir->i_ctime = new_dir->i_mtime = ctime;
4556 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04004557
Chris Masone02119d2008-09-05 16:13:11 -04004558 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
4559 old_dentry->d_name.name,
4560 old_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004561 if (ret)
4562 goto out_fail;
4563
4564 if (new_inode) {
4565 new_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004566 ret = btrfs_unlink_inode(trans, root, new_dir,
4567 new_dentry->d_inode,
4568 new_dentry->d_name.name,
4569 new_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004570 if (ret)
4571 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04004572 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004573 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004574 if (ret)
4575 goto out_fail;
4576 }
Chris Masone02119d2008-09-05 16:13:11 -04004577
Chris Mason39279cc2007-06-12 06:35:45 -04004578 }
Chris Mason3de45862008-11-17 21:02:50 -05004579 ret = btrfs_set_inode_index(new_dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004580 if (ret)
4581 goto out_fail;
4582
Chris Masone02119d2008-09-05 16:13:11 -04004583 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
4584 old_inode, new_dentry->d_name.name,
4585 new_dentry->d_name.len, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004586 if (ret)
4587 goto out_fail;
4588
4589out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04004590 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004591out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04004592 return ret;
4593}
4594
Chris Masond352ac62008-09-29 15:18:18 -04004595/*
4596 * some fairly slow code that needs optimization. This walks the list
4597 * of all the inodes with pending delalloc and forces them to disk.
4598 */
Chris Masonea8c2812008-08-04 23:17:27 -04004599int btrfs_start_delalloc_inodes(struct btrfs_root *root)
4600{
4601 struct list_head *head = &root->fs_info->delalloc_inodes;
4602 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004603 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04004604 unsigned long flags;
4605
Yan Zhengc146afa2008-11-12 14:34:12 -05004606 if (root->fs_info->sb->s_flags & MS_RDONLY)
4607 return -EROFS;
4608
Chris Masonea8c2812008-08-04 23:17:27 -04004609 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4610 while(!list_empty(head)) {
4611 binode = list_entry(head->next, struct btrfs_inode,
4612 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004613 inode = igrab(&binode->vfs_inode);
4614 if (!inode)
4615 list_del_init(&binode->delalloc_inodes);
Chris Masonea8c2812008-08-04 23:17:27 -04004616 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004617 if (inode) {
Chris Mason8c8bee1d2008-09-29 11:19:10 -04004618 filemap_flush(inode->i_mapping);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004619 iput(inode);
4620 }
4621 cond_resched();
Chris Masonea8c2812008-08-04 23:17:27 -04004622 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4623 }
4624 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason8c8bee1d2008-09-29 11:19:10 -04004625
4626 /* the filemap_flush will queue IO into the worker threads, but
4627 * we have to make sure the IO is actually started and that
4628 * ordered extents get created before we return
4629 */
4630 atomic_inc(&root->fs_info->async_submit_draining);
Chris Mason771ed682008-11-06 22:02:51 -05004631 while(atomic_read(&root->fs_info->nr_async_submits) ||
4632 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee1d2008-09-29 11:19:10 -04004633 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05004634 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
4635 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee1d2008-09-29 11:19:10 -04004636 }
4637 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04004638 return 0;
4639}
4640
Chris Mason39279cc2007-06-12 06:35:45 -04004641static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
4642 const char *symname)
4643{
4644 struct btrfs_trans_handle *trans;
4645 struct btrfs_root *root = BTRFS_I(dir)->root;
4646 struct btrfs_path *path;
4647 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05004648 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004649 int err;
4650 int drop_inode = 0;
4651 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004652 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04004653 int name_len;
4654 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04004655 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004656 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04004657 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05004658 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004659
4660 name_len = strlen(symname) + 1;
4661 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
4662 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05004663
Chris Mason1832a6d2007-12-21 16:27:21 -05004664 err = btrfs_check_free_space(root, 1, 0);
4665 if (err)
4666 goto out_fail;
4667
Chris Mason39279cc2007-06-12 06:35:45 -04004668 trans = btrfs_start_transaction(root, 1);
4669 btrfs_set_trans_block_group(trans, dir);
4670
4671 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4672 if (err) {
4673 err = -ENOSPC;
4674 goto out_unlock;
4675 }
4676
Josef Bacikaec74772008-07-24 12:12:38 -04004677 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004678 dentry->d_name.len,
4679 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004680 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
4681 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004682 err = PTR_ERR(inode);
4683 if (IS_ERR(inode))
4684 goto out_unlock;
4685
Josef Bacik33268ea2008-07-24 12:16:36 -04004686 err = btrfs_init_acl(inode, dir);
4687 if (err) {
4688 drop_inode = 1;
4689 goto out_unlock;
4690 }
4691
Chris Mason39279cc2007-06-12 06:35:45 -04004692 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004693 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004694 if (err)
4695 drop_inode = 1;
4696 else {
4697 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004698 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004699 inode->i_fop = &btrfs_file_operations;
4700 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004701 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004702 }
4703 dir->i_sb->s_dirt = 1;
4704 btrfs_update_inode_block_group(trans, inode);
4705 btrfs_update_inode_block_group(trans, dir);
4706 if (drop_inode)
4707 goto out_unlock;
4708
4709 path = btrfs_alloc_path();
4710 BUG_ON(!path);
4711 key.objectid = inode->i_ino;
4712 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004713 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
4714 datasize = btrfs_file_extent_calc_inline_size(name_len);
4715 err = btrfs_insert_empty_item(trans, root, path, &key,
4716 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04004717 if (err) {
4718 drop_inode = 1;
4719 goto out_unlock;
4720 }
Chris Mason5f39d392007-10-15 16:14:19 -04004721 leaf = path->nodes[0];
4722 ei = btrfs_item_ptr(leaf, path->slots[0],
4723 struct btrfs_file_extent_item);
4724 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
4725 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04004726 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04004727 btrfs_set_file_extent_encryption(leaf, ei, 0);
4728 btrfs_set_file_extent_compression(leaf, ei, 0);
4729 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
4730 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
4731
Chris Mason39279cc2007-06-12 06:35:45 -04004732 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04004733 write_extent_buffer(leaf, symname, ptr, name_len);
4734 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004735 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04004736
Chris Mason39279cc2007-06-12 06:35:45 -04004737 inode->i_op = &btrfs_symlink_inode_operations;
4738 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04004739 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04004740 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04004741 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04004742 err = btrfs_update_inode(trans, root, inode);
4743 if (err)
4744 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004745
4746out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004747 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004748 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004749out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004750 if (drop_inode) {
4751 inode_dec_link_count(inode);
4752 iput(inode);
4753 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004754 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004755 return err;
4756}
Chris Mason16432982008-04-10 10:23:21 -04004757
Yan Zhengd899e052008-10-30 14:25:28 -04004758static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
4759 u64 alloc_hint, int mode)
4760{
4761 struct btrfs_trans_handle *trans;
4762 struct btrfs_root *root = BTRFS_I(inode)->root;
4763 struct btrfs_key ins;
4764 u64 alloc_size;
4765 u64 cur_offset = start;
4766 u64 num_bytes = end - start;
4767 int ret = 0;
4768
4769 trans = btrfs_join_transaction(root, 1);
4770 BUG_ON(!trans);
4771 btrfs_set_trans_block_group(trans, inode);
4772
4773 while (num_bytes > 0) {
4774 alloc_size = min(num_bytes, root->fs_info->max_extent);
4775 ret = btrfs_reserve_extent(trans, root, alloc_size,
4776 root->sectorsize, 0, alloc_hint,
4777 (u64)-1, &ins, 1);
4778 if (ret) {
4779 WARN_ON(1);
4780 goto out;
4781 }
4782 ret = insert_reserved_file_extent(trans, inode,
4783 cur_offset, ins.objectid,
4784 ins.offset, ins.offset,
4785 ins.offset, 0, 0, 0,
4786 BTRFS_FILE_EXTENT_PREALLOC);
4787 BUG_ON(ret);
4788 num_bytes -= ins.offset;
4789 cur_offset += ins.offset;
4790 alloc_hint = ins.objectid + ins.offset;
4791 }
4792out:
4793 if (cur_offset > start) {
4794 inode->i_ctime = CURRENT_TIME;
4795 btrfs_set_flag(inode, PREALLOC);
4796 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
4797 cur_offset > i_size_read(inode))
4798 btrfs_i_size_write(inode, cur_offset);
4799 ret = btrfs_update_inode(trans, root, inode);
4800 BUG_ON(ret);
4801 }
4802
4803 btrfs_end_transaction(trans, root);
4804 return ret;
4805}
4806
4807static long btrfs_fallocate(struct inode *inode, int mode,
4808 loff_t offset, loff_t len)
4809{
4810 u64 cur_offset;
4811 u64 last_byte;
4812 u64 alloc_start;
4813 u64 alloc_end;
4814 u64 alloc_hint = 0;
4815 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
4816 struct extent_map *em;
4817 int ret;
4818
4819 alloc_start = offset & ~mask;
4820 alloc_end = (offset + len + mask) & ~mask;
4821
4822 mutex_lock(&inode->i_mutex);
4823 if (alloc_start > inode->i_size) {
4824 ret = btrfs_cont_expand(inode, alloc_start);
4825 if (ret)
4826 goto out;
4827 }
4828
4829 while (1) {
4830 struct btrfs_ordered_extent *ordered;
4831 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start,
4832 alloc_end - 1, GFP_NOFS);
4833 ordered = btrfs_lookup_first_ordered_extent(inode,
4834 alloc_end - 1);
4835 if (ordered &&
4836 ordered->file_offset + ordered->len > alloc_start &&
4837 ordered->file_offset < alloc_end) {
4838 btrfs_put_ordered_extent(ordered);
4839 unlock_extent(&BTRFS_I(inode)->io_tree,
4840 alloc_start, alloc_end - 1, GFP_NOFS);
4841 btrfs_wait_ordered_range(inode, alloc_start,
4842 alloc_end - alloc_start);
4843 } else {
4844 if (ordered)
4845 btrfs_put_ordered_extent(ordered);
4846 break;
4847 }
4848 }
4849
4850 cur_offset = alloc_start;
4851 while (1) {
4852 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4853 alloc_end - cur_offset, 0);
4854 BUG_ON(IS_ERR(em) || !em);
4855 last_byte = min(extent_map_end(em), alloc_end);
4856 last_byte = (last_byte + mask) & ~mask;
4857 if (em->block_start == EXTENT_MAP_HOLE) {
4858 ret = prealloc_file_range(inode, cur_offset,
4859 last_byte, alloc_hint, mode);
4860 if (ret < 0) {
4861 free_extent_map(em);
4862 break;
4863 }
4864 }
4865 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
4866 alloc_hint = em->block_start;
4867 free_extent_map(em);
4868
4869 cur_offset = last_byte;
4870 if (cur_offset >= alloc_end) {
4871 ret = 0;
4872 break;
4873 }
4874 }
4875 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, alloc_end - 1,
4876 GFP_NOFS);
4877out:
4878 mutex_unlock(&inode->i_mutex);
4879 return ret;
4880}
4881
Chris Masone6dcd2d2008-07-17 12:53:50 -04004882static int btrfs_set_page_dirty(struct page *page)
4883{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004884 return __set_page_dirty_nobuffers(page);
4885}
4886
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004887static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05004888{
4889 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
4890 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04004891 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05004892}
Chris Mason39279cc2007-06-12 06:35:45 -04004893
4894static struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05004895 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04004896 .lookup = btrfs_lookup,
4897 .create = btrfs_create,
4898 .unlink = btrfs_unlink,
4899 .link = btrfs_link,
4900 .mkdir = btrfs_mkdir,
4901 .rmdir = btrfs_rmdir,
4902 .rename = btrfs_rename,
4903 .symlink = btrfs_symlink,
4904 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04004905 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004906 .setxattr = btrfs_setxattr,
4907 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05004908 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004909 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05004910 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004911};
Chris Mason39279cc2007-06-12 06:35:45 -04004912static struct inode_operations btrfs_dir_ro_inode_operations = {
4913 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05004914 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004915};
Chris Mason39279cc2007-06-12 06:35:45 -04004916static struct file_operations btrfs_dir_file_operations = {
4917 .llseek = generic_file_llseek,
4918 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01004919 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004920 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004921#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004922 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004923#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04004924 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04004925 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04004926};
4927
Chris Masond1310b22008-01-24 16:13:08 -05004928static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04004929 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05004930 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04004931 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004932 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004933 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04004934 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04004935 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05004936 .set_bit_hook = btrfs_set_bit_hook,
4937 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004938};
4939
Chris Mason39279cc2007-06-12 06:35:45 -04004940static struct address_space_operations btrfs_aops = {
4941 .readpage = btrfs_readpage,
4942 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04004943 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05004944 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04004945 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04004946 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04004947 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04004948 .invalidatepage = btrfs_invalidatepage,
4949 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004950 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04004951};
4952
4953static struct address_space_operations btrfs_symlink_aops = {
4954 .readpage = btrfs_readpage,
4955 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04004956 .invalidatepage = btrfs_invalidatepage,
4957 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04004958};
4959
4960static struct inode_operations btrfs_file_inode_operations = {
4961 .truncate = btrfs_truncate,
4962 .getattr = btrfs_getattr,
4963 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004964 .setxattr = btrfs_setxattr,
4965 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05004966 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004967 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05004968 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04004969 .fallocate = btrfs_fallocate,
Chris Mason39279cc2007-06-12 06:35:45 -04004970};
Josef Bacik618e21d2007-07-11 10:18:17 -04004971static struct inode_operations btrfs_special_inode_operations = {
4972 .getattr = btrfs_getattr,
4973 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05004974 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004975 .setxattr = btrfs_setxattr,
4976 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04004977 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004978 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04004979};
Chris Mason39279cc2007-06-12 06:35:45 -04004980static struct inode_operations btrfs_symlink_inode_operations = {
4981 .readlink = generic_readlink,
4982 .follow_link = page_follow_link_light,
4983 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05004984 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004985};