blob: e64a4fe19a6077ab7afa97117ccd62fc5c441f54 [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
Yan Zheng17d217f2008-12-12 10:03:38 -0500774 if (root->root_key.objectid ==
775 BTRFS_DATA_RELOC_TREE_OBJECTID) {
776 ret = btrfs_reloc_clone_csums(inode, start,
777 cur_alloc_size);
778 BUG_ON(ret);
779 }
780
Chris Masonc8b97812008-10-29 14:49:59 -0400781 if (disk_num_bytes < cur_alloc_size) {
782 printk("num_bytes %Lu cur_alloc %Lu\n", disk_num_bytes,
Chris Mason3b951512008-04-17 11:29:12 -0400783 cur_alloc_size);
784 break;
785 }
Chris Masonc8b97812008-10-29 14:49:59 -0400786 /* we're not doing compressed IO, don't unlock the first
787 * page (which the caller expects to stay locked), don't
788 * clear any dirty bits and don't set any writeback bits
789 */
790 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
791 start, start + ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500792 locked_page, unlock, 1,
793 1, 0, 0, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400794 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500795 num_bytes -= cur_alloc_size;
796 alloc_hint = ins.objectid + ins.offset;
797 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400798 }
Chris Masonb888db22007-08-27 16:49:44 -0400799out:
Chris Mason771ed682008-11-06 22:02:51 -0500800 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400801 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400802
Chris Masonbe20aa92007-12-17 20:14:01 -0500803 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500804}
Chris Masonc8b97812008-10-29 14:49:59 -0400805
Chris Mason771ed682008-11-06 22:02:51 -0500806/*
807 * work queue call back to started compression on a file and pages
808 */
809static noinline void async_cow_start(struct btrfs_work *work)
810{
811 struct async_cow *async_cow;
812 int num_added = 0;
813 async_cow = container_of(work, struct async_cow, work);
814
815 compress_file_range(async_cow->inode, async_cow->locked_page,
816 async_cow->start, async_cow->end, async_cow,
817 &num_added);
818 if (num_added == 0)
819 async_cow->inode = NULL;
820}
821
822/*
823 * work queue call back to submit previously compressed pages
824 */
825static noinline void async_cow_submit(struct btrfs_work *work)
826{
827 struct async_cow *async_cow;
828 struct btrfs_root *root;
829 unsigned long nr_pages;
830
831 async_cow = container_of(work, struct async_cow, work);
832
833 root = async_cow->root;
834 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
835 PAGE_CACHE_SHIFT;
836
837 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
838
839 if (atomic_read(&root->fs_info->async_delalloc_pages) <
840 5 * 1042 * 1024 &&
841 waitqueue_active(&root->fs_info->async_submit_wait))
842 wake_up(&root->fs_info->async_submit_wait);
843
844 if (async_cow->inode) {
845 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason70b99e62008-10-31 12:46:39 -0400846 }
Chris Mason771ed682008-11-06 22:02:51 -0500847}
Chris Masonc8b97812008-10-29 14:49:59 -0400848
Chris Mason771ed682008-11-06 22:02:51 -0500849static noinline void async_cow_free(struct btrfs_work *work)
850{
851 struct async_cow *async_cow;
852 async_cow = container_of(work, struct async_cow, work);
853 kfree(async_cow);
854}
855
856static int cow_file_range_async(struct inode *inode, struct page *locked_page,
857 u64 start, u64 end, int *page_started,
858 unsigned long *nr_written)
859{
860 struct async_cow *async_cow;
861 struct btrfs_root *root = BTRFS_I(inode)->root;
862 unsigned long nr_pages;
863 u64 cur_end;
864 int limit = 10 * 1024 * 1042;
865
866 if (!btrfs_test_opt(root, COMPRESS)) {
867 return cow_file_range(inode, locked_page, start, end,
868 page_started, nr_written, 1);
869 }
870
871 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED |
872 EXTENT_DELALLOC, 1, 0, GFP_NOFS);
873 while(start < end) {
874 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
875 async_cow->inode = inode;
876 async_cow->root = root;
877 async_cow->locked_page = locked_page;
878 async_cow->start = start;
879
880 if (btrfs_test_flag(inode, NOCOMPRESS))
881 cur_end = end;
882 else
883 cur_end = min(end, start + 512 * 1024 - 1);
884
885 async_cow->end = cur_end;
886 INIT_LIST_HEAD(&async_cow->extents);
887
888 async_cow->work.func = async_cow_start;
889 async_cow->work.ordered_func = async_cow_submit;
890 async_cow->work.ordered_free = async_cow_free;
891 async_cow->work.flags = 0;
892
Chris Mason771ed682008-11-06 22:02:51 -0500893 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
894 PAGE_CACHE_SHIFT;
895 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
896
897 btrfs_queue_worker(&root->fs_info->delalloc_workers,
898 &async_cow->work);
899
900 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
901 wait_event(root->fs_info->async_submit_wait,
902 (atomic_read(&root->fs_info->async_delalloc_pages) <
903 limit));
904 }
905
906 while(atomic_read(&root->fs_info->async_submit_draining) &&
907 atomic_read(&root->fs_info->async_delalloc_pages)) {
908 wait_event(root->fs_info->async_submit_wait,
909 (atomic_read(&root->fs_info->async_delalloc_pages) ==
910 0));
911 }
912
913 *nr_written += nr_pages;
914 start = cur_end + 1;
915 }
916 *page_started = 1;
917 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500918}
919
Yan Zheng17d217f2008-12-12 10:03:38 -0500920static int noinline csum_exist_in_range(struct btrfs_root *root,
921 u64 bytenr, u64 num_bytes)
922{
923 int ret;
924 struct btrfs_ordered_sum *sums;
925 LIST_HEAD(list);
926
927 ret = btrfs_lookup_csums_range(root, bytenr, bytenr + num_bytes - 1,
928 &list);
929 if (ret == 0 && list_empty(&list))
930 return 0;
931
932 while (!list_empty(&list)) {
933 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
934 list_del(&sums->list);
935 kfree(sums);
936 }
937 return 1;
938}
939
Chris Masond352ac62008-09-29 15:18:18 -0400940/*
941 * when nowcow writeback call back. This checks for snapshots or COW copies
942 * of the extents that exist in the file, and COWs the file as required.
943 *
944 * If no cow copies or snapshots exist, we write directly to the existing
945 * blocks on disk
946 */
Chris Masonc8b97812008-10-29 14:49:59 -0400947static int run_delalloc_nocow(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -0500948 u64 start, u64 end, int *page_started, int force,
949 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -0500950{
Chris Masonbe20aa92007-12-17 20:14:01 -0500951 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400952 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -0500953 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -0500954 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -0400955 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -0500956 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -0400957 u64 cow_start;
958 u64 cur_offset;
959 u64 extent_end;
960 u64 disk_bytenr;
961 u64 num_bytes;
962 int extent_type;
963 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -0400964 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -0400965 int nocow;
966 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500967
968 path = btrfs_alloc_path();
969 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400970 trans = btrfs_join_transaction(root, 1);
971 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500972
Yan Zheng80ff3852008-10-30 14:20:02 -0400973 cow_start = (u64)-1;
974 cur_offset = start;
975 while (1) {
976 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
977 cur_offset, 0);
978 BUG_ON(ret < 0);
979 if (ret > 0 && path->slots[0] > 0 && check_prev) {
980 leaf = path->nodes[0];
981 btrfs_item_key_to_cpu(leaf, &found_key,
982 path->slots[0] - 1);
983 if (found_key.objectid == inode->i_ino &&
984 found_key.type == BTRFS_EXTENT_DATA_KEY)
985 path->slots[0]--;
986 }
987 check_prev = 0;
988next_slot:
989 leaf = path->nodes[0];
990 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
991 ret = btrfs_next_leaf(root, path);
992 if (ret < 0)
993 BUG_ON(1);
994 if (ret > 0)
995 break;
996 leaf = path->nodes[0];
997 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500998
Yan Zheng80ff3852008-10-30 14:20:02 -0400999 nocow = 0;
1000 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001001 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001002 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001003
Yan Zheng80ff3852008-10-30 14:20:02 -04001004 if (found_key.objectid > inode->i_ino ||
1005 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1006 found_key.offset > end)
1007 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001008
Yan Zheng80ff3852008-10-30 14:20:02 -04001009 if (found_key.offset > cur_offset) {
1010 extent_end = found_key.offset;
1011 goto out_check;
1012 }
Chris Masonc31f8832008-01-08 15:46:31 -05001013
Yan Zheng80ff3852008-10-30 14:20:02 -04001014 fi = btrfs_item_ptr(leaf, path->slots[0],
1015 struct btrfs_file_extent_item);
1016 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001017
Yan Zhengd899e052008-10-30 14:25:28 -04001018 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1019 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001020 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1021 extent_end = found_key.offset +
1022 btrfs_file_extent_num_bytes(leaf, fi);
1023 if (extent_end <= start) {
1024 path->slots[0]++;
1025 goto next_slot;
1026 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001027 if (disk_bytenr == 0)
1028 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001029 if (btrfs_file_extent_compression(leaf, fi) ||
1030 btrfs_file_extent_encryption(leaf, fi) ||
1031 btrfs_file_extent_other_encoding(leaf, fi))
1032 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001033 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1034 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001035 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001036 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001037 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
1038 disk_bytenr))
1039 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001040 disk_bytenr += btrfs_file_extent_offset(leaf, fi);
Yan Zheng17d217f2008-12-12 10:03:38 -05001041 disk_bytenr += cur_offset - found_key.offset;
1042 num_bytes = min(end + 1, extent_end) - cur_offset;
1043 /*
1044 * force cow if csum exists in the range.
1045 * this ensure that csum for a given extent are
1046 * either valid or do not exist.
1047 */
1048 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1049 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001050 nocow = 1;
1051 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1052 extent_end = found_key.offset +
1053 btrfs_file_extent_inline_len(leaf, fi);
1054 extent_end = ALIGN(extent_end, root->sectorsize);
1055 } else {
1056 BUG_ON(1);
1057 }
1058out_check:
1059 if (extent_end <= start) {
1060 path->slots[0]++;
1061 goto next_slot;
1062 }
1063 if (!nocow) {
1064 if (cow_start == (u64)-1)
1065 cow_start = cur_offset;
1066 cur_offset = extent_end;
1067 if (cur_offset > end)
1068 break;
1069 path->slots[0]++;
1070 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001071 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001072
Yan Zheng7ea394f2008-08-05 13:05:02 -04001073 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001074 if (cow_start != (u64)-1) {
1075 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001076 found_key.offset - 1, page_started,
1077 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001078 BUG_ON(ret);
1079 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001080 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001081
Yan Zhengd899e052008-10-30 14:25:28 -04001082 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1083 struct extent_map *em;
1084 struct extent_map_tree *em_tree;
1085 em_tree = &BTRFS_I(inode)->extent_tree;
1086 em = alloc_extent_map(GFP_NOFS);
1087 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001088 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001089 em->len = num_bytes;
1090 em->block_len = num_bytes;
1091 em->block_start = disk_bytenr;
1092 em->bdev = root->fs_info->fs_devices->latest_bdev;
1093 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1094 while (1) {
1095 spin_lock(&em_tree->lock);
1096 ret = add_extent_mapping(em_tree, em);
1097 spin_unlock(&em_tree->lock);
1098 if (ret != -EEXIST) {
1099 free_extent_map(em);
1100 break;
1101 }
1102 btrfs_drop_extent_cache(inode, em->start,
1103 em->start + em->len - 1, 0);
1104 }
1105 type = BTRFS_ORDERED_PREALLOC;
1106 } else {
1107 type = BTRFS_ORDERED_NOCOW;
1108 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001109
1110 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001111 num_bytes, num_bytes, type);
1112 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001113
Yan Zhengd899e052008-10-30 14:25:28 -04001114 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
1115 cur_offset, cur_offset + num_bytes - 1,
Chris Mason771ed682008-11-06 22:02:51 -05001116 locked_page, 1, 1, 1, 0, 0, 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04001117 cur_offset = extent_end;
1118 if (cur_offset > end)
1119 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001120 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001121 btrfs_release_path(root, path);
1122
1123 if (cur_offset <= end && cow_start == (u64)-1)
1124 cow_start = cur_offset;
1125 if (cow_start != (u64)-1) {
1126 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001127 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001128 BUG_ON(ret);
1129 }
1130
1131 ret = btrfs_end_transaction(trans, root);
1132 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001133 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001134 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001135}
1136
Chris Masond352ac62008-09-29 15:18:18 -04001137/*
1138 * extent_io.c call back to do delayed allocation processing
1139 */
Chris Masonc8b97812008-10-29 14:49:59 -04001140static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001141 u64 start, u64 end, int *page_started,
1142 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001143{
Chris Masonbe20aa92007-12-17 20:14:01 -05001144 int ret;
Chris Masona2135012008-06-25 16:01:30 -04001145
Yan Zheng17d217f2008-12-12 10:03:38 -05001146 if (btrfs_test_flag(inode, NODATACOW))
Chris Masonc8b97812008-10-29 14:49:59 -04001147 ret = run_delalloc_nocow(inode, locked_page, start, end,
Liu Huice397c02008-12-01 20:31:40 -05001148 page_started, 1, nr_written);
Yan Zhengd899e052008-10-30 14:25:28 -04001149 else if (btrfs_test_flag(inode, PREALLOC))
1150 ret = run_delalloc_nocow(inode, locked_page, start, end,
Liu Huice397c02008-12-01 20:31:40 -05001151 page_started, 0, nr_written);
Chris Masonbe20aa92007-12-17 20:14:01 -05001152 else
Chris Mason771ed682008-11-06 22:02:51 -05001153 ret = cow_file_range_async(inode, locked_page, start, end,
1154 page_started, nr_written);
Chris Mason1832a6d2007-12-21 16:27:21 -05001155
Chris Masonb888db22007-08-27 16:49:44 -04001156 return ret;
1157}
1158
Chris Masond352ac62008-09-29 15:18:18 -04001159/*
1160 * extent_io.c set_bit_hook, used to track delayed allocation
1161 * bytes in this file, and to maintain the list of inodes that
1162 * have pending delalloc work to be done.
1163 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001164static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001165 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001166{
Chris Masonbcbfce82008-04-22 13:26:47 -04001167 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -05001168 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001169 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001170 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -05001171 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001172 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001173 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1174 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1175 &root->fs_info->delalloc_inodes);
1176 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001177 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001178 }
1179 return 0;
1180}
1181
Chris Masond352ac62008-09-29 15:18:18 -04001182/*
1183 * extent_io.c clear_bit_hook, see set_bit_hook for why
1184 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001185static int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001186 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001187{
Chris Masonb0c68f82008-01-31 11:05:37 -05001188 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001189 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001190 unsigned long flags;
1191
1192 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -05001193 if (end - start + 1 > root->fs_info->delalloc_bytes) {
1194 printk("warning: delalloc account %Lu %Lu\n",
1195 end - start + 1, root->fs_info->delalloc_bytes);
1196 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001197 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001198 } else {
1199 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -05001200 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001201 }
Chris Masonea8c2812008-08-04 23:17:27 -04001202 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1203 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1204 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1205 }
Chris Masonbcbfce82008-04-22 13:26:47 -04001206 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -05001207 }
1208 return 0;
1209}
1210
Chris Masond352ac62008-09-29 15:18:18 -04001211/*
1212 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1213 * we don't create bios that span stripes or chunks
1214 */
Chris Mason239b14b2008-03-24 15:02:07 -04001215int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001216 size_t size, struct bio *bio,
1217 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001218{
1219 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1220 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001221 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001222 u64 length = 0;
1223 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001224 int ret;
1225
Chris Mason771ed682008-11-06 22:02:51 -05001226 if (bio_flags & EXTENT_BIO_COMPRESSED)
1227 return 0;
1228
Chris Masonf2d8d742008-04-21 10:03:05 -04001229 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001230 map_tree = &root->fs_info->mapping_tree;
1231 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001232 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001233 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001234
Chris Mason239b14b2008-03-24 15:02:07 -04001235 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -04001236 return 1;
1237 }
1238 return 0;
1239}
1240
Chris Masond352ac62008-09-29 15:18:18 -04001241/*
1242 * in order to insert checksums into the metadata in large chunks,
1243 * we wait until bio submission time. All the pages in the bio are
1244 * checksummed and sums are attached onto the ordered extent record.
1245 *
1246 * At IO completion time the cums attached on the ordered extent record
1247 * are inserted into the btree
1248 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001249static int __btrfs_submit_bio_start(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001250 int mirror_num, unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001251{
Chris Mason065631f2008-02-20 12:07:25 -05001252 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001253 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001254
Chris Masond20f7042008-12-08 16:58:54 -05001255 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001256 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001257 return 0;
1258}
Chris Masone0156402008-04-16 11:15:20 -04001259
Chris Mason4a69a412008-11-06 22:03:00 -05001260/*
1261 * in order to insert checksums into the metadata in large chunks,
1262 * we wait until bio submission time. All the pages in the bio are
1263 * checksummed and sums are attached onto the ordered extent record.
1264 *
1265 * At IO completion time the cums attached on the ordered extent record
1266 * are inserted into the btree
1267 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001268static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Mason4a69a412008-11-06 22:03:00 -05001269 int mirror_num, unsigned long bio_flags)
1270{
1271 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001272 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001273}
1274
Chris Masond352ac62008-09-29 15:18:18 -04001275/*
1276 * extent_io.c submission hook. This does the right thing for csum calculation on write,
1277 * or reading the csums from the tree before a read
1278 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001279static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001280 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001281{
1282 struct btrfs_root *root = BTRFS_I(inode)->root;
1283 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001284 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001285
Chris Masone6dcd2d2008-07-17 12:53:50 -04001286 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1287 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001288
Yan Zheng17d217f2008-12-12 10:03:38 -05001289 skip_sum = btrfs_test_flag(inode, NODATASUM);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001290
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001291 if (!(rw & (1 << BIO_RW))) {
Chris Masond20f7042008-12-08 16:58:54 -05001292 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001293 return btrfs_submit_compressed_read(inode, bio,
1294 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001295 } else if (!skip_sum)
1296 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001297 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001298 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001299 /* csum items have already been cloned */
1300 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1301 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001302 /* we're doing a write, do the async checksumming */
1303 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001304 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001305 bio_flags, __btrfs_submit_bio_start,
1306 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001307 }
1308
Chris Mason0b86a832008-03-24 15:01:56 -04001309mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001310 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001311}
Chris Mason6885f302008-02-20 16:11:05 -05001312
Chris Masond352ac62008-09-29 15:18:18 -04001313/*
1314 * given a list of ordered sums record them in the inode. This happens
1315 * at IO completion time based on sums calculated at bio submission time.
1316 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001317static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001318 struct inode *inode, u64 file_offset,
1319 struct list_head *list)
1320{
1321 struct list_head *cur;
1322 struct btrfs_ordered_sum *sum;
1323
1324 btrfs_set_trans_block_group(trans, inode);
Chris Masonba1da2f2008-07-17 12:54:15 -04001325 list_for_each(cur, list) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04001326 sum = list_entry(cur, struct btrfs_ordered_sum, list);
Chris Masond20f7042008-12-08 16:58:54 -05001327 btrfs_csum_file_blocks(trans,
1328 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001329 }
1330 return 0;
1331}
1332
Chris Masonea8c2812008-08-04 23:17:27 -04001333int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1334{
Chris Mason771ed682008-11-06 22:02:51 -05001335 if ((end & (PAGE_CACHE_SIZE - 1)) == 0) {
1336 WARN_ON(1);
1337 }
Chris Masonea8c2812008-08-04 23:17:27 -04001338 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1339 GFP_NOFS);
1340}
1341
Chris Masond352ac62008-09-29 15:18:18 -04001342/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001343struct btrfs_writepage_fixup {
1344 struct page *page;
1345 struct btrfs_work work;
1346};
1347
Christoph Hellwigb2950862008-12-02 09:54:17 -05001348static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001349{
1350 struct btrfs_writepage_fixup *fixup;
1351 struct btrfs_ordered_extent *ordered;
1352 struct page *page;
1353 struct inode *inode;
1354 u64 page_start;
1355 u64 page_end;
1356
1357 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1358 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001359again:
Chris Mason247e7432008-07-17 12:53:51 -04001360 lock_page(page);
1361 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1362 ClearPageChecked(page);
1363 goto out_page;
1364 }
1365
1366 inode = page->mapping->host;
1367 page_start = page_offset(page);
1368 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1369
1370 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001371
1372 /* already ordered? We're done */
1373 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
1374 EXTENT_ORDERED, 0)) {
Chris Mason247e7432008-07-17 12:53:51 -04001375 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001376 }
1377
1378 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1379 if (ordered) {
1380 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1381 page_end, GFP_NOFS);
1382 unlock_page(page);
1383 btrfs_start_ordered_extent(inode, ordered, 1);
1384 goto again;
1385 }
Chris Mason247e7432008-07-17 12:53:51 -04001386
Chris Masonea8c2812008-08-04 23:17:27 -04001387 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001388 ClearPageChecked(page);
1389out:
1390 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1391out_page:
1392 unlock_page(page);
1393 page_cache_release(page);
1394}
1395
1396/*
1397 * There are a few paths in the higher layers of the kernel that directly
1398 * set the page dirty bit without asking the filesystem if it is a
1399 * good idea. This causes problems because we want to make sure COW
1400 * properly happens and the data=ordered rules are followed.
1401 *
Chris Masonc8b97812008-10-29 14:49:59 -04001402 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001403 * hasn't been properly setup for IO. We kick off an async process
1404 * to fix it up. The async helper will wait for ordered extents, set
1405 * the delalloc bit and make it safe to write the page.
1406 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001407static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001408{
1409 struct inode *inode = page->mapping->host;
1410 struct btrfs_writepage_fixup *fixup;
1411 struct btrfs_root *root = BTRFS_I(inode)->root;
1412 int ret;
1413
1414 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1415 EXTENT_ORDERED, 0);
1416 if (ret)
1417 return 0;
1418
1419 if (PageChecked(page))
1420 return -EAGAIN;
1421
1422 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1423 if (!fixup)
1424 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001425
Chris Mason247e7432008-07-17 12:53:51 -04001426 SetPageChecked(page);
1427 page_cache_get(page);
1428 fixup->work.func = btrfs_writepage_fixup_worker;
1429 fixup->page = page;
1430 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1431 return -EAGAIN;
1432}
1433
Yan Zhengd899e052008-10-30 14:25:28 -04001434static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1435 struct inode *inode, u64 file_pos,
1436 u64 disk_bytenr, u64 disk_num_bytes,
1437 u64 num_bytes, u64 ram_bytes,
1438 u8 compression, u8 encryption,
1439 u16 other_encoding, int extent_type)
1440{
1441 struct btrfs_root *root = BTRFS_I(inode)->root;
1442 struct btrfs_file_extent_item *fi;
1443 struct btrfs_path *path;
1444 struct extent_buffer *leaf;
1445 struct btrfs_key ins;
1446 u64 hint;
1447 int ret;
1448
1449 path = btrfs_alloc_path();
1450 BUG_ON(!path);
1451
1452 ret = btrfs_drop_extents(trans, root, inode, file_pos,
1453 file_pos + num_bytes, file_pos, &hint);
1454 BUG_ON(ret);
1455
1456 ins.objectid = inode->i_ino;
1457 ins.offset = file_pos;
1458 ins.type = BTRFS_EXTENT_DATA_KEY;
1459 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1460 BUG_ON(ret);
1461 leaf = path->nodes[0];
1462 fi = btrfs_item_ptr(leaf, path->slots[0],
1463 struct btrfs_file_extent_item);
1464 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1465 btrfs_set_file_extent_type(leaf, fi, extent_type);
1466 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1467 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1468 btrfs_set_file_extent_offset(leaf, fi, 0);
1469 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1470 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1471 btrfs_set_file_extent_compression(leaf, fi, compression);
1472 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1473 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
1474 btrfs_mark_buffer_dirty(leaf);
1475
1476 inode_add_bytes(inode, num_bytes);
1477 btrfs_drop_extent_cache(inode, file_pos, file_pos + num_bytes - 1, 0);
1478
1479 ins.objectid = disk_bytenr;
1480 ins.offset = disk_num_bytes;
1481 ins.type = BTRFS_EXTENT_ITEM_KEY;
1482 ret = btrfs_alloc_reserved_extent(trans, root, leaf->start,
1483 root->root_key.objectid,
1484 trans->transid, inode->i_ino, &ins);
1485 BUG_ON(ret);
1486
1487 btrfs_free_path(path);
1488 return 0;
1489}
1490
Chris Masond352ac62008-09-29 15:18:18 -04001491/* as ordered data IO finishes, this gets called so we can finish
1492 * an ordered extent if the range of bytes in the file it covers are
1493 * fully written.
1494 */
Chris Mason211f90e2008-07-18 11:56:15 -04001495static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001496{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001497 struct btrfs_root *root = BTRFS_I(inode)->root;
1498 struct btrfs_trans_handle *trans;
1499 struct btrfs_ordered_extent *ordered_extent;
1500 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan Zhengd899e052008-10-30 14:25:28 -04001501 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001502 int ret;
1503
1504 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001505 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001506 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001507
Chris Masonf9295742008-07-17 12:54:14 -04001508 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001509
1510 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
1511 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001512 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
1513 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001514
1515 lock_extent(io_tree, ordered_extent->file_offset,
1516 ordered_extent->file_offset + ordered_extent->len - 1,
1517 GFP_NOFS);
1518
Chris Masonc8b97812008-10-29 14:49:59 -04001519 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001520 compressed = 1;
1521 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1522 BUG_ON(compressed);
1523 ret = btrfs_mark_extent_written(trans, root, inode,
1524 ordered_extent->file_offset,
1525 ordered_extent->file_offset +
1526 ordered_extent->len);
1527 BUG_ON(ret);
1528 } else {
1529 ret = insert_reserved_file_extent(trans, inode,
1530 ordered_extent->file_offset,
1531 ordered_extent->start,
1532 ordered_extent->disk_len,
1533 ordered_extent->len,
1534 ordered_extent->len,
1535 compressed, 0, 0,
1536 BTRFS_FILE_EXTENT_REG);
1537 BUG_ON(ret);
1538 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001539 unlock_extent(io_tree, ordered_extent->file_offset,
1540 ordered_extent->file_offset + ordered_extent->len - 1,
1541 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001542nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001543 add_pending_csums(trans, inode, ordered_extent->file_offset,
1544 &ordered_extent->list);
1545
Chris Mason34353022008-09-23 20:19:49 -04001546 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masondbe674a2008-07-17 12:54:05 -04001547 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -04001548 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001549 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason34353022008-09-23 20:19:49 -04001550 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -04001551
Chris Masone6dcd2d2008-07-17 12:53:50 -04001552 /* once for us */
1553 btrfs_put_ordered_extent(ordered_extent);
1554 /* once for the tree */
1555 btrfs_put_ordered_extent(ordered_extent);
1556
Chris Masone6dcd2d2008-07-17 12:53:50 -04001557 btrfs_end_transaction(trans, root);
1558 return 0;
1559}
1560
Christoph Hellwigb2950862008-12-02 09:54:17 -05001561static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001562 struct extent_state *state, int uptodate)
1563{
1564 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1565}
1566
Chris Masond352ac62008-09-29 15:18:18 -04001567/*
1568 * When IO fails, either with EIO or csum verification fails, we
1569 * try other mirrors that might have a good copy of the data. This
1570 * io_failure_record is used to record state as we go through all the
1571 * mirrors. If another mirror has good data, the page is set up to date
1572 * and things continue. If a good mirror can't be found, the original
1573 * bio end_io callback is called to indicate things have failed.
1574 */
Chris Mason7e383262008-04-09 16:28:12 -04001575struct io_failure_record {
1576 struct page *page;
1577 u64 start;
1578 u64 len;
1579 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001580 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001581 int last_mirror;
1582};
1583
Christoph Hellwigb2950862008-12-02 09:54:17 -05001584static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001585 struct page *page, u64 start, u64 end,
1586 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001587{
1588 struct io_failure_record *failrec = NULL;
1589 u64 private;
1590 struct extent_map *em;
1591 struct inode *inode = page->mapping->host;
1592 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001593 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001594 struct bio *bio;
1595 int num_copies;
1596 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001597 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001598 u64 logical;
1599
1600 ret = get_state_private(failure_tree, start, &private);
1601 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001602 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1603 if (!failrec)
1604 return -ENOMEM;
1605 failrec->start = start;
1606 failrec->len = end - start + 1;
1607 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001608 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001609
Chris Mason3b951512008-04-17 11:29:12 -04001610 spin_lock(&em_tree->lock);
1611 em = lookup_extent_mapping(em_tree, start, failrec->len);
1612 if (em->start > start || em->start + em->len < start) {
1613 free_extent_map(em);
1614 em = NULL;
1615 }
1616 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001617
1618 if (!em || IS_ERR(em)) {
1619 kfree(failrec);
1620 return -EIO;
1621 }
1622 logical = start - em->start;
1623 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001624 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1625 logical = em->block_start;
1626 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1627 }
Chris Mason7e383262008-04-09 16:28:12 -04001628 failrec->logical = logical;
1629 free_extent_map(em);
1630 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1631 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001632 set_state_private(failure_tree, start,
1633 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001634 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001635 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001636 }
1637 num_copies = btrfs_num_copies(
1638 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1639 failrec->logical, failrec->len);
1640 failrec->last_mirror++;
1641 if (!state) {
1642 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
1643 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1644 failrec->start,
1645 EXTENT_LOCKED);
1646 if (state && state->start != failrec->start)
1647 state = NULL;
1648 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
1649 }
1650 if (!state || failrec->last_mirror > num_copies) {
1651 set_state_private(failure_tree, failrec->start, 0);
1652 clear_extent_bits(failure_tree, failrec->start,
1653 failrec->start + failrec->len - 1,
1654 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1655 kfree(failrec);
1656 return -EIO;
1657 }
1658 bio = bio_alloc(GFP_NOFS, 1);
1659 bio->bi_private = state;
1660 bio->bi_end_io = failed_bio->bi_end_io;
1661 bio->bi_sector = failrec->logical >> 9;
1662 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001663 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001664
Chris Mason7e383262008-04-09 16:28:12 -04001665 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001666 if (failed_bio->bi_rw & (1 << BIO_RW))
1667 rw = WRITE;
1668 else
1669 rw = READ;
1670
1671 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001672 failrec->last_mirror,
Chris Masond20f7042008-12-08 16:58:54 -05001673 failrec->bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001674 return 0;
1675}
1676
Chris Masond352ac62008-09-29 15:18:18 -04001677/*
1678 * each time an IO finishes, we do a fast check in the IO failure tree
1679 * to see if we need to process or clean up an io_failure_record
1680 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001681static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001682{
1683 u64 private;
1684 u64 private_failure;
1685 struct io_failure_record *failure;
1686 int ret;
1687
1688 private = 0;
1689 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1690 (u64)-1, 1, EXTENT_DIRTY)) {
1691 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1692 start, &private_failure);
1693 if (ret == 0) {
1694 failure = (struct io_failure_record *)(unsigned long)
1695 private_failure;
1696 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1697 failure->start, 0);
1698 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1699 failure->start,
1700 failure->start + failure->len - 1,
1701 EXTENT_DIRTY | EXTENT_LOCKED,
1702 GFP_NOFS);
1703 kfree(failure);
1704 }
1705 }
Chris Mason7e383262008-04-09 16:28:12 -04001706 return 0;
1707}
1708
Chris Masond352ac62008-09-29 15:18:18 -04001709/*
1710 * when reads are done, we need to check csums to verify the data is correct
1711 * if there's a match, we allow the bio to finish. If not, we go through
1712 * the io_failure_record routines to find good copies
1713 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001714static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001715 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001716{
Chris Mason35ebb932007-10-30 16:56:53 -04001717 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001718 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001719 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001720 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001721 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001722 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001723 struct btrfs_root *root = BTRFS_I(inode)->root;
1724 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -04001725 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -05001726
Chris Masond20f7042008-12-08 16:58:54 -05001727 if (PageChecked(page)) {
1728 ClearPageChecked(page);
1729 goto good;
1730 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001731 if (btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -05001732 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001733
Yan Zheng17d217f2008-12-12 10:03:38 -05001734 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
1735 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1)) {
1736 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1737 GFP_NOFS);
1738 return 0;
1739 }
1740
Yanc2e639f2008-02-04 08:57:25 -05001741 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001742 private = state->private;
1743 ret = 0;
1744 } else {
1745 ret = get_state_private(io_tree, start, &private);
1746 }
Jens Axboebbf0d002007-10-19 09:23:07 -04001747 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -04001748 kaddr = kmap_atomic(page, KM_IRQ0);
1749 if (ret) {
1750 goto zeroit;
1751 }
Chris Masonff79f812007-10-15 16:22:25 -04001752 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1753 btrfs_csum_final(csum, (char *)&csum);
1754 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -04001755 goto zeroit;
1756 }
1757 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001758 local_irq_restore(flags);
Chris Masond20f7042008-12-08 16:58:54 -05001759good:
Chris Mason7e383262008-04-09 16:28:12 -04001760 /* if the io failure tree for this inode is non-empty,
1761 * check to see if we've recovered from a failed IO
1762 */
Chris Mason1259ab72008-05-12 13:39:03 -04001763 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001764 return 0;
1765
1766zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -05001767 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
1768 page->mapping->host->i_ino, (unsigned long long)start, csum,
1769 private);
Chris Masondb945352007-10-15 16:15:53 -04001770 memset(kaddr + offset, 1, end - start + 1);
1771 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -04001772 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -04001773 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -04001774 if (private == 0)
1775 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001776 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001777}
Chris Masonb888db22007-08-27 16:49:44 -04001778
Josef Bacik7b128762008-07-24 12:17:14 -04001779/*
1780 * This creates an orphan entry for the given inode in case something goes
1781 * wrong in the middle of an unlink/truncate.
1782 */
1783int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1784{
1785 struct btrfs_root *root = BTRFS_I(inode)->root;
1786 int ret = 0;
1787
Yanbcc63ab2008-07-30 16:29:20 -04001788 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001789
1790 /* already on the orphan list, we're good */
1791 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001792 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001793 return 0;
1794 }
1795
1796 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
1797
Yanbcc63ab2008-07-30 16:29:20 -04001798 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001799
1800 /*
1801 * insert an orphan item to track this unlinked/truncated file
1802 */
1803 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
1804
1805 return ret;
1806}
1807
1808/*
1809 * We have done the truncate/delete so we can go ahead and remove the orphan
1810 * item for this particular inode.
1811 */
1812int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
1813{
1814 struct btrfs_root *root = BTRFS_I(inode)->root;
1815 int ret = 0;
1816
Yanbcc63ab2008-07-30 16:29:20 -04001817 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001818
1819 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001820 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001821 return 0;
1822 }
1823
1824 list_del_init(&BTRFS_I(inode)->i_orphan);
1825 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04001826 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001827 return 0;
1828 }
1829
Yanbcc63ab2008-07-30 16:29:20 -04001830 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001831
1832 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
1833
1834 return ret;
1835}
1836
1837/*
1838 * this cleans up any orphans that may be left on the list from the last use
1839 * of this root.
1840 */
1841void btrfs_orphan_cleanup(struct btrfs_root *root)
1842{
1843 struct btrfs_path *path;
1844 struct extent_buffer *leaf;
1845 struct btrfs_item *item;
1846 struct btrfs_key key, found_key;
1847 struct btrfs_trans_handle *trans;
1848 struct inode *inode;
1849 int ret = 0, nr_unlink = 0, nr_truncate = 0;
1850
Josef Bacik7b128762008-07-24 12:17:14 -04001851 path = btrfs_alloc_path();
1852 if (!path)
1853 return;
1854 path->reada = -1;
1855
1856 key.objectid = BTRFS_ORPHAN_OBJECTID;
1857 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1858 key.offset = (u64)-1;
1859
Josef Bacik7b128762008-07-24 12:17:14 -04001860
1861 while (1) {
1862 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1863 if (ret < 0) {
1864 printk(KERN_ERR "Error searching slot for orphan: %d"
1865 "\n", ret);
1866 break;
1867 }
1868
1869 /*
1870 * if ret == 0 means we found what we were searching for, which
1871 * is weird, but possible, so only screw with path if we didnt
1872 * find the key and see if we have stuff that matches
1873 */
1874 if (ret > 0) {
1875 if (path->slots[0] == 0)
1876 break;
1877 path->slots[0]--;
1878 }
1879
1880 /* pull out the item */
1881 leaf = path->nodes[0];
1882 item = btrfs_item_nr(leaf, path->slots[0]);
1883 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1884
1885 /* make sure the item matches what we want */
1886 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
1887 break;
1888 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
1889 break;
1890
1891 /* release the path since we're done with it */
1892 btrfs_release_path(root, path);
1893
1894 /*
1895 * this is where we are basically btrfs_lookup, without the
1896 * crossing root thing. we store the inode number in the
1897 * offset of the orphan item.
1898 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001899 inode = btrfs_iget_locked(root->fs_info->sb,
Josef Bacik7b128762008-07-24 12:17:14 -04001900 found_key.offset, root);
1901 if (!inode)
1902 break;
1903
1904 if (inode->i_state & I_NEW) {
1905 BTRFS_I(inode)->root = root;
1906
1907 /* have to set the location manually */
1908 BTRFS_I(inode)->location.objectid = inode->i_ino;
1909 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
1910 BTRFS_I(inode)->location.offset = 0;
1911
1912 btrfs_read_locked_inode(inode);
1913 unlock_new_inode(inode);
1914 }
1915
1916 /*
1917 * add this inode to the orphan list so btrfs_orphan_del does
1918 * the proper thing when we hit it
1919 */
Yanbcc63ab2008-07-30 16:29:20 -04001920 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001921 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04001922 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001923
1924 /*
1925 * if this is a bad inode, means we actually succeeded in
1926 * removing the inode, but not the orphan record, which means
1927 * we need to manually delete the orphan since iput will just
1928 * do a destroy_inode
1929 */
1930 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001931 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04001932 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001933 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04001934 iput(inode);
1935 continue;
1936 }
1937
1938 /* if we have links, this was a truncate, lets do that */
1939 if (inode->i_nlink) {
1940 nr_truncate++;
1941 btrfs_truncate(inode);
1942 } else {
1943 nr_unlink++;
1944 }
1945
1946 /* this will do delete_inode and everything for us */
1947 iput(inode);
1948 }
1949
1950 if (nr_unlink)
1951 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
1952 if (nr_truncate)
1953 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
1954
1955 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04001956}
1957
Chris Masond352ac62008-09-29 15:18:18 -04001958/*
1959 * read an inode from the btree into the in-memory inode
1960 */
Chris Mason39279cc2007-06-12 06:35:45 -04001961void btrfs_read_locked_inode(struct inode *inode)
1962{
1963 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001964 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001965 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04001966 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04001967 struct btrfs_root *root = BTRFS_I(inode)->root;
1968 struct btrfs_key location;
1969 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04001970 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04001971 int ret;
1972
1973 path = btrfs_alloc_path();
1974 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001975 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05001976
Chris Mason39279cc2007-06-12 06:35:45 -04001977 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001978 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001979 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04001980
Chris Mason5f39d392007-10-15 16:14:19 -04001981 leaf = path->nodes[0];
1982 inode_item = btrfs_item_ptr(leaf, path->slots[0],
1983 struct btrfs_inode_item);
1984
1985 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
1986 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
1987 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
1988 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04001989 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04001990
1991 tspec = btrfs_inode_atime(inode_item);
1992 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1993 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1994
1995 tspec = btrfs_inode_mtime(inode_item);
1996 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1997 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1998
1999 tspec = btrfs_inode_ctime(inode_item);
2000 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2001 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2002
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002003 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002004 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002005 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002006 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002007 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002008 rdev = btrfs_inode_rdev(leaf, inode_item);
2009
Josef Bacikaec74772008-07-24 12:12:38 -04002010 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002011 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002012
Chris Mason5f39d392007-10-15 16:14:19 -04002013 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002014 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2015 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002016 btrfs_free_path(path);
2017 inode_item = NULL;
2018
Chris Mason39279cc2007-06-12 06:35:45 -04002019 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002020 case S_IFREG:
2021 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002022 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002023 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002024 inode->i_fop = &btrfs_file_operations;
2025 inode->i_op = &btrfs_file_inode_operations;
2026 break;
2027 case S_IFDIR:
2028 inode->i_fop = &btrfs_dir_file_operations;
2029 if (root == root->fs_info->tree_root)
2030 inode->i_op = &btrfs_dir_ro_inode_operations;
2031 else
2032 inode->i_op = &btrfs_dir_inode_operations;
2033 break;
2034 case S_IFLNK:
2035 inode->i_op = &btrfs_symlink_inode_operations;
2036 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002037 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002038 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002039 default:
2040 init_special_inode(inode, inode->i_mode, rdev);
2041 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002042 }
2043 return;
2044
2045make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002046 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002047 make_bad_inode(inode);
2048}
2049
Chris Masond352ac62008-09-29 15:18:18 -04002050/*
2051 * given a leaf and an inode, copy the inode fields into the leaf
2052 */
Chris Masone02119d2008-09-05 16:13:11 -04002053static void fill_inode_item(struct btrfs_trans_handle *trans,
2054 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002055 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002056 struct inode *inode)
2057{
Chris Mason5f39d392007-10-15 16:14:19 -04002058 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2059 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002060 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002061 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2062 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2063
2064 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2065 inode->i_atime.tv_sec);
2066 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2067 inode->i_atime.tv_nsec);
2068
2069 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2070 inode->i_mtime.tv_sec);
2071 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2072 inode->i_mtime.tv_nsec);
2073
2074 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2075 inode->i_ctime.tv_sec);
2076 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2077 inode->i_ctime.tv_nsec);
2078
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002079 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002080 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002081 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002082 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002083 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002084 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002085 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002086}
2087
Chris Masond352ac62008-09-29 15:18:18 -04002088/*
2089 * copy everything in the in-memory inode into the btree.
2090 */
Chris Masonba1da2f2008-07-17 12:54:15 -04002091int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -04002092 struct btrfs_root *root,
2093 struct inode *inode)
2094{
2095 struct btrfs_inode_item *inode_item;
2096 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002097 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002098 int ret;
2099
2100 path = btrfs_alloc_path();
2101 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002102 ret = btrfs_lookup_inode(trans, root, path,
2103 &BTRFS_I(inode)->location, 1);
2104 if (ret) {
2105 if (ret > 0)
2106 ret = -ENOENT;
2107 goto failed;
2108 }
2109
Chris Mason5f39d392007-10-15 16:14:19 -04002110 leaf = path->nodes[0];
2111 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002112 struct btrfs_inode_item);
2113
Chris Masone02119d2008-09-05 16:13:11 -04002114 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002115 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002116 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002117 ret = 0;
2118failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002119 btrfs_free_path(path);
2120 return ret;
2121}
2122
2123
Chris Masond352ac62008-09-29 15:18:18 -04002124/*
2125 * unlink helper that gets used here in inode.c and in the tree logging
2126 * recovery code. It remove a link in a directory with a given name, and
2127 * also drops the back refs in the inode to the directory
2128 */
Chris Masone02119d2008-09-05 16:13:11 -04002129int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2130 struct btrfs_root *root,
2131 struct inode *dir, struct inode *inode,
2132 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002133{
2134 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002135 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002136 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002137 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002138 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002139 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002140
2141 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002142 if (!path) {
2143 ret = -ENOMEM;
2144 goto err;
2145 }
2146
Chris Mason39279cc2007-06-12 06:35:45 -04002147 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2148 name, name_len, -1);
2149 if (IS_ERR(di)) {
2150 ret = PTR_ERR(di);
2151 goto err;
2152 }
2153 if (!di) {
2154 ret = -ENOENT;
2155 goto err;
2156 }
Chris Mason5f39d392007-10-15 16:14:19 -04002157 leaf = path->nodes[0];
2158 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002159 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002160 if (ret)
2161 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002162 btrfs_release_path(root, path);
2163
Josef Bacikaec74772008-07-24 12:12:38 -04002164 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002165 inode->i_ino,
2166 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002167 if (ret) {
2168 printk("failed to delete reference to %.*s, "
2169 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002170 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002171 goto err;
2172 }
2173
Chris Mason39279cc2007-06-12 06:35:45 -04002174 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002175 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002176 if (IS_ERR(di)) {
2177 ret = PTR_ERR(di);
2178 goto err;
2179 }
2180 if (!di) {
2181 ret = -ENOENT;
2182 goto err;
2183 }
2184 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002185 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002186
Chris Masone02119d2008-09-05 16:13:11 -04002187 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2188 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002189 BUG_ON(ret != 0 && ret != -ENOENT);
2190 if (ret != -ENOENT)
2191 BTRFS_I(dir)->log_dirty_trans = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04002192
2193 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2194 dir, index);
2195 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002196err:
2197 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002198 if (ret)
2199 goto out;
2200
2201 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2202 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2203 btrfs_update_inode(trans, root, dir);
2204 btrfs_drop_nlink(inode);
2205 ret = btrfs_update_inode(trans, root, inode);
2206 dir->i_sb->s_dirt = 1;
2207out:
Chris Mason39279cc2007-06-12 06:35:45 -04002208 return ret;
2209}
2210
2211static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2212{
2213 struct btrfs_root *root;
2214 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002215 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002216 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002217 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002218
2219 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002220
2221 ret = btrfs_check_free_space(root, 1, 1);
2222 if (ret)
2223 goto fail;
2224
Chris Mason39279cc2007-06-12 06:35:45 -04002225 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002226
Chris Mason39279cc2007-06-12 06:35:45 -04002227 btrfs_set_trans_block_group(trans, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002228 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2229 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002230
2231 if (inode->i_nlink == 0)
2232 ret = btrfs_orphan_add(trans, inode);
2233
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002234 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002235
Chris Mason89ce8a62008-06-25 16:01:31 -04002236 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002237fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002238 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002239 return ret;
2240}
2241
2242static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2243{
2244 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002245 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002246 int ret;
2247 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002248 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002249 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002250
Chris Mason3394e162008-11-17 20:42:26 -05002251 /*
2252 * the FIRST_FREE_OBJECTID check makes sure we don't try to rmdir
2253 * the root of a subvolume or snapshot
2254 */
2255 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
2256 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) {
Yan134d4512007-10-25 15:49:25 -04002257 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04002258 }
Yan134d4512007-10-25 15:49:25 -04002259
Chris Mason1832a6d2007-12-21 16:27:21 -05002260 ret = btrfs_check_free_space(root, 1, 1);
2261 if (ret)
2262 goto fail;
2263
Chris Mason39279cc2007-06-12 06:35:45 -04002264 trans = btrfs_start_transaction(root, 1);
2265 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002266
Josef Bacik7b128762008-07-24 12:17:14 -04002267 err = btrfs_orphan_add(trans, inode);
2268 if (err)
2269 goto fail_trans;
2270
Chris Mason39279cc2007-06-12 06:35:45 -04002271 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002272 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2273 dentry->d_name.name, dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002274 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04002275 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002276 }
Chris Mason39544012007-12-12 14:38:19 -05002277
Josef Bacik7b128762008-07-24 12:17:14 -04002278fail_trans:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002279 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002280 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002281fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002282 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002283
Chris Mason39279cc2007-06-12 06:35:45 -04002284 if (ret && !err)
2285 err = ret;
2286 return err;
2287}
2288
Chris Masond20f7042008-12-08 16:58:54 -05002289#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002290/*
Chris Mason323ac952008-10-01 19:05:46 -04002291 * when truncating bytes in a file, it is possible to avoid reading
2292 * the leaves that contain only checksum items. This can be the
2293 * majority of the IO required to delete a large file, but it must
2294 * be done carefully.
2295 *
2296 * The keys in the level just above the leaves are checked to make sure
2297 * the lowest key in a given leaf is a csum key, and starts at an offset
2298 * after the new size.
2299 *
2300 * Then the key for the next leaf is checked to make sure it also has
2301 * a checksum item for the same file. If it does, we know our target leaf
2302 * contains only checksum items, and it can be safely freed without reading
2303 * it.
2304 *
2305 * This is just an optimization targeted at large files. It may do
2306 * nothing. It will return 0 unless things went badly.
2307 */
2308static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2309 struct btrfs_root *root,
2310 struct btrfs_path *path,
2311 struct inode *inode, u64 new_size)
2312{
2313 struct btrfs_key key;
2314 int ret;
2315 int nritems;
2316 struct btrfs_key found_key;
2317 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002318 struct btrfs_leaf_ref *ref;
2319 u64 leaf_gen;
2320 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002321
2322 path->lowest_level = 1;
2323 key.objectid = inode->i_ino;
2324 key.type = BTRFS_CSUM_ITEM_KEY;
2325 key.offset = new_size;
2326again:
2327 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2328 if (ret < 0)
2329 goto out;
2330
2331 if (path->nodes[1] == NULL) {
2332 ret = 0;
2333 goto out;
2334 }
2335 ret = 0;
2336 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2337 nritems = btrfs_header_nritems(path->nodes[1]);
2338
2339 if (!nritems)
2340 goto out;
2341
2342 if (path->slots[1] >= nritems)
2343 goto next_node;
2344
2345 /* did we find a key greater than anything we want to delete? */
2346 if (found_key.objectid > inode->i_ino ||
2347 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2348 goto out;
2349
2350 /* we check the next key in the node to make sure the leave contains
2351 * only checksum items. This comparison doesn't work if our
2352 * leaf is the last one in the node
2353 */
2354 if (path->slots[1] + 1 >= nritems) {
2355next_node:
2356 /* search forward from the last key in the node, this
2357 * will bring us into the next node in the tree
2358 */
2359 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2360
2361 /* unlikely, but we inc below, so check to be safe */
2362 if (found_key.offset == (u64)-1)
2363 goto out;
2364
2365 /* search_forward needs a path with locks held, do the
2366 * search again for the original key. It is possible
2367 * this will race with a balance and return a path that
2368 * we could modify, but this drop is just an optimization
2369 * and is allowed to miss some leaves.
2370 */
2371 btrfs_release_path(root, path);
2372 found_key.offset++;
2373
2374 /* setup a max key for search_forward */
2375 other_key.offset = (u64)-1;
2376 other_key.type = key.type;
2377 other_key.objectid = key.objectid;
2378
2379 path->keep_locks = 1;
2380 ret = btrfs_search_forward(root, &found_key, &other_key,
2381 path, 0, 0);
2382 path->keep_locks = 0;
2383 if (ret || found_key.objectid != key.objectid ||
2384 found_key.type != key.type) {
2385 ret = 0;
2386 goto out;
2387 }
2388
2389 key.offset = found_key.offset;
2390 btrfs_release_path(root, path);
2391 cond_resched();
2392 goto again;
2393 }
2394
2395 /* we know there's one more slot after us in the tree,
2396 * read that key so we can verify it is also a checksum item
2397 */
2398 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2399
2400 if (found_key.objectid < inode->i_ino)
2401 goto next_key;
2402
2403 if (found_key.type != key.type || found_key.offset < new_size)
2404 goto next_key;
2405
2406 /*
2407 * if the key for the next leaf isn't a csum key from this objectid,
2408 * we can't be sure there aren't good items inside this leaf.
2409 * Bail out
2410 */
2411 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2412 goto out;
2413
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002414 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2415 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002416 /*
2417 * it is safe to delete this leaf, it contains only
2418 * csum items from this inode at an offset >= new_size
2419 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002420 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002421 BUG_ON(ret);
2422
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002423 if (root->ref_cows && leaf_gen < trans->transid) {
2424 ref = btrfs_alloc_leaf_ref(root, 0);
2425 if (ref) {
2426 ref->root_gen = root->root_key.offset;
2427 ref->bytenr = leaf_start;
2428 ref->owner = 0;
2429 ref->generation = leaf_gen;
2430 ref->nritems = 0;
2431
2432 ret = btrfs_add_leaf_ref(root, ref, 0);
2433 WARN_ON(ret);
2434 btrfs_free_leaf_ref(root, ref);
2435 } else {
2436 WARN_ON(1);
2437 }
2438 }
Chris Mason323ac952008-10-01 19:05:46 -04002439next_key:
2440 btrfs_release_path(root, path);
2441
2442 if (other_key.objectid == inode->i_ino &&
2443 other_key.type == key.type && other_key.offset > key.offset) {
2444 key.offset = other_key.offset;
2445 cond_resched();
2446 goto again;
2447 }
2448 ret = 0;
2449out:
2450 /* fixup any changes we've made to the path */
2451 path->lowest_level = 0;
2452 path->keep_locks = 0;
2453 btrfs_release_path(root, path);
2454 return ret;
2455}
2456
Chris Masond20f7042008-12-08 16:58:54 -05002457#endif
2458
Chris Mason323ac952008-10-01 19:05:46 -04002459/*
Chris Mason39279cc2007-06-12 06:35:45 -04002460 * this can truncate away extent items, csum items and directory items.
2461 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002462 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002463 *
2464 * csum items that cross the new i_size are truncated to the new size
2465 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002466 *
2467 * min_type is the minimum key type to truncate down to. If set to 0, this
2468 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002469 */
Chris Masone02119d2008-09-05 16:13:11 -04002470noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2471 struct btrfs_root *root,
2472 struct inode *inode,
2473 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002474{
2475 int ret;
2476 struct btrfs_path *path;
2477 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002478 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002479 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04002480 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002481 struct btrfs_file_extent_item *fi;
2482 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002483 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002484 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05002485 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05002486 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002487 int found_extent;
2488 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002489 int pending_del_nr = 0;
2490 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002491 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002492 int encoding;
Chris Mason3b951512008-04-17 11:29:12 -04002493 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002494
Chris Masone02119d2008-09-05 16:13:11 -04002495 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002496 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002497 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04002498 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04002499 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04002500
Chris Mason39279cc2007-06-12 06:35:45 -04002501 /* FIXME, add redo link to tree so we don't leak on crash */
2502 key.objectid = inode->i_ino;
2503 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002504 key.type = (u8)-1;
2505
Chris Mason85e21ba2008-01-29 15:11:36 -05002506 btrfs_init_path(path);
Chris Mason323ac952008-10-01 19:05:46 -04002507
Chris Mason85e21ba2008-01-29 15:11:36 -05002508search_again:
2509 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2510 if (ret < 0) {
2511 goto error;
2512 }
2513 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002514 /* there are no items in the tree for us to truncate, we're
2515 * done
2516 */
2517 if (path->slots[0] == 0) {
2518 ret = 0;
2519 goto error;
2520 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002521 path->slots[0]--;
2522 }
2523
Chris Mason39279cc2007-06-12 06:35:45 -04002524 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002525 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002526 leaf = path->nodes[0];
2527 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2528 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002529 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002530
Chris Mason5f39d392007-10-15 16:14:19 -04002531 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002532 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002533
Chris Mason85e21ba2008-01-29 15:11:36 -05002534 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002535 break;
2536
Chris Mason5f39d392007-10-15 16:14:19 -04002537 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002538 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002539 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002540 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002541 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002542 encoding = btrfs_file_extent_compression(leaf, fi);
2543 encoding |= btrfs_file_extent_encryption(leaf, fi);
2544 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2545
Chris Mason179e29e2007-11-01 11:28:41 -04002546 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002547 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002548 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002549 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002550 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002551 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002552 }
Yan008630c2007-11-07 13:31:09 -05002553 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002554 }
Chris Masone02119d2008-09-05 16:13:11 -04002555 if (item_end < new_size) {
Chris Masonb888db22007-08-27 16:49:44 -04002556 if (found_type == BTRFS_DIR_ITEM_KEY) {
2557 found_type = BTRFS_INODE_ITEM_KEY;
2558 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
Chris Masond20f7042008-12-08 16:58:54 -05002559 found_type = BTRFS_EXTENT_DATA_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05002560 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
2561 found_type = BTRFS_XATTR_ITEM_KEY;
2562 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
2563 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04002564 } else if (found_type) {
2565 found_type--;
2566 } else {
2567 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002568 }
Yana61721d2007-09-17 11:08:38 -04002569 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05002570 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04002571 }
Chris Masone02119d2008-09-05 16:13:11 -04002572 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04002573 del_item = 1;
2574 else
2575 del_item = 0;
2576 found_extent = 0;
2577
2578 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002579 if (found_type != BTRFS_EXTENT_DATA_KEY)
2580 goto delete;
2581
2582 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002583 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002584 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002585 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002586 u64 orig_num_bytes =
2587 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002588 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002589 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002590 extent_num_bytes = extent_num_bytes &
2591 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002592 btrfs_set_file_extent_num_bytes(leaf, fi,
2593 extent_num_bytes);
2594 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002595 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002596 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002597 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002598 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002599 } else {
Chris Masondb945352007-10-15 16:15:53 -04002600 extent_num_bytes =
2601 btrfs_file_extent_disk_num_bytes(leaf,
2602 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002603 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002604 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002605 if (extent_start != 0) {
2606 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002607 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002608 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002609 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002610 root_gen = btrfs_header_generation(leaf);
Chris Masond8d5f3e2007-12-11 12:42:00 -05002611 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002612 }
Chris Mason90692182008-02-08 13:49:28 -05002613 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002614 /*
2615 * we can't truncate inline items that have had
2616 * special encodings
2617 */
2618 if (!del_item &&
2619 btrfs_file_extent_compression(leaf, fi) == 0 &&
2620 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2621 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002622 u32 size = new_size - found_key.offset;
2623
2624 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002625 inode_sub_bytes(inode, item_end + 1 -
2626 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04002627 }
2628 size =
2629 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05002630 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002631 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05002632 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04002633 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002634 inode_sub_bytes(inode, item_end + 1 -
2635 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05002636 }
Chris Mason39279cc2007-06-12 06:35:45 -04002637 }
Chris Mason179e29e2007-11-01 11:28:41 -04002638delete:
Chris Mason39279cc2007-06-12 06:35:45 -04002639 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05002640 if (!pending_del_nr) {
2641 /* no pending yet, add ourselves */
2642 pending_del_slot = path->slots[0];
2643 pending_del_nr = 1;
2644 } else if (pending_del_nr &&
2645 path->slots[0] + 1 == pending_del_slot) {
2646 /* hop on the pending chunk */
2647 pending_del_nr++;
2648 pending_del_slot = path->slots[0];
2649 } else {
2650 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
2651 }
Chris Mason39279cc2007-06-12 06:35:45 -04002652 } else {
2653 break;
2654 }
Chris Mason39279cc2007-06-12 06:35:45 -04002655 if (found_extent) {
2656 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05002657 extent_num_bytes,
Zheng Yan31840ae2008-09-23 13:14:14 -04002658 leaf->start, root_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04002659 root_gen, inode->i_ino, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002660 BUG_ON(ret);
2661 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002662next:
2663 if (path->slots[0] == 0) {
2664 if (pending_del_nr)
2665 goto del_pending;
2666 btrfs_release_path(root, path);
2667 goto search_again;
2668 }
2669
2670 path->slots[0]--;
2671 if (pending_del_nr &&
2672 path->slots[0] + 1 != pending_del_slot) {
2673 struct btrfs_key debug;
2674del_pending:
2675 btrfs_item_key_to_cpu(path->nodes[0], &debug,
2676 pending_del_slot);
2677 ret = btrfs_del_items(trans, root, path,
2678 pending_del_slot,
2679 pending_del_nr);
2680 BUG_ON(ret);
2681 pending_del_nr = 0;
2682 btrfs_release_path(root, path);
2683 goto search_again;
2684 }
Chris Mason39279cc2007-06-12 06:35:45 -04002685 }
2686 ret = 0;
2687error:
Chris Mason85e21ba2008-01-29 15:11:36 -05002688 if (pending_del_nr) {
2689 ret = btrfs_del_items(trans, root, path, pending_del_slot,
2690 pending_del_nr);
2691 }
Chris Mason39279cc2007-06-12 06:35:45 -04002692 btrfs_free_path(path);
2693 inode->i_sb->s_dirt = 1;
2694 return ret;
2695}
2696
Chris Masona52d9a82007-08-27 16:49:44 -04002697/*
2698 * taken from block_truncate_page, but does cow as it zeros out
2699 * any bytes left in the last page in the file.
2700 */
2701static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
2702{
2703 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04002704 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002705 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2706 struct btrfs_ordered_extent *ordered;
2707 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04002708 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04002709 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2710 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2711 struct page *page;
2712 int ret = 0;
2713 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002714 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04002715
2716 if ((offset & (blocksize - 1)) == 0)
2717 goto out;
2718
2719 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04002720again:
Chris Masona52d9a82007-08-27 16:49:44 -04002721 page = grab_cache_page(mapping, index);
2722 if (!page)
2723 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002724
2725 page_start = page_offset(page);
2726 page_end = page_start + PAGE_CACHE_SIZE - 1;
2727
Chris Masona52d9a82007-08-27 16:49:44 -04002728 if (!PageUptodate(page)) {
2729 ret = btrfs_readpage(NULL, page);
2730 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04002731 if (page->mapping != mapping) {
2732 unlock_page(page);
2733 page_cache_release(page);
2734 goto again;
2735 }
Chris Masona52d9a82007-08-27 16:49:44 -04002736 if (!PageUptodate(page)) {
2737 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04002738 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04002739 }
2740 }
Chris Mason211c17f2008-05-15 09:13:45 -04002741 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002742
2743 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2744 set_page_extent_mapped(page);
2745
2746 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2747 if (ordered) {
2748 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2749 unlock_page(page);
2750 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002751 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002752 btrfs_put_ordered_extent(ordered);
2753 goto again;
2754 }
2755
Chris Masonea8c2812008-08-04 23:17:27 -04002756 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002757 ret = 0;
2758 if (offset != PAGE_CACHE_SIZE) {
2759 kaddr = kmap(page);
2760 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2761 flush_dcache_page(page);
2762 kunmap(page);
2763 }
Chris Mason247e7432008-07-17 12:53:51 -04002764 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002765 set_page_dirty(page);
2766 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002767
Chris Mason89642222008-07-24 09:41:53 -04002768out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002769 unlock_page(page);
2770 page_cache_release(page);
2771out:
2772 return ret;
2773}
2774
Yan Zheng9036c102008-10-30 14:19:41 -04002775int btrfs_cont_expand(struct inode *inode, loff_t size)
2776{
2777 struct btrfs_trans_handle *trans;
2778 struct btrfs_root *root = BTRFS_I(inode)->root;
2779 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2780 struct extent_map *em;
2781 u64 mask = root->sectorsize - 1;
2782 u64 hole_start = (inode->i_size + mask) & ~mask;
2783 u64 block_end = (size + mask) & ~mask;
2784 u64 last_byte;
2785 u64 cur_offset;
2786 u64 hole_size;
2787 int err;
2788
2789 if (size <= hole_start)
2790 return 0;
2791
2792 err = btrfs_check_free_space(root, 1, 0);
2793 if (err)
2794 return err;
2795
2796 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2797
2798 while (1) {
2799 struct btrfs_ordered_extent *ordered;
2800 btrfs_wait_ordered_range(inode, hole_start,
2801 block_end - hole_start);
2802 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2803 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
2804 if (!ordered)
2805 break;
2806 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2807 btrfs_put_ordered_extent(ordered);
2808 }
2809
2810 trans = btrfs_start_transaction(root, 1);
2811 btrfs_set_trans_block_group(trans, inode);
2812
2813 cur_offset = hole_start;
2814 while (1) {
2815 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2816 block_end - cur_offset, 0);
2817 BUG_ON(IS_ERR(em) || !em);
2818 last_byte = min(extent_map_end(em), block_end);
2819 last_byte = (last_byte + mask) & ~mask;
2820 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05002821 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04002822 hole_size = last_byte - cur_offset;
Chris Mason771ed682008-11-06 22:02:51 -05002823 err = btrfs_drop_extents(trans, root, inode,
2824 cur_offset,
2825 cur_offset + hole_size,
2826 cur_offset, &hint_byte);
2827 if (err)
2828 break;
Yan Zheng9036c102008-10-30 14:19:41 -04002829 err = btrfs_insert_file_extent(trans, root,
2830 inode->i_ino, cur_offset, 0,
2831 0, hole_size, 0, hole_size,
2832 0, 0, 0);
2833 btrfs_drop_extent_cache(inode, hole_start,
2834 last_byte - 1, 0);
2835 }
2836 free_extent_map(em);
2837 cur_offset = last_byte;
2838 if (err || cur_offset >= block_end)
2839 break;
2840 }
2841
2842 btrfs_end_transaction(trans, root);
2843 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2844 return err;
2845}
2846
Chris Mason39279cc2007-06-12 06:35:45 -04002847static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
2848{
2849 struct inode *inode = dentry->d_inode;
2850 int err;
2851
2852 err = inode_change_ok(inode, attr);
2853 if (err)
2854 return err;
2855
2856 if (S_ISREG(inode->i_mode) &&
2857 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
Yan Zheng9036c102008-10-30 14:19:41 -04002858 err = btrfs_cont_expand(inode, attr->ia_size);
Chris Mason54aa1f42007-06-22 14:16:25 -04002859 if (err)
2860 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04002861 }
Yan Zheng9036c102008-10-30 14:19:41 -04002862
Chris Mason39279cc2007-06-12 06:35:45 -04002863 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04002864
2865 if (!err && ((attr->ia_valid & ATTR_MODE)))
2866 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002867 return err;
2868}
Chris Mason61295eb2008-01-14 16:24:38 -05002869
Chris Mason39279cc2007-06-12 06:35:45 -04002870void btrfs_delete_inode(struct inode *inode)
2871{
2872 struct btrfs_trans_handle *trans;
2873 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002874 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002875 int ret;
2876
2877 truncate_inode_pages(&inode->i_data, 0);
2878 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04002879 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002880 goto no_delete;
2881 }
Chris Mason4a096752008-07-21 10:29:44 -04002882 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04002883
Chris Masondbe674a2008-07-17 12:54:05 -04002884 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002885 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002886
Chris Mason39279cc2007-06-12 06:35:45 -04002887 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002888 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04002889 if (ret) {
2890 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002891 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04002892 }
2893
2894 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05002895
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002896 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05002897 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002898
Chris Mason39279cc2007-06-12 06:35:45 -04002899 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002900 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002901 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04002902
2903no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002904 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04002905 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002906 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002907no_delete:
2908 clear_inode(inode);
2909}
2910
2911/*
2912 * this returns the key found in the dir entry in the location pointer.
2913 * If no dir entries were found, location->objectid is 0.
2914 */
2915static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
2916 struct btrfs_key *location)
2917{
2918 const char *name = dentry->d_name.name;
2919 int namelen = dentry->d_name.len;
2920 struct btrfs_dir_item *di;
2921 struct btrfs_path *path;
2922 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04002923 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002924
2925 path = btrfs_alloc_path();
2926 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05002927
Chris Mason39279cc2007-06-12 06:35:45 -04002928 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
2929 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04002930 if (IS_ERR(di))
2931 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04002932 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05002933 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04002934 }
Chris Mason5f39d392007-10-15 16:14:19 -04002935 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04002936out:
Chris Mason39279cc2007-06-12 06:35:45 -04002937 btrfs_free_path(path);
2938 return ret;
Chris Mason39544012007-12-12 14:38:19 -05002939out_err:
2940 location->objectid = 0;
2941 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04002942}
2943
2944/*
2945 * when we hit a tree root in a directory, the btrfs part of the inode
2946 * needs to be changed to reflect the root directory of the tree root. This
2947 * is kind of like crossing a mount point.
2948 */
2949static int fixup_tree_root_location(struct btrfs_root *root,
2950 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04002951 struct btrfs_root **sub_root,
2952 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04002953{
Chris Mason39279cc2007-06-12 06:35:45 -04002954 struct btrfs_root_item *ri;
2955
2956 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
2957 return 0;
2958 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
2959 return 0;
2960
Josef Bacik58176a92007-08-29 15:47:34 -04002961 *sub_root = btrfs_read_fs_root(root->fs_info, location,
2962 dentry->d_name.name,
2963 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04002964 if (IS_ERR(*sub_root))
2965 return PTR_ERR(*sub_root);
2966
2967 ri = &(*sub_root)->root_item;
2968 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04002969 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2970 location->offset = 0;
2971
Chris Mason39279cc2007-06-12 06:35:45 -04002972 return 0;
2973}
2974
Chris Masone02119d2008-09-05 16:13:11 -04002975static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002976{
Chris Masone02119d2008-09-05 16:13:11 -04002977 struct btrfs_inode *bi = BTRFS_I(inode);
2978
2979 bi->i_acl = NULL;
2980 bi->i_default_acl = NULL;
2981
2982 bi->generation = 0;
Chris Masonc3027eb2008-12-08 16:40:21 -05002983 bi->sequence = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002984 bi->last_trans = 0;
2985 bi->logged_trans = 0;
2986 bi->delalloc_bytes = 0;
2987 bi->disk_i_size = 0;
2988 bi->flags = 0;
2989 bi->index_cnt = (u64)-1;
Chris Mason49eb7e42008-09-11 15:53:12 -04002990 bi->log_dirty_trans = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002991 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2992 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04002993 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002994 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2995 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04002996 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Masonba1da2f2008-07-17 12:54:15 -04002997 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masonee6e6502008-07-17 12:54:40 -04002998 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04002999 mutex_init(&BTRFS_I(inode)->log_mutex);
3000}
3001
3002static int btrfs_init_locked_inode(struct inode *inode, void *p)
3003{
3004 struct btrfs_iget_args *args = p;
3005 inode->i_ino = args->ino;
3006 init_btrfs_i(inode);
3007 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003008 return 0;
3009}
3010
3011static int btrfs_find_actor(struct inode *inode, void *opaque)
3012{
3013 struct btrfs_iget_args *args = opaque;
3014 return (args->ino == inode->i_ino &&
3015 args->root == BTRFS_I(inode)->root);
3016}
3017
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003018struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
3019 struct btrfs_root *root, int wait)
3020{
3021 struct inode *inode;
3022 struct btrfs_iget_args args;
3023 args.ino = objectid;
3024 args.root = root;
3025
3026 if (wait) {
3027 inode = ilookup5(s, objectid, btrfs_find_actor,
3028 (void *)&args);
3029 } else {
3030 inode = ilookup5_nowait(s, objectid, btrfs_find_actor,
3031 (void *)&args);
3032 }
3033 return inode;
3034}
3035
Chris Mason39279cc2007-06-12 06:35:45 -04003036struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
3037 struct btrfs_root *root)
3038{
3039 struct inode *inode;
3040 struct btrfs_iget_args args;
3041 args.ino = objectid;
3042 args.root = root;
3043
3044 inode = iget5_locked(s, objectid, btrfs_find_actor,
3045 btrfs_init_locked_inode,
3046 (void *)&args);
3047 return inode;
3048}
3049
Balaji Rao1a54ef82008-07-21 02:01:04 +05303050/* Get an inode object given its location and corresponding root.
3051 * Returns in *is_new if the inode was read from disk
3052 */
3053struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
3054 struct btrfs_root *root, int *is_new)
3055{
3056 struct inode *inode;
3057
3058 inode = btrfs_iget_locked(s, location->objectid, root);
3059 if (!inode)
3060 return ERR_PTR(-EACCES);
3061
3062 if (inode->i_state & I_NEW) {
3063 BTRFS_I(inode)->root = root;
3064 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3065 btrfs_read_locked_inode(inode);
3066 unlock_new_inode(inode);
3067 if (is_new)
3068 *is_new = 1;
3069 } else {
3070 if (is_new)
3071 *is_new = 0;
3072 }
3073
3074 return inode;
3075}
3076
Chris Mason3de45862008-11-17 21:02:50 -05003077struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003078{
3079 struct inode * inode;
3080 struct btrfs_inode *bi = BTRFS_I(dir);
3081 struct btrfs_root *root = bi->root;
3082 struct btrfs_root *sub_root = root;
3083 struct btrfs_key location;
Yan Zhengc146afa2008-11-12 14:34:12 -05003084 int ret, new;
Chris Mason39279cc2007-06-12 06:35:45 -04003085
3086 if (dentry->d_name.len > BTRFS_NAME_LEN)
3087 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003088
Chris Mason39279cc2007-06-12 06:35:45 -04003089 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003090
Chris Mason39279cc2007-06-12 06:35:45 -04003091 if (ret < 0)
3092 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003093
Chris Mason39279cc2007-06-12 06:35:45 -04003094 inode = NULL;
3095 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04003096 ret = fixup_tree_root_location(root, &location, &sub_root,
3097 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04003098 if (ret < 0)
3099 return ERR_PTR(ret);
3100 if (ret > 0)
3101 return ERR_PTR(-ENOENT);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303102 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
3103 if (IS_ERR(inode))
3104 return ERR_CAST(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003105 }
Chris Mason3de45862008-11-17 21:02:50 -05003106 return inode;
3107}
3108
3109static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3110 struct nameidata *nd)
3111{
3112 struct inode *inode;
3113
3114 if (dentry->d_name.len > BTRFS_NAME_LEN)
3115 return ERR_PTR(-ENAMETOOLONG);
3116
3117 inode = btrfs_lookup_dentry(dir, dentry);
3118 if (IS_ERR(inode))
3119 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003120
Chris Mason39279cc2007-06-12 06:35:45 -04003121 return d_splice_alias(inode, dentry);
3122}
3123
Chris Mason39279cc2007-06-12 06:35:45 -04003124static unsigned char btrfs_filetype_table[] = {
3125 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3126};
3127
David Woodhousecbdf5a22008-08-06 19:42:33 +01003128static int btrfs_real_readdir(struct file *filp, void *dirent,
3129 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003130{
Chris Mason6da6aba2007-12-18 16:15:09 -05003131 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003132 struct btrfs_root *root = BTRFS_I(inode)->root;
3133 struct btrfs_item *item;
3134 struct btrfs_dir_item *di;
3135 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003136 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003137 struct btrfs_path *path;
3138 int ret;
3139 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003140 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003141 int slot;
3142 int advance;
3143 unsigned char d_type;
3144 int over = 0;
3145 u32 di_cur;
3146 u32 di_total;
3147 u32 di_len;
3148 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003149 char tmp_name[32];
3150 char *name_ptr;
3151 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003152
3153 /* FIXME, use a real flag for deciding about the key type */
3154 if (root->fs_info->tree_root == root)
3155 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003156
Chris Mason39544012007-12-12 14:38:19 -05003157 /* special case for "." */
3158 if (filp->f_pos == 0) {
3159 over = filldir(dirent, ".", 1,
3160 1, inode->i_ino,
3161 DT_DIR);
3162 if (over)
3163 return 0;
3164 filp->f_pos = 1;
3165 }
Chris Mason39544012007-12-12 14:38:19 -05003166 /* special case for .., just use the back ref */
3167 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003168 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003169 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003170 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003171 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003172 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003173 filp->f_pos = 2;
3174 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003175 path = btrfs_alloc_path();
3176 path->reada = 2;
3177
Chris Mason39279cc2007-06-12 06:35:45 -04003178 btrfs_set_key_type(&key, key_type);
3179 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003180 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003181
Chris Mason39279cc2007-06-12 06:35:45 -04003182 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3183 if (ret < 0)
3184 goto err;
3185 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003186
3187 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003188 leaf = path->nodes[0];
3189 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003190 slot = path->slots[0];
3191 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003192 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003193 ret = btrfs_next_leaf(root, path);
3194 if (ret)
3195 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003196 leaf = path->nodes[0];
3197 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003198 slot = path->slots[0];
3199 } else {
3200 slot++;
3201 path->slots[0]++;
3202 }
3203 }
Chris Mason3de45862008-11-17 21:02:50 -05003204
Chris Mason39279cc2007-06-12 06:35:45 -04003205 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003206 item = btrfs_item_nr(leaf, slot);
3207 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3208
3209 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003210 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003211 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003212 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003213 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003214 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003215
3216 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003217
Chris Mason39279cc2007-06-12 06:35:45 -04003218 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3219 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003220 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003221
3222 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003223 struct btrfs_key location;
3224
3225 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003226 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003227 name_ptr = tmp_name;
3228 } else {
3229 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003230 if (!name_ptr) {
3231 ret = -ENOMEM;
3232 goto err;
3233 }
Chris Mason5f39d392007-10-15 16:14:19 -04003234 }
3235 read_extent_buffer(leaf, name_ptr,
3236 (unsigned long)(di + 1), name_len);
3237
3238 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3239 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05003240
3241 /* is this a reference to our own snapshot? If so
3242 * skip it
3243 */
3244 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3245 location.objectid == root->root_key.objectid) {
3246 over = 0;
3247 goto skip;
3248 }
Chris Mason5f39d392007-10-15 16:14:19 -04003249 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003250 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003251 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003252
Chris Mason3de45862008-11-17 21:02:50 -05003253skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003254 if (name_ptr != tmp_name)
3255 kfree(name_ptr);
3256
Chris Mason39279cc2007-06-12 06:35:45 -04003257 if (over)
3258 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003259 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003260 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003261 di_cur += di_len;
3262 di = (struct btrfs_dir_item *)((char *)di + di_len);
3263 }
3264 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003265
3266 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003267 if (key_type == BTRFS_DIR_INDEX_KEY)
3268 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
3269 else
3270 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003271nopos:
3272 ret = 0;
3273err:
Chris Mason39279cc2007-06-12 06:35:45 -04003274 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003275 return ret;
3276}
3277
3278int btrfs_write_inode(struct inode *inode, int wait)
3279{
3280 struct btrfs_root *root = BTRFS_I(inode)->root;
3281 struct btrfs_trans_handle *trans;
3282 int ret = 0;
3283
Yan Zhengc146afa2008-11-12 14:34:12 -05003284 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04003285 return 0;
3286
Chris Mason39279cc2007-06-12 06:35:45 -04003287 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003288 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003289 btrfs_set_trans_block_group(trans, inode);
3290 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003291 }
3292 return ret;
3293}
3294
3295/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003296 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003297 * inode changes. But, it is most likely to find the inode in cache.
3298 * FIXME, needs more benchmarking...there are no reasons other than performance
3299 * to keep or drop this code.
3300 */
3301void btrfs_dirty_inode(struct inode *inode)
3302{
3303 struct btrfs_root *root = BTRFS_I(inode)->root;
3304 struct btrfs_trans_handle *trans;
3305
Chris Masonf9295742008-07-17 12:54:14 -04003306 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003307 btrfs_set_trans_block_group(trans, inode);
3308 btrfs_update_inode(trans, root, inode);
3309 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003310}
3311
Chris Masond352ac62008-09-29 15:18:18 -04003312/*
3313 * find the highest existing sequence number in a directory
3314 * and then set the in-memory index_cnt variable to reflect
3315 * free sequence numbers
3316 */
Josef Bacikaec74772008-07-24 12:12:38 -04003317static int btrfs_set_inode_index_count(struct inode *inode)
3318{
3319 struct btrfs_root *root = BTRFS_I(inode)->root;
3320 struct btrfs_key key, found_key;
3321 struct btrfs_path *path;
3322 struct extent_buffer *leaf;
3323 int ret;
3324
3325 key.objectid = inode->i_ino;
3326 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
3327 key.offset = (u64)-1;
3328
3329 path = btrfs_alloc_path();
3330 if (!path)
3331 return -ENOMEM;
3332
3333 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3334 if (ret < 0)
3335 goto out;
3336 /* FIXME: we should be able to handle this */
3337 if (ret == 0)
3338 goto out;
3339 ret = 0;
3340
3341 /*
3342 * MAGIC NUMBER EXPLANATION:
3343 * since we search a directory based on f_pos we have to start at 2
3344 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
3345 * else has to start at 2
3346 */
3347 if (path->slots[0] == 0) {
3348 BTRFS_I(inode)->index_cnt = 2;
3349 goto out;
3350 }
3351
3352 path->slots[0]--;
3353
3354 leaf = path->nodes[0];
3355 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3356
3357 if (found_key.objectid != inode->i_ino ||
3358 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
3359 BTRFS_I(inode)->index_cnt = 2;
3360 goto out;
3361 }
3362
3363 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
3364out:
3365 btrfs_free_path(path);
3366 return ret;
3367}
3368
Chris Masond352ac62008-09-29 15:18:18 -04003369/*
3370 * helper to find a free sequence number in a given directory. This current
3371 * code is very simple, later versions will do smarter things in the btree
3372 */
Chris Mason3de45862008-11-17 21:02:50 -05003373int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04003374{
3375 int ret = 0;
3376
3377 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
3378 ret = btrfs_set_inode_index_count(dir);
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003379 if (ret) {
Josef Bacikaec74772008-07-24 12:12:38 -04003380 return ret;
Chris Mason8d5bf1c2008-09-11 15:51:21 -04003381 }
Josef Bacikaec74772008-07-24 12:12:38 -04003382 }
3383
Chris Mason00e4e6b2008-08-05 11:18:09 -04003384 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04003385 BTRFS_I(dir)->index_cnt++;
3386
3387 return ret;
3388}
3389
Chris Mason39279cc2007-06-12 06:35:45 -04003390static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
3391 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04003392 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05003393 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05003394 u64 ref_objectid, u64 objectid,
3395 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04003396{
3397 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003398 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04003399 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04003400 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05003401 struct btrfs_inode_ref *ref;
3402 struct btrfs_key key[2];
3403 u32 sizes[2];
3404 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003405 int ret;
3406 int owner;
3407
Chris Mason5f39d392007-10-15 16:14:19 -04003408 path = btrfs_alloc_path();
3409 BUG_ON(!path);
3410
Chris Mason39279cc2007-06-12 06:35:45 -04003411 inode = new_inode(root->fs_info->sb);
3412 if (!inode)
3413 return ERR_PTR(-ENOMEM);
3414
Josef Bacikaec74772008-07-24 12:12:38 -04003415 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05003416 ret = btrfs_set_inode_index(dir, index);
Josef Bacikaec74772008-07-24 12:12:38 -04003417 if (ret)
3418 return ERR_PTR(ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003419 }
3420 /*
3421 * index_cnt is ignored for everything but a dir,
3422 * btrfs_get_inode_index_count has an explanation for the magic
3423 * number
3424 */
Chris Masone02119d2008-09-05 16:13:11 -04003425 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003426 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04003427 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04003428 BTRFS_I(inode)->generation = trans->transid;
Chris Masonb888db22007-08-27 16:49:44 -04003429
Chris Mason39279cc2007-06-12 06:35:45 -04003430 if (mode & S_IFDIR)
3431 owner = 0;
3432 else
3433 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003434 BTRFS_I(inode)->block_group =
3435 btrfs_find_block_group(root, 0, alloc_hint, owner);
Yan Zheng17d217f2008-12-12 10:03:38 -05003436 if ((mode & S_IFREG)) {
3437 if (btrfs_test_opt(root, NODATASUM))
3438 btrfs_set_flag(inode, NODATASUM);
3439 if (btrfs_test_opt(root, NODATACOW))
3440 btrfs_set_flag(inode, NODATACOW);
3441 }
Chris Mason9c583092008-01-29 15:15:18 -05003442
3443 key[0].objectid = objectid;
3444 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
3445 key[0].offset = 0;
3446
3447 key[1].objectid = objectid;
3448 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
3449 key[1].offset = ref_objectid;
3450
3451 sizes[0] = sizeof(struct btrfs_inode_item);
3452 sizes[1] = name_len + sizeof(*ref);
3453
3454 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
3455 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04003456 goto fail;
3457
Chris Mason9c583092008-01-29 15:15:18 -05003458 if (objectid > root->highest_inode)
3459 root->highest_inode = objectid;
3460
Chris Mason79683f22008-11-19 22:00:53 -05003461 inode->i_uid = current_fsuid();
3462 inode->i_gid = current_fsgid();
Chris Mason39279cc2007-06-12 06:35:45 -04003463 inode->i_mode = mode;
3464 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003465 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003466 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04003467 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3468 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003469 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003470
3471 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3472 struct btrfs_inode_ref);
3473 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003474 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05003475 ptr = (unsigned long)(ref + 1);
3476 write_extent_buffer(path->nodes[0], name, ptr, name_len);
3477
Chris Mason5f39d392007-10-15 16:14:19 -04003478 btrfs_mark_buffer_dirty(path->nodes[0]);
3479 btrfs_free_path(path);
3480
Chris Mason39279cc2007-06-12 06:35:45 -04003481 location = &BTRFS_I(inode)->location;
3482 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04003483 location->offset = 0;
3484 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
3485
Chris Mason39279cc2007-06-12 06:35:45 -04003486 insert_inode_hash(inode);
3487 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003488fail:
Josef Bacikaec74772008-07-24 12:12:38 -04003489 if (dir)
3490 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04003491 btrfs_free_path(path);
3492 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003493}
3494
3495static inline u8 btrfs_inode_type(struct inode *inode)
3496{
3497 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
3498}
3499
Chris Masond352ac62008-09-29 15:18:18 -04003500/*
3501 * utility function to add 'inode' into 'parent_inode' with
3502 * a give name and a given sequence number.
3503 * if 'add_backref' is true, also insert a backref from the
3504 * inode to the parent directory.
3505 */
Chris Masone02119d2008-09-05 16:13:11 -04003506int btrfs_add_link(struct btrfs_trans_handle *trans,
3507 struct inode *parent_inode, struct inode *inode,
3508 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003509{
3510 int ret;
3511 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04003512 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04003513
Chris Mason39279cc2007-06-12 06:35:45 -04003514 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003515 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
3516 key.offset = 0;
3517
Chris Masone02119d2008-09-05 16:13:11 -04003518 ret = btrfs_insert_dir_item(trans, root, name, name_len,
3519 parent_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04003520 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04003521 index);
Chris Mason39279cc2007-06-12 06:35:45 -04003522 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05003523 if (add_backref) {
3524 ret = btrfs_insert_inode_ref(trans, root,
Chris Masone02119d2008-09-05 16:13:11 -04003525 name, name_len,
3526 inode->i_ino,
3527 parent_inode->i_ino,
3528 index);
Chris Mason9c583092008-01-29 15:15:18 -05003529 }
Chris Masondbe674a2008-07-17 12:54:05 -04003530 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04003531 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04003532 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04003533 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003534 }
3535 return ret;
3536}
3537
3538static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05003539 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003540 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003541{
Chris Masone02119d2008-09-05 16:13:11 -04003542 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3543 inode, dentry->d_name.name,
3544 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003545 if (!err) {
3546 d_instantiate(dentry, inode);
3547 return 0;
3548 }
3549 if (err > 0)
3550 err = -EEXIST;
3551 return err;
3552}
3553
Josef Bacik618e21d2007-07-11 10:18:17 -04003554static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
3555 int mode, dev_t rdev)
3556{
3557 struct btrfs_trans_handle *trans;
3558 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003559 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04003560 int err;
3561 int drop_inode = 0;
3562 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05003563 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003564 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04003565
3566 if (!new_valid_dev(rdev))
3567 return -EINVAL;
3568
Chris Mason1832a6d2007-12-21 16:27:21 -05003569 err = btrfs_check_free_space(root, 1, 0);
3570 if (err)
3571 goto fail;
3572
Josef Bacik618e21d2007-07-11 10:18:17 -04003573 trans = btrfs_start_transaction(root, 1);
3574 btrfs_set_trans_block_group(trans, dir);
3575
3576 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3577 if (err) {
3578 err = -ENOSPC;
3579 goto out_unlock;
3580 }
3581
Josef Bacikaec74772008-07-24 12:12:38 -04003582 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003583 dentry->d_name.len,
3584 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003585 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003586 err = PTR_ERR(inode);
3587 if (IS_ERR(inode))
3588 goto out_unlock;
3589
Josef Bacik33268ea2008-07-24 12:16:36 -04003590 err = btrfs_init_acl(inode, dir);
3591 if (err) {
3592 drop_inode = 1;
3593 goto out_unlock;
3594 }
3595
Josef Bacik618e21d2007-07-11 10:18:17 -04003596 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003597 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003598 if (err)
3599 drop_inode = 1;
3600 else {
3601 inode->i_op = &btrfs_special_inode_operations;
3602 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04003603 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04003604 }
3605 dir->i_sb->s_dirt = 1;
3606 btrfs_update_inode_block_group(trans, inode);
3607 btrfs_update_inode_block_group(trans, dir);
3608out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003609 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003610 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003611fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04003612 if (drop_inode) {
3613 inode_dec_link_count(inode);
3614 iput(inode);
3615 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003616 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04003617 return err;
3618}
3619
Chris Mason39279cc2007-06-12 06:35:45 -04003620static int btrfs_create(struct inode *dir, struct dentry *dentry,
3621 int mode, struct nameidata *nd)
3622{
3623 struct btrfs_trans_handle *trans;
3624 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003625 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003626 int err;
3627 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05003628 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003629 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003630 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003631
Chris Mason1832a6d2007-12-21 16:27:21 -05003632 err = btrfs_check_free_space(root, 1, 0);
3633 if (err)
3634 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003635 trans = btrfs_start_transaction(root, 1);
3636 btrfs_set_trans_block_group(trans, dir);
3637
3638 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3639 if (err) {
3640 err = -ENOSPC;
3641 goto out_unlock;
3642 }
3643
Josef Bacikaec74772008-07-24 12:12:38 -04003644 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003645 dentry->d_name.len,
3646 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003647 objectid, BTRFS_I(dir)->block_group, mode,
3648 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003649 err = PTR_ERR(inode);
3650 if (IS_ERR(inode))
3651 goto out_unlock;
3652
Josef Bacik33268ea2008-07-24 12:16:36 -04003653 err = btrfs_init_acl(inode, dir);
3654 if (err) {
3655 drop_inode = 1;
3656 goto out_unlock;
3657 }
3658
Chris Mason39279cc2007-06-12 06:35:45 -04003659 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003660 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003661 if (err)
3662 drop_inode = 1;
3663 else {
3664 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003665 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003666 inode->i_fop = &btrfs_file_operations;
3667 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003668 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003669 }
3670 dir->i_sb->s_dirt = 1;
3671 btrfs_update_inode_block_group(trans, inode);
3672 btrfs_update_inode_block_group(trans, dir);
3673out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003674 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003675 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003676fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003677 if (drop_inode) {
3678 inode_dec_link_count(inode);
3679 iput(inode);
3680 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003681 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003682 return err;
3683}
3684
3685static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
3686 struct dentry *dentry)
3687{
3688 struct btrfs_trans_handle *trans;
3689 struct btrfs_root *root = BTRFS_I(dir)->root;
3690 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003691 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05003692 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003693 int err;
3694 int drop_inode = 0;
3695
3696 if (inode->i_nlink == 0)
3697 return -ENOENT;
3698
Chris Masone02119d2008-09-05 16:13:11 -04003699 btrfs_inc_nlink(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05003700 err = btrfs_check_free_space(root, 1, 0);
3701 if (err)
3702 goto fail;
Chris Mason3de45862008-11-17 21:02:50 -05003703 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003704 if (err)
3705 goto fail;
3706
Chris Mason39279cc2007-06-12 06:35:45 -04003707 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003708
Chris Mason39279cc2007-06-12 06:35:45 -04003709 btrfs_set_trans_block_group(trans, dir);
3710 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04003711
Chris Mason00e4e6b2008-08-05 11:18:09 -04003712 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04003713
Chris Mason39279cc2007-06-12 06:35:45 -04003714 if (err)
3715 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003716
Chris Mason39279cc2007-06-12 06:35:45 -04003717 dir->i_sb->s_dirt = 1;
3718 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04003719 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003720
Chris Mason54aa1f42007-06-22 14:16:25 -04003721 if (err)
3722 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003723
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003724 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003725 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003726fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003727 if (drop_inode) {
3728 inode_dec_link_count(inode);
3729 iput(inode);
3730 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003731 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003732 return err;
3733}
3734
Chris Mason39279cc2007-06-12 06:35:45 -04003735static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3736{
Chris Masonb9d86662008-05-02 16:13:49 -04003737 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003738 struct btrfs_trans_handle *trans;
3739 struct btrfs_root *root = BTRFS_I(dir)->root;
3740 int err = 0;
3741 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04003742 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003743 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003744 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003745
Chris Mason1832a6d2007-12-21 16:27:21 -05003746 err = btrfs_check_free_space(root, 1, 0);
3747 if (err)
3748 goto out_unlock;
3749
Chris Mason39279cc2007-06-12 06:35:45 -04003750 trans = btrfs_start_transaction(root, 1);
3751 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04003752
Chris Mason39279cc2007-06-12 06:35:45 -04003753 if (IS_ERR(trans)) {
3754 err = PTR_ERR(trans);
3755 goto out_unlock;
3756 }
3757
3758 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3759 if (err) {
3760 err = -ENOSPC;
3761 goto out_unlock;
3762 }
3763
Josef Bacikaec74772008-07-24 12:12:38 -04003764 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003765 dentry->d_name.len,
3766 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003767 BTRFS_I(dir)->block_group, S_IFDIR | mode,
3768 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003769 if (IS_ERR(inode)) {
3770 err = PTR_ERR(inode);
3771 goto out_fail;
3772 }
Chris Mason5f39d392007-10-15 16:14:19 -04003773
Chris Mason39279cc2007-06-12 06:35:45 -04003774 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04003775
3776 err = btrfs_init_acl(inode, dir);
3777 if (err)
3778 goto out_fail;
3779
Chris Mason39279cc2007-06-12 06:35:45 -04003780 inode->i_op = &btrfs_dir_inode_operations;
3781 inode->i_fop = &btrfs_dir_file_operations;
3782 btrfs_set_trans_block_group(trans, inode);
3783
Chris Masondbe674a2008-07-17 12:54:05 -04003784 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003785 err = btrfs_update_inode(trans, root, inode);
3786 if (err)
3787 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003788
Chris Masone02119d2008-09-05 16:13:11 -04003789 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3790 inode, dentry->d_name.name,
3791 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003792 if (err)
3793 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003794
Chris Mason39279cc2007-06-12 06:35:45 -04003795 d_instantiate(dentry, inode);
3796 drop_on_err = 0;
3797 dir->i_sb->s_dirt = 1;
3798 btrfs_update_inode_block_group(trans, inode);
3799 btrfs_update_inode_block_group(trans, dir);
3800
3801out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003802 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003803 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04003804
Chris Mason39279cc2007-06-12 06:35:45 -04003805out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003806 if (drop_on_err)
3807 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003808 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003809 return err;
3810}
3811
Chris Masond352ac62008-09-29 15:18:18 -04003812/* helper for btfs_get_extent. Given an existing extent in the tree,
3813 * and an extent that you want to insert, deal with overlap and insert
3814 * the new extent into the tree.
3815 */
Chris Mason3b951512008-04-17 11:29:12 -04003816static int merge_extent_mapping(struct extent_map_tree *em_tree,
3817 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003818 struct extent_map *em,
3819 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04003820{
3821 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04003822
Chris Masone6dcd2d2008-07-17 12:53:50 -04003823 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
3824 start_diff = map_start - em->start;
3825 em->start = map_start;
3826 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04003827 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
3828 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003829 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04003830 em->block_len -= start_diff;
3831 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003832 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04003833}
3834
Chris Masonc8b97812008-10-29 14:49:59 -04003835static noinline int uncompress_inline(struct btrfs_path *path,
3836 struct inode *inode, struct page *page,
3837 size_t pg_offset, u64 extent_offset,
3838 struct btrfs_file_extent_item *item)
3839{
3840 int ret;
3841 struct extent_buffer *leaf = path->nodes[0];
3842 char *tmp;
3843 size_t max_size;
3844 unsigned long inline_size;
3845 unsigned long ptr;
3846
3847 WARN_ON(pg_offset != 0);
3848 max_size = btrfs_file_extent_ram_bytes(leaf, item);
3849 inline_size = btrfs_file_extent_inline_item_len(leaf,
3850 btrfs_item_nr(leaf, path->slots[0]));
3851 tmp = kmalloc(inline_size, GFP_NOFS);
3852 ptr = btrfs_file_extent_inline_start(item);
3853
3854 read_extent_buffer(leaf, tmp, ptr, inline_size);
3855
Chris Mason5b050f02008-11-11 09:34:41 -05003856 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04003857 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
3858 inline_size, max_size);
3859 if (ret) {
3860 char *kaddr = kmap_atomic(page, KM_USER0);
3861 unsigned long copy_size = min_t(u64,
3862 PAGE_CACHE_SIZE - pg_offset,
3863 max_size - extent_offset);
3864 memset(kaddr + pg_offset, 0, copy_size);
3865 kunmap_atomic(kaddr, KM_USER0);
3866 }
3867 kfree(tmp);
3868 return 0;
3869}
3870
Chris Masond352ac62008-09-29 15:18:18 -04003871/*
3872 * a bit scary, this does extent mapping from logical file offset to the disk.
3873 * the ugly parts come from merging extents from the disk with the
3874 * in-ram representation. This gets more complex because of the data=ordered code,
3875 * where the in-ram extents might be locked pending data=ordered completion.
3876 *
3877 * This also copies inline extents directly into the page.
3878 */
Chris Masona52d9a82007-08-27 16:49:44 -04003879struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05003880 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04003881 int create)
3882{
3883 int ret;
3884 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04003885 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04003886 u64 extent_start = 0;
3887 u64 extent_end = 0;
3888 u64 objectid = inode->i_ino;
3889 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04003890 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04003891 struct btrfs_root *root = BTRFS_I(inode)->root;
3892 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04003893 struct extent_buffer *leaf;
3894 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04003895 struct extent_map *em = NULL;
3896 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05003897 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003898 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003899 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04003900
Chris Masona52d9a82007-08-27 16:49:44 -04003901again:
Chris Masond1310b22008-01-24 16:13:08 -05003902 spin_lock(&em_tree->lock);
3903 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04003904 if (em)
3905 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003906 spin_unlock(&em_tree->lock);
3907
Chris Masona52d9a82007-08-27 16:49:44 -04003908 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04003909 if (em->start > start || em->start + em->len <= start)
3910 free_extent_map(em);
3911 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05003912 free_extent_map(em);
3913 else
3914 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003915 }
Chris Masond1310b22008-01-24 16:13:08 -05003916 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04003917 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05003918 err = -ENOMEM;
3919 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003920 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003921 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05003922 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05003923 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05003924 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04003925 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04003926
3927 if (!path) {
3928 path = btrfs_alloc_path();
3929 BUG_ON(!path);
3930 }
3931
Chris Mason179e29e2007-11-01 11:28:41 -04003932 ret = btrfs_lookup_file_extent(trans, root, path,
3933 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04003934 if (ret < 0) {
3935 err = ret;
3936 goto out;
3937 }
3938
3939 if (ret != 0) {
3940 if (path->slots[0] == 0)
3941 goto not_found;
3942 path->slots[0]--;
3943 }
3944
Chris Mason5f39d392007-10-15 16:14:19 -04003945 leaf = path->nodes[0];
3946 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04003947 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04003948 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04003949 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3950 found_type = btrfs_key_type(&found_key);
3951 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04003952 found_type != BTRFS_EXTENT_DATA_KEY) {
3953 goto not_found;
3954 }
3955
Chris Mason5f39d392007-10-15 16:14:19 -04003956 found_type = btrfs_file_extent_type(leaf, item);
3957 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04003958 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04003959 if (found_type == BTRFS_FILE_EXTENT_REG ||
3960 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04003961 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04003962 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04003963 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
3964 size_t size;
3965 size = btrfs_file_extent_inline_len(leaf, item);
3966 extent_end = (extent_start + size + root->sectorsize - 1) &
3967 ~((u64)root->sectorsize - 1);
3968 }
3969
3970 if (start >= extent_end) {
3971 path->slots[0]++;
3972 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3973 ret = btrfs_next_leaf(root, path);
3974 if (ret < 0) {
3975 err = ret;
3976 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003977 }
Yan Zheng9036c102008-10-30 14:19:41 -04003978 if (ret > 0)
3979 goto not_found;
3980 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04003981 }
Yan Zheng9036c102008-10-30 14:19:41 -04003982 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3983 if (found_key.objectid != objectid ||
3984 found_key.type != BTRFS_EXTENT_DATA_KEY)
3985 goto not_found;
3986 if (start + len <= found_key.offset)
3987 goto not_found;
3988 em->start = start;
3989 em->len = found_key.offset - start;
3990 goto not_found_em;
3991 }
3992
Yan Zhengd899e052008-10-30 14:25:28 -04003993 if (found_type == BTRFS_FILE_EXTENT_REG ||
3994 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04003995 em->start = extent_start;
3996 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05003997 em->orig_start = extent_start -
3998 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04003999 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4000 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004001 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04004002 goto insert;
4003 }
Chris Masonc8b97812008-10-29 14:49:59 -04004004 if (compressed) {
4005 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
4006 em->block_start = bytenr;
4007 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
4008 item);
4009 } else {
4010 bytenr += btrfs_file_extent_offset(leaf, item);
4011 em->block_start = bytenr;
4012 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04004013 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
4014 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04004015 }
Chris Masona52d9a82007-08-27 16:49:44 -04004016 goto insert;
4017 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004018 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04004019 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04004020 size_t size;
4021 size_t extent_offset;
4022 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04004023
Chris Masona52d9a82007-08-27 16:49:44 -04004024 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004025 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04004026 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04004027 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04004028 goto out;
4029 }
4030
Yan Zheng9036c102008-10-30 14:19:41 -04004031 size = btrfs_file_extent_inline_len(leaf, item);
4032 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05004033 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04004034 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04004035 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05004036 em->len = (copy_size + root->sectorsize - 1) &
4037 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004038 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004039 if (compressed)
4040 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004041 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004042 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004043 if (btrfs_file_extent_compression(leaf, item) ==
4044 BTRFS_COMPRESS_ZLIB) {
4045 ret = uncompress_inline(path, inode, page,
4046 pg_offset,
4047 extent_offset, item);
4048 BUG_ON(ret);
4049 } else {
4050 map = kmap(page);
4051 read_extent_buffer(leaf, map + pg_offset, ptr,
4052 copy_size);
4053 kunmap(page);
4054 }
Chris Mason179e29e2007-11-01 11:28:41 -04004055 flush_dcache_page(page);
4056 } else if (create && PageUptodate(page)) {
4057 if (!trans) {
4058 kunmap(page);
4059 free_extent_map(em);
4060 em = NULL;
4061 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004062 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004063 goto again;
4064 }
Chris Masonc8b97812008-10-29 14:49:59 -04004065 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004066 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004067 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004068 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004069 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004070 }
Chris Masond1310b22008-01-24 16:13:08 -05004071 set_extent_uptodate(io_tree, em->start,
4072 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004073 goto insert;
4074 } else {
4075 printk("unkknown found_type %d\n", found_type);
4076 WARN_ON(1);
4077 }
4078not_found:
4079 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004080 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004081not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004082 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004083 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004084insert:
4085 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004086 if (em->start > start || extent_map_end(em) <= start) {
4087 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04004088 err = -EIO;
4089 goto out;
4090 }
Chris Masond1310b22008-01-24 16:13:08 -05004091
4092 err = 0;
4093 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004094 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004095 /* it is possible that someone inserted the extent into the tree
4096 * while we had the lock dropped. It is also possible that
4097 * an overlapping map exists in the tree
4098 */
Chris Masona52d9a82007-08-27 16:49:44 -04004099 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004100 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004101
4102 ret = 0;
4103
Chris Mason3b951512008-04-17 11:29:12 -04004104 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004105 if (existing && (existing->start > start ||
4106 existing->start + existing->len <= start)) {
4107 free_extent_map(existing);
4108 existing = NULL;
4109 }
Chris Mason3b951512008-04-17 11:29:12 -04004110 if (!existing) {
4111 existing = lookup_extent_mapping(em_tree, em->start,
4112 em->len);
4113 if (existing) {
4114 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004115 em, start,
4116 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004117 free_extent_map(existing);
4118 if (err) {
4119 free_extent_map(em);
4120 em = NULL;
4121 }
4122 } else {
4123 err = -EIO;
4124 printk("failing to insert %Lu %Lu\n",
4125 start, len);
4126 free_extent_map(em);
4127 em = NULL;
4128 }
4129 } else {
4130 free_extent_map(em);
4131 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004132 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004133 }
Chris Masona52d9a82007-08-27 16:49:44 -04004134 }
Chris Masond1310b22008-01-24 16:13:08 -05004135 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004136out:
Chris Masonf4219502008-07-22 11:18:09 -04004137 if (path)
4138 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004139 if (trans) {
4140 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004141 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04004142 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004143 }
Chris Masona52d9a82007-08-27 16:49:44 -04004144 }
Chris Masona52d9a82007-08-27 16:49:44 -04004145 if (err) {
4146 free_extent_map(em);
4147 WARN_ON(1);
4148 return ERR_PTR(err);
4149 }
4150 return em;
4151}
4152
Chris Mason16432982008-04-10 10:23:21 -04004153static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4154 const struct iovec *iov, loff_t offset,
4155 unsigned long nr_segs)
4156{
Chris Masone1c4b742008-04-22 13:26:46 -04004157 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004158}
4159
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004160static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04004161{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04004162 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004163}
4164
Chris Mason9ebefb182007-06-15 13:50:00 -04004165int btrfs_readpage(struct file *file, struct page *page)
4166{
Chris Masond1310b22008-01-24 16:13:08 -05004167 struct extent_io_tree *tree;
4168 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004169 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004170}
Chris Mason1832a6d2007-12-21 16:27:21 -05004171
Chris Mason39279cc2007-06-12 06:35:45 -04004172static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4173{
Chris Masond1310b22008-01-24 16:13:08 -05004174 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004175
4176
4177 if (current->flags & PF_MEMALLOC) {
4178 redirty_page_for_writepage(wbc, page);
4179 unlock_page(page);
4180 return 0;
4181 }
Chris Masond1310b22008-01-24 16:13:08 -05004182 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004183 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4184}
Chris Mason39279cc2007-06-12 06:35:45 -04004185
Chris Masonf4219502008-07-22 11:18:09 -04004186int btrfs_writepages(struct address_space *mapping,
4187 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04004188{
Chris Masond1310b22008-01-24 16:13:08 -05004189 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004190
Chris Masond1310b22008-01-24 16:13:08 -05004191 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04004192 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4193}
4194
Chris Mason3ab2fb52007-11-08 10:59:22 -05004195static int
4196btrfs_readpages(struct file *file, struct address_space *mapping,
4197 struct list_head *pages, unsigned nr_pages)
4198{
Chris Masond1310b22008-01-24 16:13:08 -05004199 struct extent_io_tree *tree;
4200 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004201 return extent_readpages(tree, mapping, pages, nr_pages,
4202 btrfs_get_extent);
4203}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004204static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004205{
Chris Masond1310b22008-01-24 16:13:08 -05004206 struct extent_io_tree *tree;
4207 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004208 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004209
Chris Masond1310b22008-01-24 16:13:08 -05004210 tree = &BTRFS_I(page->mapping->host)->io_tree;
4211 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004212 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004213 if (ret == 1) {
4214 ClearPagePrivate(page);
4215 set_page_private(page, 0);
4216 page_cache_release(page);
4217 }
4218 return ret;
4219}
Chris Mason39279cc2007-06-12 06:35:45 -04004220
Chris Masone6dcd2d2008-07-17 12:53:50 -04004221static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4222{
Chris Mason98509cf2008-09-11 15:51:43 -04004223 if (PageWriteback(page) || PageDirty(page))
4224 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004225 return __btrfs_releasepage(page, gfp_flags);
4226}
4227
Chris Masona52d9a82007-08-27 16:49:44 -04004228static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4229{
Chris Masond1310b22008-01-24 16:13:08 -05004230 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004231 struct btrfs_ordered_extent *ordered;
4232 u64 page_start = page_offset(page);
4233 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004234
Chris Masone6dcd2d2008-07-17 12:53:50 -04004235 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004236 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004237 if (offset) {
4238 btrfs_releasepage(page, GFP_NOFS);
4239 return;
4240 }
4241
4242 lock_extent(tree, page_start, page_end, GFP_NOFS);
4243 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4244 page_offset(page));
4245 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04004246 /*
4247 * IO on this page will never be started, so we need
4248 * to account for any ordered extents now
4249 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004250 clear_extent_bit(tree, page_start, page_end,
4251 EXTENT_DIRTY | EXTENT_DELALLOC |
4252 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04004253 btrfs_finish_ordered_io(page->mapping->host,
4254 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004255 btrfs_put_ordered_extent(ordered);
4256 lock_extent(tree, page_start, page_end, GFP_NOFS);
4257 }
4258 clear_extent_bit(tree, page_start, page_end,
4259 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4260 EXTENT_ORDERED,
4261 1, 1, GFP_NOFS);
4262 __btrfs_releasepage(page, GFP_NOFS);
4263
Chris Mason4a096752008-07-21 10:29:44 -04004264 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004265 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004266 ClearPagePrivate(page);
4267 set_page_private(page, 0);
4268 page_cache_release(page);
4269 }
Chris Mason39279cc2007-06-12 06:35:45 -04004270}
4271
Chris Mason9ebefb182007-06-15 13:50:00 -04004272/*
4273 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
4274 * called from a page fault handler when a page is first dirtied. Hence we must
4275 * be careful to check for EOF conditions here. We set the page up correctly
4276 * for a written page which means we get ENOSPC checking when writing into
4277 * holes and correct delalloc and unwritten extent mapping on filesystems that
4278 * support these features.
4279 *
4280 * We are not allowed to take the i_mutex here so we have to play games to
4281 * protect against truncate races as the page could now be beyond EOF. Because
4282 * vmtruncate() writes the inode size before removing pages, once we have the
4283 * page lock we can determine safely if the page is beyond EOF. If it is not
4284 * beyond EOF, then the page is guaranteed safe against truncation until we
4285 * unlock the page.
4286 */
4287int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4288{
Chris Mason6da6aba2007-12-18 16:15:09 -05004289 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05004290 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004291 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4292 struct btrfs_ordered_extent *ordered;
4293 char *kaddr;
4294 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04004295 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05004296 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04004297 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004298 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04004299
Chris Mason1832a6d2007-12-21 16:27:21 -05004300 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05004301 if (ret)
4302 goto out;
4303
4304 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004305again:
Chris Mason9ebefb182007-06-15 13:50:00 -04004306 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04004307 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004308 page_start = page_offset(page);
4309 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004310
Chris Mason9ebefb182007-06-15 13:50:00 -04004311 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04004312 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04004313 /* page got truncated out from underneath us */
4314 goto out_unlock;
4315 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004316 wait_on_page_writeback(page);
4317
4318 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
4319 set_page_extent_mapped(page);
4320
Chris Masoneb84ae02008-07-17 13:53:27 -04004321 /*
4322 * we can't set the delalloc bits if there are pending ordered
4323 * extents. Drop our locks and wait for them to finish
4324 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004325 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4326 if (ordered) {
4327 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4328 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004329 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004330 btrfs_put_ordered_extent(ordered);
4331 goto again;
4332 }
4333
Chris Masonea8c2812008-08-04 23:17:27 -04004334 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004335 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04004336
4337 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04004338 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004339 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04004340 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04004341 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04004342
Chris Masone6dcd2d2008-07-17 12:53:50 -04004343 if (zero_start != PAGE_CACHE_SIZE) {
4344 kaddr = kmap(page);
4345 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
4346 flush_dcache_page(page);
4347 kunmap(page);
4348 }
Chris Mason247e7432008-07-17 12:53:51 -04004349 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004350 set_page_dirty(page);
4351 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04004352
4353out_unlock:
4354 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05004355out:
Chris Mason9ebefb182007-06-15 13:50:00 -04004356 return ret;
4357}
4358
Chris Mason39279cc2007-06-12 06:35:45 -04004359static void btrfs_truncate(struct inode *inode)
4360{
4361 struct btrfs_root *root = BTRFS_I(inode)->root;
4362 int ret;
4363 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004364 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04004365 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004366
4367 if (!S_ISREG(inode->i_mode))
4368 return;
4369 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4370 return;
4371
4372 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04004373 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04004374
Chris Mason39279cc2007-06-12 06:35:45 -04004375 trans = btrfs_start_transaction(root, 1);
4376 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04004377 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004378
Josef Bacik7b128762008-07-24 12:17:14 -04004379 ret = btrfs_orphan_add(trans, inode);
4380 if (ret)
4381 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004382 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04004383 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05004384 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004385 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004386
Josef Bacik7b128762008-07-24 12:17:14 -04004387 ret = btrfs_orphan_del(trans, inode);
4388 BUG_ON(ret);
4389
4390out:
4391 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004392 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004393 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004394 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004395}
4396
Sven Wegener3b963622008-06-09 21:57:42 -04004397/*
Chris Masond352ac62008-09-29 15:18:18 -04004398 * create a new subvolume directory/inode (helper for the ioctl).
4399 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05004400int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
4401 struct btrfs_root *new_root, struct dentry *dentry,
4402 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04004403{
Chris Mason39279cc2007-06-12 06:35:45 -04004404 struct inode *inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004405 int error;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004406 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004407
Josef Bacikaec74772008-07-24 12:12:38 -04004408 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004409 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04004410 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004411 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004412 inode->i_op = &btrfs_dir_inode_operations;
4413 inode->i_fop = &btrfs_dir_file_operations;
4414
Chris Mason39279cc2007-06-12 06:35:45 -04004415 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04004416 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04004417
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004418 error = btrfs_update_inode(trans, new_root, inode);
4419 if (error)
4420 return error;
4421
4422 d_instantiate(dentry, inode);
4423 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004424}
4425
Chris Masond352ac62008-09-29 15:18:18 -04004426/* helper function for file defrag and space balancing. This
4427 * forces readahead on a given range of bytes in an inode
4428 */
Chris Masonedbd8d42007-12-21 16:27:24 -05004429unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04004430 struct file_ra_state *ra, struct file *file,
4431 pgoff_t offset, pgoff_t last_index)
4432{
Chris Mason8e7bf942008-04-28 09:02:36 -04004433 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04004434
Chris Mason86479a02007-09-10 19:58:16 -04004435 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
4436 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04004437}
4438
Chris Mason39279cc2007-06-12 06:35:45 -04004439struct inode *btrfs_alloc_inode(struct super_block *sb)
4440{
4441 struct btrfs_inode *ei;
4442
4443 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
4444 if (!ei)
4445 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04004446 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004447 ei->logged_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004448 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik33268ea2008-07-24 12:16:36 -04004449 ei->i_acl = BTRFS_ACL_NOT_CACHED;
4450 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
Josef Bacik7b128762008-07-24 12:17:14 -04004451 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason39279cc2007-06-12 06:35:45 -04004452 return &ei->vfs_inode;
4453}
4454
4455void btrfs_destroy_inode(struct inode *inode)
4456{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004457 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04004458 WARN_ON(!list_empty(&inode->i_dentry));
4459 WARN_ON(inode->i_data.nrpages);
4460
Josef Bacik33268ea2008-07-24 12:16:36 -04004461 if (BTRFS_I(inode)->i_acl &&
4462 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
4463 posix_acl_release(BTRFS_I(inode)->i_acl);
4464 if (BTRFS_I(inode)->i_default_acl &&
4465 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
4466 posix_acl_release(BTRFS_I(inode)->i_default_acl);
4467
Yanbcc63ab2008-07-30 16:29:20 -04004468 spin_lock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004469 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
4470 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
4471 " list\n", inode->i_ino);
4472 dump_stack();
4473 }
Yanbcc63ab2008-07-30 16:29:20 -04004474 spin_unlock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004475
Chris Masone6dcd2d2008-07-17 12:53:50 -04004476 while(1) {
4477 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
4478 if (!ordered)
4479 break;
4480 else {
4481 printk("found ordered extent %Lu %Lu\n",
4482 ordered->file_offset, ordered->len);
4483 btrfs_remove_ordered_extent(inode, ordered);
4484 btrfs_put_ordered_extent(ordered);
4485 btrfs_put_ordered_extent(ordered);
4486 }
4487 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004488 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004489 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
4490}
4491
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004492static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04004493{
4494 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
4495
4496 inode_init_once(&ei->vfs_inode);
4497}
4498
4499void btrfs_destroy_cachep(void)
4500{
4501 if (btrfs_inode_cachep)
4502 kmem_cache_destroy(btrfs_inode_cachep);
4503 if (btrfs_trans_handle_cachep)
4504 kmem_cache_destroy(btrfs_trans_handle_cachep);
4505 if (btrfs_transaction_cachep)
4506 kmem_cache_destroy(btrfs_transaction_cachep);
4507 if (btrfs_bit_radix_cachep)
4508 kmem_cache_destroy(btrfs_bit_radix_cachep);
4509 if (btrfs_path_cachep)
4510 kmem_cache_destroy(btrfs_path_cachep);
4511}
4512
Chris Mason86479a02007-09-10 19:58:16 -04004513struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04004514 unsigned long extra_flags,
Chris Mason2b1f55b2008-09-24 11:48:04 -04004515 void (*ctor)(void *))
Chris Mason92fee662007-07-25 12:31:35 -04004516{
4517 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
Chris Mason2b1f55b2008-09-24 11:48:04 -04004518 SLAB_MEM_SPREAD | extra_flags), ctor);
Chris Mason92fee662007-07-25 12:31:35 -04004519}
4520
Chris Mason39279cc2007-06-12 06:35:45 -04004521int btrfs_init_cachep(void)
4522{
Chris Mason86479a02007-09-10 19:58:16 -04004523 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04004524 sizeof(struct btrfs_inode),
4525 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04004526 if (!btrfs_inode_cachep)
4527 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004528 btrfs_trans_handle_cachep =
4529 btrfs_cache_create("btrfs_trans_handle_cache",
4530 sizeof(struct btrfs_trans_handle),
4531 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004532 if (!btrfs_trans_handle_cachep)
4533 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004534 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04004535 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04004536 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004537 if (!btrfs_transaction_cachep)
4538 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004539 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04004540 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04004541 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004542 if (!btrfs_path_cachep)
4543 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04004544 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04004545 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004546 if (!btrfs_bit_radix_cachep)
4547 goto fail;
4548 return 0;
4549fail:
4550 btrfs_destroy_cachep();
4551 return -ENOMEM;
4552}
4553
4554static int btrfs_getattr(struct vfsmount *mnt,
4555 struct dentry *dentry, struct kstat *stat)
4556{
4557 struct inode *inode = dentry->d_inode;
4558 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05004559 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05004560 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004561 stat->blocks = (inode_get_bytes(inode) +
4562 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04004563 return 0;
4564}
4565
4566static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
4567 struct inode * new_dir,struct dentry *new_dentry)
4568{
4569 struct btrfs_trans_handle *trans;
4570 struct btrfs_root *root = BTRFS_I(old_dir)->root;
4571 struct inode *new_inode = new_dentry->d_inode;
4572 struct inode *old_inode = old_dentry->d_inode;
4573 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004574 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004575 int ret;
4576
Chris Mason3394e162008-11-17 20:42:26 -05004577 /* we're not allowed to rename between subvolumes */
4578 if (BTRFS_I(old_inode)->root->root_key.objectid !=
4579 BTRFS_I(new_dir)->root->root_key.objectid)
4580 return -EXDEV;
4581
Chris Mason39279cc2007-06-12 06:35:45 -04004582 if (S_ISDIR(old_inode->i_mode) && new_inode &&
4583 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
4584 return -ENOTEMPTY;
4585 }
Chris Mason5f39d392007-10-15 16:14:19 -04004586
Chris Mason0660b5a2008-11-17 20:37:39 -05004587 /* to rename a snapshot or subvolume, we need to juggle the
4588 * backrefs. This isn't coded yet
4589 */
4590 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
4591 return -EXDEV;
4592
Chris Mason1832a6d2007-12-21 16:27:21 -05004593 ret = btrfs_check_free_space(root, 1, 0);
4594 if (ret)
4595 goto out_unlock;
4596
Chris Mason39279cc2007-06-12 06:35:45 -04004597 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004598
Chris Mason39279cc2007-06-12 06:35:45 -04004599 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004600
Chris Masone02119d2008-09-05 16:13:11 -04004601 btrfs_inc_nlink(old_dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004602 old_dir->i_ctime = old_dir->i_mtime = ctime;
4603 new_dir->i_ctime = new_dir->i_mtime = ctime;
4604 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04004605
Chris Masone02119d2008-09-05 16:13:11 -04004606 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
4607 old_dentry->d_name.name,
4608 old_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004609 if (ret)
4610 goto out_fail;
4611
4612 if (new_inode) {
4613 new_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004614 ret = btrfs_unlink_inode(trans, root, new_dir,
4615 new_dentry->d_inode,
4616 new_dentry->d_name.name,
4617 new_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004618 if (ret)
4619 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04004620 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004621 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004622 if (ret)
4623 goto out_fail;
4624 }
Chris Masone02119d2008-09-05 16:13:11 -04004625
Chris Mason39279cc2007-06-12 06:35:45 -04004626 }
Chris Mason3de45862008-11-17 21:02:50 -05004627 ret = btrfs_set_inode_index(new_dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004628 if (ret)
4629 goto out_fail;
4630
Chris Masone02119d2008-09-05 16:13:11 -04004631 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
4632 old_inode, new_dentry->d_name.name,
4633 new_dentry->d_name.len, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004634 if (ret)
4635 goto out_fail;
4636
4637out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04004638 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004639out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04004640 return ret;
4641}
4642
Chris Masond352ac62008-09-29 15:18:18 -04004643/*
4644 * some fairly slow code that needs optimization. This walks the list
4645 * of all the inodes with pending delalloc and forces them to disk.
4646 */
Chris Masonea8c2812008-08-04 23:17:27 -04004647int btrfs_start_delalloc_inodes(struct btrfs_root *root)
4648{
4649 struct list_head *head = &root->fs_info->delalloc_inodes;
4650 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004651 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04004652 unsigned long flags;
4653
Yan Zhengc146afa2008-11-12 14:34:12 -05004654 if (root->fs_info->sb->s_flags & MS_RDONLY)
4655 return -EROFS;
4656
Chris Masonea8c2812008-08-04 23:17:27 -04004657 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4658 while(!list_empty(head)) {
4659 binode = list_entry(head->next, struct btrfs_inode,
4660 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004661 inode = igrab(&binode->vfs_inode);
4662 if (!inode)
4663 list_del_init(&binode->delalloc_inodes);
Chris Masonea8c2812008-08-04 23:17:27 -04004664 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004665 if (inode) {
Chris Mason8c8bee1d2008-09-29 11:19:10 -04004666 filemap_flush(inode->i_mapping);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004667 iput(inode);
4668 }
4669 cond_resched();
Chris Masonea8c2812008-08-04 23:17:27 -04004670 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4671 }
4672 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason8c8bee1d2008-09-29 11:19:10 -04004673
4674 /* the filemap_flush will queue IO into the worker threads, but
4675 * we have to make sure the IO is actually started and that
4676 * ordered extents get created before we return
4677 */
4678 atomic_inc(&root->fs_info->async_submit_draining);
Chris Mason771ed682008-11-06 22:02:51 -05004679 while(atomic_read(&root->fs_info->nr_async_submits) ||
4680 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee1d2008-09-29 11:19:10 -04004681 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05004682 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
4683 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee1d2008-09-29 11:19:10 -04004684 }
4685 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04004686 return 0;
4687}
4688
Chris Mason39279cc2007-06-12 06:35:45 -04004689static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
4690 const char *symname)
4691{
4692 struct btrfs_trans_handle *trans;
4693 struct btrfs_root *root = BTRFS_I(dir)->root;
4694 struct btrfs_path *path;
4695 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05004696 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004697 int err;
4698 int drop_inode = 0;
4699 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004700 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04004701 int name_len;
4702 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04004703 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004704 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04004705 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05004706 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004707
4708 name_len = strlen(symname) + 1;
4709 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
4710 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05004711
Chris Mason1832a6d2007-12-21 16:27:21 -05004712 err = btrfs_check_free_space(root, 1, 0);
4713 if (err)
4714 goto out_fail;
4715
Chris Mason39279cc2007-06-12 06:35:45 -04004716 trans = btrfs_start_transaction(root, 1);
4717 btrfs_set_trans_block_group(trans, dir);
4718
4719 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4720 if (err) {
4721 err = -ENOSPC;
4722 goto out_unlock;
4723 }
4724
Josef Bacikaec74772008-07-24 12:12:38 -04004725 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004726 dentry->d_name.len,
4727 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004728 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
4729 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004730 err = PTR_ERR(inode);
4731 if (IS_ERR(inode))
4732 goto out_unlock;
4733
Josef Bacik33268ea2008-07-24 12:16:36 -04004734 err = btrfs_init_acl(inode, dir);
4735 if (err) {
4736 drop_inode = 1;
4737 goto out_unlock;
4738 }
4739
Chris Mason39279cc2007-06-12 06:35:45 -04004740 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004741 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004742 if (err)
4743 drop_inode = 1;
4744 else {
4745 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004746 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004747 inode->i_fop = &btrfs_file_operations;
4748 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004749 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004750 }
4751 dir->i_sb->s_dirt = 1;
4752 btrfs_update_inode_block_group(trans, inode);
4753 btrfs_update_inode_block_group(trans, dir);
4754 if (drop_inode)
4755 goto out_unlock;
4756
4757 path = btrfs_alloc_path();
4758 BUG_ON(!path);
4759 key.objectid = inode->i_ino;
4760 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004761 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
4762 datasize = btrfs_file_extent_calc_inline_size(name_len);
4763 err = btrfs_insert_empty_item(trans, root, path, &key,
4764 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04004765 if (err) {
4766 drop_inode = 1;
4767 goto out_unlock;
4768 }
Chris Mason5f39d392007-10-15 16:14:19 -04004769 leaf = path->nodes[0];
4770 ei = btrfs_item_ptr(leaf, path->slots[0],
4771 struct btrfs_file_extent_item);
4772 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
4773 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04004774 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04004775 btrfs_set_file_extent_encryption(leaf, ei, 0);
4776 btrfs_set_file_extent_compression(leaf, ei, 0);
4777 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
4778 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
4779
Chris Mason39279cc2007-06-12 06:35:45 -04004780 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04004781 write_extent_buffer(leaf, symname, ptr, name_len);
4782 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004783 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04004784
Chris Mason39279cc2007-06-12 06:35:45 -04004785 inode->i_op = &btrfs_symlink_inode_operations;
4786 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04004787 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04004788 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04004789 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04004790 err = btrfs_update_inode(trans, root, inode);
4791 if (err)
4792 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004793
4794out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004795 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004796 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004797out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004798 if (drop_inode) {
4799 inode_dec_link_count(inode);
4800 iput(inode);
4801 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004802 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004803 return err;
4804}
Chris Mason16432982008-04-10 10:23:21 -04004805
Yan Zhengd899e052008-10-30 14:25:28 -04004806static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
4807 u64 alloc_hint, int mode)
4808{
4809 struct btrfs_trans_handle *trans;
4810 struct btrfs_root *root = BTRFS_I(inode)->root;
4811 struct btrfs_key ins;
4812 u64 alloc_size;
4813 u64 cur_offset = start;
4814 u64 num_bytes = end - start;
4815 int ret = 0;
4816
4817 trans = btrfs_join_transaction(root, 1);
4818 BUG_ON(!trans);
4819 btrfs_set_trans_block_group(trans, inode);
4820
4821 while (num_bytes > 0) {
4822 alloc_size = min(num_bytes, root->fs_info->max_extent);
4823 ret = btrfs_reserve_extent(trans, root, alloc_size,
4824 root->sectorsize, 0, alloc_hint,
4825 (u64)-1, &ins, 1);
4826 if (ret) {
4827 WARN_ON(1);
4828 goto out;
4829 }
4830 ret = insert_reserved_file_extent(trans, inode,
4831 cur_offset, ins.objectid,
4832 ins.offset, ins.offset,
4833 ins.offset, 0, 0, 0,
4834 BTRFS_FILE_EXTENT_PREALLOC);
4835 BUG_ON(ret);
4836 num_bytes -= ins.offset;
4837 cur_offset += ins.offset;
4838 alloc_hint = ins.objectid + ins.offset;
4839 }
4840out:
4841 if (cur_offset > start) {
4842 inode->i_ctime = CURRENT_TIME;
4843 btrfs_set_flag(inode, PREALLOC);
4844 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
4845 cur_offset > i_size_read(inode))
4846 btrfs_i_size_write(inode, cur_offset);
4847 ret = btrfs_update_inode(trans, root, inode);
4848 BUG_ON(ret);
4849 }
4850
4851 btrfs_end_transaction(trans, root);
4852 return ret;
4853}
4854
4855static long btrfs_fallocate(struct inode *inode, int mode,
4856 loff_t offset, loff_t len)
4857{
4858 u64 cur_offset;
4859 u64 last_byte;
4860 u64 alloc_start;
4861 u64 alloc_end;
4862 u64 alloc_hint = 0;
4863 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
4864 struct extent_map *em;
4865 int ret;
4866
4867 alloc_start = offset & ~mask;
4868 alloc_end = (offset + len + mask) & ~mask;
4869
4870 mutex_lock(&inode->i_mutex);
4871 if (alloc_start > inode->i_size) {
4872 ret = btrfs_cont_expand(inode, alloc_start);
4873 if (ret)
4874 goto out;
4875 }
4876
4877 while (1) {
4878 struct btrfs_ordered_extent *ordered;
4879 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start,
4880 alloc_end - 1, GFP_NOFS);
4881 ordered = btrfs_lookup_first_ordered_extent(inode,
4882 alloc_end - 1);
4883 if (ordered &&
4884 ordered->file_offset + ordered->len > alloc_start &&
4885 ordered->file_offset < alloc_end) {
4886 btrfs_put_ordered_extent(ordered);
4887 unlock_extent(&BTRFS_I(inode)->io_tree,
4888 alloc_start, alloc_end - 1, GFP_NOFS);
4889 btrfs_wait_ordered_range(inode, alloc_start,
4890 alloc_end - alloc_start);
4891 } else {
4892 if (ordered)
4893 btrfs_put_ordered_extent(ordered);
4894 break;
4895 }
4896 }
4897
4898 cur_offset = alloc_start;
4899 while (1) {
4900 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4901 alloc_end - cur_offset, 0);
4902 BUG_ON(IS_ERR(em) || !em);
4903 last_byte = min(extent_map_end(em), alloc_end);
4904 last_byte = (last_byte + mask) & ~mask;
4905 if (em->block_start == EXTENT_MAP_HOLE) {
4906 ret = prealloc_file_range(inode, cur_offset,
4907 last_byte, alloc_hint, mode);
4908 if (ret < 0) {
4909 free_extent_map(em);
4910 break;
4911 }
4912 }
4913 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
4914 alloc_hint = em->block_start;
4915 free_extent_map(em);
4916
4917 cur_offset = last_byte;
4918 if (cur_offset >= alloc_end) {
4919 ret = 0;
4920 break;
4921 }
4922 }
4923 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, alloc_end - 1,
4924 GFP_NOFS);
4925out:
4926 mutex_unlock(&inode->i_mutex);
4927 return ret;
4928}
4929
Chris Masone6dcd2d2008-07-17 12:53:50 -04004930static int btrfs_set_page_dirty(struct page *page)
4931{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004932 return __set_page_dirty_nobuffers(page);
4933}
4934
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004935static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05004936{
4937 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
4938 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04004939 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05004940}
Chris Mason39279cc2007-06-12 06:35:45 -04004941
4942static struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05004943 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04004944 .lookup = btrfs_lookup,
4945 .create = btrfs_create,
4946 .unlink = btrfs_unlink,
4947 .link = btrfs_link,
4948 .mkdir = btrfs_mkdir,
4949 .rmdir = btrfs_rmdir,
4950 .rename = btrfs_rename,
4951 .symlink = btrfs_symlink,
4952 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04004953 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004954 .setxattr = btrfs_setxattr,
4955 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05004956 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04004957 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05004958 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004959};
Chris Mason39279cc2007-06-12 06:35:45 -04004960static struct inode_operations btrfs_dir_ro_inode_operations = {
4961 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05004962 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04004963};
Chris Mason39279cc2007-06-12 06:35:45 -04004964static struct file_operations btrfs_dir_file_operations = {
4965 .llseek = generic_file_llseek,
4966 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01004967 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004968 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004969#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04004970 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04004971#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04004972 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04004973 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04004974};
4975
Chris Masond1310b22008-01-24 16:13:08 -05004976static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04004977 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05004978 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04004979 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004980 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004981 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04004982 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04004983 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05004984 .set_bit_hook = btrfs_set_bit_hook,
4985 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04004986};
4987
Chris Mason39279cc2007-06-12 06:35:45 -04004988static struct address_space_operations btrfs_aops = {
4989 .readpage = btrfs_readpage,
4990 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04004991 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05004992 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04004993 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04004994 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04004995 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04004996 .invalidatepage = btrfs_invalidatepage,
4997 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004998 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04004999};
5000
5001static struct address_space_operations btrfs_symlink_aops = {
5002 .readpage = btrfs_readpage,
5003 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04005004 .invalidatepage = btrfs_invalidatepage,
5005 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04005006};
5007
5008static struct inode_operations btrfs_file_inode_operations = {
5009 .truncate = btrfs_truncate,
5010 .getattr = btrfs_getattr,
5011 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005012 .setxattr = btrfs_setxattr,
5013 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005014 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005015 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005016 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04005017 .fallocate = btrfs_fallocate,
Chris Mason39279cc2007-06-12 06:35:45 -04005018};
Josef Bacik618e21d2007-07-11 10:18:17 -04005019static struct inode_operations btrfs_special_inode_operations = {
5020 .getattr = btrfs_getattr,
5021 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05005022 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005023 .setxattr = btrfs_setxattr,
5024 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04005025 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005026 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005027};
Chris Mason39279cc2007-06-12 06:35:45 -04005028static struct inode_operations btrfs_symlink_inode_operations = {
5029 .readlink = generic_readlink,
5030 .follow_link = page_follow_link_light,
5031 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05005032 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005033};