blob: d20db643772301b2f43102a7fec9279b343a23fa [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>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/statfs.h>
34#include <linux/compat.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070035#include <linux/aio.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040036#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050037#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040038#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040039#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020041#include <linux/ratelimit.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050042#include <linux/mount.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000043#include <linux/btrfs.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050044#include <linux/blkdev.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050045#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040046#include "ctree.h"
47#include "disk-io.h"
48#include "transaction.h"
49#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040050#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040051#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040052#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040053#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020054#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040055#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050056#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050057#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080058#include "inode-map.h"
Liu Bo38c227d2013-01-29 03:18:40 +000059#include "backref.h"
Chris Mason39279cc2007-06-12 06:35:45 -040060
61struct btrfs_iget_args {
62 u64 ino;
63 struct btrfs_root *root;
64};
65
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070066static const struct inode_operations btrfs_dir_inode_operations;
67static const struct inode_operations btrfs_symlink_inode_operations;
68static const struct inode_operations btrfs_dir_ro_inode_operations;
69static const struct inode_operations btrfs_special_inode_operations;
70static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070071static const struct address_space_operations btrfs_aops;
72static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070073static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050074static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040075
76static struct kmem_cache *btrfs_inode_cachep;
Miao Xie8ccf6f192012-10-25 09:28:04 +000077static struct kmem_cache *btrfs_delalloc_work_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040078struct kmem_cache *btrfs_trans_handle_cachep;
79struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040080struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050081struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040082
83#define S_SHIFT 12
84static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
85 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
86 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
87 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
88 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
89 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
90 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
91 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
92};
93
Eric Sandeen3972f262013-01-12 02:57:22 +000094static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Josef Bacika41ad392011-01-31 15:30:16 -050095static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -040096static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050097static noinline int cow_file_range(struct inode *inode,
98 struct page *locked_page,
99 u64 start, u64 end, int *page_started,
100 unsigned long *nr_written, int unlock);
Josef Bacik70c8a912012-10-11 16:54:30 -0400101static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
102 u64 len, u64 orig_start,
103 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -0400104 u64 orig_block_len, u64 ram_bytes,
105 int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400106
Eric Sandeen48a3b632013-04-25 20:41:01 +0000107static int btrfs_dirty_inode(struct inode *inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400108
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000109static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500110 struct inode *inode, struct inode *dir,
111 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500112{
113 int err;
114
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000115 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500116 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500117 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500118 return err;
119}
120
Chris Masond352ac62008-09-29 15:18:18 -0400121/*
Chris Masonc8b97812008-10-29 14:49:59 -0400122 * this does all the hard work for inserting an inline extent into
123 * the btree. The caller should have done a btrfs_drop_extents so that
124 * no overlapping inline items exist in the btree
125 */
Chris Masond3977122009-01-05 21:25:51 -0500126static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400127 struct btrfs_root *root, struct inode *inode,
128 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000129 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400130 struct page **compressed_pages)
131{
132 struct btrfs_key key;
133 struct btrfs_path *path;
134 struct extent_buffer *leaf;
135 struct page *page = NULL;
136 char *kaddr;
137 unsigned long ptr;
138 struct btrfs_file_extent_item *ei;
139 int err = 0;
140 int ret;
141 size_t cur_size = size;
142 size_t datasize;
143 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400144
Li Zefanfe3f5662011-03-28 08:30:38 +0000145 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400146 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400147
Chris Masond3977122009-01-05 21:25:51 -0500148 path = btrfs_alloc_path();
149 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400150 return -ENOMEM;
151
Chris Masonb9473432009-03-13 11:00:37 -0400152 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400153
Li Zefan33345d012011-04-20 10:31:50 +0800154 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400155 key.offset = start;
156 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400157 datasize = btrfs_file_extent_calc_inline_size(cur_size);
158
159 inode_add_bytes(inode, size);
160 ret = btrfs_insert_empty_item(trans, root, path, &key,
161 datasize);
Chris Masonc8b97812008-10-29 14:49:59 -0400162 if (ret) {
163 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400164 goto fail;
165 }
166 leaf = path->nodes[0];
167 ei = btrfs_item_ptr(leaf, path->slots[0],
168 struct btrfs_file_extent_item);
169 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
170 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
171 btrfs_set_file_extent_encryption(leaf, ei, 0);
172 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
173 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
174 ptr = btrfs_file_extent_inline_start(ei);
175
Li Zefan261507a02010-12-17 14:21:50 +0800176 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400177 struct page *cpage;
178 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500179 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400180 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500181 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400182 PAGE_CACHE_SIZE);
183
Cong Wang7ac687d2011-11-25 23:14:28 +0800184 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400185 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800186 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400187
188 i++;
189 ptr += cur_size;
190 compressed_size -= cur_size;
191 }
192 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800193 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400194 } else {
195 page = find_get_page(inode->i_mapping,
196 start >> PAGE_CACHE_SHIFT);
197 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800198 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400199 offset = start & (PAGE_CACHE_SIZE - 1);
200 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800201 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400202 page_cache_release(page);
203 }
204 btrfs_mark_buffer_dirty(leaf);
205 btrfs_free_path(path);
206
Yan, Zhengc2167752009-11-12 09:34:21 +0000207 /*
208 * we're an inline extent, so nobody can
209 * extend the file past i_size without locking
210 * a page we already have locked.
211 *
212 * We must do any isize and inode updates
213 * before we unlock the pages. Otherwise we
214 * could end up racing with unlink.
215 */
Chris Masonc8b97812008-10-29 14:49:59 -0400216 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100217 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000218
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100219 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400220fail:
221 btrfs_free_path(path);
222 return err;
223}
224
225
226/*
227 * conditionally insert an inline extent into the file. This
228 * does the checks required to make sure the data is small enough
229 * to fit as an inline extent.
230 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400231static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400232 struct btrfs_root *root,
233 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000234 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400235 struct page **compressed_pages)
236{
237 u64 isize = i_size_read(inode);
238 u64 actual_end = min(end + 1, isize);
239 u64 inline_len = actual_end - start;
Qu Wenruofda28322013-02-26 08:10:22 +0000240 u64 aligned_end = ALIGN(end, root->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400241 u64 data_len = inline_len;
242 int ret;
243
244 if (compressed_size)
245 data_len = compressed_size;
246
247 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400248 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400249 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
250 (!compressed_size &&
251 (actual_end & (root->sectorsize - 1)) == 0) ||
252 end + 1 < isize ||
253 data_len > root->fs_info->max_inline) {
254 return 1;
255 }
256
Josef Bacik26714852012-08-29 12:24:27 -0400257 ret = btrfs_drop_extents(trans, root, inode, start, aligned_end, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100258 if (ret)
259 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400260
261 if (isize > actual_end)
262 inline_len = min_t(u64, isize, actual_end);
263 ret = insert_inline_extent(trans, root, inode, start,
264 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000265 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400266 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100267 btrfs_abort_transaction(trans, root, ret);
268 return ret;
Josef Bacik2adcac12012-05-23 16:10:14 -0400269 } else if (ret == -ENOSPC) {
270 return 1;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100271 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400272
Josef Bacikbdc20e62013-02-28 13:23:38 -0500273 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400274 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400275 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400276 return 0;
277}
278
Chris Mason771ed682008-11-06 22:02:51 -0500279struct async_extent {
280 u64 start;
281 u64 ram_size;
282 u64 compressed_size;
283 struct page **pages;
284 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800285 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500286 struct list_head list;
287};
288
289struct async_cow {
290 struct inode *inode;
291 struct btrfs_root *root;
292 struct page *locked_page;
293 u64 start;
294 u64 end;
295 struct list_head extents;
296 struct btrfs_work work;
297};
298
299static noinline int add_async_extent(struct async_cow *cow,
300 u64 start, u64 ram_size,
301 u64 compressed_size,
302 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800303 unsigned long nr_pages,
304 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500305{
306 struct async_extent *async_extent;
307
308 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100309 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500310 async_extent->start = start;
311 async_extent->ram_size = ram_size;
312 async_extent->compressed_size = compressed_size;
313 async_extent->pages = pages;
314 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800315 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500316 list_add_tail(&async_extent->list, &cow->extents);
317 return 0;
318}
319
Chris Masonc8b97812008-10-29 14:49:59 -0400320/*
Chris Mason771ed682008-11-06 22:02:51 -0500321 * we create compressed extents in two phases. The first
322 * phase compresses a range of pages that have already been
323 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400324 *
Chris Mason771ed682008-11-06 22:02:51 -0500325 * This is done inside an ordered work queue, and the compression
326 * is spread across many cpus. The actual IO submission is step
327 * two, and the ordered work queue takes care of making sure that
328 * happens in the same order things were put onto the queue by
329 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400330 *
Chris Mason771ed682008-11-06 22:02:51 -0500331 * If this code finds it can't get good compression, it puts an
332 * entry onto the work queue to write the uncompressed bytes. This
333 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300334 * are written in the same order that the flusher thread sent them
335 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400336 */
Chris Mason771ed682008-11-06 22:02:51 -0500337static noinline int compress_file_range(struct inode *inode,
338 struct page *locked_page,
339 u64 start, u64 end,
340 struct async_cow *async_cow,
341 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400342{
343 struct btrfs_root *root = BTRFS_I(inode)->root;
344 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400345 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400346 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400347 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500348 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400349 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400350 struct page **pages = NULL;
351 unsigned long nr_pages;
352 unsigned long nr_pages_ret = 0;
353 unsigned long total_compressed = 0;
354 unsigned long total_in = 0;
355 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500356 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400357 int i;
358 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800359 int compress_type = root->fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400360 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400361
Liu Bo4cb13e52012-03-29 09:57:45 -0400362 /* if this is a small write inside eof, kick off a defrag */
363 if ((end - start + 1) < 16 * 1024 &&
364 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400365 btrfs_add_inode_defrag(NULL, inode);
366
Chris Mason42dc7ba2008-12-15 11:44:56 -0500367 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400368again:
369 will_compress = 0;
370 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
371 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
372
Chris Masonf03d9301f2009-02-04 09:31:06 -0500373 /*
374 * we don't want to send crud past the end of i_size through
375 * compression, that's just a waste of CPU time. So, if the
376 * end of the file is before the start of our current
377 * requested range of bytes, we bail out to the uncompressed
378 * cleanup code that can deal with all of this.
379 *
380 * It isn't really the fastest way to fix things, but this is a
381 * very uncommon corner.
382 */
383 if (actual_end <= start)
384 goto cleanup_and_bail_uncompressed;
385
Chris Masonc8b97812008-10-29 14:49:59 -0400386 total_compressed = actual_end - start;
387
388 /* we want to make sure that amount of ram required to uncompress
389 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500390 * of a compressed extent to 128k. This is a crucial number
391 * because it also controls how easily we can spread reads across
392 * cpus for decompression.
393 *
394 * We also want to make sure the amount of IO required to do
395 * a random read is reasonably small, so we limit the size of
396 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400397 */
398 total_compressed = min(total_compressed, max_uncompressed);
Qu Wenruofda28322013-02-26 08:10:22 +0000399 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Masonbe20aa92007-12-17 20:14:01 -0500400 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400401 total_in = 0;
402 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400403
Chris Mason771ed682008-11-06 22:02:51 -0500404 /*
405 * we do compression for mount -o compress and when the
406 * inode has not been flagged as nocompress. This flag can
407 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400408 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200409 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500410 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000411 (BTRFS_I(inode)->force_compress) ||
412 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400413 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400414 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800415 if (!pages) {
416 /* just bail out to the uncompressed code */
417 goto cont;
418 }
Chris Mason179e29e2007-11-01 11:28:41 -0400419
Li Zefan261507a02010-12-17 14:21:50 +0800420 if (BTRFS_I(inode)->force_compress)
421 compress_type = BTRFS_I(inode)->force_compress;
422
Chris Mason4adaa612013-03-26 13:07:00 -0400423 /*
424 * we need to call clear_page_dirty_for_io on each
425 * page in the range. Otherwise applications with the file
426 * mmap'd can wander in and change the page contents while
427 * we are compressing them.
428 *
429 * If the compression fails for any reason, we set the pages
430 * dirty again later on.
431 */
432 extent_range_clear_dirty_for_io(inode, start, end);
433 redirty = 1;
Li Zefan261507a02010-12-17 14:21:50 +0800434 ret = btrfs_compress_pages(compress_type,
435 inode->i_mapping, start,
436 total_compressed, pages,
437 nr_pages, &nr_pages_ret,
438 &total_in,
439 &total_compressed,
440 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400441
442 if (!ret) {
443 unsigned long offset = total_compressed &
444 (PAGE_CACHE_SIZE - 1);
445 struct page *page = pages[nr_pages_ret - 1];
446 char *kaddr;
447
448 /* zero the tail end of the last page, we might be
449 * sending it down to disk
450 */
451 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800452 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400453 memset(kaddr + offset, 0,
454 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800455 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400456 }
457 will_compress = 1;
458 }
459 }
Li Zefan560f7d72011-09-08 10:22:01 +0800460cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400461 if (start == 0) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400462 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100463 if (IS_ERR(trans)) {
464 ret = PTR_ERR(trans);
465 trans = NULL;
466 goto cleanup_and_out;
467 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400468 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500469
Chris Masonc8b97812008-10-29 14:49:59 -0400470 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500471 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400472 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500473 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400474 */
475 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000476 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400477 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500478 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400479 ret = cow_file_range_inline(trans, root, inode,
480 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000481 total_compressed,
482 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400483 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100484 if (ret <= 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500485 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100486 * inline extent creation worked or returned error,
487 * we don't need to create any more async work items.
488 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500489 */
Chris Masonc8b97812008-10-29 14:49:59 -0400490 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400491 &BTRFS_I(inode)->io_tree,
492 start, end, NULL,
493 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400494 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400495 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000496
497 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400498 goto free_pages_out;
499 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000500 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400501 }
502
503 if (will_compress) {
504 /*
505 * we aren't doing an inline extent round the compressed size
506 * up to a block size boundary so the allocator does sane
507 * things
508 */
Qu Wenruofda28322013-02-26 08:10:22 +0000509 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400510
511 /*
512 * one last check to make sure the compression is really a
513 * win, compare the page count read with the blocks on disk
514 */
Qu Wenruofda28322013-02-26 08:10:22 +0000515 total_in = ALIGN(total_in, PAGE_CACHE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400516 if (total_compressed >= total_in) {
517 will_compress = 0;
518 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400519 num_bytes = total_in;
520 }
521 }
522 if (!will_compress && pages) {
523 /*
524 * the compression code ran but failed to make things smaller,
525 * free any pages it allocated and our page pointer array
526 */
527 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400528 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400529 page_cache_release(pages[i]);
530 }
531 kfree(pages);
532 pages = NULL;
533 total_compressed = 0;
534 nr_pages_ret = 0;
535
536 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500537 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
538 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500539 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500540 }
Chris Masonc8b97812008-10-29 14:49:59 -0400541 }
Chris Mason771ed682008-11-06 22:02:51 -0500542 if (will_compress) {
543 *num_added += 1;
544
545 /* the async work queues will take care of doing actual
546 * allocation on disk for these compressed pages,
547 * and will submit them to the elevator.
548 */
549 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800550 total_compressed, pages, nr_pages_ret,
551 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500552
Yan, Zheng24ae6362010-12-06 07:02:36 +0000553 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500554 start += num_bytes;
555 pages = NULL;
556 cond_resched();
557 goto again;
558 }
559 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500560cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500561 /*
562 * No compression, but we still need to write the pages in
563 * the file we've been given so far. redirty the locked
564 * page if it corresponds to our extent and set things up
565 * for the async work queue to run cow_file_range to do
566 * the normal delalloc dance
567 */
568 if (page_offset(locked_page) >= start &&
569 page_offset(locked_page) <= end) {
570 __set_page_dirty_nobuffers(locked_page);
571 /* unlocked later on in the async handlers */
572 }
Chris Mason4adaa612013-03-26 13:07:00 -0400573 if (redirty)
574 extent_range_redirty_for_io(inode, start, end);
Li Zefan261507a02010-12-17 14:21:50 +0800575 add_async_extent(async_cow, start, end - start + 1,
576 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500577 *num_added += 1;
578 }
579
580out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100581 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500582
583free_pages_out:
584 for (i = 0; i < nr_pages_ret; i++) {
585 WARN_ON(pages[i]->mapping);
586 page_cache_release(pages[i]);
587 }
Chris Masond3977122009-01-05 21:25:51 -0500588 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500589
590 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100591
592cleanup_and_out:
593 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
594 start, end, NULL,
595 EXTENT_CLEAR_UNLOCK_PAGE |
596 EXTENT_CLEAR_DIRTY |
597 EXTENT_CLEAR_DELALLOC |
598 EXTENT_SET_WRITEBACK |
599 EXTENT_END_WRITEBACK);
600 if (!trans || IS_ERR(trans))
601 btrfs_error(root->fs_info, ret, "Failed to join transaction");
602 else
603 btrfs_abort_transaction(trans, root, ret);
604 goto free_pages_out;
Chris Mason771ed682008-11-06 22:02:51 -0500605}
606
607/*
608 * phase two of compressed writeback. This is the ordered portion
609 * of the code, which only gets called in the order the work was
610 * queued. We walk all the async extents created by compress_file_range
611 * and send them down to the disk.
612 */
613static noinline int submit_compressed_extents(struct inode *inode,
614 struct async_cow *async_cow)
615{
616 struct async_extent *async_extent;
617 u64 alloc_hint = 0;
618 struct btrfs_trans_handle *trans;
619 struct btrfs_key ins;
620 struct extent_map *em;
621 struct btrfs_root *root = BTRFS_I(inode)->root;
622 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
623 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500624 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500625
626 if (list_empty(&async_cow->extents))
627 return 0;
628
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500629again:
Chris Masond3977122009-01-05 21:25:51 -0500630 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500631 async_extent = list_entry(async_cow->extents.next,
632 struct async_extent, list);
633 list_del(&async_extent->list);
634
635 io_tree = &BTRFS_I(inode)->io_tree;
636
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500637retry:
Chris Mason771ed682008-11-06 22:02:51 -0500638 /* did the compression code fall back to uncompressed IO? */
639 if (!async_extent->pages) {
640 int page_started = 0;
641 unsigned long nr_written = 0;
642
643 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000644 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100645 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500646
647 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500648 ret = cow_file_range(inode, async_cow->locked_page,
649 async_extent->start,
650 async_extent->start +
651 async_extent->ram_size - 1,
652 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500653
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100654 /* JDM XXX */
655
Chris Mason771ed682008-11-06 22:02:51 -0500656 /*
657 * if page_started, cow_file_range inserted an
658 * inline extent and took care of all the unlocking
659 * and IO for us. Otherwise, we need to submit
660 * all those pages down to the drive.
661 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500662 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500663 extent_write_locked_range(io_tree,
664 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500665 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500666 async_extent->ram_size - 1,
667 btrfs_get_extent,
668 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500669 else if (ret)
670 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500671 kfree(async_extent);
672 cond_resched();
673 continue;
674 }
675
676 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100677 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500678
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400679 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100680 if (IS_ERR(trans)) {
681 ret = PTR_ERR(trans);
682 } else {
683 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
684 ret = btrfs_reserve_extent(trans, root,
Chris Mason771ed682008-11-06 22:02:51 -0500685 async_extent->compressed_size,
686 async_extent->compressed_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500687 0, alloc_hint, &ins, 1);
Miao Xie962197b2012-09-11 23:27:35 -0600688 if (ret && ret != -ENOSPC)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100689 btrfs_abort_transaction(trans, root, ret);
690 btrfs_end_transaction(trans, root);
691 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000692
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500693 if (ret) {
694 int i;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500695
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500696 for (i = 0; i < async_extent->nr_pages; i++) {
697 WARN_ON(async_extent->pages[i]->mapping);
698 page_cache_release(async_extent->pages[i]);
699 }
700 kfree(async_extent->pages);
701 async_extent->nr_pages = 0;
702 async_extent->pages = NULL;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500703
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100704 if (ret == -ENOSPC)
705 goto retry;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500706 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500707 }
708
Yan, Zhengc2167752009-11-12 09:34:21 +0000709 /*
710 * here we're doing allocation and writeback of the
711 * compressed pages
712 */
713 btrfs_drop_extent_cache(inode, async_extent->start,
714 async_extent->start +
715 async_extent->ram_size - 1, 0);
716
David Sterba172ddd62011-04-21 00:48:27 +0200717 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +0000718 if (!em) {
719 ret = -ENOMEM;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500720 goto out_free_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +0000721 }
Chris Mason771ed682008-11-06 22:02:51 -0500722 em->start = async_extent->start;
723 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500724 em->orig_start = em->start;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400725 em->mod_start = em->start;
726 em->mod_len = em->len;
Chris Mason771ed682008-11-06 22:02:51 -0500727
728 em->block_start = ins.objectid;
729 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500730 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400731 em->ram_bytes = async_extent->ram_size;
Chris Mason771ed682008-11-06 22:02:51 -0500732 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800733 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500734 set_bit(EXTENT_FLAG_PINNED, &em->flags);
735 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400736 em->generation = -1;
Chris Mason771ed682008-11-06 22:02:51 -0500737
Chris Masond3977122009-01-05 21:25:51 -0500738 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400739 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400740 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -0400741 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500742 if (ret != -EEXIST) {
743 free_extent_map(em);
744 break;
745 }
746 btrfs_drop_extent_cache(inode, async_extent->start,
747 async_extent->start +
748 async_extent->ram_size - 1, 0);
749 }
750
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500751 if (ret)
752 goto out_free_reserve;
753
Li Zefan261507a02010-12-17 14:21:50 +0800754 ret = btrfs_add_ordered_extent_compress(inode,
755 async_extent->start,
756 ins.objectid,
757 async_extent->ram_size,
758 ins.offset,
759 BTRFS_ORDERED_COMPRESSED,
760 async_extent->compress_type);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500761 if (ret)
762 goto out_free_reserve;
Chris Mason771ed682008-11-06 22:02:51 -0500763
Chris Mason771ed682008-11-06 22:02:51 -0500764 /*
765 * clear dirty, set writeback and unlock the pages.
766 */
767 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400768 &BTRFS_I(inode)->io_tree,
769 async_extent->start,
770 async_extent->start +
771 async_extent->ram_size - 1,
772 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
773 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400774 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400775 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500776
777 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500778 async_extent->start,
779 async_extent->ram_size,
780 ins.objectid,
781 ins.offset, async_extent->pages,
782 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500783 alloc_hint = ins.objectid + ins.offset;
784 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500785 if (ret)
786 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500787 cond_resched();
788 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100789 ret = 0;
790out:
791 return ret;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500792out_free_reserve:
793 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100794out_free:
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500795 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
796 async_extent->start,
797 async_extent->start +
798 async_extent->ram_size - 1,
799 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
800 EXTENT_CLEAR_UNLOCK |
801 EXTENT_CLEAR_DELALLOC |
802 EXTENT_CLEAR_DIRTY |
803 EXTENT_SET_WRITEBACK |
804 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100805 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500806 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500807}
808
Josef Bacik4b46fce2010-05-23 11:00:55 -0400809static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
810 u64 num_bytes)
811{
812 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
813 struct extent_map *em;
814 u64 alloc_hint = 0;
815
816 read_lock(&em_tree->lock);
817 em = search_extent_mapping(em_tree, start, num_bytes);
818 if (em) {
819 /*
820 * if block start isn't an actual block number then find the
821 * first block in this inode and use that as a hint. If that
822 * block is also bogus then just don't worry about it.
823 */
824 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
825 free_extent_map(em);
826 em = search_extent_mapping(em_tree, 0, 0);
827 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
828 alloc_hint = em->block_start;
829 if (em)
830 free_extent_map(em);
831 } else {
832 alloc_hint = em->block_start;
833 free_extent_map(em);
834 }
835 }
836 read_unlock(&em_tree->lock);
837
838 return alloc_hint;
839}
840
Chris Mason771ed682008-11-06 22:02:51 -0500841/*
842 * when extent_io.c finds a delayed allocation range in the file,
843 * the call backs end up in this code. The basic idea is to
844 * allocate extents on disk for the range, and create ordered data structs
845 * in ram to track those extents.
846 *
847 * locked_page is the page that writepage had locked already. We use
848 * it to make sure we don't do extra locks or unlocks.
849 *
850 * *page_started is set to one if we unlock locked_page and do everything
851 * required to start IO on it. It may be clean and already done with
852 * IO when we return.
853 */
Miao Xieb7d5b0a2012-11-01 07:32:18 +0000854static noinline int __cow_file_range(struct btrfs_trans_handle *trans,
855 struct inode *inode,
856 struct btrfs_root *root,
857 struct page *locked_page,
858 u64 start, u64 end, int *page_started,
859 unsigned long *nr_written,
860 int unlock)
Chris Mason771ed682008-11-06 22:02:51 -0500861{
Chris Mason771ed682008-11-06 22:02:51 -0500862 u64 alloc_hint = 0;
863 u64 num_bytes;
864 unsigned long ram_size;
865 u64 disk_num_bytes;
866 u64 cur_alloc_size;
867 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500868 struct btrfs_key ins;
869 struct extent_map *em;
870 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
871 int ret = 0;
872
Liu Bo83eea1f2012-07-10 05:28:39 -0600873 BUG_ON(btrfs_is_free_space_inode(inode));
Chris Mason771ed682008-11-06 22:02:51 -0500874
Qu Wenruofda28322013-02-26 08:10:22 +0000875 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500876 num_bytes = max(blocksize, num_bytes);
877 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500878
Chris Mason4cb53002011-05-24 15:35:30 -0400879 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400880 if (num_bytes < 64 * 1024 &&
881 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400882 btrfs_add_inode_defrag(trans, inode);
883
Chris Mason771ed682008-11-06 22:02:51 -0500884 if (start == 0) {
885 /* lets try to make an inline extent */
886 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000887 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500888 if (ret == 0) {
889 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400890 &BTRFS_I(inode)->io_tree,
891 start, end, NULL,
892 EXTENT_CLEAR_UNLOCK_PAGE |
893 EXTENT_CLEAR_UNLOCK |
894 EXTENT_CLEAR_DELALLOC |
895 EXTENT_CLEAR_DIRTY |
896 EXTENT_SET_WRITEBACK |
897 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000898
Chris Mason771ed682008-11-06 22:02:51 -0500899 *nr_written = *nr_written +
900 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
901 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500902 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100903 } else if (ret < 0) {
904 btrfs_abort_transaction(trans, root, ret);
905 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500906 }
907 }
Chris Masonc8b97812008-10-29 14:49:59 -0400908
909 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200910 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400911
Josef Bacik4b46fce2010-05-23 11:00:55 -0400912 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400913 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400914
Chris Masond3977122009-01-05 21:25:51 -0500915 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400916 unsigned long op;
917
Josef Bacik287a0ab2010-03-19 18:07:23 +0000918 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400919 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500920 root->sectorsize, 0, alloc_hint,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500921 &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100922 if (ret < 0) {
923 btrfs_abort_transaction(trans, root, ret);
924 goto out_unlock;
925 }
Chris Masond3977122009-01-05 21:25:51 -0500926
David Sterba172ddd62011-04-21 00:48:27 +0200927 em = alloc_extent_map();
Liu Bob9aa55b2013-05-14 02:12:15 +0000928 if (!em) {
929 ret = -ENOMEM;
Liu Boace68ba2013-04-22 10:53:47 +0000930 goto out_reserve;
Liu Bob9aa55b2013-05-14 02:12:15 +0000931 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400932 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500933 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500934 ram_size = ins.offset;
935 em->len = ins.offset;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400936 em->mod_start = em->start;
937 em->mod_len = em->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400938
Chris Masone6dcd2d2008-07-17 12:53:50 -0400939 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400940 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500941 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400942 em->ram_bytes = ram_size;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400943 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400944 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400945 em->generation = -1;
Chris Masonc8b97812008-10-29 14:49:59 -0400946
Chris Masond3977122009-01-05 21:25:51 -0500947 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400948 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400949 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -0400950 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400951 if (ret != -EEXIST) {
952 free_extent_map(em);
953 break;
954 }
955 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400956 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400957 }
Liu Boace68ba2013-04-22 10:53:47 +0000958 if (ret)
959 goto out_reserve;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400960
Chris Mason98d20f62008-04-14 09:46:10 -0400961 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400962 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500963 ram_size, cur_alloc_size, 0);
Liu Boace68ba2013-04-22 10:53:47 +0000964 if (ret)
965 goto out_reserve;
Chris Masonc8b97812008-10-29 14:49:59 -0400966
Yan Zheng17d217f2008-12-12 10:03:38 -0500967 if (root->root_key.objectid ==
968 BTRFS_DATA_RELOC_TREE_OBJECTID) {
969 ret = btrfs_reloc_clone_csums(inode, start,
970 cur_alloc_size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100971 if (ret) {
972 btrfs_abort_transaction(trans, root, ret);
Liu Boace68ba2013-04-22 10:53:47 +0000973 goto out_reserve;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100974 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500975 }
976
Chris Masond3977122009-01-05 21:25:51 -0500977 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400978 break;
Chris Masond3977122009-01-05 21:25:51 -0500979
Chris Masonc8b97812008-10-29 14:49:59 -0400980 /* we're not doing compressed IO, don't unlock the first
981 * page (which the caller expects to stay locked), don't
982 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400983 *
984 * Do set the Private2 bit so we know this page was properly
985 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400986 */
Chris Masona791e352009-10-08 11:27:10 -0400987 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
988 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
989 EXTENT_SET_PRIVATE2;
990
Chris Masonc8b97812008-10-29 14:49:59 -0400991 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
992 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400993 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400994 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500995 num_bytes -= cur_alloc_size;
996 alloc_hint = ins.objectid + ins.offset;
997 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400998 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100999out:
Chris Masonbe20aa92007-12-17 20:14:01 -05001000 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001001
Liu Boace68ba2013-04-22 10:53:47 +00001002out_reserve:
1003 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001004out_unlock:
1005 extent_clear_unlock_delalloc(inode,
1006 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -04001007 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001008 EXTENT_CLEAR_UNLOCK_PAGE |
1009 EXTENT_CLEAR_UNLOCK |
1010 EXTENT_CLEAR_DELALLOC |
1011 EXTENT_CLEAR_DIRTY |
1012 EXTENT_SET_WRITEBACK |
1013 EXTENT_END_WRITEBACK);
1014
1015 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001016}
Chris Masonc8b97812008-10-29 14:49:59 -04001017
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001018static noinline int cow_file_range(struct inode *inode,
1019 struct page *locked_page,
1020 u64 start, u64 end, int *page_started,
1021 unsigned long *nr_written,
1022 int unlock)
1023{
1024 struct btrfs_trans_handle *trans;
1025 struct btrfs_root *root = BTRFS_I(inode)->root;
1026 int ret;
1027
1028 trans = btrfs_join_transaction(root);
1029 if (IS_ERR(trans)) {
1030 extent_clear_unlock_delalloc(inode,
1031 &BTRFS_I(inode)->io_tree,
1032 start, end, locked_page,
1033 EXTENT_CLEAR_UNLOCK_PAGE |
1034 EXTENT_CLEAR_UNLOCK |
1035 EXTENT_CLEAR_DELALLOC |
1036 EXTENT_CLEAR_DIRTY |
1037 EXTENT_SET_WRITEBACK |
1038 EXTENT_END_WRITEBACK);
1039 return PTR_ERR(trans);
1040 }
1041 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
1042
1043 ret = __cow_file_range(trans, inode, root, locked_page, start, end,
1044 page_started, nr_written, unlock);
1045
1046 btrfs_end_transaction(trans, root);
1047
1048 return ret;
1049}
1050
Chris Mason771ed682008-11-06 22:02:51 -05001051/*
1052 * work queue call back to started compression on a file and pages
1053 */
1054static noinline void async_cow_start(struct btrfs_work *work)
1055{
1056 struct async_cow *async_cow;
1057 int num_added = 0;
1058 async_cow = container_of(work, struct async_cow, work);
1059
1060 compress_file_range(async_cow->inode, async_cow->locked_page,
1061 async_cow->start, async_cow->end, async_cow,
1062 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001063 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001064 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001065 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001066 }
Chris Mason771ed682008-11-06 22:02:51 -05001067}
1068
1069/*
1070 * work queue call back to submit previously compressed pages
1071 */
1072static noinline void async_cow_submit(struct btrfs_work *work)
1073{
1074 struct async_cow *async_cow;
1075 struct btrfs_root *root;
1076 unsigned long nr_pages;
1077
1078 async_cow = container_of(work, struct async_cow, work);
1079
1080 root = async_cow->root;
1081 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1082 PAGE_CACHE_SHIFT;
1083
Josef Bacik66657b32012-08-01 15:36:24 -04001084 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001085 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001086 waitqueue_active(&root->fs_info->async_submit_wait))
1087 wake_up(&root->fs_info->async_submit_wait);
1088
Chris Masond3977122009-01-05 21:25:51 -05001089 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001090 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001091}
Chris Masonc8b97812008-10-29 14:49:59 -04001092
Chris Mason771ed682008-11-06 22:02:51 -05001093static noinline void async_cow_free(struct btrfs_work *work)
1094{
1095 struct async_cow *async_cow;
1096 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001097 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001098 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001099 kfree(async_cow);
1100}
1101
1102static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1103 u64 start, u64 end, int *page_started,
1104 unsigned long *nr_written)
1105{
1106 struct async_cow *async_cow;
1107 struct btrfs_root *root = BTRFS_I(inode)->root;
1108 unsigned long nr_pages;
1109 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001110 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001111
Chris Masona3429ab2009-10-08 12:30:20 -04001112 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1113 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001114 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001115 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001116 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001117 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001118 async_cow->root = root;
1119 async_cow->locked_page = locked_page;
1120 async_cow->start = start;
1121
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001122 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001123 cur_end = end;
1124 else
1125 cur_end = min(end, start + 512 * 1024 - 1);
1126
1127 async_cow->end = cur_end;
1128 INIT_LIST_HEAD(&async_cow->extents);
1129
1130 async_cow->work.func = async_cow_start;
1131 async_cow->work.ordered_func = async_cow_submit;
1132 async_cow->work.ordered_free = async_cow_free;
1133 async_cow->work.flags = 0;
1134
Chris Mason771ed682008-11-06 22:02:51 -05001135 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1136 PAGE_CACHE_SHIFT;
1137 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1138
1139 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1140 &async_cow->work);
1141
1142 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1143 wait_event(root->fs_info->async_submit_wait,
1144 (atomic_read(&root->fs_info->async_delalloc_pages) <
1145 limit));
1146 }
1147
Chris Masond3977122009-01-05 21:25:51 -05001148 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001149 atomic_read(&root->fs_info->async_delalloc_pages)) {
1150 wait_event(root->fs_info->async_submit_wait,
1151 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1152 0));
1153 }
1154
1155 *nr_written += nr_pages;
1156 start = cur_end + 1;
1157 }
1158 *page_started = 1;
1159 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001160}
1161
Chris Masond3977122009-01-05 21:25:51 -05001162static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001163 u64 bytenr, u64 num_bytes)
1164{
1165 int ret;
1166 struct btrfs_ordered_sum *sums;
1167 LIST_HEAD(list);
1168
Yan Zheng07d400a2009-01-06 11:42:00 -05001169 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001170 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001171 if (ret == 0 && list_empty(&list))
1172 return 0;
1173
1174 while (!list_empty(&list)) {
1175 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1176 list_del(&sums->list);
1177 kfree(sums);
1178 }
1179 return 1;
1180}
1181
Chris Masond352ac62008-09-29 15:18:18 -04001182/*
1183 * when nowcow writeback call back. This checks for snapshots or COW copies
1184 * of the extents that exist in the file, and COWs the file as required.
1185 *
1186 * If no cow copies or snapshots exist, we write directly to the existing
1187 * blocks on disk
1188 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001189static noinline int run_delalloc_nocow(struct inode *inode,
1190 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001191 u64 start, u64 end, int *page_started, int force,
1192 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001193{
Chris Masonbe20aa92007-12-17 20:14:01 -05001194 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001195 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001196 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001197 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001198 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001199 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001200 u64 cow_start;
1201 u64 cur_offset;
1202 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001203 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001204 u64 disk_bytenr;
1205 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001206 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001207 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001208 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001209 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001210 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001211 int nocow;
1212 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001213 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001214 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001215
1216 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001217 if (!path) {
1218 extent_clear_unlock_delalloc(inode,
1219 &BTRFS_I(inode)->io_tree,
1220 start, end, locked_page,
1221 EXTENT_CLEAR_UNLOCK_PAGE |
1222 EXTENT_CLEAR_UNLOCK |
1223 EXTENT_CLEAR_DELALLOC |
1224 EXTENT_CLEAR_DIRTY |
1225 EXTENT_SET_WRITEBACK |
1226 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001227 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001228 }
Li Zefan82d59022011-04-20 10:33:24 +08001229
Liu Bo83eea1f2012-07-10 05:28:39 -06001230 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001231
1232 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001233 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001234 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001235 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001236
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001237 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001238 extent_clear_unlock_delalloc(inode,
1239 &BTRFS_I(inode)->io_tree,
1240 start, end, locked_page,
1241 EXTENT_CLEAR_UNLOCK_PAGE |
1242 EXTENT_CLEAR_UNLOCK |
1243 EXTENT_CLEAR_DELALLOC |
1244 EXTENT_CLEAR_DIRTY |
1245 EXTENT_SET_WRITEBACK |
1246 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001247 btrfs_free_path(path);
1248 return PTR_ERR(trans);
1249 }
1250
Josef Bacik74b21072011-04-13 12:02:53 -04001251 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001252
Yan Zheng80ff3852008-10-30 14:20:02 -04001253 cow_start = (u64)-1;
1254 cur_offset = start;
1255 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001256 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001257 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001258 if (ret < 0) {
1259 btrfs_abort_transaction(trans, root, ret);
1260 goto error;
1261 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001262 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1263 leaf = path->nodes[0];
1264 btrfs_item_key_to_cpu(leaf, &found_key,
1265 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001266 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001267 found_key.type == BTRFS_EXTENT_DATA_KEY)
1268 path->slots[0]--;
1269 }
1270 check_prev = 0;
1271next_slot:
1272 leaf = path->nodes[0];
1273 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1274 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001275 if (ret < 0) {
1276 btrfs_abort_transaction(trans, root, ret);
1277 goto error;
1278 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001279 if (ret > 0)
1280 break;
1281 leaf = path->nodes[0];
1282 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001283
Yan Zheng80ff3852008-10-30 14:20:02 -04001284 nocow = 0;
1285 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001286 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001287 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001288
Li Zefan33345d012011-04-20 10:31:50 +08001289 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001290 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1291 found_key.offset > end)
1292 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001293
Yan Zheng80ff3852008-10-30 14:20:02 -04001294 if (found_key.offset > cur_offset) {
1295 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001296 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001297 goto out_check;
1298 }
Chris Masonc31f8832008-01-08 15:46:31 -05001299
Yan Zheng80ff3852008-10-30 14:20:02 -04001300 fi = btrfs_item_ptr(leaf, path->slots[0],
1301 struct btrfs_file_extent_item);
1302 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001303
Josef Bacikcc95bef2013-04-04 14:31:27 -04001304 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001305 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1306 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001307 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001308 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001309 extent_end = found_key.offset +
1310 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001311 disk_num_bytes =
1312 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001313 if (extent_end <= start) {
1314 path->slots[0]++;
1315 goto next_slot;
1316 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001317 if (disk_bytenr == 0)
1318 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001319 if (btrfs_file_extent_compression(leaf, fi) ||
1320 btrfs_file_extent_encryption(leaf, fi) ||
1321 btrfs_file_extent_other_encoding(leaf, fi))
1322 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001323 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1324 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001325 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001326 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001327 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001328 found_key.offset -
1329 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001330 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001331 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001332 disk_bytenr += cur_offset - found_key.offset;
1333 num_bytes = min(end + 1, extent_end) - cur_offset;
1334 /*
1335 * force cow if csum exists in the range.
1336 * this ensure that csum for a given extent are
1337 * either valid or do not exist.
1338 */
1339 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1340 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001341 nocow = 1;
1342 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1343 extent_end = found_key.offset +
1344 btrfs_file_extent_inline_len(leaf, fi);
1345 extent_end = ALIGN(extent_end, root->sectorsize);
1346 } else {
1347 BUG_ON(1);
1348 }
1349out_check:
1350 if (extent_end <= start) {
1351 path->slots[0]++;
1352 goto next_slot;
1353 }
1354 if (!nocow) {
1355 if (cow_start == (u64)-1)
1356 cow_start = cur_offset;
1357 cur_offset = extent_end;
1358 if (cur_offset > end)
1359 break;
1360 path->slots[0]++;
1361 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001362 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001363
David Sterbab3b4aa72011-04-21 01:20:15 +02001364 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001365 if (cow_start != (u64)-1) {
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001366 ret = __cow_file_range(trans, inode, root, locked_page,
1367 cow_start, found_key.offset - 1,
1368 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001369 if (ret) {
1370 btrfs_abort_transaction(trans, root, ret);
1371 goto error;
1372 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001373 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001374 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001375
Yan Zhengd899e052008-10-30 14:25:28 -04001376 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1377 struct extent_map *em;
1378 struct extent_map_tree *em_tree;
1379 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001380 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001381 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001382 em->start = cur_offset;
Josef Bacik70c8a912012-10-11 16:54:30 -04001383 em->orig_start = found_key.offset - extent_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001384 em->len = num_bytes;
1385 em->block_len = num_bytes;
1386 em->block_start = disk_bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05001387 em->orig_block_len = disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001388 em->ram_bytes = ram_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04001389 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik2ab28f32012-10-12 15:27:49 -04001390 em->mod_start = em->start;
1391 em->mod_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04001392 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacikb11e2342012-12-03 10:58:15 -05001393 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -04001394 em->generation = -1;
Yan Zhengd899e052008-10-30 14:25:28 -04001395 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001396 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04001397 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001398 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001399 if (ret != -EEXIST) {
1400 free_extent_map(em);
1401 break;
1402 }
1403 btrfs_drop_extent_cache(inode, em->start,
1404 em->start + em->len - 1, 0);
1405 }
1406 type = BTRFS_ORDERED_PREALLOC;
1407 } else {
1408 type = BTRFS_ORDERED_NOCOW;
1409 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001410
1411 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001412 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001413 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001414
Yan, Zhengefa56462010-05-16 10:49:59 -04001415 if (root->root_key.objectid ==
1416 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1417 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1418 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001419 if (ret) {
1420 btrfs_abort_transaction(trans, root, ret);
1421 goto error;
1422 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001423 }
1424
Yan Zhengd899e052008-10-30 14:25:28 -04001425 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001426 cur_offset, cur_offset + num_bytes - 1,
1427 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1428 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1429 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001430 cur_offset = extent_end;
1431 if (cur_offset > end)
1432 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001433 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001434 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001435
Josef Bacik17ca04a2012-05-31 15:58:55 -04001436 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001437 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001438 cur_offset = end;
1439 }
1440
Yan Zheng80ff3852008-10-30 14:20:02 -04001441 if (cow_start != (u64)-1) {
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001442 ret = __cow_file_range(trans, inode, root, locked_page,
1443 cow_start, end,
1444 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001445 if (ret) {
1446 btrfs_abort_transaction(trans, root, ret);
1447 goto error;
1448 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001449 }
1450
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001451error:
Miao Xiea698d0752012-09-20 01:51:59 -06001452 err = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001453 if (!ret)
1454 ret = err;
1455
Josef Bacik17ca04a2012-05-31 15:58:55 -04001456 if (ret && cur_offset < end)
1457 extent_clear_unlock_delalloc(inode,
1458 &BTRFS_I(inode)->io_tree,
1459 cur_offset, end, locked_page,
1460 EXTENT_CLEAR_UNLOCK_PAGE |
1461 EXTENT_CLEAR_UNLOCK |
1462 EXTENT_CLEAR_DELALLOC |
1463 EXTENT_CLEAR_DIRTY |
1464 EXTENT_SET_WRITEBACK |
1465 EXTENT_END_WRITEBACK);
1466
Yan Zheng7ea394f2008-08-05 13:05:02 -04001467 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001468 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001469}
1470
Chris Masond352ac62008-09-29 15:18:18 -04001471/*
1472 * extent_io.c call back to do delayed allocation processing
1473 */
Chris Masonc8b97812008-10-29 14:49:59 -04001474static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001475 u64 start, u64 end, int *page_started,
1476 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001477{
Chris Masonbe20aa92007-12-17 20:14:01 -05001478 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001479 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001480
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001481 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
Chris Masonc8b97812008-10-29 14:49:59 -04001482 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001483 page_started, 1, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001484 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001485 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001486 page_started, 0, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001487 } else if (!btrfs_test_opt(root, COMPRESS) &&
1488 !(BTRFS_I(inode)->force_compress) &&
1489 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001490 ret = cow_file_range(inode, locked_page, start, end,
1491 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001492 } else {
1493 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1494 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001495 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001496 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001497 }
Chris Masonb888db22007-08-27 16:49:44 -04001498 return ret;
1499}
1500
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001501static void btrfs_split_extent_hook(struct inode *inode,
1502 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001503{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001504 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001505 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001506 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001507
Josef Bacik9e0baf62011-07-15 15:16:44 +00001508 spin_lock(&BTRFS_I(inode)->lock);
1509 BTRFS_I(inode)->outstanding_extents++;
1510 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001511}
1512
1513/*
1514 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1515 * extents so we can keep track of new extents that are just merged onto old
1516 * extents, such as when we are doing sequential writes, so we can properly
1517 * account for the metadata space we'll need.
1518 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001519static void btrfs_merge_extent_hook(struct inode *inode,
1520 struct extent_state *new,
1521 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001522{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001523 /* not delalloc, ignore it */
1524 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001525 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001526
Josef Bacik9e0baf62011-07-15 15:16:44 +00001527 spin_lock(&BTRFS_I(inode)->lock);
1528 BTRFS_I(inode)->outstanding_extents--;
1529 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001530}
1531
Chris Masond352ac62008-09-29 15:18:18 -04001532/*
1533 * extent_io.c set_bit_hook, used to track delayed allocation
1534 * bytes in this file, and to maintain the list of inodes that
1535 * have pending delalloc work to be done.
1536 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001537static void btrfs_set_bit_hook(struct inode *inode,
David Sterba41074882013-04-29 13:38:46 +00001538 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001539{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001540
Chris Mason75eff682008-12-15 15:54:40 -05001541 /*
1542 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001543 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001544 * bit, which is only set or cleared with irqs on
1545 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001546 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001547 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001548 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001549 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001550
Josef Bacik9e0baf62011-07-15 15:16:44 +00001551 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001552 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001553 } else {
1554 spin_lock(&BTRFS_I(inode)->lock);
1555 BTRFS_I(inode)->outstanding_extents++;
1556 spin_unlock(&BTRFS_I(inode)->lock);
1557 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001558
Miao Xie963d6782013-01-29 10:10:51 +00001559 __percpu_counter_add(&root->fs_info->delalloc_bytes, len,
1560 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001561 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001562 BTRFS_I(inode)->delalloc_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001563 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1564 &BTRFS_I(inode)->runtime_flags)) {
1565 spin_lock(&root->fs_info->delalloc_lock);
1566 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1567 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1568 &root->fs_info->delalloc_inodes);
1569 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1570 &BTRFS_I(inode)->runtime_flags);
1571 }
1572 spin_unlock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04001573 }
Miao Xiedf0af1a2013-01-29 10:11:59 +00001574 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001575 }
Chris Mason291d6732008-01-29 15:55:23 -05001576}
1577
Chris Masond352ac62008-09-29 15:18:18 -04001578/*
1579 * extent_io.c clear_bit_hook, see set_bit_hook for why
1580 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001581static void btrfs_clear_bit_hook(struct inode *inode,
David Sterba41074882013-04-29 13:38:46 +00001582 struct extent_state *state,
1583 unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001584{
Chris Mason75eff682008-12-15 15:54:40 -05001585 /*
1586 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001587 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001588 * bit, which is only set or cleared with irqs on
1589 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001590 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001591 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001592 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001593 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001594
Josef Bacik9e0baf62011-07-15 15:16:44 +00001595 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001596 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001597 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1598 spin_lock(&BTRFS_I(inode)->lock);
1599 BTRFS_I(inode)->outstanding_extents--;
1600 spin_unlock(&BTRFS_I(inode)->lock);
1601 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001602
1603 if (*bits & EXTENT_DO_ACCOUNTING)
1604 btrfs_delalloc_release_metadata(inode, len);
1605
Josef Bacik0cb59c92010-07-02 12:14:14 -04001606 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1607 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001608 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001609
Miao Xie963d6782013-01-29 10:10:51 +00001610 __percpu_counter_add(&root->fs_info->delalloc_bytes, -len,
1611 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001612 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001613 BTRFS_I(inode)->delalloc_bytes -= len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001614 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001615 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1616 &BTRFS_I(inode)->runtime_flags)) {
1617 spin_lock(&root->fs_info->delalloc_lock);
1618 if (!list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1619 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1620 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1621 &BTRFS_I(inode)->runtime_flags);
1622 }
1623 spin_unlock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04001624 }
Miao Xiedf0af1a2013-01-29 10:11:59 +00001625 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001626 }
Chris Mason291d6732008-01-29 15:55:23 -05001627}
1628
Chris Masond352ac62008-09-29 15:18:18 -04001629/*
1630 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1631 * we don't create bios that span stripes or chunks
1632 */
David Woodhouse64a16702009-07-15 23:29:37 +01001633int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001634 size_t size, struct bio *bio,
1635 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001636{
1637 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masona62b9402008-10-03 16:31:08 -04001638 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001639 u64 length = 0;
1640 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001641 int ret;
1642
Chris Mason771ed682008-11-06 22:02:51 -05001643 if (bio_flags & EXTENT_BIO_COMPRESSED)
1644 return 0;
1645
Chris Masonf2d8d742008-04-21 10:03:05 -04001646 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001647 map_length = length;
David Woodhouse64a16702009-07-15 23:29:37 +01001648 ret = btrfs_map_block(root->fs_info, rw, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001649 &map_length, NULL, 0);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001650 /* Will always return 0 with map_multi == NULL */
Jeff Mahoney3444a972011-10-03 23:23:13 -04001651 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001652 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001653 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001654 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001655}
1656
Chris Masond352ac62008-09-29 15:18:18 -04001657/*
1658 * in order to insert checksums into the metadata in large chunks,
1659 * we wait until bio submission time. All the pages in the bio are
1660 * checksummed and sums are attached onto the ordered extent record.
1661 *
1662 * At IO completion time the cums attached on the ordered extent record
1663 * are inserted into the btree
1664 */
Chris Masond3977122009-01-05 21:25:51 -05001665static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1666 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001667 unsigned long bio_flags,
1668 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001669{
Chris Mason065631f2008-02-20 12:07:25 -05001670 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001671 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001672
Chris Masond20f7042008-12-08 16:58:54 -05001673 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001674 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001675 return 0;
1676}
Chris Masone0156402008-04-16 11:15:20 -04001677
Chris Mason4a69a412008-11-06 22:03:00 -05001678/*
1679 * in order to insert checksums into the metadata in large chunks,
1680 * we wait until bio submission time. All the pages in the bio are
1681 * checksummed and sums are attached onto the ordered extent record.
1682 *
1683 * At IO completion time the cums attached on the ordered extent record
1684 * are inserted into the btree
1685 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001686static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001687 int mirror_num, unsigned long bio_flags,
1688 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001689{
1690 struct btrfs_root *root = BTRFS_I(inode)->root;
Stefan Behrens61891922012-11-05 18:51:52 +01001691 int ret;
1692
1693 ret = btrfs_map_bio(root, rw, bio, mirror_num, 1);
1694 if (ret)
1695 bio_endio(bio, ret);
1696 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001697}
1698
Chris Masond352ac62008-09-29 15:18:18 -04001699/*
Chris Masoncad321a2008-12-17 14:51:42 -05001700 * extent_io.c submission hook. This does the right thing for csum calculation
1701 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001702 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001703static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001704 int mirror_num, unsigned long bio_flags,
1705 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001706{
1707 struct btrfs_root *root = BTRFS_I(inode)->root;
1708 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001709 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001710 int metadata = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001711 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001712
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001713 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001714
Liu Bo83eea1f2012-07-10 05:28:39 -06001715 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001716 metadata = 2;
1717
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001718 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001719 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1720 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001721 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001722
Chris Masond20f7042008-12-08 16:58:54 -05001723 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001724 ret = btrfs_submit_compressed_read(inode, bio,
1725 mirror_num,
1726 bio_flags);
1727 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001728 } else if (!skip_sum) {
1729 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1730 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001731 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001732 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001733 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001734 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001735 /* csum items have already been cloned */
1736 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1737 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001738 /* we're doing a write, do the async checksumming */
Stefan Behrens61891922012-11-05 18:51:52 +01001739 ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001740 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001741 bio_flags, bio_offset,
1742 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001743 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001744 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001745 } else if (!skip_sum) {
1746 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
1747 if (ret)
1748 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001749 }
1750
Chris Mason0b86a832008-03-24 15:01:56 -04001751mapit:
Stefan Behrens61891922012-11-05 18:51:52 +01001752 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
1753
1754out:
1755 if (ret < 0)
1756 bio_endio(bio, ret);
1757 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001758}
Chris Mason6885f302008-02-20 16:11:05 -05001759
Chris Masond352ac62008-09-29 15:18:18 -04001760/*
1761 * given a list of ordered sums record them in the inode. This happens
1762 * at IO completion time based on sums calculated at bio submission time.
1763 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001764static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001765 struct inode *inode, u64 file_offset,
1766 struct list_head *list)
1767{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001768 struct btrfs_ordered_sum *sum;
1769
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001770 list_for_each_entry(sum, list, list) {
Miao Xie39847c42013-03-28 08:08:20 +00001771 trans->adding_csums = 1;
Chris Masond20f7042008-12-08 16:58:54 -05001772 btrfs_csum_file_blocks(trans,
1773 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Miao Xie39847c42013-03-28 08:08:20 +00001774 trans->adding_csums = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001775 }
1776 return 0;
1777}
1778
Josef Bacik2ac55d42010-02-03 19:33:23 +00001779int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1780 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001781{
Julia Lawall6c1500f2012-11-03 20:30:18 +00001782 WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04001783 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001784 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001785}
1786
Chris Masond352ac62008-09-29 15:18:18 -04001787/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001788struct btrfs_writepage_fixup {
1789 struct page *page;
1790 struct btrfs_work work;
1791};
1792
Christoph Hellwigb2950862008-12-02 09:54:17 -05001793static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001794{
1795 struct btrfs_writepage_fixup *fixup;
1796 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001797 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001798 struct page *page;
1799 struct inode *inode;
1800 u64 page_start;
1801 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001802 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001803
1804 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1805 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001806again:
Chris Mason247e7432008-07-17 12:53:51 -04001807 lock_page(page);
1808 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1809 ClearPageChecked(page);
1810 goto out_page;
1811 }
1812
1813 inode = page->mapping->host;
1814 page_start = page_offset(page);
1815 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1816
Josef Bacik2ac55d42010-02-03 19:33:23 +00001817 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001818 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001819
1820 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001821 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001822 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001823
1824 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1825 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001826 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1827 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001828 unlock_page(page);
1829 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001830 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001831 goto again;
1832 }
Chris Mason247e7432008-07-17 12:53:51 -04001833
Jeff Mahoney87826df2012-02-15 16:23:57 +01001834 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1835 if (ret) {
1836 mapping_set_error(page->mapping, ret);
1837 end_extent_writepage(page, ret, page_start, page_end);
1838 ClearPageChecked(page);
1839 goto out;
1840 }
1841
Josef Bacik2ac55d42010-02-03 19:33:23 +00001842 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001843 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001844 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001845out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001846 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1847 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001848out_page:
1849 unlock_page(page);
1850 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001851 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001852}
1853
1854/*
1855 * There are a few paths in the higher layers of the kernel that directly
1856 * set the page dirty bit without asking the filesystem if it is a
1857 * good idea. This causes problems because we want to make sure COW
1858 * properly happens and the data=ordered rules are followed.
1859 *
Chris Masonc8b97812008-10-29 14:49:59 -04001860 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001861 * hasn't been properly setup for IO. We kick off an async process
1862 * to fix it up. The async helper will wait for ordered extents, set
1863 * the delalloc bit and make it safe to write the page.
1864 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001865static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001866{
1867 struct inode *inode = page->mapping->host;
1868 struct btrfs_writepage_fixup *fixup;
1869 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001870
Chris Mason8b62b722009-09-02 16:53:46 -04001871 /* this page is properly in the ordered list */
1872 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001873 return 0;
1874
1875 if (PageChecked(page))
1876 return -EAGAIN;
1877
1878 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1879 if (!fixup)
1880 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001881
Chris Mason247e7432008-07-17 12:53:51 -04001882 SetPageChecked(page);
1883 page_cache_get(page);
1884 fixup->work.func = btrfs_writepage_fixup_worker;
1885 fixup->page = page;
1886 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001887 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001888}
1889
Yan Zhengd899e052008-10-30 14:25:28 -04001890static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1891 struct inode *inode, u64 file_pos,
1892 u64 disk_bytenr, u64 disk_num_bytes,
1893 u64 num_bytes, u64 ram_bytes,
1894 u8 compression, u8 encryption,
1895 u16 other_encoding, int extent_type)
1896{
1897 struct btrfs_root *root = BTRFS_I(inode)->root;
1898 struct btrfs_file_extent_item *fi;
1899 struct btrfs_path *path;
1900 struct extent_buffer *leaf;
1901 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04001902 int ret;
1903
1904 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001905 if (!path)
1906 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001907
Chris Masonb9473432009-03-13 11:00:37 -04001908 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001909
1910 /*
1911 * we may be replacing one extent in the tree with another.
1912 * The new extent is pinned in the extent map, and we don't want
1913 * to drop it from the cache until it is completely in the btree.
1914 *
1915 * So, tell btrfs_drop_extents to leave this extent in the cache.
1916 * the caller is expected to unpin it and allow it to be merged
1917 * with the others.
1918 */
Josef Bacik5dc562c2012-08-17 13:14:17 -04001919 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Josef Bacik26714852012-08-29 12:24:27 -04001920 file_pos + num_bytes, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001921 if (ret)
1922 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001923
Li Zefan33345d012011-04-20 10:31:50 +08001924 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001925 ins.offset = file_pos;
1926 ins.type = BTRFS_EXTENT_DATA_KEY;
1927 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001928 if (ret)
1929 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001930 leaf = path->nodes[0];
1931 fi = btrfs_item_ptr(leaf, path->slots[0],
1932 struct btrfs_file_extent_item);
1933 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1934 btrfs_set_file_extent_type(leaf, fi, extent_type);
1935 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1936 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1937 btrfs_set_file_extent_offset(leaf, fi, 0);
1938 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1939 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1940 btrfs_set_file_extent_compression(leaf, fi, compression);
1941 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1942 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001943
Yan Zhengd899e052008-10-30 14:25:28 -04001944 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04001945 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04001946
1947 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001948
1949 ins.objectid = disk_bytenr;
1950 ins.offset = disk_num_bytes;
1951 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001952 ret = btrfs_alloc_reserved_file_extent(trans, root,
1953 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001954 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001955out:
Yan Zhengd899e052008-10-30 14:25:28 -04001956 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001957
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001958 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001959}
1960
Liu Bo38c227d2013-01-29 03:18:40 +00001961/* snapshot-aware defrag */
1962struct sa_defrag_extent_backref {
1963 struct rb_node node;
1964 struct old_sa_defrag_extent *old;
1965 u64 root_id;
1966 u64 inum;
1967 u64 file_pos;
1968 u64 extent_offset;
1969 u64 num_bytes;
1970 u64 generation;
1971};
1972
1973struct old_sa_defrag_extent {
1974 struct list_head list;
1975 struct new_sa_defrag_extent *new;
1976
1977 u64 extent_offset;
1978 u64 bytenr;
1979 u64 offset;
1980 u64 len;
1981 int count;
1982};
1983
1984struct new_sa_defrag_extent {
1985 struct rb_root root;
1986 struct list_head head;
1987 struct btrfs_path *path;
1988 struct inode *inode;
1989 u64 file_pos;
1990 u64 len;
1991 u64 bytenr;
1992 u64 disk_len;
1993 u8 compress_type;
1994};
1995
1996static int backref_comp(struct sa_defrag_extent_backref *b1,
1997 struct sa_defrag_extent_backref *b2)
1998{
1999 if (b1->root_id < b2->root_id)
2000 return -1;
2001 else if (b1->root_id > b2->root_id)
2002 return 1;
2003
2004 if (b1->inum < b2->inum)
2005 return -1;
2006 else if (b1->inum > b2->inum)
2007 return 1;
2008
2009 if (b1->file_pos < b2->file_pos)
2010 return -1;
2011 else if (b1->file_pos > b2->file_pos)
2012 return 1;
2013
2014 /*
2015 * [------------------------------] ===> (a range of space)
2016 * |<--->| |<---->| =============> (fs/file tree A)
2017 * |<---------------------------->| ===> (fs/file tree B)
2018 *
2019 * A range of space can refer to two file extents in one tree while
2020 * refer to only one file extent in another tree.
2021 *
2022 * So we may process a disk offset more than one time(two extents in A)
2023 * and locate at the same extent(one extent in B), then insert two same
2024 * backrefs(both refer to the extent in B).
2025 */
2026 return 0;
2027}
2028
2029static void backref_insert(struct rb_root *root,
2030 struct sa_defrag_extent_backref *backref)
2031{
2032 struct rb_node **p = &root->rb_node;
2033 struct rb_node *parent = NULL;
2034 struct sa_defrag_extent_backref *entry;
2035 int ret;
2036
2037 while (*p) {
2038 parent = *p;
2039 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2040
2041 ret = backref_comp(backref, entry);
2042 if (ret < 0)
2043 p = &(*p)->rb_left;
2044 else
2045 p = &(*p)->rb_right;
2046 }
2047
2048 rb_link_node(&backref->node, parent, p);
2049 rb_insert_color(&backref->node, root);
2050}
2051
2052/*
2053 * Note the backref might has changed, and in this case we just return 0.
2054 */
2055static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2056 void *ctx)
2057{
2058 struct btrfs_file_extent_item *extent;
2059 struct btrfs_fs_info *fs_info;
2060 struct old_sa_defrag_extent *old = ctx;
2061 struct new_sa_defrag_extent *new = old->new;
2062 struct btrfs_path *path = new->path;
2063 struct btrfs_key key;
2064 struct btrfs_root *root;
2065 struct sa_defrag_extent_backref *backref;
2066 struct extent_buffer *leaf;
2067 struct inode *inode = new->inode;
2068 int slot;
2069 int ret;
2070 u64 extent_offset;
2071 u64 num_bytes;
2072
2073 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
2074 inum == btrfs_ino(inode))
2075 return 0;
2076
2077 key.objectid = root_id;
2078 key.type = BTRFS_ROOT_ITEM_KEY;
2079 key.offset = (u64)-1;
2080
2081 fs_info = BTRFS_I(inode)->root->fs_info;
2082 root = btrfs_read_fs_root_no_name(fs_info, &key);
2083 if (IS_ERR(root)) {
2084 if (PTR_ERR(root) == -ENOENT)
2085 return 0;
2086 WARN_ON(1);
2087 pr_debug("inum=%llu, offset=%llu, root_id=%llu\n",
2088 inum, offset, root_id);
2089 return PTR_ERR(root);
2090 }
2091
2092 key.objectid = inum;
2093 key.type = BTRFS_EXTENT_DATA_KEY;
2094 if (offset > (u64)-1 << 32)
2095 key.offset = 0;
2096 else
2097 key.offset = offset;
2098
2099 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2100 if (ret < 0) {
2101 WARN_ON(1);
2102 return ret;
2103 }
2104
2105 while (1) {
2106 cond_resched();
2107
2108 leaf = path->nodes[0];
2109 slot = path->slots[0];
2110
2111 if (slot >= btrfs_header_nritems(leaf)) {
2112 ret = btrfs_next_leaf(root, path);
2113 if (ret < 0) {
2114 goto out;
2115 } else if (ret > 0) {
2116 ret = 0;
2117 goto out;
2118 }
2119 continue;
2120 }
2121
2122 path->slots[0]++;
2123
2124 btrfs_item_key_to_cpu(leaf, &key, slot);
2125
2126 if (key.objectid > inum)
2127 goto out;
2128
2129 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2130 continue;
2131
2132 extent = btrfs_item_ptr(leaf, slot,
2133 struct btrfs_file_extent_item);
2134
2135 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2136 continue;
2137
2138 extent_offset = btrfs_file_extent_offset(leaf, extent);
2139 if (key.offset - extent_offset != offset)
2140 continue;
2141
2142 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
2143 if (extent_offset >= old->extent_offset + old->offset +
2144 old->len || extent_offset + num_bytes <=
2145 old->extent_offset + old->offset)
2146 continue;
2147
2148 break;
2149 }
2150
2151 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2152 if (!backref) {
2153 ret = -ENOENT;
2154 goto out;
2155 }
2156
2157 backref->root_id = root_id;
2158 backref->inum = inum;
2159 backref->file_pos = offset + extent_offset;
2160 backref->num_bytes = num_bytes;
2161 backref->extent_offset = extent_offset;
2162 backref->generation = btrfs_file_extent_generation(leaf, extent);
2163 backref->old = old;
2164 backref_insert(&new->root, backref);
2165 old->count++;
2166out:
2167 btrfs_release_path(path);
2168 WARN_ON(ret);
2169 return ret;
2170}
2171
2172static noinline bool record_extent_backrefs(struct btrfs_path *path,
2173 struct new_sa_defrag_extent *new)
2174{
2175 struct btrfs_fs_info *fs_info = BTRFS_I(new->inode)->root->fs_info;
2176 struct old_sa_defrag_extent *old, *tmp;
2177 int ret;
2178
2179 new->path = path;
2180
2181 list_for_each_entry_safe(old, tmp, &new->head, list) {
2182 ret = iterate_inodes_from_logical(old->bytenr, fs_info,
2183 path, record_one_backref,
2184 old);
2185 BUG_ON(ret < 0 && ret != -ENOENT);
2186
2187 /* no backref to be processed for this extent */
2188 if (!old->count) {
2189 list_del(&old->list);
2190 kfree(old);
2191 }
2192 }
2193
2194 if (list_empty(&new->head))
2195 return false;
2196
2197 return true;
2198}
2199
2200static int relink_is_mergable(struct extent_buffer *leaf,
2201 struct btrfs_file_extent_item *fi,
2202 u64 disk_bytenr)
2203{
2204 if (btrfs_file_extent_disk_bytenr(leaf, fi) != disk_bytenr)
2205 return 0;
2206
2207 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2208 return 0;
2209
2210 if (btrfs_file_extent_compression(leaf, fi) ||
2211 btrfs_file_extent_encryption(leaf, fi) ||
2212 btrfs_file_extent_other_encoding(leaf, fi))
2213 return 0;
2214
2215 return 1;
2216}
2217
2218/*
2219 * Note the backref might has changed, and in this case we just return 0.
2220 */
2221static noinline int relink_extent_backref(struct btrfs_path *path,
2222 struct sa_defrag_extent_backref *prev,
2223 struct sa_defrag_extent_backref *backref)
2224{
2225 struct btrfs_file_extent_item *extent;
2226 struct btrfs_file_extent_item *item;
2227 struct btrfs_ordered_extent *ordered;
2228 struct btrfs_trans_handle *trans;
2229 struct btrfs_fs_info *fs_info;
2230 struct btrfs_root *root;
2231 struct btrfs_key key;
2232 struct extent_buffer *leaf;
2233 struct old_sa_defrag_extent *old = backref->old;
2234 struct new_sa_defrag_extent *new = old->new;
2235 struct inode *src_inode = new->inode;
2236 struct inode *inode;
2237 struct extent_state *cached = NULL;
2238 int ret = 0;
2239 u64 start;
2240 u64 len;
2241 u64 lock_start;
2242 u64 lock_end;
2243 bool merge = false;
2244 int index;
2245
2246 if (prev && prev->root_id == backref->root_id &&
2247 prev->inum == backref->inum &&
2248 prev->file_pos + prev->num_bytes == backref->file_pos)
2249 merge = true;
2250
2251 /* step 1: get root */
2252 key.objectid = backref->root_id;
2253 key.type = BTRFS_ROOT_ITEM_KEY;
2254 key.offset = (u64)-1;
2255
2256 fs_info = BTRFS_I(src_inode)->root->fs_info;
2257 index = srcu_read_lock(&fs_info->subvol_srcu);
2258
2259 root = btrfs_read_fs_root_no_name(fs_info, &key);
2260 if (IS_ERR(root)) {
2261 srcu_read_unlock(&fs_info->subvol_srcu, index);
2262 if (PTR_ERR(root) == -ENOENT)
2263 return 0;
2264 return PTR_ERR(root);
2265 }
2266 if (btrfs_root_refs(&root->root_item) == 0) {
2267 srcu_read_unlock(&fs_info->subvol_srcu, index);
2268 /* parse ENOENT to 0 */
2269 return 0;
2270 }
2271
2272 /* step 2: get inode */
2273 key.objectid = backref->inum;
2274 key.type = BTRFS_INODE_ITEM_KEY;
2275 key.offset = 0;
2276
2277 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2278 if (IS_ERR(inode)) {
2279 srcu_read_unlock(&fs_info->subvol_srcu, index);
2280 return 0;
2281 }
2282
2283 srcu_read_unlock(&fs_info->subvol_srcu, index);
2284
2285 /* step 3: relink backref */
2286 lock_start = backref->file_pos;
2287 lock_end = backref->file_pos + backref->num_bytes - 1;
2288 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2289 0, &cached);
2290
2291 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2292 if (ordered) {
2293 btrfs_put_ordered_extent(ordered);
2294 goto out_unlock;
2295 }
2296
2297 trans = btrfs_join_transaction(root);
2298 if (IS_ERR(trans)) {
2299 ret = PTR_ERR(trans);
2300 goto out_unlock;
2301 }
2302
2303 key.objectid = backref->inum;
2304 key.type = BTRFS_EXTENT_DATA_KEY;
2305 key.offset = backref->file_pos;
2306
2307 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2308 if (ret < 0) {
2309 goto out_free_path;
2310 } else if (ret > 0) {
2311 ret = 0;
2312 goto out_free_path;
2313 }
2314
2315 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2316 struct btrfs_file_extent_item);
2317
2318 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2319 backref->generation)
2320 goto out_free_path;
2321
2322 btrfs_release_path(path);
2323
2324 start = backref->file_pos;
2325 if (backref->extent_offset < old->extent_offset + old->offset)
2326 start += old->extent_offset + old->offset -
2327 backref->extent_offset;
2328
2329 len = min(backref->extent_offset + backref->num_bytes,
2330 old->extent_offset + old->offset + old->len);
2331 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2332
2333 ret = btrfs_drop_extents(trans, root, inode, start,
2334 start + len, 1);
2335 if (ret)
2336 goto out_free_path;
2337again:
2338 key.objectid = btrfs_ino(inode);
2339 key.type = BTRFS_EXTENT_DATA_KEY;
2340 key.offset = start;
2341
Liu Boa09a0a72013-03-11 09:20:58 +00002342 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002343 if (merge) {
2344 struct btrfs_file_extent_item *fi;
2345 u64 extent_len;
2346 struct btrfs_key found_key;
2347
2348 ret = btrfs_search_slot(trans, root, &key, path, 1, 1);
2349 if (ret < 0)
2350 goto out_free_path;
2351
2352 path->slots[0]--;
2353 leaf = path->nodes[0];
2354 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2355
2356 fi = btrfs_item_ptr(leaf, path->slots[0],
2357 struct btrfs_file_extent_item);
2358 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2359
2360 if (relink_is_mergable(leaf, fi, new->bytenr) &&
2361 extent_len + found_key.offset == start) {
2362 btrfs_set_file_extent_num_bytes(leaf, fi,
2363 extent_len + len);
2364 btrfs_mark_buffer_dirty(leaf);
2365 inode_add_bytes(inode, len);
2366
2367 ret = 1;
2368 goto out_free_path;
2369 } else {
2370 merge = false;
2371 btrfs_release_path(path);
2372 goto again;
2373 }
2374 }
2375
2376 ret = btrfs_insert_empty_item(trans, root, path, &key,
2377 sizeof(*extent));
2378 if (ret) {
2379 btrfs_abort_transaction(trans, root, ret);
2380 goto out_free_path;
2381 }
2382
2383 leaf = path->nodes[0];
2384 item = btrfs_item_ptr(leaf, path->slots[0],
2385 struct btrfs_file_extent_item);
2386 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2387 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2388 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2389 btrfs_set_file_extent_num_bytes(leaf, item, len);
2390 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2391 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2392 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2393 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2394 btrfs_set_file_extent_encryption(leaf, item, 0);
2395 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2396
2397 btrfs_mark_buffer_dirty(leaf);
2398 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002399 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002400
2401 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
2402 new->disk_len, 0,
2403 backref->root_id, backref->inum,
2404 new->file_pos, 0); /* start - extent_offset */
2405 if (ret) {
2406 btrfs_abort_transaction(trans, root, ret);
2407 goto out_free_path;
2408 }
2409
2410 ret = 1;
2411out_free_path:
2412 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002413 path->leave_spinning = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002414 btrfs_end_transaction(trans, root);
2415out_unlock:
2416 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2417 &cached, GFP_NOFS);
2418 iput(inode);
2419 return ret;
2420}
2421
Liu Bof5749e32013-10-29 10:45:05 +08002422static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2423{
2424 struct old_sa_defrag_extent *old, *tmp;
2425
2426 if (!new)
2427 return;
2428
2429 list_for_each_entry_safe(old, tmp, &new->head, list) {
2430 list_del(&old->list);
2431 kfree(old);
2432 }
2433 kfree(new);
2434}
2435
Liu Bo38c227d2013-01-29 03:18:40 +00002436static void relink_file_extents(struct new_sa_defrag_extent *new)
2437{
2438 struct btrfs_path *path;
Liu Bo38c227d2013-01-29 03:18:40 +00002439 struct sa_defrag_extent_backref *backref;
2440 struct sa_defrag_extent_backref *prev = NULL;
2441 struct inode *inode;
2442 struct btrfs_root *root;
2443 struct rb_node *node;
2444 int ret;
2445
2446 inode = new->inode;
2447 root = BTRFS_I(inode)->root;
2448
2449 path = btrfs_alloc_path();
2450 if (!path)
2451 return;
2452
2453 if (!record_extent_backrefs(path, new)) {
2454 btrfs_free_path(path);
2455 goto out;
2456 }
2457 btrfs_release_path(path);
2458
2459 while (1) {
2460 node = rb_first(&new->root);
2461 if (!node)
2462 break;
2463 rb_erase(node, &new->root);
2464
2465 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2466
2467 ret = relink_extent_backref(path, prev, backref);
2468 WARN_ON(ret < 0);
2469
2470 kfree(prev);
2471
2472 if (ret == 1)
2473 prev = backref;
2474 else
2475 prev = NULL;
2476 cond_resched();
2477 }
2478 kfree(prev);
2479
2480 btrfs_free_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002481out:
Liu Bof5749e32013-10-29 10:45:05 +08002482 free_sa_defrag_extent(new);
2483
Liu Bo38c227d2013-01-29 03:18:40 +00002484 atomic_dec(&root->fs_info->defrag_running);
2485 wake_up(&root->fs_info->transaction_wait);
Liu Bo38c227d2013-01-29 03:18:40 +00002486}
2487
2488static struct new_sa_defrag_extent *
2489record_old_file_extents(struct inode *inode,
2490 struct btrfs_ordered_extent *ordered)
2491{
2492 struct btrfs_root *root = BTRFS_I(inode)->root;
2493 struct btrfs_path *path;
2494 struct btrfs_key key;
Liu Bof5749e32013-10-29 10:45:05 +08002495 struct old_sa_defrag_extent *old;
Liu Bo38c227d2013-01-29 03:18:40 +00002496 struct new_sa_defrag_extent *new;
2497 int ret;
2498
2499 new = kmalloc(sizeof(*new), GFP_NOFS);
2500 if (!new)
2501 return NULL;
2502
2503 new->inode = inode;
2504 new->file_pos = ordered->file_offset;
2505 new->len = ordered->len;
2506 new->bytenr = ordered->start;
2507 new->disk_len = ordered->disk_len;
2508 new->compress_type = ordered->compress_type;
2509 new->root = RB_ROOT;
2510 INIT_LIST_HEAD(&new->head);
2511
2512 path = btrfs_alloc_path();
2513 if (!path)
2514 goto out_kfree;
2515
2516 key.objectid = btrfs_ino(inode);
2517 key.type = BTRFS_EXTENT_DATA_KEY;
2518 key.offset = new->file_pos;
2519
2520 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2521 if (ret < 0)
2522 goto out_free_path;
2523 if (ret > 0 && path->slots[0] > 0)
2524 path->slots[0]--;
2525
2526 /* find out all the old extents for the file range */
2527 while (1) {
2528 struct btrfs_file_extent_item *extent;
2529 struct extent_buffer *l;
2530 int slot;
2531 u64 num_bytes;
2532 u64 offset;
2533 u64 end;
2534 u64 disk_bytenr;
2535 u64 extent_offset;
2536
2537 l = path->nodes[0];
2538 slot = path->slots[0];
2539
2540 if (slot >= btrfs_header_nritems(l)) {
2541 ret = btrfs_next_leaf(root, path);
2542 if (ret < 0)
Liu Bof5749e32013-10-29 10:45:05 +08002543 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002544 else if (ret > 0)
2545 break;
2546 continue;
2547 }
2548
2549 btrfs_item_key_to_cpu(l, &key, slot);
2550
2551 if (key.objectid != btrfs_ino(inode))
2552 break;
2553 if (key.type != BTRFS_EXTENT_DATA_KEY)
2554 break;
2555 if (key.offset >= new->file_pos + new->len)
2556 break;
2557
2558 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2559
2560 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2561 if (key.offset + num_bytes < new->file_pos)
2562 goto next;
2563
2564 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2565 if (!disk_bytenr)
2566 goto next;
2567
2568 extent_offset = btrfs_file_extent_offset(l, extent);
2569
2570 old = kmalloc(sizeof(*old), GFP_NOFS);
2571 if (!old)
Liu Bof5749e32013-10-29 10:45:05 +08002572 goto out_free_path;
Liu Bo38c227d2013-01-29 03:18:40 +00002573
2574 offset = max(new->file_pos, key.offset);
2575 end = min(new->file_pos + new->len, key.offset + num_bytes);
2576
2577 old->bytenr = disk_bytenr;
2578 old->extent_offset = extent_offset;
2579 old->offset = offset - key.offset;
2580 old->len = end - offset;
2581 old->new = new;
2582 old->count = 0;
2583 list_add_tail(&old->list, &new->head);
2584next:
2585 path->slots[0]++;
2586 cond_resched();
2587 }
2588
2589 btrfs_free_path(path);
2590 atomic_inc(&root->fs_info->defrag_running);
2591
2592 return new;
2593
Liu Bo38c227d2013-01-29 03:18:40 +00002594out_free_path:
2595 btrfs_free_path(path);
2596out_kfree:
Liu Bof5749e32013-10-29 10:45:05 +08002597 free_sa_defrag_extent(new);
Liu Bo38c227d2013-01-29 03:18:40 +00002598 return NULL;
2599}
2600
Chris Mason5d13a982009-03-13 11:41:46 -04002601/*
2602 * helper function for btrfs_finish_ordered_io, this
2603 * just reads in some of the csum leaves to prime them into ram
2604 * before we start the transaction. It limits the amount of btree
2605 * reads required while inside the transaction.
2606 */
Chris Masond352ac62008-09-29 15:18:18 -04002607/* as ordered data IO finishes, this gets called so we can finish
2608 * an ordered extent if the range of bytes in the file it covers are
2609 * fully written.
2610 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002611static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002612{
Josef Bacik5fd02042012-05-02 14:00:54 -04002613 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002614 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002615 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002616 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002617 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002618 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002619 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002620 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08002621 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002622
Liu Bo83eea1f2012-07-10 05:28:39 -06002623 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002624
Josef Bacik5fd02042012-05-02 14:00:54 -04002625 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2626 ret = -EIO;
2627 goto out;
2628 }
2629
Yan, Zhengc2167752009-11-12 09:34:21 +00002630 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002631 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Josef Bacik6c760c02012-11-09 10:53:21 -05002632 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2633 if (nolock)
2634 trans = btrfs_join_transaction_nolock(root);
2635 else
2636 trans = btrfs_join_transaction(root);
2637 if (IS_ERR(trans)) {
2638 ret = PTR_ERR(trans);
2639 trans = NULL;
2640 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002641 }
Josef Bacik6c760c02012-11-09 10:53:21 -05002642 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
2643 ret = btrfs_update_inode_fallback(trans, root, inode);
2644 if (ret) /* -ENOMEM or corruption */
2645 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002646 goto out;
2647 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002648
Josef Bacik2ac55d42010-02-03 19:33:23 +00002649 lock_extent_bits(io_tree, ordered_extent->file_offset,
2650 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002651 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002652
Liu Bo38c227d2013-01-29 03:18:40 +00002653 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2654 ordered_extent->file_offset + ordered_extent->len - 1,
2655 EXTENT_DEFRAG, 1, cached_state);
2656 if (ret) {
2657 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
Josef Bacika082f872014-01-29 16:05:30 -05002658 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
Liu Bo38c227d2013-01-29 03:18:40 +00002659 /* the inode is shared */
2660 new = record_old_file_extents(inode, ordered_extent);
2661
2662 clear_extent_bit(io_tree, ordered_extent->file_offset,
2663 ordered_extent->file_offset + ordered_extent->len - 1,
2664 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2665 }
2666
Josef Bacik0cb59c92010-07-02 12:14:14 -04002667 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002668 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002669 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002670 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002671 if (IS_ERR(trans)) {
2672 ret = PTR_ERR(trans);
2673 trans = NULL;
2674 goto out_unlock;
2675 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002676 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002677
Chris Masonc8b97812008-10-29 14:49:59 -04002678 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002679 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002680 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002681 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00002682 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04002683 ordered_extent->file_offset,
2684 ordered_extent->file_offset +
2685 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04002686 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04002687 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04002688 ret = insert_reserved_file_extent(trans, inode,
2689 ordered_extent->file_offset,
2690 ordered_extent->start,
2691 ordered_extent->disk_len,
2692 ordered_extent->len,
2693 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08002694 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04002695 BTRFS_FILE_EXTENT_REG);
Yan Zhengd899e052008-10-30 14:25:28 -04002696 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002697 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
2698 ordered_extent->file_offset, ordered_extent->len,
2699 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002700 if (ret < 0) {
2701 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04002702 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002703 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002704
Chris Masone6dcd2d2008-07-17 12:53:50 -04002705 add_pending_csums(trans, inode, ordered_extent->file_offset,
2706 &ordered_extent->list);
2707
Josef Bacik6c760c02012-11-09 10:53:21 -05002708 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2709 ret = btrfs_update_inode_fallback(trans, root, inode);
2710 if (ret) { /* -ENOMEM or corruption */
2711 btrfs_abort_transaction(trans, root, ret);
2712 goto out_unlock;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002713 }
2714 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04002715out_unlock:
2716 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2717 ordered_extent->file_offset +
2718 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00002719out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002720 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04002721 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06002722 if (trans)
2723 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002724
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002725 if (ret) {
Josef Bacik5fd02042012-05-02 14:00:54 -04002726 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
2727 ordered_extent->file_offset +
2728 ordered_extent->len - 1, NULL, GFP_NOFS);
2729
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002730 /*
2731 * If the ordered extent had an IOERR or something else went
2732 * wrong we need to return the space for this ordered extent
2733 * back to the allocator.
2734 */
2735 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2736 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
2737 btrfs_free_reserved_extent(root, ordered_extent->start,
2738 ordered_extent->disk_len);
2739 }
2740
2741
Josef Bacik5fd02042012-05-02 14:00:54 -04002742 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08002743 * This needs to be done to make sure anybody waiting knows we are done
2744 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04002745 */
2746 btrfs_remove_ordered_extent(inode, ordered_extent);
2747
Liu Bo38c227d2013-01-29 03:18:40 +00002748 /* for snapshot-aware defrag */
Liu Bof5749e32013-10-29 10:45:05 +08002749 if (new) {
2750 if (ret) {
2751 free_sa_defrag_extent(new);
2752 atomic_dec(&root->fs_info->defrag_running);
2753 } else {
2754 relink_file_extents(new);
2755 }
2756 }
Liu Bo38c227d2013-01-29 03:18:40 +00002757
Chris Masone6dcd2d2008-07-17 12:53:50 -04002758 /* once for us */
2759 btrfs_put_ordered_extent(ordered_extent);
2760 /* once for the tree */
2761 btrfs_put_ordered_extent(ordered_extent);
2762
Josef Bacik5fd02042012-05-02 14:00:54 -04002763 return ret;
2764}
2765
2766static void finish_ordered_fn(struct btrfs_work *work)
2767{
2768 struct btrfs_ordered_extent *ordered_extent;
2769 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
2770 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002771}
2772
Christoph Hellwigb2950862008-12-02 09:54:17 -05002773static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04002774 struct extent_state *state, int uptodate)
2775{
Josef Bacik5fd02042012-05-02 14:00:54 -04002776 struct inode *inode = page->mapping->host;
2777 struct btrfs_root *root = BTRFS_I(inode)->root;
2778 struct btrfs_ordered_extent *ordered_extent = NULL;
2779 struct btrfs_workers *workers;
2780
liubo1abe9b82011-03-24 11:18:59 +00002781 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2782
Chris Mason8b62b722009-09-02 16:53:46 -04002783 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002784 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2785 end - start + 1, uptodate))
2786 return 0;
2787
2788 ordered_extent->work.func = finish_ordered_fn;
2789 ordered_extent->work.flags = 0;
2790
Liu Bo83eea1f2012-07-10 05:28:39 -06002791 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002792 workers = &root->fs_info->endio_freespace_worker;
2793 else
2794 workers = &root->fs_info->endio_write_workers;
2795 btrfs_queue_worker(workers, &ordered_extent->work);
2796
2797 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002798}
2799
Chris Masond352ac62008-09-29 15:18:18 -04002800/*
Chris Masond352ac62008-09-29 15:18:18 -04002801 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002802 * if there's a match, we allow the bio to finish. If not, the code in
2803 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002804 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002805static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002806 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002807{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002808 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04002809 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002810 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002811 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002812 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002813 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002814 struct btrfs_root *root = BTRFS_I(inode)->root;
2815 u32 csum = ~(u32)0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002816 static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
2817 DEFAULT_RATELIMIT_BURST);
Chris Masond1310b22008-01-24 16:13:08 -05002818
Chris Masond20f7042008-12-08 16:58:54 -05002819 if (PageChecked(page)) {
2820 ClearPageChecked(page);
2821 goto good;
2822 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002823
2824 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002825 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002826
Yan Zheng17d217f2008-12-12 10:03:38 -05002827 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002828 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002829 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2830 GFP_NOFS);
2831 return 0;
2832 }
2833
Yanc2e639f2008-02-04 08:57:25 -05002834 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002835 private = state->private;
2836 ret = 0;
2837 } else {
2838 ret = get_state_private(io_tree, start, &private);
2839 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002840 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002841 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002842 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002843
Liu Bob0496682013-03-14 14:57:45 +00002844 csum = btrfs_csum_data(kaddr + offset, csum, end - start + 1);
Chris Masonff79f812007-10-15 16:22:25 -04002845 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002846 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002847 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002848
Cong Wang7ac687d2011-11-25 23:14:28 +08002849 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002850good:
Chris Mason07157aa2007-08-30 08:50:51 -04002851 return 0;
2852
2853zeroit:
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002854 if (__ratelimit(&_rs))
2855 btrfs_info(root->fs_info, "csum failed ino %llu off %llu csum %u private %llu",
2856 (unsigned long long)btrfs_ino(page->mapping->host),
2857 (unsigned long long)start, csum,
2858 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002859 memset(kaddr + offset, 1, end - start + 1);
2860 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002861 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002862 if (private == 0)
2863 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002864 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002865}
Chris Masonb888db22007-08-27 16:49:44 -04002866
Yan, Zheng24bbcf042009-11-12 09:36:34 +00002867struct delayed_iput {
2868 struct list_head list;
2869 struct inode *inode;
2870};
2871
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002872/* JDM: If this is fs-wide, why can't we add a pointer to
2873 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf042009-11-12 09:36:34 +00002874void btrfs_add_delayed_iput(struct inode *inode)
2875{
2876 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2877 struct delayed_iput *delayed;
2878
2879 if (atomic_add_unless(&inode->i_count, -1, 1))
2880 return;
2881
2882 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2883 delayed->inode = inode;
2884
2885 spin_lock(&fs_info->delayed_iput_lock);
2886 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2887 spin_unlock(&fs_info->delayed_iput_lock);
2888}
2889
2890void btrfs_run_delayed_iputs(struct btrfs_root *root)
2891{
2892 LIST_HEAD(list);
2893 struct btrfs_fs_info *fs_info = root->fs_info;
2894 struct delayed_iput *delayed;
2895 int empty;
2896
2897 spin_lock(&fs_info->delayed_iput_lock);
2898 empty = list_empty(&fs_info->delayed_iputs);
2899 spin_unlock(&fs_info->delayed_iput_lock);
2900 if (empty)
2901 return;
2902
Yan, Zheng24bbcf042009-11-12 09:36:34 +00002903 spin_lock(&fs_info->delayed_iput_lock);
2904 list_splice_init(&fs_info->delayed_iputs, &list);
2905 spin_unlock(&fs_info->delayed_iput_lock);
2906
2907 while (!list_empty(&list)) {
2908 delayed = list_entry(list.next, struct delayed_iput, list);
2909 list_del(&delayed->list);
2910 iput(delayed->inode);
2911 kfree(delayed);
2912 }
Yan, Zheng24bbcf042009-11-12 09:36:34 +00002913}
2914
Yan, Zhengd68fc572010-05-16 10:49:58 -04002915/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002916 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002917 * files in the subvolume, it removes orphan item and frees block_rsv
2918 * structure.
2919 */
2920void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2921 struct btrfs_root *root)
2922{
Josef Bacik90290e12011-12-02 15:44:12 -05002923 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002924 int ret;
2925
Josef Bacik8a35d952012-05-23 14:26:42 -04002926 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002927 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2928 return;
2929
Josef Bacik90290e12011-12-02 15:44:12 -05002930 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002931 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002932 spin_unlock(&root->orphan_lock);
2933 return;
2934 }
2935
2936 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2937 spin_unlock(&root->orphan_lock);
2938 return;
2939 }
2940
2941 block_rsv = root->orphan_block_rsv;
2942 root->orphan_block_rsv = NULL;
2943 spin_unlock(&root->orphan_lock);
2944
Yan, Zhengd68fc572010-05-16 10:49:58 -04002945 if (root->orphan_item_inserted &&
2946 btrfs_root_refs(&root->root_item) > 0) {
2947 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2948 root->root_key.objectid);
2949 BUG_ON(ret);
2950 root->orphan_item_inserted = 0;
2951 }
2952
Josef Bacik90290e12011-12-02 15:44:12 -05002953 if (block_rsv) {
2954 WARN_ON(block_rsv->size > 0);
2955 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002956 }
2957}
2958
2959/*
Josef Bacik7b128762008-07-24 12:17:14 -04002960 * This creates an orphan entry for the given inode in case something goes
2961 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002962 *
2963 * NOTE: caller of this function should reserve 5 units of metadata for
2964 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002965 */
2966int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2967{
2968 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002969 struct btrfs_block_rsv *block_rsv = NULL;
2970 int reserve = 0;
2971 int insert = 0;
2972 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002973
Yan, Zhengd68fc572010-05-16 10:49:58 -04002974 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06002975 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002976 if (!block_rsv)
2977 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002978 }
2979
Yan, Zhengd68fc572010-05-16 10:49:58 -04002980 spin_lock(&root->orphan_lock);
2981 if (!root->orphan_block_rsv) {
2982 root->orphan_block_rsv = block_rsv;
2983 } else if (block_rsv) {
2984 btrfs_free_block_rsv(root, block_rsv);
2985 block_rsv = NULL;
2986 }
Josef Bacik7b128762008-07-24 12:17:14 -04002987
Josef Bacik8a35d952012-05-23 14:26:42 -04002988 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2989 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002990#if 0
2991 /*
2992 * For proper ENOSPC handling, we should do orphan
2993 * cleanup when mounting. But this introduces backward
2994 * compatibility issue.
2995 */
2996 if (!xchg(&root->orphan_item_inserted, 1))
2997 insert = 2;
2998 else
2999 insert = 1;
3000#endif
3001 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06003002 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003003 }
Josef Bacik7b128762008-07-24 12:17:14 -04003004
Josef Bacik72ac3c02012-05-23 14:13:11 -04003005 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3006 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003007 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003008 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003009
Yan, Zhengd68fc572010-05-16 10:49:58 -04003010 /* grab metadata reservation from transaction handle */
3011 if (reserve) {
3012 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003013 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04003014 }
3015
3016 /* insert an orphan item to track this unlinked/truncated file */
3017 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08003018 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003019 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04003020 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3021 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003022 btrfs_abort_transaction(trans, root, ret);
3023 return ret;
3024 }
3025 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003026 }
3027
3028 /* insert an orphan item to track subvolume contains orphan files */
3029 if (insert >= 2) {
3030 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
3031 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003032 if (ret && ret != -EEXIST) {
3033 btrfs_abort_transaction(trans, root, ret);
3034 return ret;
3035 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003036 }
3037 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003038}
3039
3040/*
3041 * We have done the truncate/delete so we can go ahead and remove the orphan
3042 * item for this particular inode.
3043 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003044static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
3045 struct inode *inode)
Josef Bacik7b128762008-07-24 12:17:14 -04003046{
3047 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003048 int delete_item = 0;
3049 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003050 int ret = 0;
3051
Yan, Zhengd68fc572010-05-16 10:49:58 -04003052 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003053 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3054 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003055 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04003056
Josef Bacik72ac3c02012-05-23 14:13:11 -04003057 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3058 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003059 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003060 spin_unlock(&root->orphan_lock);
3061
3062 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08003063 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003064 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04003065 }
3066
Josef Bacik8a35d952012-05-23 14:26:42 -04003067 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003068 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04003069 atomic_dec(&root->orphan_inodes);
3070 }
Josef Bacik7b128762008-07-24 12:17:14 -04003071
Yan, Zhengd68fc572010-05-16 10:49:58 -04003072 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003073}
3074
3075/*
3076 * this cleans up any orphans that may be left on the list from the last use
3077 * of this root.
3078 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003079int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003080{
3081 struct btrfs_path *path;
3082 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003083 struct btrfs_key key, found_key;
3084 struct btrfs_trans_handle *trans;
3085 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003086 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003087 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3088
Yan, Zhengd68fc572010-05-16 10:49:58 -04003089 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003090 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003091
3092 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003093 if (!path) {
3094 ret = -ENOMEM;
3095 goto out;
3096 }
Josef Bacik7b128762008-07-24 12:17:14 -04003097 path->reada = -1;
3098
3099 key.objectid = BTRFS_ORPHAN_OBJECTID;
3100 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
3101 key.offset = (u64)-1;
3102
Josef Bacik7b128762008-07-24 12:17:14 -04003103 while (1) {
3104 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003105 if (ret < 0)
3106 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003107
3108 /*
3109 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003110 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003111 * find the key and see if we have stuff that matches
3112 */
3113 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003114 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003115 if (path->slots[0] == 0)
3116 break;
3117 path->slots[0]--;
3118 }
3119
3120 /* pull out the item */
3121 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003122 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3123
3124 /* make sure the item matches what we want */
3125 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3126 break;
3127 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
3128 break;
3129
3130 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003131 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003132
3133 /*
3134 * this is where we are basically btrfs_lookup, without the
3135 * crossing root thing. we store the inode number in the
3136 * offset of the orphan item.
3137 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003138
3139 if (found_key.offset == last_objectid) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003140 btrfs_err(root->fs_info,
3141 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003142 ret = -EINVAL;
3143 goto out;
3144 }
3145
3146 last_objectid = found_key.offset;
3147
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003148 found_key.objectid = found_key.offset;
3149 found_key.type = BTRFS_INODE_ITEM_KEY;
3150 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00003151 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04003152 ret = PTR_RET(inode);
3153 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003154 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003155
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003156 if (ret == -ESTALE && root == root->fs_info->tree_root) {
3157 struct btrfs_root *dead_root;
3158 struct btrfs_fs_info *fs_info = root->fs_info;
3159 int is_dead_root = 0;
3160
3161 /*
3162 * this is an orphan in the tree root. Currently these
3163 * could come from 2 sources:
3164 * a) a snapshot deletion in progress
3165 * b) a free space cache inode
3166 * We need to distinguish those two, as the snapshot
3167 * orphan must not get deleted.
3168 * find_dead_roots already ran before us, so if this
3169 * is a snapshot deletion, we should find the root
3170 * in the dead_roots list
3171 */
3172 spin_lock(&fs_info->trans_lock);
3173 list_for_each_entry(dead_root, &fs_info->dead_roots,
3174 root_list) {
3175 if (dead_root->root_key.objectid ==
3176 found_key.objectid) {
3177 is_dead_root = 1;
3178 break;
3179 }
3180 }
3181 spin_unlock(&fs_info->trans_lock);
3182 if (is_dead_root) {
3183 /* prevent this orphan from being found again */
3184 key.offset = found_key.objectid - 1;
3185 continue;
3186 }
3187 }
Josef Bacika8c9e572011-09-21 16:55:59 -04003188 /*
3189 * Inode is already gone but the orphan item is still there,
3190 * kill the orphan item.
3191 */
3192 if (ret == -ESTALE) {
3193 trans = btrfs_start_transaction(root, 1);
3194 if (IS_ERR(trans)) {
3195 ret = PTR_ERR(trans);
3196 goto out;
3197 }
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003198 btrfs_debug(root->fs_info, "auto deleting %Lu",
3199 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003200 ret = btrfs_del_orphan_item(trans, root,
3201 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003202 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04003203 btrfs_end_transaction(trans, root);
3204 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003205 }
Josef Bacik7b128762008-07-24 12:17:14 -04003206
Josef Bacik7b128762008-07-24 12:17:14 -04003207 /*
3208 * add this inode to the orphan list so btrfs_orphan_del does
3209 * the proper thing when we hit it
3210 */
Josef Bacik8a35d952012-05-23 14:26:42 -04003211 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3212 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05003213 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04003214
Josef Bacik7b128762008-07-24 12:17:14 -04003215 /* if we have links, this was a truncate, lets do that */
3216 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05003217 if (!S_ISREG(inode->i_mode)) {
3218 WARN_ON(1);
3219 iput(inode);
3220 continue;
3221 }
Josef Bacik7b128762008-07-24 12:17:14 -04003222 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05003223
3224 /* 1 for the orphan item deletion. */
3225 trans = btrfs_start_transaction(root, 1);
3226 if (IS_ERR(trans)) {
3227 ret = PTR_ERR(trans);
3228 goto out;
3229 }
3230 ret = btrfs_orphan_add(trans, inode);
3231 btrfs_end_transaction(trans, root);
3232 if (ret)
3233 goto out;
3234
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003235 ret = btrfs_truncate(inode);
Josef Bacik4a7d0f62013-02-07 16:27:28 -05003236 if (ret)
3237 btrfs_orphan_del(NULL, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003238 } else {
3239 nr_unlink++;
3240 }
3241
3242 /* this will do delete_inode and everything for us */
3243 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003244 if (ret)
3245 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003246 }
Miao Xie3254c872011-11-10 20:45:05 -05003247 /* release the path since we're done with it */
3248 btrfs_release_path(path);
3249
Yan, Zhengd68fc572010-05-16 10:49:58 -04003250 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3251
3252 if (root->orphan_block_rsv)
3253 btrfs_block_rsv_release(root, root->orphan_block_rsv,
3254 (u64)-1);
3255
3256 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003257 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003258 if (!IS_ERR(trans))
3259 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003260 }
Josef Bacik7b128762008-07-24 12:17:14 -04003261
3262 if (nr_unlink)
David Sterba4884b472013-03-20 13:31:27 +00003263 btrfs_debug(root->fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik7b128762008-07-24 12:17:14 -04003264 if (nr_truncate)
David Sterba4884b472013-03-20 13:31:27 +00003265 btrfs_debug(root->fs_info, "truncated %d orphans", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003266
3267out:
3268 if (ret)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003269 btrfs_crit(root->fs_info,
3270 "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003271 btrfs_free_path(path);
3272 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003273}
3274
Chris Masond352ac62008-09-29 15:18:18 -04003275/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003276 * very simple check to peek ahead in the leaf looking for xattrs. If we
3277 * don't find any xattrs, we know there can't be any acls.
3278 *
3279 * slot is the slot the inode is in, objectid is the objectid of the inode
3280 */
3281static noinline int acls_after_inode_item(struct extent_buffer *leaf,
3282 int slot, u64 objectid)
3283{
3284 u32 nritems = btrfs_header_nritems(leaf);
3285 struct btrfs_key found_key;
3286 int scanned = 0;
3287
3288 slot++;
3289 while (slot < nritems) {
3290 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3291
3292 /* we found a different objectid, there must not be acls */
3293 if (found_key.objectid != objectid)
3294 return 0;
3295
3296 /* we found an xattr, assume we've got an acl */
3297 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
3298 return 1;
3299
3300 /*
3301 * we found a key greater than an xattr key, there can't
3302 * be any acls later on
3303 */
3304 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3305 return 0;
3306
3307 slot++;
3308 scanned++;
3309
3310 /*
3311 * it goes inode, inode backrefs, xattrs, extents,
3312 * so if there are a ton of hard links to an inode there can
3313 * be a lot of backrefs. Don't waste time searching too hard,
3314 * this is just an optimization
3315 */
3316 if (scanned >= 8)
3317 break;
3318 }
3319 /* we hit the end of the leaf before we found an xattr or
3320 * something larger than an xattr. We have to assume the inode
3321 * has acls
3322 */
3323 return 1;
3324}
3325
3326/*
Chris Masond352ac62008-09-29 15:18:18 -04003327 * read an inode from the btree into the in-memory inode
3328 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003329static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003330{
3331 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003332 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003333 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04003334 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04003335 struct btrfs_root *root = BTRFS_I(inode)->root;
3336 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04003337 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003338 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003339 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003340 bool filled = false;
3341
3342 ret = btrfs_fill_inode(inode, &rdev);
3343 if (!ret)
3344 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003345
3346 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07003347 if (!path)
3348 goto make_bad;
3349
Josef Bacikd90c7322011-05-17 09:50:54 -04003350 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003351 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003352
Chris Mason39279cc2007-06-12 06:35:45 -04003353 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003354 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04003355 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04003356
Chris Mason5f39d392007-10-15 16:14:19 -04003357 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003358
3359 if (filled)
3360 goto cache_acl;
3361
Chris Mason5f39d392007-10-15 16:14:19 -04003362 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3363 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003364 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003365 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003366 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3367 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04003368 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003369
3370 tspec = btrfs_inode_atime(inode_item);
3371 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3372 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3373
3374 tspec = btrfs_inode_mtime(inode_item);
3375 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3376 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3377
3378 tspec = btrfs_inode_ctime(inode_item);
3379 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3380 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3381
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003382 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003383 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003384 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3385
3386 /*
3387 * If we were modified in the current generation and evicted from memory
3388 * and then re-read we need to do a full sync since we don't have any
3389 * idea about which extents were modified before we were evicted from
3390 * cache.
3391 */
3392 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
3393 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3394 &BTRFS_I(inode)->runtime_flags);
3395
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003396 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003397 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003398 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003399 rdev = btrfs_inode_rdev(leaf, inode_item);
3400
Josef Bacikaec74772008-07-24 12:12:38 -04003401 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003402 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00003403cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003404 /*
3405 * try to precache a NULL acl entry for files that don't have
3406 * any xattrs or acls
3407 */
Li Zefan33345d012011-04-20 10:31:50 +08003408 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
3409 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04003410 if (!maybe_acls)
3411 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003412
Chris Mason39279cc2007-06-12 06:35:45 -04003413 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003414
Chris Mason39279cc2007-06-12 06:35:45 -04003415 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003416 case S_IFREG:
3417 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003418 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05003419 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003420 inode->i_fop = &btrfs_file_operations;
3421 inode->i_op = &btrfs_file_inode_operations;
3422 break;
3423 case S_IFDIR:
3424 inode->i_fop = &btrfs_dir_file_operations;
3425 if (root == root->fs_info->tree_root)
3426 inode->i_op = &btrfs_dir_ro_inode_operations;
3427 else
3428 inode->i_op = &btrfs_dir_inode_operations;
3429 break;
3430 case S_IFLNK:
3431 inode->i_op = &btrfs_symlink_inode_operations;
3432 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003433 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003434 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003435 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003436 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003437 init_special_inode(inode, inode->i_mode, rdev);
3438 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003439 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003440
3441 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003442 return;
3443
3444make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04003445 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003446 make_bad_inode(inode);
3447}
3448
Chris Masond352ac62008-09-29 15:18:18 -04003449/*
3450 * given a leaf and an inode, copy the inode fields into the leaf
3451 */
Chris Masone02119d2008-09-05 16:13:11 -04003452static void fill_inode_item(struct btrfs_trans_handle *trans,
3453 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003454 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003455 struct inode *inode)
3456{
Liu Bo51fab692012-12-27 09:01:21 +00003457 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003458
Liu Bo51fab692012-12-27 09:01:21 +00003459 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003460
Liu Bo51fab692012-12-27 09:01:21 +00003461 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3462 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3463 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3464 &token);
3465 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3466 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003467
Liu Bo51fab692012-12-27 09:01:21 +00003468 btrfs_set_token_timespec_sec(leaf, btrfs_inode_atime(item),
3469 inode->i_atime.tv_sec, &token);
3470 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_atime(item),
3471 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003472
Liu Bo51fab692012-12-27 09:01:21 +00003473 btrfs_set_token_timespec_sec(leaf, btrfs_inode_mtime(item),
3474 inode->i_mtime.tv_sec, &token);
3475 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_mtime(item),
3476 inode->i_mtime.tv_nsec, &token);
3477
3478 btrfs_set_token_timespec_sec(leaf, btrfs_inode_ctime(item),
3479 inode->i_ctime.tv_sec, &token);
3480 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_ctime(item),
3481 inode->i_ctime.tv_nsec, &token);
3482
3483 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3484 &token);
3485 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3486 &token);
3487 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3488 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3489 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3490 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3491 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003492}
3493
Chris Masond352ac62008-09-29 15:18:18 -04003494/*
3495 * copy everything in the in-memory inode into the btree.
3496 */
Chris Mason21151332011-11-10 20:39:08 -05003497static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003498 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003499{
3500 struct btrfs_inode_item *inode_item;
3501 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003502 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003503 int ret;
3504
3505 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003506 if (!path)
3507 return -ENOMEM;
3508
Chris Masonb9473432009-03-13 11:00:37 -04003509 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003510 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3511 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003512 if (ret) {
3513 if (ret > 0)
3514 ret = -ENOENT;
3515 goto failed;
3516 }
3517
Chris Masonb4ce94d2009-02-04 09:25:08 -05003518 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003519 leaf = path->nodes[0];
3520 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003521 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003522
Chris Masone02119d2008-09-05 16:13:11 -04003523 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003524 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003525 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003526 ret = 0;
3527failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003528 btrfs_free_path(path);
3529 return ret;
3530}
3531
Chris Masond352ac62008-09-29 15:18:18 -04003532/*
Chris Mason21151332011-11-10 20:39:08 -05003533 * copy everything in the in-memory inode into the btree.
3534 */
3535noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3536 struct btrfs_root *root, struct inode *inode)
3537{
3538 int ret;
3539
3540 /*
3541 * If the inode is a free space inode, we can deadlock during commit
3542 * if we put it into the delayed code.
3543 *
3544 * The data relocation inode should also be directly updated
3545 * without delay
3546 */
Liu Bo83eea1f2012-07-10 05:28:39 -06003547 if (!btrfs_is_free_space_inode(inode)
Josef Bacikd619a772014-09-18 11:30:44 -04003548 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
3549 && !root->fs_info->log_root_recovering) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003550 btrfs_update_root_times(trans, root);
3551
Chris Mason21151332011-11-10 20:39:08 -05003552 ret = btrfs_delayed_update_inode(trans, root, inode);
3553 if (!ret)
3554 btrfs_set_inode_last_trans(trans, inode);
3555 return ret;
3556 }
3557
3558 return btrfs_update_inode_item(trans, root, inode);
3559}
3560
Josef Bacikbe6aef62012-10-22 15:43:12 -04003561noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3562 struct btrfs_root *root,
3563 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003564{
3565 int ret;
3566
3567 ret = btrfs_update_inode(trans, root, inode);
3568 if (ret == -ENOSPC)
3569 return btrfs_update_inode_item(trans, root, inode);
3570 return ret;
3571}
3572
3573/*
Chris Masond352ac62008-09-29 15:18:18 -04003574 * unlink helper that gets used here in inode.c and in the tree logging
3575 * recovery code. It remove a link in a directory with a given name, and
3576 * also drops the back refs in the inode to the directory
3577 */
Al Viro92986792011-03-04 17:14:37 +00003578static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3579 struct btrfs_root *root,
3580 struct inode *dir, struct inode *inode,
3581 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003582{
3583 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003584 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003585 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003586 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003587 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003588 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003589 u64 ino = btrfs_ino(inode);
3590 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003591
3592 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003593 if (!path) {
3594 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003595 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003596 }
3597
Chris Masonb9473432009-03-13 11:00:37 -04003598 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003599 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003600 name, name_len, -1);
3601 if (IS_ERR(di)) {
3602 ret = PTR_ERR(di);
3603 goto err;
3604 }
3605 if (!di) {
3606 ret = -ENOENT;
3607 goto err;
3608 }
Chris Mason5f39d392007-10-15 16:14:19 -04003609 leaf = path->nodes[0];
3610 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003611 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003612 if (ret)
3613 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003614 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003615
Li Zefan33345d012011-04-20 10:31:50 +08003616 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3617 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003618 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003619 btrfs_info(root->fs_info,
3620 "failed to delete reference to %.*s, inode %llu parent %llu",
3621 name_len, name,
3622 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003623 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003624 goto err;
3625 }
3626
Miao Xie16cdcec2011-04-22 18:12:22 +08003627 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003628 if (ret) {
3629 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003630 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003631 }
Chris Mason39279cc2007-06-12 06:35:45 -04003632
Chris Masone02119d2008-09-05 16:13:11 -04003633 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08003634 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003635 if (ret != 0 && ret != -ENOENT) {
3636 btrfs_abort_transaction(trans, root, ret);
3637 goto err;
3638 }
Chris Masone02119d2008-09-05 16:13:11 -04003639
3640 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
3641 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04003642 if (ret == -ENOENT)
3643 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003644 else if (ret)
3645 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003646err:
3647 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003648 if (ret)
3649 goto out;
3650
3651 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003652 inode_inc_iversion(inode);
3653 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04003654 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06003655 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04003656out:
Chris Mason39279cc2007-06-12 06:35:45 -04003657 return ret;
3658}
3659
Al Viro92986792011-03-04 17:14:37 +00003660int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3661 struct btrfs_root *root,
3662 struct inode *dir, struct inode *inode,
3663 const char *name, int name_len)
3664{
3665 int ret;
3666 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3667 if (!ret) {
3668 btrfs_drop_nlink(inode);
3669 ret = btrfs_update_inode(trans, root, inode);
3670 }
3671 return ret;
3672}
3673
3674
Yan, Zhenga22285a2010-05-16 10:48:46 -04003675/* helper to check if there is any shared block in the path */
3676static int check_path_shared(struct btrfs_root *root,
3677 struct btrfs_path *path)
3678{
3679 struct extent_buffer *eb;
3680 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00003681 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003682
3683 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00003684 int ret;
3685
Yan, Zhenga22285a2010-05-16 10:48:46 -04003686 if (!path->nodes[level])
3687 break;
3688 eb = path->nodes[level];
3689 if (!btrfs_block_can_be_shared(root, eb))
3690 continue;
Josef Bacik3173a182013-03-07 14:22:04 -05003691 ret = btrfs_lookup_extent_info(NULL, root, eb->start, level, 1,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003692 &refs, NULL);
3693 if (refs > 1)
3694 return 1;
3695 }
Josef Bacikdedefd72011-01-24 21:43:18 +00003696 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003697}
3698
3699/*
3700 * helper to start transaction for unlink and rmdir.
3701 *
3702 * unlink and rmdir are special in btrfs, they do not always free space.
3703 * so in enospc case, we should make sure they will free space before
3704 * allowing them to use the global metadata reservation.
3705 */
3706static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
3707 struct dentry *dentry)
3708{
3709 struct btrfs_trans_handle *trans;
3710 struct btrfs_root *root = BTRFS_I(dir)->root;
3711 struct btrfs_path *path;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003712 struct btrfs_dir_item *di;
3713 struct inode *inode = dentry->d_inode;
3714 u64 index;
3715 int check_link = 1;
3716 int err = -ENOSPC;
3717 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003718 u64 ino = btrfs_ino(inode);
3719 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003720
Josef Bacike70bea52011-10-11 14:18:24 -04003721 /*
3722 * 1 for the possible orphan item
3723 * 1 for the dir item
3724 * 1 for the dir index
3725 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04003726 * 1 for the inode
3727 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04003728 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003729 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
3730 return trans;
3731
Li Zefan33345d012011-04-20 10:31:50 +08003732 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003733 return ERR_PTR(-ENOSPC);
3734
3735 /* check if there is someone else holds reference */
3736 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
3737 return ERR_PTR(-ENOSPC);
3738
3739 if (atomic_read(&inode->i_count) > 2)
3740 return ERR_PTR(-ENOSPC);
3741
3742 if (xchg(&root->fs_info->enospc_unlink, 1))
3743 return ERR_PTR(-ENOSPC);
3744
3745 path = btrfs_alloc_path();
3746 if (!path) {
3747 root->fs_info->enospc_unlink = 0;
3748 return ERR_PTR(-ENOMEM);
3749 }
3750
Josef Bacik3880a1b2011-10-14 14:46:51 -04003751 /* 1 for the orphan item */
3752 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003753 if (IS_ERR(trans)) {
3754 btrfs_free_path(path);
3755 root->fs_info->enospc_unlink = 0;
3756 return trans;
3757 }
3758
3759 path->skip_locking = 1;
3760 path->search_commit_root = 1;
3761
3762 ret = btrfs_lookup_inode(trans, root, path,
3763 &BTRFS_I(dir)->location, 0);
3764 if (ret < 0) {
3765 err = ret;
3766 goto out;
3767 }
3768 if (ret == 0) {
3769 if (check_path_shared(root, path))
3770 goto out;
3771 } else {
3772 check_link = 0;
3773 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003774 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003775
3776 ret = btrfs_lookup_inode(trans, root, path,
3777 &BTRFS_I(inode)->location, 0);
3778 if (ret < 0) {
3779 err = ret;
3780 goto out;
3781 }
3782 if (ret == 0) {
3783 if (check_path_shared(root, path))
3784 goto out;
3785 } else {
3786 check_link = 0;
3787 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003788 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003789
3790 if (ret == 0 && S_ISREG(inode->i_mode)) {
3791 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08003792 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003793 if (ret < 0) {
3794 err = ret;
3795 goto out;
3796 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003797 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003798 if (check_path_shared(root, path))
3799 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02003800 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003801 }
3802
3803 if (!check_link) {
3804 err = 0;
3805 goto out;
3806 }
3807
Li Zefan33345d012011-04-20 10:31:50 +08003808 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003809 dentry->d_name.name, dentry->d_name.len, 0);
3810 if (IS_ERR(di)) {
3811 err = PTR_ERR(di);
3812 goto out;
3813 }
3814 if (di) {
3815 if (check_path_shared(root, path))
3816 goto out;
3817 } else {
3818 err = 0;
3819 goto out;
3820 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003821 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003822
Mark Fashehf1863732012-08-08 11:32:27 -07003823 ret = btrfs_get_inode_ref_index(trans, root, path, dentry->d_name.name,
3824 dentry->d_name.len, ino, dir_ino, 0,
3825 &index);
3826 if (ret) {
3827 err = ret;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003828 goto out;
3829 }
Mark Fashehf1863732012-08-08 11:32:27 -07003830
Yan, Zhenga22285a2010-05-16 10:48:46 -04003831 if (check_path_shared(root, path))
3832 goto out;
Mark Fashehf1863732012-08-08 11:32:27 -07003833
David Sterbab3b4aa72011-04-21 01:20:15 +02003834 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003835
Miao Xie16cdcec2011-04-22 18:12:22 +08003836 /*
3837 * This is a commit root search, if we can lookup inode item and other
3838 * relative items in the commit root, it means the transaction of
3839 * dir/file creation has been committed, and the dir index item that we
3840 * delay to insert has also been inserted into the commit root. So
3841 * we needn't worry about the delayed insertion of the dir index item
3842 * here.
3843 */
Li Zefan33345d012011-04-20 10:31:50 +08003844 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003845 dentry->d_name.name, dentry->d_name.len, 0);
3846 if (IS_ERR(di)) {
3847 err = PTR_ERR(di);
3848 goto out;
3849 }
3850 BUG_ON(ret == -ENOENT);
3851 if (check_path_shared(root, path))
3852 goto out;
3853
3854 err = 0;
3855out:
3856 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003857 /* Migrate the orphan reservation over */
3858 if (!err)
3859 err = btrfs_block_rsv_migrate(trans->block_rsv,
3860 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003861 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003862
Yan, Zhenga22285a2010-05-16 10:48:46 -04003863 if (err) {
3864 btrfs_end_transaction(trans, root);
3865 root->fs_info->enospc_unlink = 0;
3866 return ERR_PTR(err);
3867 }
3868
3869 trans->block_rsv = &root->fs_info->global_block_rsv;
3870 return trans;
3871}
3872
3873static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3874 struct btrfs_root *root)
3875{
Miao Xie66d8f3d2012-09-06 04:02:28 -06003876 if (trans->block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003877 btrfs_block_rsv_release(root, trans->block_rsv,
3878 trans->bytes_reserved);
3879 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003880 BUG_ON(!root->fs_info->enospc_unlink);
3881 root->fs_info->enospc_unlink = 0;
3882 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003883 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003884}
3885
Chris Mason39279cc2007-06-12 06:35:45 -04003886static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3887{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003888 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003889 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003890 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003891 int ret;
3892
Yan, Zhenga22285a2010-05-16 10:48:46 -04003893 trans = __unlink_start_trans(dir, dentry);
3894 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003895 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003896
Chris Mason12fcfd22009-03-24 10:24:20 -04003897 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3898
Chris Masone02119d2008-09-05 16:13:11 -04003899 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3900 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003901 if (ret)
3902 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003903
Yan, Zhenga22285a2010-05-16 10:48:46 -04003904 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003905 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003906 if (ret)
3907 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003908 }
Josef Bacik7b128762008-07-24 12:17:14 -04003909
Tsutomu Itohb5324022011-07-19 07:27:20 +00003910out:
Yan, Zhenga22285a2010-05-16 10:48:46 -04003911 __unlink_end_trans(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00003912 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003913 return ret;
3914}
3915
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003916int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3917 struct btrfs_root *root,
3918 struct inode *dir, u64 objectid,
3919 const char *name, int name_len)
3920{
3921 struct btrfs_path *path;
3922 struct extent_buffer *leaf;
3923 struct btrfs_dir_item *di;
3924 struct btrfs_key key;
3925 u64 index;
3926 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003927 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003928
3929 path = btrfs_alloc_path();
3930 if (!path)
3931 return -ENOMEM;
3932
Li Zefan33345d012011-04-20 10:31:50 +08003933 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003934 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003935 if (IS_ERR_OR_NULL(di)) {
3936 if (!di)
3937 ret = -ENOENT;
3938 else
3939 ret = PTR_ERR(di);
3940 goto out;
3941 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003942
3943 leaf = path->nodes[0];
3944 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3945 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3946 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003947 if (ret) {
3948 btrfs_abort_transaction(trans, root, ret);
3949 goto out;
3950 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003951 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003952
3953 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3954 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003955 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003956 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003957 if (ret != -ENOENT) {
3958 btrfs_abort_transaction(trans, root, ret);
3959 goto out;
3960 }
Li Zefan33345d012011-04-20 10:31:50 +08003961 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003962 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003963 if (IS_ERR_OR_NULL(di)) {
3964 if (!di)
3965 ret = -ENOENT;
3966 else
3967 ret = PTR_ERR(di);
3968 btrfs_abort_transaction(trans, root, ret);
3969 goto out;
3970 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003971
3972 leaf = path->nodes[0];
3973 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003974 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003975 index = key.offset;
3976 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003977 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003978
Miao Xie16cdcec2011-04-22 18:12:22 +08003979 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003980 if (ret) {
3981 btrfs_abort_transaction(trans, root, ret);
3982 goto out;
3983 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003984
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003985 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003986 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003987 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06003988 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003989 if (ret)
3990 btrfs_abort_transaction(trans, root, ret);
3991out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003992 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003993 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003994}
3995
Chris Mason39279cc2007-06-12 06:35:45 -04003996static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3997{
3998 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003999 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004000 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004001 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04004002
David Sterbab3ae2442012-09-13 16:04:34 -06004003 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04004004 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06004005 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
4006 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04004007
Yan, Zhenga22285a2010-05-16 10:48:46 -04004008 trans = __unlink_start_trans(dir, dentry);
4009 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004010 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05004011
Li Zefan33345d012011-04-20 10:31:50 +08004012 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004013 err = btrfs_unlink_subvol(trans, root, dir,
4014 BTRFS_I(inode)->location.objectid,
4015 dentry->d_name.name,
4016 dentry->d_name.len);
4017 goto out;
4018 }
4019
Josef Bacik7b128762008-07-24 12:17:14 -04004020 err = btrfs_orphan_add(trans, inode);
4021 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004022 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04004023
Chris Mason39279cc2007-06-12 06:35:45 -04004024 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04004025 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
4026 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05004027 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04004028 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004029out:
Yan, Zhenga22285a2010-05-16 10:48:46 -04004030 __unlink_end_trans(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004031 btrfs_btree_balance_dirty(root);
Chris Mason39544012007-12-12 14:38:19 -05004032
Chris Mason39279cc2007-06-12 06:35:45 -04004033 return err;
4034}
4035
Chris Mason323ac952008-10-01 19:05:46 -04004036/*
Chris Mason39279cc2007-06-12 06:35:45 -04004037 * this can truncate away extent items, csum items and directory items.
4038 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004039 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004040 *
4041 * csum items that cross the new i_size are truncated to the new size
4042 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004043 *
4044 * min_type is the minimum key type to truncate down to. If set to 0, this
4045 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004046 */
Yan, Zheng80825102009-11-12 09:35:36 +00004047int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4048 struct btrfs_root *root,
4049 struct inode *inode,
4050 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004051{
Chris Mason39279cc2007-06-12 06:35:45 -04004052 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004053 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004054 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004055 struct btrfs_key key;
4056 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004057 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004058 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004059 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004060 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00004061 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004062 int found_extent;
4063 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004064 int pending_del_nr = 0;
4065 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004066 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004067 int ret;
4068 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004069 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004070
4071 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004072
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004073 path = btrfs_alloc_path();
4074 if (!path)
4075 return -ENOMEM;
4076 path->reada = -1;
4077
Josef Bacik5dc562c2012-08-17 13:14:17 -04004078 /*
4079 * We want to drop from the next block forward in case this new size is
4080 * not block aligned since we will be keeping the last block of the
4081 * extent just the way it is.
4082 */
Josef Bacik0af3d002010-06-21 14:48:16 -04004083 if (root->ref_cows || root == root->fs_info->tree_root)
Qu Wenruofda28322013-02-26 08:10:22 +00004084 btrfs_drop_extent_cache(inode, ALIGN(new_size,
4085 root->sectorsize), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004086
Miao Xie16cdcec2011-04-22 18:12:22 +08004087 /*
4088 * This function is also used to drop the items in the log tree before
4089 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4090 * it is used to drop the loged items. So we shouldn't kill the delayed
4091 * items.
4092 */
4093 if (min_type == 0 && root == BTRFS_I(inode)->root)
4094 btrfs_kill_delayed_inode_items(inode);
4095
Li Zefan33345d012011-04-20 10:31:50 +08004096 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004097 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004098 key.type = (u8)-1;
4099
Chris Mason85e21ba2008-01-29 15:11:36 -05004100search_again:
Chris Masonb9473432009-03-13 11:00:37 -04004101 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004102 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004103 if (ret < 0) {
4104 err = ret;
4105 goto out;
4106 }
Chris Masond3977122009-01-05 21:25:51 -05004107
Chris Mason85e21ba2008-01-29 15:11:36 -05004108 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004109 /* there are no items in the tree for us to truncate, we're
4110 * done
4111 */
Yan, Zheng80825102009-11-12 09:35:36 +00004112 if (path->slots[0] == 0)
4113 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004114 path->slots[0]--;
4115 }
4116
Chris Masond3977122009-01-05 21:25:51 -05004117 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004118 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004119 leaf = path->nodes[0];
4120 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4121 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04004122
Li Zefan33345d012011-04-20 10:31:50 +08004123 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004124 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004125
Chris Mason85e21ba2008-01-29 15:11:36 -05004126 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004127 break;
4128
Chris Mason5f39d392007-10-15 16:14:19 -04004129 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004130 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004131 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004132 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004133 extent_type = btrfs_file_extent_type(leaf, fi);
4134 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004135 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004136 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04004137 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004138 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04004139 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004140 }
Yan008630c2007-11-07 13:31:09 -05004141 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004142 }
Yan, Zheng80825102009-11-12 09:35:36 +00004143 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004144 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004145 } else {
4146 if (item_end < new_size)
4147 break;
4148 if (found_key.offset >= new_size)
4149 del_item = 1;
4150 else
4151 del_item = 0;
4152 }
Chris Mason39279cc2007-06-12 06:35:45 -04004153 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004154 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004155 if (found_type != BTRFS_EXTENT_DATA_KEY)
4156 goto delete;
4157
4158 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004159 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004160 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004161 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004162 u64 orig_num_bytes =
4163 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004164 extent_num_bytes = ALIGN(new_size -
4165 found_key.offset,
4166 root->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004167 btrfs_set_file_extent_num_bytes(leaf, fi,
4168 extent_num_bytes);
4169 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004170 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04004171 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004172 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004173 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004174 } else {
Chris Masondb945352007-10-15 16:15:53 -04004175 extent_num_bytes =
4176 btrfs_file_extent_disk_num_bytes(leaf,
4177 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004178 extent_offset = found_key.offset -
4179 btrfs_file_extent_offset(leaf, fi);
4180
Chris Mason39279cc2007-06-12 06:35:45 -04004181 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004182 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004183 if (extent_start != 0) {
4184 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04004185 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004186 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004187 }
4188 }
Chris Mason90692182008-02-08 13:49:28 -05004189 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004190 /*
4191 * we can't truncate inline items that have had
4192 * special encodings
4193 */
4194 if (!del_item &&
4195 btrfs_file_extent_compression(leaf, fi) == 0 &&
4196 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4197 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004198 u32 size = new_size - found_key.offset;
4199
4200 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004201 inode_sub_bytes(inode, item_end + 1 -
4202 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04004203 }
4204 size =
4205 btrfs_file_extent_calc_inline_size(size);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004206 btrfs_truncate_item(root, path, size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04004207 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004208 inode_sub_bytes(inode, item_end + 1 -
4209 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05004210 }
Chris Mason39279cc2007-06-12 06:35:45 -04004211 }
Chris Mason179e29e2007-11-01 11:28:41 -04004212delete:
Chris Mason39279cc2007-06-12 06:35:45 -04004213 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004214 if (!pending_del_nr) {
4215 /* no pending yet, add ourselves */
4216 pending_del_slot = path->slots[0];
4217 pending_del_nr = 1;
4218 } else if (pending_del_nr &&
4219 path->slots[0] + 1 == pending_del_slot) {
4220 /* hop on the pending chunk */
4221 pending_del_nr++;
4222 pending_del_slot = path->slots[0];
4223 } else {
Chris Masond3977122009-01-05 21:25:51 -05004224 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004225 }
Chris Mason39279cc2007-06-12 06:35:45 -04004226 } else {
4227 break;
4228 }
Josef Bacik0af3d002010-06-21 14:48:16 -04004229 if (found_extent && (root->ref_cows ||
4230 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004231 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004232 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004233 extent_num_bytes, 0,
4234 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02004235 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004236 BUG_ON(ret);
4237 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004238
Yan, Zheng80825102009-11-12 09:35:36 +00004239 if (found_type == BTRFS_INODE_ITEM_KEY)
4240 break;
4241
4242 if (path->slots[0] == 0 ||
4243 path->slots[0] != pending_del_slot) {
Yan, Zheng80825102009-11-12 09:35:36 +00004244 if (pending_del_nr) {
4245 ret = btrfs_del_items(trans, root, path,
4246 pending_del_slot,
4247 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004248 if (ret) {
4249 btrfs_abort_transaction(trans,
4250 root, ret);
4251 goto error;
4252 }
Yan, Zheng80825102009-11-12 09:35:36 +00004253 pending_del_nr = 0;
4254 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004255 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05004256 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004257 } else {
4258 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004259 }
Chris Mason39279cc2007-06-12 06:35:45 -04004260 }
Yan, Zheng80825102009-11-12 09:35:36 +00004261out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004262 if (pending_del_nr) {
4263 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4264 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004265 if (ret)
4266 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004267 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004268error:
Chris Mason39279cc2007-06-12 06:35:45 -04004269 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00004270 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004271}
4272
Chris Masona52d9a82007-08-27 16:49:44 -04004273/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04004274 * btrfs_truncate_page - read, zero a chunk and write a page
4275 * @inode - inode that we're zeroing
4276 * @from - the offset to start zeroing
4277 * @len - the length to zero, 0 to zero the entire range respective to the
4278 * offset
4279 * @front - zero up to the offset instead of from the offset on
4280 *
4281 * This will find the page for the "from" offset and cow the page and zero the
4282 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004283 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04004284int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
4285 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004286{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004287 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04004288 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004289 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4290 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004291 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004292 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04004293 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04004294 pgoff_t index = from >> PAGE_CACHE_SHIFT;
4295 unsigned offset = from & (PAGE_CACHE_SIZE-1);
4296 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004297 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004298 int ret = 0;
4299 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004300 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004301
Josef Bacik2aaa6652012-08-29 14:27:18 -04004302 if ((offset & (blocksize - 1)) == 0 &&
4303 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04004304 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004305 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004306 if (ret)
4307 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004308
Chris Mason211c17f2008-05-15 09:13:45 -04004309again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004310 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004311 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004312 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Miao Xieac6a2b32012-12-05 10:56:13 +00004313 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004314 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004315 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004316
4317 page_start = page_offset(page);
4318 page_end = page_start + PAGE_CACHE_SIZE - 1;
4319
Chris Masona52d9a82007-08-27 16:49:44 -04004320 if (!PageUptodate(page)) {
4321 ret = btrfs_readpage(NULL, page);
4322 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004323 if (page->mapping != mapping) {
4324 unlock_page(page);
4325 page_cache_release(page);
4326 goto again;
4327 }
Chris Masona52d9a82007-08-27 16:49:44 -04004328 if (!PageUptodate(page)) {
4329 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004330 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004331 }
4332 }
Chris Mason211c17f2008-05-15 09:13:45 -04004333 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004334
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004335 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004336 set_page_extent_mapped(page);
4337
4338 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4339 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004340 unlock_extent_cached(io_tree, page_start, page_end,
4341 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004342 unlock_page(page);
4343 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004344 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004345 btrfs_put_ordered_extent(ordered);
4346 goto again;
4347 }
4348
Josef Bacik2ac55d42010-02-03 19:33:23 +00004349 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004350 EXTENT_DIRTY | EXTENT_DELALLOC |
4351 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004352 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004353
Josef Bacik2ac55d42010-02-03 19:33:23 +00004354 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
4355 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004356 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004357 unlock_extent_cached(io_tree, page_start, page_end,
4358 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004359 goto out_unlock;
4360 }
4361
Chris Masone6dcd2d2008-07-17 12:53:50 -04004362 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004363 if (!len)
4364 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004365 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004366 if (front)
4367 memset(kaddr, 0, offset);
4368 else
4369 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004370 flush_dcache_page(page);
4371 kunmap(page);
4372 }
Chris Mason247e7432008-07-17 12:53:51 -04004373 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004374 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004375 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
4376 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04004377
Chris Mason89642222008-07-24 09:41:53 -04004378out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004379 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004380 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04004381 unlock_page(page);
4382 page_cache_release(page);
4383out:
4384 return ret;
4385}
4386
Josef Bacik695a0d02011-03-04 15:46:53 -05004387/*
4388 * This function puts in dummy file extents for the area we're creating a hole
4389 * for. So if we are truncating this file to a larger size we need to insert
4390 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4391 * the range between oldsize and size
4392 */
Josef Bacika41ad392011-01-31 15:30:16 -05004393int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004394{
4395 struct btrfs_trans_handle *trans;
4396 struct btrfs_root *root = BTRFS_I(inode)->root;
4397 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004398 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004399 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004400 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Qu Wenruofda28322013-02-26 08:10:22 +00004401 u64 hole_start = ALIGN(oldsize, root->sectorsize);
4402 u64 block_end = ALIGN(size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004403 u64 last_byte;
4404 u64 cur_offset;
4405 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004406 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004407
4408 if (size <= hole_start)
4409 return 0;
4410
Yan Zheng9036c102008-10-30 14:19:41 -04004411 while (1) {
4412 struct btrfs_ordered_extent *ordered;
4413 btrfs_wait_ordered_range(inode, hole_start,
4414 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004415 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004416 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04004417 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
4418 if (!ordered)
4419 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004420 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4421 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004422 btrfs_put_ordered_extent(ordered);
4423 }
4424
Yan Zheng9036c102008-10-30 14:19:41 -04004425 cur_offset = hole_start;
4426 while (1) {
4427 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4428 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004429 if (IS_ERR(em)) {
4430 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004431 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004432 break;
4433 }
Yan Zheng9036c102008-10-30 14:19:41 -04004434 last_byte = min(extent_map_end(em), block_end);
Qu Wenruofda28322013-02-26 08:10:22 +00004435 last_byte = ALIGN(last_byte , root->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004436 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004437 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004438 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004439
Miao Xie36423202011-12-14 20:12:02 -05004440 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004441 if (IS_ERR(trans)) {
4442 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05004443 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004444 }
Yan, Zheng80825102009-11-12 09:35:36 +00004445
Josef Bacik5dc562c2012-08-17 13:14:17 -04004446 err = btrfs_drop_extents(trans, root, inode,
4447 cur_offset,
Josef Bacik26714852012-08-29 12:24:27 -04004448 cur_offset + hole_size, 1);
Miao Xie5b397372011-09-11 10:52:24 -04004449 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004450 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04004451 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05004452 break;
Miao Xie5b397372011-09-11 10:52:24 -04004453 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04004454
Yan Zheng9036c102008-10-30 14:19:41 -04004455 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08004456 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04004457 0, hole_size, 0, hole_size,
4458 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04004459 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004460 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04004461 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05004462 break;
Miao Xie5b397372011-09-11 10:52:24 -04004463 }
Yan, Zheng80825102009-11-12 09:35:36 +00004464
Josef Bacik5dc562c2012-08-17 13:14:17 -04004465 btrfs_drop_extent_cache(inode, cur_offset,
4466 cur_offset + hole_size - 1, 0);
4467 hole_em = alloc_extent_map();
4468 if (!hole_em) {
4469 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4470 &BTRFS_I(inode)->runtime_flags);
4471 goto next;
4472 }
4473 hole_em->start = cur_offset;
4474 hole_em->len = hole_size;
4475 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004476
Josef Bacik5dc562c2012-08-17 13:14:17 -04004477 hole_em->block_start = EXTENT_MAP_HOLE;
4478 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004479 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004480 hole_em->ram_bytes = hole_size;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004481 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
4482 hole_em->compress_type = BTRFS_COMPRESS_NONE;
4483 hole_em->generation = trans->transid;
4484
4485 while (1) {
4486 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004487 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004488 write_unlock(&em_tree->lock);
4489 if (err != -EEXIST)
4490 break;
4491 btrfs_drop_extent_cache(inode, cur_offset,
4492 cur_offset +
4493 hole_size - 1, 0);
4494 }
4495 free_extent_map(hole_em);
4496next:
Miao Xie36423202011-12-14 20:12:02 -05004497 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004498 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04004499 }
4500 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004501 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04004502 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00004503 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04004504 break;
4505 }
4506
Yan, Zhenga22285a2010-05-16 10:48:46 -04004507 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004508 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
4509 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004510 return err;
4511}
4512
Eric Sandeen3972f262013-01-12 02:57:22 +00004513static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00004514{
Miao Xief4a2f4c2011-12-14 20:12:01 -05004515 struct btrfs_root *root = BTRFS_I(inode)->root;
4516 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05004517 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00004518 loff_t newsize = attr->ia_size;
4519 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00004520 int ret;
4521
Josef Bacika41ad392011-01-31 15:30:16 -05004522 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00004523 return 0;
4524
Eric Sandeen3972f262013-01-12 02:57:22 +00004525 /*
4526 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
4527 * special case where we need to update the times despite not having
4528 * these flags set. For all other operations the VFS set these flags
4529 * explicitly if it wants a timestamp update.
4530 */
Christoph Hellwigd5685be2013-11-19 07:17:07 -08004531 if (newsize != oldsize) {
4532 inode_inc_iversion(inode);
4533 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
4534 inode->i_ctime = inode->i_mtime =
4535 current_fs_time(inode->i_sb);
4536 }
Eric Sandeen3972f262013-01-12 02:57:22 +00004537
Josef Bacika41ad392011-01-31 15:30:16 -05004538 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05004539 truncate_pagecache(inode, oldsize, newsize);
4540 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05004541 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00004542 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00004543
Miao Xief4a2f4c2011-12-14 20:12:01 -05004544 trans = btrfs_start_transaction(root, 1);
4545 if (IS_ERR(trans))
4546 return PTR_ERR(trans);
4547
4548 i_size_write(inode, newsize);
4549 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
4550 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004551 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05004552 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00004553
Josef Bacika41ad392011-01-31 15:30:16 -05004554 /*
4555 * We're truncating a file that used to have good data down to
4556 * zero. Make sure it gets into the ordered flush list so that
4557 * any new writes get down to disk quickly.
4558 */
4559 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04004560 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
4561 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00004562
Josef Bacikf3fe8202013-01-07 17:03:21 -05004563 /*
4564 * 1 for the orphan item we're going to add
4565 * 1 for the orphan item deletion.
4566 */
4567 trans = btrfs_start_transaction(root, 2);
4568 if (IS_ERR(trans))
4569 return PTR_ERR(trans);
4570
4571 /*
4572 * We need to do this in case we fail at _any_ point during the
4573 * actual truncate. Once we do the truncate_setsize we could
4574 * invalidate pages which forces any outstanding ordered io to
4575 * be instantly completed which will give us extents that need
4576 * to be truncated. If we fail to get an orphan inode down we
4577 * could have left over extents that were never meant to live,
4578 * so we need to garuntee from this point on that everything
4579 * will be consistent.
4580 */
4581 ret = btrfs_orphan_add(trans, inode);
4582 btrfs_end_transaction(trans, root);
4583 if (ret)
4584 return ret;
4585
Josef Bacika41ad392011-01-31 15:30:16 -05004586 /* we don't support swapfiles, so vmtruncate shouldn't fail */
4587 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00004588
4589 /* Disable nonlocked read DIO to avoid the end less truncate */
4590 btrfs_inode_block_unlocked_dio(inode);
4591 inode_dio_wait(inode);
4592 btrfs_inode_resume_unlocked_dio(inode);
4593
Josef Bacika41ad392011-01-31 15:30:16 -05004594 ret = btrfs_truncate(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05004595 if (ret && inode->i_nlink)
4596 btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004597 }
4598
Josef Bacika41ad392011-01-31 15:30:16 -05004599 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00004600}
4601
Chris Mason39279cc2007-06-12 06:35:45 -04004602static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
4603{
4604 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08004605 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004606 int err;
4607
Li Zefanb83cc962010-12-20 16:04:08 +08004608 if (btrfs_root_readonly(root))
4609 return -EROFS;
4610
Chris Mason39279cc2007-06-12 06:35:45 -04004611 err = inode_change_ok(inode, attr);
4612 if (err)
4613 return err;
4614
Chris Mason5a3f23d2009-03-31 13:27:11 -04004615 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00004616 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00004617 if (err)
4618 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004619 }
Yan Zheng9036c102008-10-30 14:19:41 -04004620
Christoph Hellwig10257742010-06-04 11:30:02 +02004621 if (attr->ia_valid) {
4622 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004623 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004624 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04004625
Josef Bacik22c44fe2011-11-30 10:45:38 -05004626 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02004627 err = btrfs_acl_chmod(inode);
4628 }
4629
Chris Mason39279cc2007-06-12 06:35:45 -04004630 return err;
4631}
Chris Mason61295eb2008-01-14 16:24:38 -05004632
Al Virobd555972010-06-07 11:35:40 -04004633void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004634{
4635 struct btrfs_trans_handle *trans;
4636 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04004637 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04004638 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004639 int ret;
4640
liubo1abe9b82011-03-24 11:18:59 +00004641 trace_btrfs_inode_evict(inode);
4642
Chris Mason39279cc2007-06-12 06:35:45 -04004643 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04004644 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06004645 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04004646 goto no_delete;
4647
Chris Mason39279cc2007-06-12 06:35:45 -04004648 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04004649 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004650 goto no_delete;
4651 }
Al Virobd555972010-06-07 11:35:40 -04004652 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04004653 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04004654
Yan, Zhengc71bf092009-11-12 09:34:40 +00004655 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06004656 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04004657 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00004658 goto no_delete;
4659 }
4660
Yan, Zheng76dda932009-09-21 16:00:26 -04004661 if (inode->i_nlink > 0) {
4662 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
4663 goto no_delete;
4664 }
4665
Miao Xie0e8c36a2012-12-19 06:59:51 +00004666 ret = btrfs_commit_inode_delayed_inode(inode);
4667 if (ret) {
4668 btrfs_orphan_del(NULL, inode);
4669 goto no_delete;
4670 }
4671
Miao Xie66d8f3d2012-09-06 04:02:28 -06004672 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04004673 if (!rsv) {
4674 btrfs_orphan_del(NULL, inode);
4675 goto no_delete;
4676 }
Josef Bacik4a338542011-08-29 11:01:31 -04004677 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04004678 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04004679 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04004680
Chris Masondbe674a2008-07-17 12:54:05 -04004681 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04004682
Josef Bacik4289a662011-08-05 13:22:24 -04004683 /*
Miao Xie8407aa42012-09-07 01:43:32 -06004684 * This is a bit simpler than btrfs_truncate since we've already
4685 * reserved our space for our orphan item in the unlink, so we just
4686 * need to reserve some slack space in case we add bytes and update
4687 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04004688 */
Yan, Zheng80825102009-11-12 09:35:36 +00004689 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00004690 ret = btrfs_block_rsv_refill(root, rsv, min_size,
4691 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00004692
Josef Bacik726c35f2011-09-26 15:46:06 -04004693 /*
4694 * Try and steal from the global reserve since we will
4695 * likely not use this space anyway, we want to try as
4696 * hard as possible to get this to work.
4697 */
4698 if (ret)
4699 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
4700
Yan, Zhengd68fc572010-05-16 10:49:58 -04004701 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004702 btrfs_warn(root->fs_info,
4703 "Could not get space for a delete, will truncate on mount %d",
4704 ret);
Josef Bacik4289a662011-08-05 13:22:24 -04004705 btrfs_orphan_del(NULL, inode);
4706 btrfs_free_block_rsv(root, rsv);
4707 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04004708 }
4709
Miao Xie0e8c36a2012-12-19 06:59:51 +00004710 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04004711 if (IS_ERR(trans)) {
4712 btrfs_orphan_del(NULL, inode);
4713 btrfs_free_block_rsv(root, rsv);
4714 goto no_delete;
4715 }
4716
4717 trans->block_rsv = rsv;
4718
Yan, Zhengd68fc572010-05-16 10:49:58 -04004719 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04004720 if (ret != -ENOSPC)
Yan, Zheng80825102009-11-12 09:35:36 +00004721 break;
4722
Miao Xie8407aa42012-09-07 01:43:32 -06004723 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00004724 btrfs_end_transaction(trans, root);
4725 trans = NULL;
Liu Bob53d3f52012-11-14 14:34:34 +00004726 btrfs_btree_balance_dirty(root);
Josef Bacik7b128762008-07-24 12:17:14 -04004727 }
4728
Josef Bacik4289a662011-08-05 13:22:24 -04004729 btrfs_free_block_rsv(root, rsv);
4730
Yan, Zheng80825102009-11-12 09:35:36 +00004731 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04004732 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00004733 ret = btrfs_orphan_del(trans, inode);
4734 BUG_ON(ret);
4735 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004736
Josef Bacik4289a662011-08-05 13:22:24 -04004737 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08004738 if (!(root == root->fs_info->tree_root ||
4739 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08004740 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08004741
Chris Mason54aa1f42007-06-22 14:16:25 -04004742 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004743 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04004744no_delete:
Miao Xie89042e52013-05-15 07:48:15 +00004745 btrfs_remove_delayed_node(inode);
Jan Karadbd57682012-05-03 14:48:02 +02004746 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004747 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004748}
4749
4750/*
4751 * this returns the key found in the dir entry in the location pointer.
4752 * If no dir entries were found, location->objectid is 0.
4753 */
4754static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
4755 struct btrfs_key *location)
4756{
4757 const char *name = dentry->d_name.name;
4758 int namelen = dentry->d_name.len;
4759 struct btrfs_dir_item *di;
4760 struct btrfs_path *path;
4761 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04004762 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004763
4764 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004765 if (!path)
4766 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05004767
Li Zefan33345d012011-04-20 10:31:50 +08004768 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04004769 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04004770 if (IS_ERR(di))
4771 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05004772
David Sterbac7040052011-04-19 18:00:01 +02004773 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05004774 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05004775
Chris Mason5f39d392007-10-15 16:14:19 -04004776 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04004777out:
Chris Mason39279cc2007-06-12 06:35:45 -04004778 btrfs_free_path(path);
4779 return ret;
Chris Mason39544012007-12-12 14:38:19 -05004780out_err:
4781 location->objectid = 0;
4782 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004783}
4784
4785/*
4786 * when we hit a tree root in a directory, the btrfs part of the inode
4787 * needs to be changed to reflect the root directory of the tree root. This
4788 * is kind of like crossing a mount point.
4789 */
4790static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004791 struct inode *dir,
4792 struct dentry *dentry,
4793 struct btrfs_key *location,
4794 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04004795{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004796 struct btrfs_path *path;
4797 struct btrfs_root *new_root;
4798 struct btrfs_root_ref *ref;
4799 struct extent_buffer *leaf;
4800 int ret;
4801 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004802
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004803 path = btrfs_alloc_path();
4804 if (!path) {
4805 err = -ENOMEM;
4806 goto out;
4807 }
Chris Mason39279cc2007-06-12 06:35:45 -04004808
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004809 err = -ENOENT;
4810 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
4811 BTRFS_I(dir)->root->root_key.objectid,
4812 location->objectid);
4813 if (ret) {
4814 if (ret < 0)
4815 err = ret;
4816 goto out;
4817 }
Chris Mason39279cc2007-06-12 06:35:45 -04004818
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004819 leaf = path->nodes[0];
4820 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08004821 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004822 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
4823 goto out;
4824
4825 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
4826 (unsigned long)(ref + 1),
4827 dentry->d_name.len);
4828 if (ret)
4829 goto out;
4830
David Sterbab3b4aa72011-04-21 01:20:15 +02004831 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004832
4833 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
4834 if (IS_ERR(new_root)) {
4835 err = PTR_ERR(new_root);
4836 goto out;
4837 }
4838
4839 if (btrfs_root_refs(&new_root->root_item) == 0) {
4840 err = -ENOENT;
4841 goto out;
4842 }
4843
4844 *sub_root = new_root;
4845 location->objectid = btrfs_root_dirid(&new_root->root_item);
4846 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04004847 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004848 err = 0;
4849out:
4850 btrfs_free_path(path);
4851 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004852}
4853
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004854static void inode_tree_add(struct inode *inode)
4855{
4856 struct btrfs_root *root = BTRFS_I(inode)->root;
4857 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004858 struct rb_node **p;
4859 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08004860 u64 ino = btrfs_ino(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004861
Al Viro1d3382cb2010-10-23 15:19:20 -04004862 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004863 return;
Miao Xiee1409ce2013-05-15 07:48:16 +00004864again:
4865 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004866 spin_lock(&root->inode_lock);
Miao Xiee1409ce2013-05-15 07:48:16 +00004867 p = &root->inode_tree.rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004868 while (*p) {
4869 parent = *p;
4870 entry = rb_entry(parent, struct btrfs_inode, rb_node);
4871
Li Zefan33345d012011-04-20 10:31:50 +08004872 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004873 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004874 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004875 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004876 else {
4877 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04004878 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004879 rb_erase(parent, &root->inode_tree);
4880 RB_CLEAR_NODE(parent);
4881 spin_unlock(&root->inode_lock);
4882 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004883 }
4884 }
4885 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
4886 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
4887 spin_unlock(&root->inode_lock);
4888}
4889
4890static void inode_tree_del(struct inode *inode)
4891{
4892 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04004893 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004894
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004895 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004896 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004897 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004898 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04004899 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004900 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004901 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004902
Josef Bacik0af3d002010-06-21 14:48:16 -04004903 /*
4904 * Free space cache has inodes in the tree root, but the tree root has a
4905 * root_refs of 0, so this could end up dropping the tree root as a
4906 * snapshot, so we need the extra !root->fs_info->tree_root check to
4907 * make sure we don't drop it.
4908 */
4909 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4910 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004911 synchronize_srcu(&root->fs_info->subvol_srcu);
4912 spin_lock(&root->inode_lock);
4913 empty = RB_EMPTY_ROOT(&root->inode_tree);
4914 spin_unlock(&root->inode_lock);
4915 if (empty)
4916 btrfs_add_dead_root(root);
4917 }
4918}
4919
Jeff Mahoney143bede2012-03-01 14:56:26 +01004920void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004921{
4922 struct rb_node *node;
4923 struct rb_node *prev;
4924 struct btrfs_inode *entry;
4925 struct inode *inode;
4926 u64 objectid = 0;
4927
4928 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4929
4930 spin_lock(&root->inode_lock);
4931again:
4932 node = root->inode_tree.rb_node;
4933 prev = NULL;
4934 while (node) {
4935 prev = node;
4936 entry = rb_entry(node, struct btrfs_inode, rb_node);
4937
Li Zefan33345d012011-04-20 10:31:50 +08004938 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004939 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004940 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004941 node = node->rb_right;
4942 else
4943 break;
4944 }
4945 if (!node) {
4946 while (prev) {
4947 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004948 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004949 node = prev;
4950 break;
4951 }
4952 prev = rb_next(prev);
4953 }
4954 }
4955 while (node) {
4956 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004957 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004958 inode = igrab(&entry->vfs_inode);
4959 if (inode) {
4960 spin_unlock(&root->inode_lock);
4961 if (atomic_read(&inode->i_count) > 1)
4962 d_prune_aliases(inode);
4963 /*
Al Viro45321ac2010-06-07 13:43:19 -04004964 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004965 * the inode cache when its usage count
4966 * hits zero.
4967 */
4968 iput(inode);
4969 cond_resched();
4970 spin_lock(&root->inode_lock);
4971 goto again;
4972 }
4973
4974 if (cond_resched_lock(&root->inode_lock))
4975 goto again;
4976
4977 node = rb_next(node);
4978 }
4979 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004980}
4981
Chris Masone02119d2008-09-05 16:13:11 -04004982static int btrfs_init_locked_inode(struct inode *inode, void *p)
4983{
4984 struct btrfs_iget_args *args = p;
4985 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004986 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004987 return 0;
4988}
4989
4990static int btrfs_find_actor(struct inode *inode, void *opaque)
4991{
4992 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004993 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004994 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004995}
4996
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004997static struct inode *btrfs_iget_locked(struct super_block *s,
4998 u64 objectid,
4999 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04005000{
5001 struct inode *inode;
5002 struct btrfs_iget_args args;
5003 args.ino = objectid;
5004 args.root = root;
5005
5006 inode = iget5_locked(s, objectid, btrfs_find_actor,
5007 btrfs_init_locked_inode,
5008 (void *)&args);
5009 return inode;
5010}
5011
Balaji Rao1a54ef82008-07-21 02:01:04 +05305012/* Get an inode object given its location and corresponding root.
5013 * Returns in *is_new if the inode was read from disk
5014 */
5015struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00005016 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05305017{
5018 struct inode *inode;
5019
5020 inode = btrfs_iget_locked(s, location->objectid, root);
5021 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005022 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05305023
5024 if (inode->i_state & I_NEW) {
5025 BTRFS_I(inode)->root = root;
5026 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
5027 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07005028 if (!is_bad_inode(inode)) {
5029 inode_tree_add(inode);
5030 unlock_new_inode(inode);
5031 if (new)
5032 *new = 1;
5033 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005034 unlock_new_inode(inode);
5035 iput(inode);
5036 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005037 }
5038 }
5039
Balaji Rao1a54ef82008-07-21 02:01:04 +05305040 return inode;
5041}
5042
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005043static struct inode *new_simple_dir(struct super_block *s,
5044 struct btrfs_key *key,
5045 struct btrfs_root *root)
5046{
5047 struct inode *inode = new_inode(s);
5048
5049 if (!inode)
5050 return ERR_PTR(-ENOMEM);
5051
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005052 BTRFS_I(inode)->root = root;
5053 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005054 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005055
5056 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005057 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005058 inode->i_fop = &simple_dir_operations;
5059 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
5060 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
5061
5062 return inode;
5063}
5064
Chris Mason3de45862008-11-17 21:02:50 -05005065struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005066{
Chris Masond3977122009-01-05 21:25:51 -05005067 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005068 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005069 struct btrfs_root *sub_root = root;
5070 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005071 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005072 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005073
5074 if (dentry->d_name.len > BTRFS_NAME_LEN)
5075 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005076
Jeff Layton39e3c952012-11-28 11:30:53 -05005077 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005078 if (ret < 0)
5079 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005080
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005081 if (location.objectid == 0)
5082 return NULL;
5083
5084 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005085 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005086 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005087 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005088
5089 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5090
Yan, Zheng76dda932009-09-21 16:00:26 -04005091 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005092 ret = fixup_tree_root_location(root, dir, dentry,
5093 &location, &sub_root);
5094 if (ret < 0) {
5095 if (ret != -ENOENT)
5096 inode = ERR_PTR(ret);
5097 else
5098 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5099 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005100 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005101 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005102 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
5103
Julia Lawall34d19ba2011-01-24 19:55:19 +00005104 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00005105 down_read(&root->fs_info->cleanup_work_sem);
5106 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005107 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005108 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005109 if (ret)
5110 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005111 }
5112
Chris Mason3de45862008-11-17 21:02:50 -05005113 return inode;
5114}
5115
Nick Pigginfe15ce42011-01-07 17:49:23 +11005116static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005117{
5118 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08005119 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005120
Li Zefan848cce02012-02-21 17:04:28 +08005121 if (!inode && !IS_ROOT(dentry))
5122 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005123
Li Zefan848cce02012-02-21 17:04:28 +08005124 if (inode) {
5125 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005126 if (btrfs_root_refs(&root->root_item) == 0)
5127 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005128
5129 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5130 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005131 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005132 return 0;
5133}
5134
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005135static void btrfs_dentry_release(struct dentry *dentry)
5136{
5137 if (dentry->d_fsdata)
5138 kfree(dentry->d_fsdata);
5139}
5140
Chris Mason3de45862008-11-17 21:02:50 -05005141static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005142 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005143{
Josef Bacika66e7cc2011-09-18 10:34:03 -04005144 struct dentry *ret;
5145
5146 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
Josef Bacika66e7cc2011-09-18 10:34:03 -04005147 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005148}
5149
Miao Xie16cdcec2011-04-22 18:12:22 +08005150unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005151 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5152};
5153
David Woodhousecbdf5a22008-08-06 19:42:33 +01005154static int btrfs_real_readdir(struct file *filp, void *dirent,
5155 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04005156{
Al Viro496ad9a2013-01-23 17:07:38 -05005157 struct inode *inode = file_inode(filp);
Chris Mason39279cc2007-06-12 06:35:45 -04005158 struct btrfs_root *root = BTRFS_I(inode)->root;
5159 struct btrfs_item *item;
5160 struct btrfs_dir_item *di;
5161 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005162 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005163 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08005164 struct list_head ins_list;
5165 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005166 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005167 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005168 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04005169 unsigned char d_type;
5170 int over = 0;
5171 u32 di_cur;
5172 u32 di_total;
5173 u32 di_len;
5174 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005175 char tmp_name[32];
5176 char *name_ptr;
5177 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08005178 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04005179
5180 /* FIXME, use a real flag for deciding about the key type */
5181 if (root->fs_info->tree_root == root)
5182 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005183
Chris Mason39544012007-12-12 14:38:19 -05005184 /* special case for "." */
5185 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04005186 over = filldir(dirent, ".", 1,
5187 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05005188 if (over)
5189 return 0;
5190 filp->f_pos = 1;
5191 }
Chris Mason39544012007-12-12 14:38:19 -05005192 /* special case for .., just use the back ref */
5193 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01005194 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05005195 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04005196 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05005197 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01005198 return 0;
Chris Mason39544012007-12-12 14:38:19 -05005199 filp->f_pos = 2;
5200 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005201 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005202 if (!path)
5203 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005204
Josef Bacik026fd312011-05-13 10:32:11 -04005205 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005206
Miao Xie16cdcec2011-04-22 18:12:22 +08005207 if (key_type == BTRFS_DIR_INDEX_KEY) {
5208 INIT_LIST_HEAD(&ins_list);
5209 INIT_LIST_HEAD(&del_list);
5210 btrfs_get_delayed_items(inode, &ins_list, &del_list);
5211 }
5212
Chris Mason39279cc2007-06-12 06:35:45 -04005213 btrfs_set_key_type(&key, key_type);
5214 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08005215 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005216
Chris Mason39279cc2007-06-12 06:35:45 -04005217 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5218 if (ret < 0)
5219 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005220
5221 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04005222 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005223 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005224 if (slot >= btrfs_header_nritems(leaf)) {
5225 ret = btrfs_next_leaf(root, path);
5226 if (ret < 0)
5227 goto err;
5228 else if (ret > 0)
5229 break;
5230 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005231 }
Chris Mason3de45862008-11-17 21:02:50 -05005232
Chris Mason5f39d392007-10-15 16:14:19 -04005233 item = btrfs_item_nr(leaf, slot);
5234 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5235
5236 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005237 break;
Chris Mason5f39d392007-10-15 16:14:19 -04005238 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04005239 break;
Chris Mason5f39d392007-10-15 16:14:19 -04005240 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005241 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08005242 if (key_type == BTRFS_DIR_INDEX_KEY &&
5243 btrfs_should_delete_dir_index(&del_list,
5244 found_key.offset))
5245 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04005246
5247 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08005248 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005249
Chris Mason39279cc2007-06-12 06:35:45 -04005250 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
5251 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04005252 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01005253
5254 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04005255 struct btrfs_key location;
5256
Josef Bacik22a94d42011-03-16 16:47:17 -04005257 if (verify_dir_item(root, leaf, di))
5258 break;
5259
Chris Mason5f39d392007-10-15 16:14:19 -04005260 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01005261 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04005262 name_ptr = tmp_name;
5263 } else {
5264 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01005265 if (!name_ptr) {
5266 ret = -ENOMEM;
5267 goto err;
5268 }
Chris Mason5f39d392007-10-15 16:14:19 -04005269 }
5270 read_extent_buffer(leaf, name_ptr,
5271 (unsigned long)(di + 1), name_len);
5272
5273 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5274 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05005275
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005276
Chris Mason3de45862008-11-17 21:02:50 -05005277 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01005278 * skip it.
5279 *
5280 * In contrast to old kernels, we insert the snapshot's
5281 * dir item and dir index after it has been created, so
5282 * we won't find a reference to our own snapshot. We
5283 * still keep the following code for backward
5284 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05005285 */
5286 if (location.type == BTRFS_ROOT_ITEM_KEY &&
5287 location.objectid == root->root_key.objectid) {
5288 over = 0;
5289 goto skip;
5290 }
Chris Mason5f39d392007-10-15 16:14:19 -04005291 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01005292 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04005293 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04005294
Chris Mason3de45862008-11-17 21:02:50 -05005295skip:
Chris Mason5f39d392007-10-15 16:14:19 -04005296 if (name_ptr != tmp_name)
5297 kfree(name_ptr);
5298
Chris Mason39279cc2007-06-12 06:35:45 -04005299 if (over)
5300 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05005301 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01005302 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04005303 di_cur += di_len;
5304 di = (struct btrfs_dir_item *)((char *)di + di_len);
5305 }
Li Zefanb9e03af2011-03-23 10:43:58 +08005306next:
5307 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005308 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005309
Miao Xie16cdcec2011-04-22 18:12:22 +08005310 if (key_type == BTRFS_DIR_INDEX_KEY) {
5311 if (is_curr)
5312 filp->f_pos++;
5313 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
5314 &ins_list);
5315 if (ret)
5316 goto nopos;
5317 }
5318
David Woodhouse49593bf2008-08-17 17:08:36 +01005319 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05005320 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00005321 /*
5322 * 32-bit glibc will use getdents64, but then strtol -
5323 * so the last number we can serve is this.
5324 */
5325 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05005326 else
5327 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04005328nopos:
5329 ret = 0;
5330err:
Miao Xie16cdcec2011-04-22 18:12:22 +08005331 if (key_type == BTRFS_DIR_INDEX_KEY)
5332 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005333 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005334 return ret;
5335}
5336
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005337int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04005338{
5339 struct btrfs_root *root = BTRFS_I(inode)->root;
5340 struct btrfs_trans_handle *trans;
5341 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04005342 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04005343
Josef Bacik72ac3c02012-05-23 14:13:11 -04005344 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04005345 return 0;
5346
Liu Bo83eea1f2012-07-10 05:28:39 -06005347 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08005348 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04005349
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005350 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04005351 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005352 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04005353 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005354 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005355 if (IS_ERR(trans))
5356 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06005357 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005358 }
5359 return ret;
5360}
5361
5362/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005363 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005364 * inode changes. But, it is most likely to find the inode in cache.
5365 * FIXME, needs more benchmarking...there are no reasons other than performance
5366 * to keep or drop this code.
5367 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005368static int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005369{
5370 struct btrfs_root *root = BTRFS_I(inode)->root;
5371 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005372 int ret;
5373
Josef Bacik72ac3c02012-05-23 14:13:11 -04005374 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005375 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005376
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005377 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005378 if (IS_ERR(trans))
5379 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005380
5381 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005382 if (ret && ret == -ENOSPC) {
5383 /* whoops, lets try again with the full transaction */
5384 btrfs_end_transaction(trans, root);
5385 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005386 if (IS_ERR(trans))
5387 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005388
Chris Mason94b60442010-05-26 11:02:00 -04005389 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005390 }
Chris Mason39279cc2007-06-12 06:35:45 -04005391 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08005392 if (BTRFS_I(inode)->delayed_node)
5393 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005394
5395 return ret;
5396}
5397
5398/*
5399 * This is a copy of file_update_time. We need this so we can return error on
5400 * ENOSPC for updating the inode in the case of file write and mmap writes.
5401 */
Josef Bacike41f9412012-03-26 09:46:47 -04005402static int btrfs_update_time(struct inode *inode, struct timespec *now,
5403 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005404{
Alexander Block2bc5565282012-06-15 09:49:33 +02005405 struct btrfs_root *root = BTRFS_I(inode)->root;
5406
5407 if (btrfs_root_readonly(root))
5408 return -EROFS;
5409
Josef Bacike41f9412012-03-26 09:46:47 -04005410 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005411 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04005412 if (flags & S_CTIME)
5413 inode->i_ctime = *now;
5414 if (flags & S_MTIME)
5415 inode->i_mtime = *now;
5416 if (flags & S_ATIME)
5417 inode->i_atime = *now;
5418 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005419}
5420
Chris Masond352ac62008-09-29 15:18:18 -04005421/*
5422 * find the highest existing sequence number in a directory
5423 * and then set the in-memory index_cnt variable to reflect
5424 * free sequence numbers
5425 */
Josef Bacikaec74772008-07-24 12:12:38 -04005426static int btrfs_set_inode_index_count(struct inode *inode)
5427{
5428 struct btrfs_root *root = BTRFS_I(inode)->root;
5429 struct btrfs_key key, found_key;
5430 struct btrfs_path *path;
5431 struct extent_buffer *leaf;
5432 int ret;
5433
Li Zefan33345d012011-04-20 10:31:50 +08005434 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005435 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
5436 key.offset = (u64)-1;
5437
5438 path = btrfs_alloc_path();
5439 if (!path)
5440 return -ENOMEM;
5441
5442 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5443 if (ret < 0)
5444 goto out;
5445 /* FIXME: we should be able to handle this */
5446 if (ret == 0)
5447 goto out;
5448 ret = 0;
5449
5450 /*
5451 * MAGIC NUMBER EXPLANATION:
5452 * since we search a directory based on f_pos we have to start at 2
5453 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
5454 * else has to start at 2
5455 */
5456 if (path->slots[0] == 0) {
5457 BTRFS_I(inode)->index_cnt = 2;
5458 goto out;
5459 }
5460
5461 path->slots[0]--;
5462
5463 leaf = path->nodes[0];
5464 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5465
Li Zefan33345d012011-04-20 10:31:50 +08005466 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04005467 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
5468 BTRFS_I(inode)->index_cnt = 2;
5469 goto out;
5470 }
5471
5472 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
5473out:
5474 btrfs_free_path(path);
5475 return ret;
5476}
5477
Chris Masond352ac62008-09-29 15:18:18 -04005478/*
5479 * helper to find a free sequence number in a given directory. This current
5480 * code is very simple, later versions will do smarter things in the btree
5481 */
Chris Mason3de45862008-11-17 21:02:50 -05005482int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04005483{
5484 int ret = 0;
5485
5486 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08005487 ret = btrfs_inode_delayed_dir_index_count(dir);
5488 if (ret) {
5489 ret = btrfs_set_inode_index_count(dir);
5490 if (ret)
5491 return ret;
5492 }
Josef Bacikaec74772008-07-24 12:12:38 -04005493 }
5494
Chris Mason00e4e6b2008-08-05 11:18:09 -04005495 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04005496 BTRFS_I(dir)->index_cnt++;
5497
5498 return ret;
5499}
5500
Chris Mason39279cc2007-06-12 06:35:45 -04005501static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
5502 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04005503 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05005504 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04005505 u64 ref_objectid, u64 objectid,
5506 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04005507{
5508 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04005509 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04005510 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04005511 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05005512 struct btrfs_inode_ref *ref;
5513 struct btrfs_key key[2];
5514 u32 sizes[2];
5515 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04005516 int ret;
5517 int owner;
5518
Chris Mason5f39d392007-10-15 16:14:19 -04005519 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005520 if (!path)
5521 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04005522
Chris Mason39279cc2007-06-12 06:35:45 -04005523 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005524 if (!inode) {
5525 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005526 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005527 }
Chris Mason39279cc2007-06-12 06:35:45 -04005528
Li Zefan581bb052011-04-20 10:06:11 +08005529 /*
5530 * we have to initialize this early, so we can reclaim the inode
5531 * number if we fail afterwards in this function.
5532 */
5533 inode->i_ino = objectid;
5534
Josef Bacikaec74772008-07-24 12:12:38 -04005535 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00005536 trace_btrfs_inode_request(dir);
5537
Chris Mason3de45862008-11-17 21:02:50 -05005538 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04005539 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005540 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04005541 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005542 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04005543 }
Josef Bacikaec74772008-07-24 12:12:38 -04005544 }
5545 /*
5546 * index_cnt is ignored for everything but a dir,
5547 * btrfs_get_inode_index_count has an explanation for the magic
5548 * number
5549 */
5550 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04005551 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04005552 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00005553 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04005554
Josef Bacik5dc562c2012-08-17 13:14:17 -04005555 /*
5556 * We could have gotten an inode number from somebody who was fsynced
5557 * and then removed in this same transaction, so let's just set full
5558 * sync since it will be a full sync anyway and this will blow away the
5559 * old info in the log.
5560 */
5561 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
5562
Al Viro569254b2011-07-24 17:08:40 -04005563 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04005564 owner = 0;
5565 else
5566 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05005567
5568 key[0].objectid = objectid;
5569 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
5570 key[0].offset = 0;
5571
Mark Fashehf1863732012-08-08 11:32:27 -07005572 /*
5573 * Start new inodes with an inode_ref. This is slightly more
5574 * efficient for small numbers of hard links since they will
5575 * be packed into one item. Extended refs will kick in if we
5576 * add more hard links than can fit in the ref item.
5577 */
Chris Mason9c583092008-01-29 15:15:18 -05005578 key[1].objectid = objectid;
5579 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
5580 key[1].offset = ref_objectid;
5581
5582 sizes[0] = sizeof(struct btrfs_inode_item);
5583 sizes[1] = name_len + sizeof(*ref);
5584
Chris Masonb9473432009-03-13 11:00:37 -04005585 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05005586 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
5587 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04005588 goto fail;
5589
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03005590 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04005591 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005592 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04005593 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
5594 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06005595 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
5596 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04005597 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05005598
5599 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
5600 struct btrfs_inode_ref);
5601 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04005602 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05005603 ptr = (unsigned long)(ref + 1);
5604 write_extent_buffer(path->nodes[0], name, ptr, name_len);
5605
Chris Mason5f39d392007-10-15 16:14:19 -04005606 btrfs_mark_buffer_dirty(path->nodes[0]);
5607 btrfs_free_path(path);
5608
Chris Mason39279cc2007-06-12 06:35:45 -04005609 location = &BTRFS_I(inode)->location;
5610 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04005611 location->offset = 0;
5612 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
5613
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005614 btrfs_inherit_iflags(inode, dir);
5615
Al Viro569254b2011-07-24 17:08:40 -04005616 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04005617 if (btrfs_test_opt(root, NODATASUM))
5618 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo213490b2012-09-11 08:33:50 -06005619 if (btrfs_test_opt(root, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05005620 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
5621 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04005622 }
5623
Chris Mason39279cc2007-06-12 06:35:45 -04005624 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005625 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00005626
5627 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04005628 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00005629
Alexander Block8ea05e32012-07-25 17:35:53 +02005630 btrfs_update_root_times(trans, root);
5631
Chris Mason39279cc2007-06-12 06:35:45 -04005632 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04005633fail:
Josef Bacikaec74772008-07-24 12:12:38 -04005634 if (dir)
5635 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04005636 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04005637 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005638 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005639}
5640
5641static inline u8 btrfs_inode_type(struct inode *inode)
5642{
5643 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
5644}
5645
Chris Masond352ac62008-09-29 15:18:18 -04005646/*
5647 * utility function to add 'inode' into 'parent_inode' with
5648 * a give name and a given sequence number.
5649 * if 'add_backref' is true, also insert a backref from the
5650 * inode to the parent directory.
5651 */
Chris Masone02119d2008-09-05 16:13:11 -04005652int btrfs_add_link(struct btrfs_trans_handle *trans,
5653 struct inode *parent_inode, struct inode *inode,
5654 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04005655{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005656 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005657 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04005658 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08005659 u64 ino = btrfs_ino(inode);
5660 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005661
Li Zefan33345d012011-04-20 10:31:50 +08005662 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005663 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
5664 } else {
Li Zefan33345d012011-04-20 10:31:50 +08005665 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005666 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
5667 key.offset = 0;
5668 }
Chris Mason39279cc2007-06-12 06:35:45 -04005669
Li Zefan33345d012011-04-20 10:31:50 +08005670 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005671 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
5672 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08005673 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005674 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08005675 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
5676 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005677 }
5678
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005679 /* Nothing to clean up yet */
5680 if (ret)
5681 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005682
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005683 ret = btrfs_insert_dir_item(trans, root, name, name_len,
5684 parent_inode, &key,
5685 btrfs_inode_type(inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05005686 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005687 goto fail_dir_item;
5688 else if (ret) {
5689 btrfs_abort_transaction(trans, root, ret);
5690 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005691 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005692
5693 btrfs_i_size_write(parent_inode, parent_inode->i_size +
5694 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005695 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005696 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
5697 ret = btrfs_update_inode(trans, root, parent_inode);
5698 if (ret)
5699 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005700 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05005701
5702fail_dir_item:
5703 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
5704 u64 local_index;
5705 int err;
5706 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
5707 key.objectid, root->root_key.objectid,
5708 parent_ino, &local_index, name, name_len);
5709
5710 } else if (add_backref) {
5711 u64 local_index;
5712 int err;
5713
5714 err = btrfs_del_inode_ref(trans, root, name, name_len,
5715 ino, parent_ino, &local_index);
5716 }
5717 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005718}
5719
5720static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00005721 struct inode *dir, struct dentry *dentry,
5722 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04005723{
Josef Bacika1b075d2010-11-19 20:36:11 +00005724 int err = btrfs_add_link(trans, dir, inode,
5725 dentry->d_name.name, dentry->d_name.len,
5726 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005727 if (err > 0)
5728 err = -EEXIST;
5729 return err;
5730}
5731
Josef Bacik618e21d2007-07-11 10:18:17 -04005732static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04005733 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04005734{
5735 struct btrfs_trans_handle *trans;
5736 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05005737 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04005738 int err;
5739 int drop_inode = 0;
5740 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005741 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04005742
5743 if (!new_valid_dev(rdev))
5744 return -EINVAL;
5745
Josef Bacik9ed74f22009-09-11 16:12:44 -04005746 /*
5747 * 2 for inode item and ref
5748 * 2 for dir items
5749 * 1 for xattr if selinux is on
5750 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005751 trans = btrfs_start_transaction(root, 5);
5752 if (IS_ERR(trans))
5753 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05005754
Li Zefan581bb052011-04-20 10:06:11 +08005755 err = btrfs_find_free_ino(root, &objectid);
5756 if (err)
5757 goto out_unlock;
5758
Josef Bacikaec74772008-07-24 12:12:38 -04005759 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005760 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005761 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005762 if (IS_ERR(inode)) {
5763 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04005764 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005765 }
Josef Bacik618e21d2007-07-11 10:18:17 -04005766
Eric Paris2a7dba32011-02-01 11:05:39 -05005767 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005768 if (err) {
5769 drop_inode = 1;
5770 goto out_unlock;
5771 }
5772
Casey Schauflerad19db72011-12-15 10:09:07 -05005773 /*
5774 * If the active LSM wants to access the inode during
5775 * d_instantiate it needs these. Smack checks to see
5776 * if the filesystem supports xattrs by looking at the
5777 * ops vector.
5778 */
5779
5780 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00005781 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04005782 if (err)
5783 drop_inode = 1;
5784 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04005785 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04005786 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05005787 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04005788 }
Josef Bacik618e21d2007-07-11 10:18:17 -04005789out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005790 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00005791 btrfs_btree_balance_dirty(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04005792 if (drop_inode) {
5793 inode_dec_link_count(inode);
5794 iput(inode);
5795 }
Josef Bacik618e21d2007-07-11 10:18:17 -04005796 return err;
5797}
5798
Chris Mason39279cc2007-06-12 06:35:45 -04005799static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04005800 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04005801{
5802 struct btrfs_trans_handle *trans;
5803 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05005804 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005805 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04005806 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04005807 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005808 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005809
Josef Bacik9ed74f22009-09-11 16:12:44 -04005810 /*
5811 * 2 for inode item and ref
5812 * 2 for dir items
5813 * 1 for xattr if selinux is on
5814 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005815 trans = btrfs_start_transaction(root, 5);
5816 if (IS_ERR(trans))
5817 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005818
Li Zefan581bb052011-04-20 10:06:11 +08005819 err = btrfs_find_free_ino(root, &objectid);
5820 if (err)
5821 goto out_unlock;
5822
Josef Bacikaec74772008-07-24 12:12:38 -04005823 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005824 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005825 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005826 if (IS_ERR(inode)) {
5827 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005828 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005829 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005830 drop_inode_on_err = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005831
Eric Paris2a7dba32011-02-01 11:05:39 -05005832 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005833 if (err)
Josef Bacik33268ea2008-07-24 12:16:36 -04005834 goto out_unlock;
Josef Bacik33268ea2008-07-24 12:16:36 -04005835
Filipe Brandenburger9185aa52012-11-30 03:40:08 +00005836 err = btrfs_update_inode(trans, root, inode);
5837 if (err)
5838 goto out_unlock;
5839
Casey Schauflerad19db72011-12-15 10:09:07 -05005840 /*
5841 * If the active LSM wants to access the inode during
5842 * d_instantiate it needs these. Smack checks to see
5843 * if the filesystem supports xattrs by looking at the
5844 * ops vector.
5845 */
5846 inode->i_fop = &btrfs_file_operations;
5847 inode->i_op = &btrfs_file_inode_operations;
5848
Josef Bacika1b075d2010-11-19 20:36:11 +00005849 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005850 if (err)
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005851 goto out_unlock;
5852
5853 inode->i_mapping->a_ops = &btrfs_aops;
5854 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
5855 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
5856 d_instantiate(dentry, inode);
5857
Chris Mason39279cc2007-06-12 06:35:45 -04005858out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005859 btrfs_end_transaction(trans, root);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005860 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005861 inode_dec_link_count(inode);
5862 iput(inode);
5863 }
Liu Bob53d3f52012-11-14 14:34:34 +00005864 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005865 return err;
5866}
5867
5868static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
5869 struct dentry *dentry)
5870{
5871 struct btrfs_trans_handle *trans;
5872 struct btrfs_root *root = BTRFS_I(dir)->root;
5873 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005874 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04005875 int err;
5876 int drop_inode = 0;
5877
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005878 /* do not allow sys_link's with other subvols of the same device */
5879 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00005880 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005881
Mark Fashehf1863732012-08-08 11:32:27 -07005882 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00005883 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005884
Chris Mason3de45862008-11-17 21:02:50 -05005885 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04005886 if (err)
5887 goto fail;
5888
Yan, Zhenga22285a2010-05-16 10:48:46 -04005889 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00005890 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04005891 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00005892 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04005893 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005894 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005895 if (IS_ERR(trans)) {
5896 err = PTR_ERR(trans);
5897 goto fail;
5898 }
Chris Mason5f39d392007-10-15 16:14:19 -04005899
Miao Xie31534952011-04-13 13:19:21 +08005900 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005901 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005902 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005903 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04005904 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04005905
Josef Bacika1b075d2010-11-19 20:36:11 +00005906 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005907
Yan, Zhenga5719522009-09-24 09:17:31 -04005908 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005909 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005910 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005911 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005912 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005913 if (err)
5914 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005915 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005916 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005917 }
Chris Mason39279cc2007-06-12 06:35:45 -04005918
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005919 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005920fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005921 if (drop_inode) {
5922 inode_dec_link_count(inode);
5923 iput(inode);
5924 }
Liu Bob53d3f52012-11-14 14:34:34 +00005925 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005926 return err;
5927}
5928
Al Viro18bb1db2011-07-26 01:41:39 -04005929static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005930{
Chris Masonb9d86662008-05-02 16:13:49 -04005931 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005932 struct btrfs_trans_handle *trans;
5933 struct btrfs_root *root = BTRFS_I(dir)->root;
5934 int err = 0;
5935 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005936 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005937 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005938
Josef Bacik9ed74f22009-09-11 16:12:44 -04005939 /*
5940 * 2 items for inode and ref
5941 * 2 items for dir items
5942 * 1 for xattr if selinux is on
5943 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005944 trans = btrfs_start_transaction(root, 5);
5945 if (IS_ERR(trans))
5946 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005947
Li Zefan581bb052011-04-20 10:06:11 +08005948 err = btrfs_find_free_ino(root, &objectid);
5949 if (err)
5950 goto out_fail;
5951
Josef Bacikaec74772008-07-24 12:12:38 -04005952 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005953 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005954 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005955 if (IS_ERR(inode)) {
5956 err = PTR_ERR(inode);
5957 goto out_fail;
5958 }
Chris Mason5f39d392007-10-15 16:14:19 -04005959
Chris Mason39279cc2007-06-12 06:35:45 -04005960 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005961
Eric Paris2a7dba32011-02-01 11:05:39 -05005962 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005963 if (err)
5964 goto out_fail;
5965
Chris Mason39279cc2007-06-12 06:35:45 -04005966 inode->i_op = &btrfs_dir_inode_operations;
5967 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005968
Chris Masondbe674a2008-07-17 12:54:05 -04005969 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005970 err = btrfs_update_inode(trans, root, inode);
5971 if (err)
5972 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005973
Josef Bacika1b075d2010-11-19 20:36:11 +00005974 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5975 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005976 if (err)
5977 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005978
Chris Mason39279cc2007-06-12 06:35:45 -04005979 d_instantiate(dentry, inode);
5980 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005981
5982out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005983 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005984 if (drop_on_err)
5985 iput(inode);
Liu Bob53d3f52012-11-14 14:34:34 +00005986 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005987 return err;
5988}
5989
Chris Masond352ac62008-09-29 15:18:18 -04005990/* helper for btfs_get_extent. Given an existing extent in the tree,
5991 * and an extent that you want to insert, deal with overlap and insert
5992 * the new extent into the tree.
5993 */
Chris Mason3b951512008-04-17 11:29:12 -04005994static int merge_extent_mapping(struct extent_map_tree *em_tree,
5995 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005996 struct extent_map *em,
5997 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005998{
5999 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04006000
Chris Masone6dcd2d2008-07-17 12:53:50 -04006001 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
6002 start_diff = map_start - em->start;
6003 em->start = map_start;
6004 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04006005 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
6006 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006007 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04006008 em->block_len -= start_diff;
6009 }
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006010 return add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006011}
6012
Chris Masonc8b97812008-10-29 14:49:59 -04006013static noinline int uncompress_inline(struct btrfs_path *path,
6014 struct inode *inode, struct page *page,
6015 size_t pg_offset, u64 extent_offset,
6016 struct btrfs_file_extent_item *item)
6017{
6018 int ret;
6019 struct extent_buffer *leaf = path->nodes[0];
6020 char *tmp;
6021 size_t max_size;
6022 unsigned long inline_size;
6023 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08006024 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006025
6026 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08006027 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04006028 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6029 inline_size = btrfs_file_extent_inline_item_len(leaf,
6030 btrfs_item_nr(leaf, path->slots[0]));
6031 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006032 if (!tmp)
6033 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006034 ptr = btrfs_file_extent_inline_start(item);
6035
6036 read_extent_buffer(leaf, tmp, ptr, inline_size);
6037
Chris Mason5b050f02008-11-11 09:34:41 -05006038 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006039 ret = btrfs_decompress(compress_type, tmp, page,
6040 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006041 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08006042 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04006043 unsigned long copy_size = min_t(u64,
6044 PAGE_CACHE_SIZE - pg_offset,
6045 max_size - extent_offset);
6046 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08006047 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04006048 }
6049 kfree(tmp);
6050 return 0;
6051}
6052
Chris Masond352ac62008-09-29 15:18:18 -04006053/*
6054 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006055 * the ugly parts come from merging extents from the disk with the in-ram
6056 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006057 * where the in-ram extents might be locked pending data=ordered completion.
6058 *
6059 * This also copies inline extents directly into the page.
6060 */
Chris Masond3977122009-01-05 21:25:51 -05006061
Chris Masona52d9a82007-08-27 16:49:44 -04006062struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05006063 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04006064 int create)
6065{
6066 int ret;
6067 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04006068 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04006069 u64 extent_start = 0;
6070 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08006071 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006072 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006073 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04006074 struct btrfs_root *root = BTRFS_I(inode)->root;
6075 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006076 struct extent_buffer *leaf;
6077 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006078 struct extent_map *em = NULL;
6079 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05006080 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006081 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08006082 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04006083
Chris Masona52d9a82007-08-27 16:49:44 -04006084again:
Chris Mason890871b2009-09-02 16:24:52 -04006085 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006086 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006087 if (em)
6088 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006089 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006090
Chris Masona52d9a82007-08-27 16:49:44 -04006091 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006092 if (em->start > start || em->start + em->len <= start)
6093 free_extent_map(em);
6094 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006095 free_extent_map(em);
6096 else
6097 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006098 }
David Sterba172ddd62011-04-21 00:48:27 +02006099 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006100 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006101 err = -ENOMEM;
6102 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006103 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006104 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006105 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006106 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006107 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006108 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006109
6110 if (!path) {
6111 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006112 if (!path) {
6113 err = -ENOMEM;
6114 goto out;
6115 }
6116 /*
6117 * Chances are we'll be called again, so go ahead and do
6118 * readahead
6119 */
6120 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04006121 }
6122
Chris Mason179e29e2007-11-01 11:28:41 -04006123 ret = btrfs_lookup_file_extent(trans, root, path,
6124 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04006125 if (ret < 0) {
6126 err = ret;
6127 goto out;
6128 }
6129
6130 if (ret != 0) {
6131 if (path->slots[0] == 0)
6132 goto not_found;
6133 path->slots[0]--;
6134 }
6135
Chris Mason5f39d392007-10-15 16:14:19 -04006136 leaf = path->nodes[0];
6137 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006138 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006139 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006140 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6141 found_type = btrfs_key_type(&found_key);
6142 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006143 found_type != BTRFS_EXTENT_DATA_KEY) {
6144 goto not_found;
6145 }
6146
Chris Mason5f39d392007-10-15 16:14:19 -04006147 found_type = btrfs_file_extent_type(leaf, item);
6148 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08006149 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04006150 if (found_type == BTRFS_FILE_EXTENT_REG ||
6151 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006152 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006153 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006154 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6155 size_t size;
6156 size = btrfs_file_extent_inline_len(leaf, item);
Qu Wenruofda28322013-02-26 08:10:22 +00006157 extent_end = ALIGN(extent_start + size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04006158 }
6159
6160 if (start >= extent_end) {
6161 path->slots[0]++;
6162 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6163 ret = btrfs_next_leaf(root, path);
6164 if (ret < 0) {
6165 err = ret;
6166 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006167 }
Yan Zheng9036c102008-10-30 14:19:41 -04006168 if (ret > 0)
6169 goto not_found;
6170 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006171 }
Yan Zheng9036c102008-10-30 14:19:41 -04006172 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6173 if (found_key.objectid != objectid ||
6174 found_key.type != BTRFS_EXTENT_DATA_KEY)
6175 goto not_found;
6176 if (start + len <= found_key.offset)
6177 goto not_found;
6178 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006179 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006180 em->len = found_key.offset - start;
6181 goto not_found_em;
6182 }
6183
Josef Bacikcc95bef2013-04-04 14:31:27 -04006184 em->ram_bytes = btrfs_file_extent_ram_bytes(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04006185 if (found_type == BTRFS_FILE_EXTENT_REG ||
6186 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04006187 em->start = extent_start;
6188 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05006189 em->orig_start = extent_start -
6190 btrfs_file_extent_offset(leaf, item);
Josef Bacikb4939682012-12-03 10:31:19 -05006191 em->orig_block_len = btrfs_file_extent_disk_num_bytes(leaf,
6192 item);
Chris Masondb945352007-10-15 16:15:53 -04006193 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
6194 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04006195 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04006196 goto insert;
6197 }
Li Zefan261507a02010-12-17 14:21:50 +08006198 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04006199 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08006200 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006201 em->block_start = bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05006202 em->block_len = em->orig_block_len;
Chris Masonc8b97812008-10-29 14:49:59 -04006203 } else {
6204 bytenr += btrfs_file_extent_offset(leaf, item);
6205 em->block_start = bytenr;
6206 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04006207 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
6208 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04006209 }
Chris Masona52d9a82007-08-27 16:49:44 -04006210 goto insert;
6211 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006212 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006213 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006214 size_t size;
6215 size_t extent_offset;
6216 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006217
Chris Masona52d9a82007-08-27 16:49:44 -04006218 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04006219 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04006220 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04006221 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04006222 goto out;
6223 }
6224
Yan Zheng9036c102008-10-30 14:19:41 -04006225 size = btrfs_file_extent_inline_len(leaf, item);
6226 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05006227 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04006228 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006229 em->start = extent_start + extent_offset;
Qu Wenruofda28322013-02-26 08:10:22 +00006230 em->len = ALIGN(copy_size, root->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006231 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006232 em->orig_start = em->start;
Li Zefan261507a02010-12-17 14:21:50 +08006233 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04006234 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08006235 em->compress_type = compress_type;
6236 }
Yan689f9342007-10-29 11:41:07 -04006237 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04006238 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006239 if (btrfs_file_extent_compression(leaf, item) !=
6240 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04006241 ret = uncompress_inline(path, inode, page,
6242 pg_offset,
6243 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006244 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04006245 } else {
6246 map = kmap(page);
6247 read_extent_buffer(leaf, map + pg_offset, ptr,
6248 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04006249 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
6250 memset(map + pg_offset + copy_size, 0,
6251 PAGE_CACHE_SIZE - pg_offset -
6252 copy_size);
6253 }
Chris Masonc8b97812008-10-29 14:49:59 -04006254 kunmap(page);
6255 }
Chris Mason179e29e2007-11-01 11:28:41 -04006256 flush_dcache_page(page);
6257 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01006258 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04006259 if (!trans) {
6260 kunmap(page);
6261 free_extent_map(em);
6262 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04006263
David Sterbab3b4aa72011-04-21 01:20:15 +02006264 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006265 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04006266
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006267 if (IS_ERR(trans))
6268 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04006269 goto again;
6270 }
Chris Masonc8b97812008-10-29 14:49:59 -04006271 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05006272 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04006273 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006274 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04006275 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04006276 }
Chris Masond1310b22008-01-24 16:13:08 -05006277 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006278 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006279 goto insert;
6280 } else {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00006281 WARN(1, KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04006282 }
6283not_found:
6284 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006285 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006286 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006287not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006288 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04006289 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006290insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006291 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006292 if (em->start > start || extent_map_end(em) <= start) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006293 btrfs_err(root->fs_info, "bad extent! em: [%llu %llu] passed [%llu %llu]",
6294 (unsigned long long)em->start,
6295 (unsigned long long)em->len,
6296 (unsigned long long)start,
6297 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04006298 err = -EIO;
6299 goto out;
6300 }
Chris Masond1310b22008-01-24 16:13:08 -05006301
6302 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006303 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006304 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006305 /* it is possible that someone inserted the extent into the tree
6306 * while we had the lock dropped. It is also possible that
6307 * an overlapping map exists in the tree
6308 */
Chris Masona52d9a82007-08-27 16:49:44 -04006309 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04006310 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006311
6312 ret = 0;
6313
Chris Mason3b951512008-04-17 11:29:12 -04006314 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04006315 if (existing && (existing->start > start ||
6316 existing->start + existing->len <= start)) {
6317 free_extent_map(existing);
6318 existing = NULL;
6319 }
Chris Mason3b951512008-04-17 11:29:12 -04006320 if (!existing) {
6321 existing = lookup_extent_mapping(em_tree, em->start,
6322 em->len);
6323 if (existing) {
6324 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006325 em, start,
6326 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04006327 free_extent_map(existing);
6328 if (err) {
6329 free_extent_map(em);
6330 em = NULL;
6331 }
6332 } else {
6333 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04006334 free_extent_map(em);
6335 em = NULL;
6336 }
6337 } else {
6338 free_extent_map(em);
6339 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006340 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006341 }
Chris Masona52d9a82007-08-27 16:49:44 -04006342 }
Chris Mason890871b2009-09-02 16:24:52 -04006343 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006344out:
liubo1abe9b82011-03-24 11:18:59 +00006345
Tsutomu Itohf0bd95e2012-10-01 03:08:37 -06006346 if (em)
6347 trace_btrfs_get_extent(root, em);
liubo1abe9b82011-03-24 11:18:59 +00006348
Chris Masonf4219502008-07-22 11:18:09 -04006349 if (path)
6350 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04006351 if (trans) {
6352 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05006353 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04006354 err = ret;
6355 }
Chris Masona52d9a82007-08-27 16:49:44 -04006356 if (err) {
6357 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04006358 return ERR_PTR(err);
6359 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006360 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04006361 return em;
6362}
6363
Chris Masonec29ed52011-02-23 16:23:20 -05006364struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
6365 size_t pg_offset, u64 start, u64 len,
6366 int create)
6367{
6368 struct extent_map *em;
6369 struct extent_map *hole_em = NULL;
6370 u64 range_start = start;
6371 u64 end;
6372 u64 found;
6373 u64 found_end;
6374 int err = 0;
6375
6376 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
6377 if (IS_ERR(em))
6378 return em;
6379 if (em) {
6380 /*
Liu Bof9e4fb52013-01-07 10:10:12 +00006381 * if our em maps to
6382 * - a hole or
6383 * - a pre-alloc extent,
6384 * there might actually be delalloc bytes behind it.
Chris Masonec29ed52011-02-23 16:23:20 -05006385 */
Liu Bof9e4fb52013-01-07 10:10:12 +00006386 if (em->block_start != EXTENT_MAP_HOLE &&
6387 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
Chris Masonec29ed52011-02-23 16:23:20 -05006388 return em;
6389 else
6390 hole_em = em;
6391 }
6392
6393 /* check to see if we've wrapped (len == -1 or similar) */
6394 end = start + len;
6395 if (end < start)
6396 end = (u64)-1;
6397 else
6398 end -= 1;
6399
6400 em = NULL;
6401
6402 /* ok, we didn't find anything, lets look for delalloc */
6403 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
6404 end, len, EXTENT_DELALLOC, 1);
6405 found_end = range_start + found;
6406 if (found_end < range_start)
6407 found_end = (u64)-1;
6408
6409 /*
6410 * we didn't find anything useful, return
6411 * the original results from get_extent()
6412 */
6413 if (range_start > end || found_end <= start) {
6414 em = hole_em;
6415 hole_em = NULL;
6416 goto out;
6417 }
6418
6419 /* adjust the range_start to make sure it doesn't
6420 * go backwards from the start they passed in
6421 */
6422 range_start = max(start,range_start);
6423 found = found_end - range_start;
6424
6425 if (found > 0) {
6426 u64 hole_start = start;
6427 u64 hole_len = len;
6428
David Sterba172ddd62011-04-21 00:48:27 +02006429 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05006430 if (!em) {
6431 err = -ENOMEM;
6432 goto out;
6433 }
6434 /*
6435 * when btrfs_get_extent can't find anything it
6436 * returns one huge hole
6437 *
6438 * make sure what it found really fits our range, and
6439 * adjust to make sure it is based on the start from
6440 * the caller
6441 */
6442 if (hole_em) {
6443 u64 calc_end = extent_map_end(hole_em);
6444
6445 if (calc_end <= start || (hole_em->start > end)) {
6446 free_extent_map(hole_em);
6447 hole_em = NULL;
6448 } else {
6449 hole_start = max(hole_em->start, start);
6450 hole_len = calc_end - hole_start;
6451 }
6452 }
6453 em->bdev = NULL;
6454 if (hole_em && range_start > hole_start) {
6455 /* our hole starts before our delalloc, so we
6456 * have to return just the parts of the hole
6457 * that go until the delalloc starts
6458 */
6459 em->len = min(hole_len,
6460 range_start - hole_start);
6461 em->start = hole_start;
6462 em->orig_start = hole_start;
6463 /*
6464 * don't adjust block start at all,
6465 * it is fixed at EXTENT_MAP_HOLE
6466 */
6467 em->block_start = hole_em->block_start;
6468 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00006469 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
6470 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05006471 } else {
6472 em->start = range_start;
6473 em->len = found;
6474 em->orig_start = range_start;
6475 em->block_start = EXTENT_MAP_DELALLOC;
6476 em->block_len = found;
6477 }
6478 } else if (hole_em) {
6479 return hole_em;
6480 }
6481out:
6482
6483 free_extent_map(hole_em);
6484 if (err) {
6485 free_extent_map(em);
6486 return ERR_PTR(err);
6487 }
6488 return em;
6489}
6490
Josef Bacik4b46fce2010-05-23 11:00:55 -04006491static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
6492 u64 start, u64 len)
6493{
6494 struct btrfs_root *root = BTRFS_I(inode)->root;
6495 struct btrfs_trans_handle *trans;
Josef Bacik70c8a912012-10-11 16:54:30 -04006496 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006497 struct btrfs_key ins;
6498 u64 alloc_hint;
6499 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006500
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006501 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006502 if (IS_ERR(trans))
6503 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006504
6505 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
6506
6507 alloc_hint = get_extent_allocation_hint(inode, start, len);
6508 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05006509 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006510 if (ret) {
6511 em = ERR_PTR(ret);
6512 goto out;
6513 }
6514
Josef Bacik70c8a912012-10-11 16:54:30 -04006515 em = create_pinned_em(inode, start, ins.offset, start, ins.objectid,
Josef Bacikcc95bef2013-04-04 14:31:27 -04006516 ins.offset, ins.offset, ins.offset, 0);
Josef Bacik70c8a912012-10-11 16:54:30 -04006517 if (IS_ERR(em))
6518 goto out;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006519
6520 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
6521 ins.offset, ins.offset, 0);
6522 if (ret) {
6523 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
6524 em = ERR_PTR(ret);
6525 }
6526out:
6527 btrfs_end_transaction(trans, root);
6528 return em;
6529}
6530
Chris Mason46bfbb52010-05-26 11:04:10 -04006531/*
6532 * returns 1 when the nocow is safe, < 1 on error, 0 if the
6533 * block must be cow'd
6534 */
6535static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
Josef Bacikeb384b52013-04-24 16:32:55 -04006536 struct inode *inode, u64 offset, u64 *len,
6537 u64 *orig_start, u64 *orig_block_len,
6538 u64 *ram_bytes)
Chris Mason46bfbb52010-05-26 11:04:10 -04006539{
6540 struct btrfs_path *path;
6541 int ret;
6542 struct extent_buffer *leaf;
6543 struct btrfs_root *root = BTRFS_I(inode)->root;
6544 struct btrfs_file_extent_item *fi;
6545 struct btrfs_key key;
6546 u64 disk_bytenr;
6547 u64 backref_offset;
6548 u64 extent_end;
6549 u64 num_bytes;
6550 int slot;
6551 int found_type;
6552
6553 path = btrfs_alloc_path();
6554 if (!path)
6555 return -ENOMEM;
6556
Li Zefan33345d012011-04-20 10:31:50 +08006557 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04006558 offset, 0);
6559 if (ret < 0)
6560 goto out;
6561
6562 slot = path->slots[0];
6563 if (ret == 1) {
6564 if (slot == 0) {
6565 /* can't find the item, must cow */
6566 ret = 0;
6567 goto out;
6568 }
6569 slot--;
6570 }
6571 ret = 0;
6572 leaf = path->nodes[0];
6573 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08006574 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04006575 key.type != BTRFS_EXTENT_DATA_KEY) {
6576 /* not our file or wrong item type, must cow */
6577 goto out;
6578 }
6579
6580 if (key.offset > offset) {
6581 /* Wrong offset, must cow */
6582 goto out;
6583 }
6584
6585 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
6586 found_type = btrfs_file_extent_type(leaf, fi);
6587 if (found_type != BTRFS_FILE_EXTENT_REG &&
6588 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
6589 /* not a regular extent, must cow */
6590 goto out;
6591 }
6592 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
6593 backref_offset = btrfs_file_extent_offset(leaf, fi);
6594
Josef Bacikeb384b52013-04-24 16:32:55 -04006595 *orig_start = key.offset - backref_offset;
6596 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
6597 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
6598
Chris Mason46bfbb52010-05-26 11:04:10 -04006599 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikeb384b52013-04-24 16:32:55 -04006600 if (extent_end < offset + *len) {
Chris Mason46bfbb52010-05-26 11:04:10 -04006601 /* extent doesn't include our full range, must cow */
6602 goto out;
6603 }
6604
6605 if (btrfs_extent_readonly(root, disk_bytenr))
6606 goto out;
6607
6608 /*
6609 * look for other files referencing this extent, if we
6610 * find any we must cow
6611 */
Li Zefan33345d012011-04-20 10:31:50 +08006612 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04006613 key.offset - backref_offset, disk_bytenr))
6614 goto out;
6615
6616 /*
6617 * adjust disk_bytenr and num_bytes to cover just the bytes
6618 * in this extent we are about to write. If there
6619 * are any csums in that range we have to cow in order
6620 * to keep the csums correct
6621 */
6622 disk_bytenr += backref_offset;
6623 disk_bytenr += offset - key.offset;
Josef Bacikeb384b52013-04-24 16:32:55 -04006624 num_bytes = min(offset + *len, extent_end) - offset;
Chris Mason46bfbb52010-05-26 11:04:10 -04006625 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
6626 goto out;
6627 /*
6628 * all of the above have passed, it is safe to overwrite this extent
6629 * without cow
6630 */
Josef Bacikeb384b52013-04-24 16:32:55 -04006631 *len = num_bytes;
Chris Mason46bfbb52010-05-26 11:04:10 -04006632 ret = 1;
6633out:
6634 btrfs_free_path(path);
6635 return ret;
6636}
6637
Josef Bacikeb838e72012-07-31 16:28:48 -04006638static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
6639 struct extent_state **cached_state, int writing)
6640{
6641 struct btrfs_ordered_extent *ordered;
6642 int ret = 0;
6643
6644 while (1) {
6645 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6646 0, cached_state);
6647 /*
6648 * We're concerned with the entire range that we're going to be
6649 * doing DIO to, so we need to make sure theres no ordered
6650 * extents in this range.
6651 */
6652 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6653 lockend - lockstart + 1);
6654
6655 /*
6656 * We need to make sure there are no buffered pages in this
6657 * range either, we could have raced between the invalidate in
6658 * generic_file_direct_write and locking the extent. The
6659 * invalidate needs to happen so that reads after a write do not
6660 * get stale data.
6661 */
6662 if (!ordered && (!writing ||
6663 !test_range_bit(&BTRFS_I(inode)->io_tree,
6664 lockstart, lockend, EXTENT_UPTODATE, 0,
6665 *cached_state)))
6666 break;
6667
6668 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6669 cached_state, GFP_NOFS);
6670
6671 if (ordered) {
6672 btrfs_start_ordered_extent(inode, ordered, 1);
6673 btrfs_put_ordered_extent(ordered);
6674 } else {
6675 /* Screw you mmap */
6676 ret = filemap_write_and_wait_range(inode->i_mapping,
6677 lockstart,
6678 lockend);
6679 if (ret)
6680 break;
6681
6682 /*
6683 * If we found a page that couldn't be invalidated just
6684 * fall back to buffered.
6685 */
6686 ret = invalidate_inode_pages2_range(inode->i_mapping,
6687 lockstart >> PAGE_CACHE_SHIFT,
6688 lockend >> PAGE_CACHE_SHIFT);
6689 if (ret)
6690 break;
6691 }
6692
6693 cond_resched();
6694 }
6695
6696 return ret;
6697}
6698
Josef Bacik69ffb542012-09-11 15:40:07 -04006699static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
6700 u64 len, u64 orig_start,
6701 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04006702 u64 orig_block_len, u64 ram_bytes,
6703 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04006704{
6705 struct extent_map_tree *em_tree;
6706 struct extent_map *em;
6707 struct btrfs_root *root = BTRFS_I(inode)->root;
6708 int ret;
6709
6710 em_tree = &BTRFS_I(inode)->extent_tree;
6711 em = alloc_extent_map();
6712 if (!em)
6713 return ERR_PTR(-ENOMEM);
6714
6715 em->start = start;
6716 em->orig_start = orig_start;
Josef Bacik2ab28f32012-10-12 15:27:49 -04006717 em->mod_start = start;
6718 em->mod_len = len;
Josef Bacik69ffb542012-09-11 15:40:07 -04006719 em->len = len;
6720 em->block_len = block_len;
6721 em->block_start = block_start;
6722 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05006723 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04006724 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04006725 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04006726 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6727 if (type == BTRFS_ORDERED_PREALLOC)
Josef Bacikb11e2342012-12-03 10:58:15 -05006728 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik69ffb542012-09-11 15:40:07 -04006729
6730 do {
6731 btrfs_drop_extent_cache(inode, em->start,
6732 em->start + em->len - 1, 0);
6733 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006734 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04006735 write_unlock(&em_tree->lock);
6736 } while (ret == -EEXIST);
6737
6738 if (ret) {
6739 free_extent_map(em);
6740 return ERR_PTR(ret);
6741 }
6742
6743 return em;
6744}
6745
6746
Josef Bacik4b46fce2010-05-23 11:00:55 -04006747static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
6748 struct buffer_head *bh_result, int create)
6749{
6750 struct extent_map *em;
6751 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04006752 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006753 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04006754 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006755 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04006756 struct btrfs_trans_handle *trans;
Josef Bacikeb838e72012-07-31 16:28:48 -04006757 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00006758 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006759
Miao Xie172a5042013-02-21 02:48:22 -07006760 if (create)
Josef Bacikeb838e72012-07-31 16:28:48 -04006761 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07006762 else
Josef Bacikc3298612012-08-03 16:49:19 -04006763 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04006764
Josef Bacikc3298612012-08-03 16:49:19 -04006765 lockstart = start;
6766 lockend = start + len - 1;
6767
Josef Bacikeb838e72012-07-31 16:28:48 -04006768 /*
6769 * If this errors out it's because we couldn't invalidate pagecache for
6770 * this range and we need to fallback to buffered.
6771 */
6772 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
6773 return -ENOTBLK;
6774
Josef Bacik4b46fce2010-05-23 11:00:55 -04006775 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04006776 if (IS_ERR(em)) {
6777 ret = PTR_ERR(em);
6778 goto unlock_err;
6779 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006780
6781 /*
6782 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
6783 * io. INLINE is special, and we could probably kludge it in here, but
6784 * it's still buffered so for safety lets just fall back to the generic
6785 * buffered path.
6786 *
6787 * For COMPRESSED we _have_ to read the entire extent in so we can
6788 * decompress it, so there will be buffering required no matter what we
6789 * do, so go ahead and fallback to buffered.
6790 *
6791 * We return -ENOTBLK because thats what makes DIO go ahead and go back
6792 * to buffered IO. Don't blame me, this is the price we pay for using
6793 * the generic code.
6794 */
6795 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
6796 em->block_start == EXTENT_MAP_INLINE) {
6797 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006798 ret = -ENOTBLK;
6799 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006800 }
6801
6802 /* Just a good old fashioned hole, return */
6803 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
6804 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6805 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006806 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006807 }
6808
6809 /*
6810 * We don't allocate a new extent in the following cases
6811 *
6812 * 1) The inode is marked as NODATACOW. In this case we'll just use the
6813 * existing extent.
6814 * 2) The extent is marked as PREALLOC. We're good to go here and can
6815 * just use the extent.
6816 *
6817 */
Chris Mason46bfbb52010-05-26 11:04:10 -04006818 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04006819 len = min(len, em->len - (start - em->start));
6820 lockstart = start + len;
6821 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04006822 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006823
6824 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
6825 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
6826 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006827 int type;
Josef Bacikeb384b52013-04-24 16:32:55 -04006828 u64 block_start, orig_start, orig_block_len, ram_bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006829
6830 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6831 type = BTRFS_ORDERED_PREALLOC;
6832 else
6833 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04006834 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04006835 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04006836
6837 /*
6838 * we're not going to log anything, but we do need
6839 * to make sure the current transaction stays open
6840 * while we look for nocow cross refs
6841 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006842 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006843 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04006844 goto must_cow;
6845
Josef Bacikeb384b52013-04-24 16:32:55 -04006846 if (can_nocow_odirect(trans, inode, start, &len, &orig_start,
6847 &orig_block_len, &ram_bytes) == 1) {
Josef Bacik69ffb542012-09-11 15:40:07 -04006848 if (type == BTRFS_ORDERED_PREALLOC) {
6849 free_extent_map(em);
6850 em = create_pinned_em(inode, start, len,
6851 orig_start,
Josef Bacikb4939682012-12-03 10:31:19 -05006852 block_start, len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04006853 orig_block_len,
6854 ram_bytes, type);
Josef Bacik69ffb542012-09-11 15:40:07 -04006855 if (IS_ERR(em)) {
6856 btrfs_end_transaction(trans, root);
6857 goto unlock_err;
6858 }
6859 }
6860
Chris Mason46bfbb52010-05-26 11:04:10 -04006861 ret = btrfs_add_ordered_extent_dio(inode, start,
6862 block_start, len, len, type);
6863 btrfs_end_transaction(trans, root);
6864 if (ret) {
6865 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006866 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04006867 }
6868 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006869 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006870 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006871 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006872must_cow:
6873 /*
6874 * this will cow the extent, reset the len in case we changed
6875 * it above
6876 */
6877 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04006878 free_extent_map(em);
6879 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04006880 if (IS_ERR(em)) {
6881 ret = PTR_ERR(em);
6882 goto unlock_err;
6883 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006884 len = min(len, em->len - (start - em->start));
6885unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04006886 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
6887 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04006888 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006889 bh_result->b_bdev = em->bdev;
6890 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04006891 if (create) {
6892 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6893 set_buffer_new(bh_result);
6894
6895 /*
6896 * Need to update the i_size under the extent lock so buffered
6897 * readers will get the updated i_size when we unlock.
6898 */
6899 if (start + len > i_size_read(inode))
6900 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00006901
Miao Xie172a5042013-02-21 02:48:22 -07006902 spin_lock(&BTRFS_I(inode)->lock);
6903 BTRFS_I(inode)->outstanding_extents++;
6904 spin_unlock(&BTRFS_I(inode)->lock);
6905
Miao Xie09348562013-02-07 10:12:07 +00006906 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6907 lockstart + len - 1, EXTENT_DELALLOC, NULL,
6908 &cached_state, GFP_NOFS);
6909 BUG_ON(ret);
Josef Bacikc3473e82012-06-19 10:59:00 -04006910 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006911
Josef Bacikeb838e72012-07-31 16:28:48 -04006912 /*
6913 * In the case of write we need to clear and unlock the entire range,
6914 * in the case of read we need to unlock only the end area that we
6915 * aren't using if there is any left over space.
6916 */
Liu Bo24c03fa2012-08-22 20:10:38 -06006917 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00006918 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6919 lockend, unlock_bits, 1, 0,
6920 &cached_state, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06006921 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04006922 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06006923 }
Josef Bacikeb838e72012-07-31 16:28:48 -04006924
Josef Bacik4b46fce2010-05-23 11:00:55 -04006925 free_extent_map(em);
6926
6927 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006928
6929unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04006930 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6931 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
6932 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006933}
6934
6935struct btrfs_dio_private {
6936 struct inode *inode;
6937 u64 logical_offset;
6938 u64 disk_bytenr;
6939 u64 bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006940 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00006941
6942 /* number of bios pending for this dio */
6943 atomic_t pending_bios;
6944
6945 /* IO errors */
6946 int errors;
6947
Chris Mason9be33952013-05-17 18:30:14 -04006948 /* orig_bio is our btrfs_io_bio */
Miao Xiee65e1532010-11-22 03:04:43 +00006949 struct bio *orig_bio;
Chris Mason9be33952013-05-17 18:30:14 -04006950
6951 /* dio_bio came from fs/direct-io.c */
6952 struct bio *dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006953};
6954
6955static void btrfs_endio_direct_read(struct bio *bio, int err)
6956{
Miao Xiee65e1532010-11-22 03:04:43 +00006957 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006958 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
6959 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006960 struct inode *inode = dip->inode;
6961 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9be33952013-05-17 18:30:14 -04006962 struct bio *dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006963 u64 start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006964
6965 start = dip->logical_offset;
6966 do {
6967 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
6968 struct page *page = bvec->bv_page;
6969 char *kaddr;
6970 u32 csum = ~(u32)0;
Josef Bacikc3298612012-08-03 16:49:19 -04006971 u64 private = ~(u32)0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006972 unsigned long flags;
6973
Josef Bacikc3298612012-08-03 16:49:19 -04006974 if (get_state_private(&BTRFS_I(inode)->io_tree,
6975 start, &private))
6976 goto failed;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006977 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08006978 kaddr = kmap_atomic(page);
Liu Bob0496682013-03-14 14:57:45 +00006979 csum = btrfs_csum_data(kaddr + bvec->bv_offset,
Josef Bacik4b46fce2010-05-23 11:00:55 -04006980 csum, bvec->bv_len);
6981 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08006982 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006983 local_irq_restore(flags);
6984
6985 flush_dcache_page(bvec->bv_page);
Josef Bacikc3298612012-08-03 16:49:19 -04006986 if (csum != private) {
6987failed:
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006988 btrfs_err(root->fs_info, "csum failed ino %llu off %llu csum %u private %u",
6989 (unsigned long long)btrfs_ino(inode),
6990 (unsigned long long)start,
6991 csum, (unsigned)private);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006992 err = -EIO;
6993 }
6994 }
6995
6996 start += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006997 bvec++;
6998 } while (bvec <= bvec_end);
6999
7000 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007001 dip->logical_offset + dip->bytes - 1);
Chris Mason9be33952013-05-17 18:30:14 -04007002 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007003
Josef Bacik4b46fce2010-05-23 11:00:55 -04007004 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04007005
7006 /* If we had a csum failure make sure to clear the uptodate flag */
7007 if (err)
Chris Mason9be33952013-05-17 18:30:14 -04007008 clear_bit(BIO_UPTODATE, &dio_bio->bi_flags);
7009 dio_end_io(dio_bio, err);
7010 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007011}
7012
7013static void btrfs_endio_direct_write(struct bio *bio, int err)
7014{
7015 struct btrfs_dio_private *dip = bio->bi_private;
7016 struct inode *inode = dip->inode;
7017 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007018 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05007019 u64 ordered_offset = dip->logical_offset;
7020 u64 ordered_bytes = dip->bytes;
Chris Mason9be33952013-05-17 18:30:14 -04007021 struct bio *dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007022 int ret;
7023
7024 if (err)
7025 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05007026again:
7027 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
7028 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04007029 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007030 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05007031 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007032
Josef Bacik5fd02042012-05-02 14:00:54 -04007033 ordered->work.func = finish_ordered_fn;
7034 ordered->work.flags = 0;
7035 btrfs_queue_worker(&root->fs_info->endio_write_workers,
7036 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05007037out_test:
7038 /*
7039 * our bio might span multiple ordered extents. If we haven't
7040 * completed the accounting for the whole dio, go back and try again
7041 */
7042 if (ordered_offset < dip->logical_offset + dip->bytes) {
7043 ordered_bytes = dip->logical_offset + dip->bytes -
7044 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04007045 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05007046 goto again;
7047 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007048out_done:
Chris Mason9be33952013-05-17 18:30:14 -04007049 dio_bio = dip->dio_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007050
Josef Bacik4b46fce2010-05-23 11:00:55 -04007051 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04007052
7053 /* If we had an error make sure to clear the uptodate flag */
7054 if (err)
Chris Mason9be33952013-05-17 18:30:14 -04007055 clear_bit(BIO_UPTODATE, &dio_bio->bi_flags);
7056 dio_end_io(dio_bio, err);
7057 bio_put(bio);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007058}
7059
Chris Masoneaf25d92010-05-25 09:48:28 -04007060static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
7061 struct bio *bio, int mirror_num,
7062 unsigned long bio_flags, u64 offset)
7063{
7064 int ret;
7065 struct btrfs_root *root = BTRFS_I(inode)->root;
7066 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007067 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04007068 return 0;
7069}
7070
Miao Xiee65e1532010-11-22 03:04:43 +00007071static void btrfs_end_dio_bio(struct bio *bio, int err)
7072{
7073 struct btrfs_dio_private *dip = bio->bi_private;
7074
7075 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08007076 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00007077 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08007078 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00007079 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00007080 dip->errors = 1;
7081
7082 /*
7083 * before atomic variable goto zero, we must make sure
7084 * dip->errors is perceived to be set.
7085 */
7086 smp_mb__before_atomic_dec();
7087 }
7088
7089 /* if there are more bios still pending for this dio, just exit */
7090 if (!atomic_dec_and_test(&dip->pending_bios))
7091 goto out;
7092
Chris Mason9be33952013-05-17 18:30:14 -04007093 if (dip->errors) {
Miao Xiee65e1532010-11-22 03:04:43 +00007094 bio_io_error(dip->orig_bio);
Chris Mason9be33952013-05-17 18:30:14 -04007095 } else {
7096 set_bit(BIO_UPTODATE, &dip->dio_bio->bi_flags);
Miao Xiee65e1532010-11-22 03:04:43 +00007097 bio_endio(dip->orig_bio, 0);
7098 }
7099out:
7100 bio_put(bio);
7101}
7102
7103static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
7104 u64 first_sector, gfp_t gfp_flags)
7105{
7106 int nr_vecs = bio_get_nr_vecs(bdev);
7107 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
7108}
7109
7110static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
7111 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04007112 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00007113{
7114 int write = rw & REQ_WRITE;
7115 struct btrfs_root *root = BTRFS_I(inode)->root;
7116 int ret;
7117
Josef Bacikb812ce22012-11-16 13:56:32 -05007118 if (async_submit)
7119 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
7120
Miao Xiee65e1532010-11-22 03:04:43 +00007121 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04007122
7123 if (!write) {
7124 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
7125 if (ret)
7126 goto err;
7127 }
Miao Xiee65e1532010-11-22 03:04:43 +00007128
Josef Bacik1ae39932011-04-06 14:41:34 -04007129 if (skip_sum)
7130 goto map;
7131
7132 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00007133 ret = btrfs_wq_submit_bio(root->fs_info,
7134 inode, rw, bio, 0, 0,
7135 file_offset,
7136 __btrfs_submit_bio_start_direct_io,
7137 __btrfs_submit_bio_done);
7138 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04007139 } else if (write) {
7140 /*
7141 * If we aren't doing async submit, calculate the csum of the
7142 * bio now.
7143 */
7144 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
7145 if (ret)
7146 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00007147 } else if (!skip_sum) {
Josef Bacikc3298612012-08-03 16:49:19 -04007148 ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00007149 if (ret)
7150 goto err;
7151 }
Miao Xiee65e1532010-11-22 03:04:43 +00007152
Josef Bacik1ae39932011-04-06 14:41:34 -04007153map:
7154 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00007155err:
7156 bio_put(bio);
7157 return ret;
7158}
7159
7160static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
7161 int skip_sum)
7162{
7163 struct inode *inode = dip->inode;
7164 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00007165 struct bio *bio;
7166 struct bio *orig_bio = dip->orig_bio;
7167 struct bio_vec *bvec = orig_bio->bi_io_vec;
7168 u64 start_sector = orig_bio->bi_sector;
7169 u64 file_offset = dip->logical_offset;
7170 u64 submit_len = 0;
7171 u64 map_length;
7172 int nr_pages = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00007173 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04007174 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00007175
Miao Xiee65e1532010-11-22 03:04:43 +00007176 map_length = orig_bio->bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05007177 ret = btrfs_map_block(root->fs_info, rw, start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00007178 &map_length, NULL, 0);
7179 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04007180 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00007181 return -EIO;
7182 }
Josef Bacik02f57c72011-04-06 14:25:44 -04007183 if (map_length >= orig_bio->bi_size) {
7184 bio = orig_bio;
7185 goto submit;
7186 }
7187
David Woodhouse53b381b2013-01-29 18:40:14 -05007188 /* async crcs make it difficult to collect full stripe writes. */
7189 if (btrfs_get_alloc_profile(root, 1) &
7190 (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6))
7191 async_submit = 0;
7192 else
7193 async_submit = 1;
7194
Josef Bacik02f57c72011-04-06 14:25:44 -04007195 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
7196 if (!bio)
7197 return -ENOMEM;
7198 bio->bi_private = dip;
7199 bio->bi_end_io = btrfs_end_dio_bio;
7200 atomic_inc(&dip->pending_bios);
7201
Miao Xiee65e1532010-11-22 03:04:43 +00007202 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
7203 if (unlikely(map_length < submit_len + bvec->bv_len ||
7204 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
7205 bvec->bv_offset) < bvec->bv_len)) {
7206 /*
7207 * inc the count before we submit the bio so
7208 * we know the end IO handler won't happen before
7209 * we inc the count. Otherwise, the dip might get freed
7210 * before we're done setting it up
7211 */
7212 atomic_inc(&dip->pending_bios);
7213 ret = __btrfs_submit_dio_bio(bio, inode, rw,
7214 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04007215 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00007216 if (ret) {
7217 bio_put(bio);
7218 atomic_dec(&dip->pending_bios);
7219 goto out_err;
7220 }
7221
Miao Xiee65e1532010-11-22 03:04:43 +00007222 start_sector += submit_len >> 9;
7223 file_offset += submit_len;
7224
7225 submit_len = 0;
7226 nr_pages = 0;
7227
7228 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
7229 start_sector, GFP_NOFS);
7230 if (!bio)
7231 goto out_err;
7232 bio->bi_private = dip;
7233 bio->bi_end_io = btrfs_end_dio_bio;
7234
7235 map_length = orig_bio->bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05007236 ret = btrfs_map_block(root->fs_info, rw,
Stefan Behrens3ec706c2012-11-05 15:46:42 +01007237 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00007238 &map_length, NULL, 0);
7239 if (ret) {
7240 bio_put(bio);
7241 goto out_err;
7242 }
7243 } else {
7244 submit_len += bvec->bv_len;
7245 nr_pages ++;
7246 bvec++;
7247 }
7248 }
7249
Josef Bacik02f57c72011-04-06 14:25:44 -04007250submit:
Miao Xiee65e1532010-11-22 03:04:43 +00007251 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04007252 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00007253 if (!ret)
7254 return 0;
7255
7256 bio_put(bio);
7257out_err:
7258 dip->errors = 1;
7259 /*
7260 * before atomic variable goto zero, we must
7261 * make sure dip->errors is perceived to be set.
7262 */
7263 smp_mb__before_atomic_dec();
7264 if (atomic_dec_and_test(&dip->pending_bios))
7265 bio_io_error(dip->orig_bio);
7266
7267 /* bio_end_io() will handle error, so we needn't return it */
7268 return 0;
7269}
7270
Chris Mason9be33952013-05-17 18:30:14 -04007271static void btrfs_submit_direct(int rw, struct bio *dio_bio,
7272 struct inode *inode, loff_t file_offset)
Josef Bacik4b46fce2010-05-23 11:00:55 -04007273{
7274 struct btrfs_root *root = BTRFS_I(inode)->root;
7275 struct btrfs_dio_private *dip;
Chris Mason9be33952013-05-17 18:30:14 -04007276 struct bio_vec *bvec = dio_bio->bi_io_vec;
7277 struct bio *io_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007278 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02007279 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007280 int ret = 0;
7281
7282 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
7283
Chris Mason9be33952013-05-17 18:30:14 -04007284 io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
7285
7286 if (!io_bio) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04007287 ret = -ENOMEM;
7288 goto free_ordered;
7289 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007290
Chris Mason9be33952013-05-17 18:30:14 -04007291 dip = kmalloc(sizeof(*dip), GFP_NOFS);
7292 if (!dip) {
7293 ret = -ENOMEM;
7294 goto free_io_bio;
7295 }
7296
7297 dip->private = dio_bio->bi_private;
7298 io_bio->bi_private = dio_bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007299 dip->inode = inode;
7300 dip->logical_offset = file_offset;
7301
Josef Bacik4b46fce2010-05-23 11:00:55 -04007302 dip->bytes = 0;
7303 do {
7304 dip->bytes += bvec->bv_len;
7305 bvec++;
Chris Mason9be33952013-05-17 18:30:14 -04007306 } while (bvec <= (dio_bio->bi_io_vec + dio_bio->bi_vcnt - 1));
Josef Bacik4b46fce2010-05-23 11:00:55 -04007307
Chris Mason9be33952013-05-17 18:30:14 -04007308 dip->disk_bytenr = (u64)dio_bio->bi_sector << 9;
7309 io_bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00007310 dip->errors = 0;
Chris Mason9be33952013-05-17 18:30:14 -04007311 dip->orig_bio = io_bio;
7312 dip->dio_bio = dio_bio;
Miao Xiee65e1532010-11-22 03:04:43 +00007313 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007314
7315 if (write)
Chris Mason9be33952013-05-17 18:30:14 -04007316 io_bio->bi_end_io = btrfs_endio_direct_write;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007317 else
Chris Mason9be33952013-05-17 18:30:14 -04007318 io_bio->bi_end_io = btrfs_endio_direct_read;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007319
Miao Xiee65e1532010-11-22 03:04:43 +00007320 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
7321 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04007322 return;
Chris Mason9be33952013-05-17 18:30:14 -04007323
7324free_io_bio:
7325 bio_put(io_bio);
7326
Josef Bacik4b46fce2010-05-23 11:00:55 -04007327free_ordered:
7328 /*
7329 * If this is a write, we need to clean up the reserved space and kill
7330 * the ordered extent.
7331 */
7332 if (write) {
7333 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05007334 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007335 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
7336 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
7337 btrfs_free_reserved_extent(root, ordered->start,
7338 ordered->disk_len);
7339 btrfs_put_ordered_extent(ordered);
7340 btrfs_put_ordered_extent(ordered);
7341 }
Chris Mason9be33952013-05-17 18:30:14 -04007342 bio_endio(dio_bio, ret);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007343}
7344
Chris Mason5a5f79b2010-05-26 21:33:37 -04007345static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
7346 const struct iovec *iov, loff_t offset,
7347 unsigned long nr_segs)
7348{
7349 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00007350 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04007351 size_t size;
7352 unsigned long addr;
7353 unsigned blocksize_mask = root->sectorsize - 1;
7354 ssize_t retval = -EINVAL;
7355 loff_t end = offset;
7356
7357 if (offset & blocksize_mask)
7358 goto out;
7359
7360 /* Check the memory alignment. Blocks cannot straddle pages */
7361 for (seg = 0; seg < nr_segs; seg++) {
7362 addr = (unsigned long)iov[seg].iov_base;
7363 size = iov[seg].iov_len;
7364 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00007365 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04007366 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00007367
7368 /* If this is a write we don't need to check anymore */
7369 if (rw & WRITE)
7370 continue;
7371
7372 /*
7373 * Check to make sure we don't have duplicate iov_base's in this
7374 * iovec, if so return EINVAL, otherwise we'll get csum errors
7375 * when reading back.
7376 */
7377 for (i = seg + 1; i < nr_segs; i++) {
7378 if (iov[seg].iov_base == iov[i].iov_base)
7379 goto out;
7380 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04007381 }
7382 retval = 0;
7383out:
7384 return retval;
7385}
Josef Bacikeb838e72012-07-31 16:28:48 -04007386
Chris Mason16432982008-04-10 10:23:21 -04007387static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
7388 const struct iovec *iov, loff_t offset,
7389 unsigned long nr_segs)
7390{
Josef Bacik4b46fce2010-05-23 11:00:55 -04007391 struct file *file = iocb->ki_filp;
7392 struct inode *inode = file->f_mapping->host;
Miao Xie09348562013-02-07 10:12:07 +00007393 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00007394 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00007395 bool wakeup = true;
7396 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00007397 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007398
Chris Mason5a5f79b2010-05-26 21:33:37 -04007399 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
Josef Bacikeb838e72012-07-31 16:28:48 -04007400 offset, nr_segs))
Chris Mason5a5f79b2010-05-26 21:33:37 -04007401 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04007402
Miao Xie38851cc2013-02-08 07:04:11 +00007403 atomic_inc(&inode->i_dio_count);
7404 smp_mb__after_atomic_inc();
7405
Miao Xie09348562013-02-07 10:12:07 +00007406 if (rw & WRITE) {
7407 count = iov_length(iov, nr_segs);
Miao Xie38851cc2013-02-08 07:04:11 +00007408 /*
7409 * If the write DIO is beyond the EOF, we need update
7410 * the isize, but it is protected by i_mutex. So we can
7411 * not unlock the i_mutex at this case.
7412 */
7413 if (offset + count <= inode->i_size) {
7414 mutex_unlock(&inode->i_mutex);
7415 relock = true;
7416 }
Miao Xie09348562013-02-07 10:12:07 +00007417 ret = btrfs_delalloc_reserve_space(inode, count);
7418 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00007419 goto out;
7420 } else if (unlikely(test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
7421 &BTRFS_I(inode)->runtime_flags))) {
7422 inode_dio_done(inode);
7423 flags = DIO_LOCKING | DIO_SKIP_HOLES;
7424 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00007425 }
7426
7427 ret = __blockdev_direct_IO(rw, iocb, inode,
7428 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
7429 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
Miao Xie2e60a512013-02-08 07:01:08 +00007430 btrfs_submit_direct, flags);
Miao Xie09348562013-02-07 10:12:07 +00007431 if (rw & WRITE) {
7432 if (ret < 0 && ret != -EIOCBQUEUED)
7433 btrfs_delalloc_release_space(inode, count);
Miao Xie172a5042013-02-21 02:48:22 -07007434 else if (ret >= 0 && (size_t)ret < count)
Miao Xie09348562013-02-07 10:12:07 +00007435 btrfs_delalloc_release_space(inode,
7436 count - (size_t)ret);
Miao Xie172a5042013-02-21 02:48:22 -07007437 else
7438 btrfs_delalloc_release_metadata(inode, 0);
Miao Xie09348562013-02-07 10:12:07 +00007439 }
Miao Xie38851cc2013-02-08 07:04:11 +00007440out:
Miao Xie2e60a512013-02-08 07:01:08 +00007441 if (wakeup)
7442 inode_dio_done(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00007443 if (relock)
7444 mutex_lock(&inode->i_mutex);
Miao Xie09348562013-02-07 10:12:07 +00007445
7446 return ret;
Chris Mason16432982008-04-10 10:23:21 -04007447}
7448
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00007449#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
7450
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007451static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
7452 __u64 start, __u64 len)
7453{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00007454 int ret;
7455
7456 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
7457 if (ret)
7458 return ret;
7459
Chris Masonec29ed52011-02-23 16:23:20 -05007460 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007461}
7462
Chris Mason9ebefb182007-06-15 13:50:00 -04007463int btrfs_readpage(struct file *file, struct page *page)
7464{
Chris Masond1310b22008-01-24 16:13:08 -05007465 struct extent_io_tree *tree;
7466 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02007467 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04007468}
Chris Mason1832a6d2007-12-21 16:27:21 -05007469
Chris Mason39279cc2007-06-12 06:35:45 -04007470static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
7471{
Chris Masond1310b22008-01-24 16:13:08 -05007472 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04007473
7474
7475 if (current->flags & PF_MEMALLOC) {
7476 redirty_page_for_writepage(wbc, page);
7477 unlock_page(page);
7478 return 0;
7479 }
Chris Masond1310b22008-01-24 16:13:08 -05007480 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04007481 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
7482}
Chris Mason39279cc2007-06-12 06:35:45 -04007483
Eric Sandeen48a3b632013-04-25 20:41:01 +00007484static int btrfs_writepages(struct address_space *mapping,
7485 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04007486{
Chris Masond1310b22008-01-24 16:13:08 -05007487 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05007488
Chris Masond1310b22008-01-24 16:13:08 -05007489 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04007490 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
7491}
7492
Chris Mason3ab2fb52007-11-08 10:59:22 -05007493static int
7494btrfs_readpages(struct file *file, struct address_space *mapping,
7495 struct list_head *pages, unsigned nr_pages)
7496{
Chris Masond1310b22008-01-24 16:13:08 -05007497 struct extent_io_tree *tree;
7498 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05007499 return extent_readpages(tree, mapping, pages, nr_pages,
7500 btrfs_get_extent);
7501}
Chris Masone6dcd2d2008-07-17 12:53:50 -04007502static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04007503{
Chris Masond1310b22008-01-24 16:13:08 -05007504 struct extent_io_tree *tree;
7505 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04007506 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04007507
Chris Masond1310b22008-01-24 16:13:08 -05007508 tree = &BTRFS_I(page->mapping->host)->io_tree;
7509 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05007510 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04007511 if (ret == 1) {
7512 ClearPagePrivate(page);
7513 set_page_private(page, 0);
7514 page_cache_release(page);
7515 }
7516 return ret;
7517}
Chris Mason39279cc2007-06-12 06:35:45 -04007518
Chris Masone6dcd2d2008-07-17 12:53:50 -04007519static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
7520{
Chris Mason98509cfc2008-09-11 15:51:43 -04007521 if (PageWriteback(page) || PageDirty(page))
7522 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05007523 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007524}
7525
Chris Masona52d9a82007-08-27 16:49:44 -04007526static void btrfs_invalidatepage(struct page *page, unsigned long offset)
7527{
Josef Bacik5fd02042012-05-02 14:00:54 -04007528 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05007529 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007530 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00007531 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007532 u64 page_start = page_offset(page);
7533 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04007534
Chris Mason8b62b722009-09-02 16:53:46 -04007535 /*
7536 * we have the page locked, so new writeback can't start,
7537 * and the dirty bit won't be cleared while we are here.
7538 *
7539 * Wait for IO on this page so that we can safely clear
7540 * the PagePrivate2 bit and do ordered accounting
7541 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04007542 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04007543
Josef Bacik5fd02042012-05-02 14:00:54 -04007544 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007545 if (offset) {
7546 btrfs_releasepage(page, GFP_NOFS);
7547 return;
7548 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007549 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Miao Xie4eee4fa2012-12-21 09:17:45 +00007550 ordered = btrfs_lookup_ordered_extent(inode, page_offset(page));
Chris Masone6dcd2d2008-07-17 12:53:50 -04007551 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04007552 /*
7553 * IO on this page will never be started, so we need
7554 * to account for any ordered extents now
7555 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04007556 clear_extent_bit(tree, page_start, page_end,
7557 EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06007558 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
7559 EXTENT_DEFRAG, 1, 0, &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04007560 /*
7561 * whoever cleared the private bit is responsible
7562 * for the finish_ordered_io
7563 */
Josef Bacik5fd02042012-05-02 14:00:54 -04007564 if (TestClearPagePrivate2(page) &&
7565 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
7566 PAGE_CACHE_SIZE, 1)) {
7567 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04007568 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04007569 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00007570 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007571 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007572 }
7573 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04007574 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06007575 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
7576 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007577 __btrfs_releasepage(page, GFP_NOFS);
7578
Chris Mason4a096752008-07-21 10:29:44 -04007579 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04007580 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04007581 ClearPagePrivate(page);
7582 set_page_private(page, 0);
7583 page_cache_release(page);
7584 }
Chris Mason39279cc2007-06-12 06:35:45 -04007585}
7586
Chris Mason9ebefb182007-06-15 13:50:00 -04007587/*
7588 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
7589 * called from a page fault handler when a page is first dirtied. Hence we must
7590 * be careful to check for EOF conditions here. We set the page up correctly
7591 * for a written page which means we get ENOSPC checking when writing into
7592 * holes and correct delalloc and unwritten extent mapping on filesystems that
7593 * support these features.
7594 *
7595 * We are not allowed to take the i_mutex here so we have to play games to
7596 * protect against truncate races as the page could now be beyond EOF. Because
7597 * vmtruncate() writes the inode size before removing pages, once we have the
7598 * page lock we can determine safely if the page is beyond EOF. If it is not
7599 * beyond EOF, then the page is guaranteed safe against truncation until we
7600 * unlock the page.
7601 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07007602int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04007603{
Nick Pigginc2ec1752009-03-31 15:23:21 -07007604 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05007605 struct inode *inode = file_inode(vma->vm_file);
Chris Mason1832a6d2007-12-21 16:27:21 -05007606 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007607 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7608 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00007609 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007610 char *kaddr;
7611 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04007612 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05007613 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05007614 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04007615 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007616 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04007617
Jan Karab2b5ef52012-06-12 16:20:45 +02007618 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04007619 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05007620 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04007621 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05007622 reserved = 1;
7623 }
Nick Piggin56a76f82009-03-31 15:23:23 -07007624 if (ret) {
7625 if (ret == -ENOMEM)
7626 ret = VM_FAULT_OOM;
7627 else /* -ENOSPC, -EIO, etc */
7628 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05007629 if (reserved)
7630 goto out;
7631 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07007632 }
Chris Mason1832a6d2007-12-21 16:27:21 -05007633
Nick Piggin56a76f82009-03-31 15:23:23 -07007634 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04007635again:
Chris Mason9ebefb182007-06-15 13:50:00 -04007636 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04007637 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007638 page_start = page_offset(page);
7639 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04007640
Chris Mason9ebefb182007-06-15 13:50:00 -04007641 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04007642 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04007643 /* page got truncated out from underneath us */
7644 goto out_unlock;
7645 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04007646 wait_on_page_writeback(page);
7647
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007648 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007649 set_page_extent_mapped(page);
7650
Chris Masoneb84ae02008-07-17 13:53:27 -04007651 /*
7652 * we can't set the delalloc bits if there are pending ordered
7653 * extents. Drop our locks and wait for them to finish
7654 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04007655 ordered = btrfs_lookup_ordered_extent(inode, page_start);
7656 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00007657 unlock_extent_cached(io_tree, page_start, page_end,
7658 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007659 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04007660 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007661 btrfs_put_ordered_extent(ordered);
7662 goto again;
7663 }
7664
Josef Bacikfbf19082009-10-01 17:10:23 -04007665 /*
7666 * XXX - page_mkwrite gets called every time the page is dirtied, even
7667 * if it was already dirty, so for space accounting reasons we need to
7668 * clear any delalloc bits for the range we are fixing to save. There
7669 * is probably a better way to do this, but for now keep consistent with
7670 * prepare_pages in the normal write path.
7671 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00007672 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06007673 EXTENT_DIRTY | EXTENT_DELALLOC |
7674 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00007675 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04007676
Josef Bacik2ac55d42010-02-03 19:33:23 +00007677 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
7678 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007679 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00007680 unlock_extent_cached(io_tree, page_start, page_end,
7681 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007682 ret = VM_FAULT_SIGBUS;
7683 goto out_unlock;
7684 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04007685 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04007686
7687 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04007688 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007689 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04007690 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04007691 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04007692
Chris Masone6dcd2d2008-07-17 12:53:50 -04007693 if (zero_start != PAGE_CACHE_SIZE) {
7694 kaddr = kmap(page);
7695 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
7696 flush_dcache_page(page);
7697 kunmap(page);
7698 }
Chris Mason247e7432008-07-17 12:53:51 -04007699 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007700 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04007701 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007702
Chris Mason257c62e2009-10-13 13:21:08 -04007703 BTRFS_I(inode)->last_trans = root->fs_info->generation;
7704 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06007705 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04007706
Josef Bacik2ac55d42010-02-03 19:33:23 +00007707 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04007708
7709out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02007710 if (!ret) {
7711 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04007712 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02007713 }
Chris Mason9ebefb182007-06-15 13:50:00 -04007714 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05007715out:
Josef Bacikec39e182012-01-12 19:10:12 -05007716 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05007717out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02007718 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04007719 return ret;
7720}
7721
Josef Bacika41ad392011-01-31 15:30:16 -05007722static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04007723{
7724 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04007725 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04007726 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05007727 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007728 struct btrfs_trans_handle *trans;
Chris Masondbe674a2008-07-17 12:54:05 -04007729 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04007730 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04007731
Josef Bacik2aaa6652012-08-29 14:27:18 -04007732 ret = btrfs_truncate_page(inode, inode->i_size, 0, 0);
Josef Bacik5d5e1032009-10-13 16:46:49 -04007733 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05007734 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00007735
Chris Mason4a096752008-07-21 10:29:44 -04007736 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00007737 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007738
Josef Bacikfcb80c22011-05-03 10:40:22 -04007739 /*
7740 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
7741 * 3 things going on here
7742 *
7743 * 1) We need to reserve space for our orphan item and the space to
7744 * delete our orphan item. Lord knows we don't want to have a dangling
7745 * orphan item because we didn't reserve space to remove it.
7746 *
7747 * 2) We need to reserve space to update our inode.
7748 *
7749 * 3) We need to have something to cache all the space that is going to
7750 * be free'd up by the truncate operation, but also have some slack
7751 * space reserved in case it uses space during the truncate (thank you
7752 * very much snapshotting).
7753 *
7754 * And we need these to all be seperate. The fact is we can use alot of
7755 * space doing the truncate, and we have no earthly idea how much space
7756 * we will use, so we need the truncate reservation to be seperate so it
7757 * doesn't end up using space reserved for updating the inode or
7758 * removing the orphan item. We also need to be able to stop the
7759 * transaction and start a new one, which means we need to be able to
7760 * update the inode several times, and we have no idea of knowing how
7761 * many times that will be, so we can't just reserve 1 item for the
7762 * entirety of the opration, so that has to be done seperately as well.
7763 * Then there is the orphan item, which does indeed need to be held on
7764 * to for the whole operation, and we need nobody to touch this reserved
7765 * space except the orphan code.
7766 *
7767 * So that leaves us with
7768 *
7769 * 1) root->orphan_block_rsv - for the orphan deletion.
7770 * 2) rsv - for the truncate reservation, which we will steal from the
7771 * transaction reservation.
7772 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
7773 * updating the inode.
7774 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06007775 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04007776 if (!rsv)
7777 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04007778 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04007779 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05007780
Josef Bacik907cbce2011-08-08 13:46:15 -04007781 /*
Josef Bacik07127182011-08-19 10:29:59 -04007782 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04007783 * 1 for updating the inode.
7784 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05007785 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04007786 if (IS_ERR(trans)) {
7787 err = PTR_ERR(trans);
7788 goto out;
7789 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05007790
Josef Bacik907cbce2011-08-08 13:46:15 -04007791 /* Migrate the slack space for the truncate to our reserve */
7792 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
7793 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04007794 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05007795
Chris Mason5a3f23d2009-03-31 13:27:11 -04007796 /*
7797 * setattr is responsible for setting the ordered_data_close flag,
7798 * but that is only tested during the last file release. That
7799 * could happen well after the next commit, leaving a great big
7800 * window where new writes may get lost if someone chooses to write
7801 * to this file after truncating to zero
7802 *
7803 * The inode doesn't have any dirty data here, and so if we commit
7804 * this is a noop. If someone immediately starts writing to the inode
7805 * it is very likely we'll catch some of their writes in this
7806 * transaction, and the commit will find this file on the ordered
7807 * data list with good things to send down.
7808 *
7809 * This is a best effort solution, there is still a window where
7810 * using truncate to replace the contents of the file will
7811 * end up with a zero length file after a crash.
7812 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04007813 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
7814 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007815 btrfs_add_ordered_operation(trans, root, inode);
7816
Josef Bacik5dc562c2012-08-17 13:14:17 -04007817 /*
7818 * So if we truncate and then write and fsync we normally would just
7819 * write the extents that changed, which is a problem if we need to
7820 * first truncate that entire inode. So set this flag so we write out
7821 * all of the extents in the inode to the sync log so we're completely
7822 * safe.
7823 */
7824 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007825 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04007826
Yan, Zheng80825102009-11-12 09:35:36 +00007827 while (1) {
7828 ret = btrfs_truncate_inode_items(trans, root, inode,
7829 inode->i_size,
7830 BTRFS_EXTENT_DATA_KEY);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007831 if (ret != -ENOSPC) {
Josef Bacik3893e332011-01-31 16:03:11 -05007832 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00007833 break;
Josef Bacik3893e332011-01-31 16:03:11 -05007834 }
Chris Mason39279cc2007-06-12 06:35:45 -04007835
Josef Bacikfcb80c22011-05-03 10:40:22 -04007836 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007837 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007838 if (ret) {
7839 err = ret;
7840 break;
7841 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04007842
Yan, Zheng80825102009-11-12 09:35:36 +00007843 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00007844 btrfs_btree_balance_dirty(root);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007845
7846 trans = btrfs_start_transaction(root, 2);
7847 if (IS_ERR(trans)) {
7848 ret = err = PTR_ERR(trans);
7849 trans = NULL;
7850 break;
7851 }
7852
7853 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
7854 rsv, min_size);
7855 BUG_ON(ret); /* shouldn't happen */
7856 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007857 }
7858
7859 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04007860 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007861 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007862 if (ret)
7863 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00007864 }
7865
Chris Mason917c16b2011-11-08 14:49:59 -05007866 if (trans) {
7867 trans->block_rsv = &root->fs_info->trans_block_rsv;
7868 ret = btrfs_update_inode(trans, root, inode);
7869 if (ret && !err)
7870 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04007871
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007872 ret = btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00007873 btrfs_btree_balance_dirty(root);
Chris Mason917c16b2011-11-08 14:49:59 -05007874 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04007875
7876out:
7877 btrfs_free_block_rsv(root, rsv);
7878
Josef Bacik3893e332011-01-31 16:03:11 -05007879 if (ret && !err)
7880 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05007881
Josef Bacik3893e332011-01-31 16:03:11 -05007882 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007883}
7884
Sven Wegener3b963622008-06-09 21:57:42 -04007885/*
Chris Masond352ac62008-09-29 15:18:18 -04007886 * create a new subvolume directory/inode (helper for the ioctl).
7887 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05007888int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007889 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04007890{
Chris Mason39279cc2007-06-12 06:35:45 -04007891 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04007892 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007893 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007894
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01007895 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
7896 new_dirid, new_dirid,
7897 S_IFDIR | (~current_umask() & S_IRWXUGO),
7898 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04007899 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04007900 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007901 inode->i_op = &btrfs_dir_inode_operations;
7902 inode->i_fop = &btrfs_dir_file_operations;
7903
Miklos Szeredibfe86842011-10-28 14:13:29 +02007904 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04007905 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04007906
Yan, Zheng76dda932009-09-21 16:00:26 -04007907 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04007908
Yan, Zheng76dda932009-09-21 16:00:26 -04007909 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07007910 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007911}
7912
Chris Mason39279cc2007-06-12 06:35:45 -04007913struct inode *btrfs_alloc_inode(struct super_block *sb)
7914{
7915 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007916 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007917
7918 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
7919 if (!ei)
7920 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007921
7922 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007923 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04007924 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04007925 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04007926 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007927 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007928 ei->disk_i_size = 0;
7929 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04007930 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007931 ei->index_cnt = (u64)-1;
7932 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06007933 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007934
Josef Bacik9e0baf62011-07-15 15:16:44 +00007935 spin_lock_init(&ei->lock);
7936 ei->outstanding_extents = 0;
7937 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007938
Josef Bacik72ac3c02012-05-23 14:13:11 -04007939 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08007940 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007941
Miao Xie16cdcec2011-04-22 18:12:22 +08007942 ei->delayed_node = NULL;
7943
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007944 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02007945 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02007946 extent_io_tree_init(&ei->io_tree, &inode->i_data);
7947 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04007948 ei->io_tree.track_uptodate = 1;
7949 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05007950 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007951 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05007952 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007953 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007954 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007955 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007956 RB_CLEAR_NODE(&ei->rb_node);
7957
7958 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007959}
7960
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007961static void btrfs_i_callback(struct rcu_head *head)
7962{
7963 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007964 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
7965}
7966
Chris Mason39279cc2007-06-12 06:35:45 -04007967void btrfs_destroy_inode(struct inode *inode)
7968{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007969 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007970 struct btrfs_root *root = BTRFS_I(inode)->root;
7971
Al Virob3d9b7a2012-06-09 13:51:19 -04007972 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04007973 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00007974 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7975 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007976 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7977 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007978
Chris Mason5a3f23d2009-03-31 13:27:11 -04007979 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007980 * This can happen where we create an inode, but somebody else also
7981 * created the same inode and we need to destroy the one we already
7982 * created.
7983 */
7984 if (!root)
7985 goto free;
7986
7987 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007988 * Make sure we're properly removed from the ordered operation
7989 * lists.
7990 */
7991 smp_mb();
7992 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7993 spin_lock(&root->fs_info->ordered_extent_lock);
7994 list_del_init(&BTRFS_I(inode)->ordered_operations);
7995 spin_unlock(&root->fs_info->ordered_extent_lock);
7996 }
7997
Josef Bacik8a35d952012-05-23 14:26:42 -04007998 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7999 &BTRFS_I(inode)->runtime_flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008000 btrfs_info(root->fs_info, "inode %llu still on the orphan list",
8001 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04008002 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04008003 }
Josef Bacik7b128762008-07-24 12:17:14 -04008004
Chris Masond3977122009-01-05 21:25:51 -05008005 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04008006 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
8007 if (!ordered)
8008 break;
8009 else {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008010 btrfs_err(root->fs_info, "found ordered extent %llu %llu on inode cleanup",
8011 (unsigned long long)ordered->file_offset,
8012 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008013 btrfs_remove_ordered_extent(inode, ordered);
8014 btrfs_put_ordered_extent(ordered);
8015 btrfs_put_ordered_extent(ordered);
8016 }
8017 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008018 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008019 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05008020free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11008021 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04008022}
8023
Al Viro45321ac2010-06-07 13:43:19 -04008024int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04008025{
8026 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04008027
Naohiro Aota6379ef92013-06-06 09:56:34 +00008028 if (root == NULL)
8029 return 1;
8030
Liu Bofa6ac872013-02-20 14:10:23 +00008031 /* the snap/subvol tree is on deleting */
Josef Bacik0af3d002010-06-21 14:48:16 -04008032 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bofa6ac872013-02-20 14:10:23 +00008033 root != root->fs_info->tree_root)
Al Viro45321ac2010-06-07 13:43:19 -04008034 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04008035 else
Al Viro45321ac2010-06-07 13:43:19 -04008036 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04008037}
8038
Sven Wegener0ee0fda2008-07-30 16:54:26 -04008039static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04008040{
8041 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
8042
8043 inode_init_once(&ei->vfs_inode);
8044}
8045
8046void btrfs_destroy_cachep(void)
8047{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10008048 /*
8049 * Make sure all delayed rcu free inodes are flushed before we
8050 * destroy cache.
8051 */
8052 rcu_barrier();
Chris Mason39279cc2007-06-12 06:35:45 -04008053 if (btrfs_inode_cachep)
8054 kmem_cache_destroy(btrfs_inode_cachep);
8055 if (btrfs_trans_handle_cachep)
8056 kmem_cache_destroy(btrfs_trans_handle_cachep);
8057 if (btrfs_transaction_cachep)
8058 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04008059 if (btrfs_path_cachep)
8060 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05008061 if (btrfs_free_space_cachep)
8062 kmem_cache_destroy(btrfs_free_space_cachep);
Miao Xie8ccf6f192012-10-25 09:28:04 +00008063 if (btrfs_delalloc_work_cachep)
8064 kmem_cache_destroy(btrfs_delalloc_work_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04008065}
8066
8067int btrfs_init_cachep(void)
8068{
David Sterba837e1972012-09-07 03:00:48 -06008069 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008070 sizeof(struct btrfs_inode), 0,
8071 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04008072 if (!btrfs_inode_cachep)
8073 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008074
David Sterba837e1972012-09-07 03:00:48 -06008075 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008076 sizeof(struct btrfs_trans_handle), 0,
8077 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008078 if (!btrfs_trans_handle_cachep)
8079 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008080
David Sterba837e1972012-09-07 03:00:48 -06008081 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008082 sizeof(struct btrfs_transaction), 0,
8083 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008084 if (!btrfs_transaction_cachep)
8085 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008086
David Sterba837e1972012-09-07 03:00:48 -06008087 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008088 sizeof(struct btrfs_path), 0,
8089 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008090 if (!btrfs_path_cachep)
8091 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008092
David Sterba837e1972012-09-07 03:00:48 -06008093 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05008094 sizeof(struct btrfs_free_space), 0,
8095 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
8096 if (!btrfs_free_space_cachep)
8097 goto fail;
8098
Miao Xie8ccf6f192012-10-25 09:28:04 +00008099 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
8100 sizeof(struct btrfs_delalloc_work), 0,
8101 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
8102 NULL);
8103 if (!btrfs_delalloc_work_cachep)
8104 goto fail;
8105
Chris Mason39279cc2007-06-12 06:35:45 -04008106 return 0;
8107fail:
8108 btrfs_destroy_cachep();
8109 return -ENOMEM;
8110}
8111
8112static int btrfs_getattr(struct vfsmount *mnt,
8113 struct dentry *dentry, struct kstat *stat)
8114{
Miao Xiedf0af1a2013-01-29 10:11:59 +00008115 u64 delalloc_bytes;
Chris Mason39279cc2007-06-12 06:35:45 -04008116 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05008117 u32 blocksize = inode->i_sb->s_blocksize;
8118
Chris Mason39279cc2007-06-12 06:35:45 -04008119 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04008120 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05008121 stat->blksize = PAGE_CACHE_SIZE;
Miao Xiedf0af1a2013-01-29 10:11:59 +00008122
8123 spin_lock(&BTRFS_I(inode)->lock);
8124 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
8125 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05008126 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00008127 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04008128 return 0;
8129}
8130
Chris Masond3977122009-01-05 21:25:51 -05008131static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
8132 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04008133{
8134 struct btrfs_trans_handle *trans;
8135 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008136 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04008137 struct inode *new_inode = new_dentry->d_inode;
8138 struct inode *old_inode = old_dentry->d_inode;
8139 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008140 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008141 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04008142 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08008143 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008144
Li Zefan33345d012011-04-20 10:31:50 +08008145 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04008146 return -EPERM;
8147
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008148 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08008149 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05008150 return -EXDEV;
8151
Li Zefan33345d012011-04-20 10:31:50 +08008152 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
8153 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008154 return -ENOTEMPTY;
8155
Chris Mason39279cc2007-06-12 06:35:45 -04008156 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008157 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04008158 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05008159
8160
8161 /* check for collisions, even if the name isn't there */
Josef Bacika849b2f2013-10-09 12:24:04 -04008162 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
Chris Mason9c520572012-12-17 14:26:57 -05008163 new_dentry->d_name.name,
8164 new_dentry->d_name.len);
8165
8166 if (ret) {
8167 if (ret == -EEXIST) {
8168 /* we shouldn't get
8169 * eexist without a new_inode */
8170 if (!new_inode) {
8171 WARN_ON(1);
8172 return ret;
8173 }
8174 } else {
8175 /* maybe -EOVERFLOW */
8176 return ret;
8177 }
8178 }
8179 ret = 0;
8180
Chris Mason5a3f23d2009-03-31 13:27:11 -04008181 /*
8182 * we're using rename to replace one file with another.
8183 * and the replacement file is large. Start IO on it now so
8184 * we don't add too much work to the end of the transaction
8185 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04008186 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04008187 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
8188 filemap_flush(old_inode->i_mapping);
8189
Yan, Zheng76dda932009-09-21 16:00:26 -04008190 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08008191 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04008192 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04008193 /*
8194 * We want to reserve the absolute worst case amount of items. So if
8195 * both inodes are subvols and we need to unlink them then that would
8196 * require 4 item modifications, but if they are both normal inodes it
8197 * would require 5 item modifications, so we'll assume their normal
8198 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
8199 * should cover the worst case number of items we'll modify.
8200 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04008201 trans = btrfs_start_transaction(root, 11);
Johann Lombardib44c59a2011-03-31 13:23:47 +00008202 if (IS_ERR(trans)) {
8203 ret = PTR_ERR(trans);
8204 goto out_notrans;
8205 }
Chris Mason5f39d392007-10-15 16:14:19 -04008206
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008207 if (dest != root)
8208 btrfs_record_root_in_trans(trans, dest);
8209
Yan, Zhenga5719522009-09-24 09:17:31 -04008210 ret = btrfs_set_inode_index(new_dir, &index);
8211 if (ret)
8212 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04008213
Li Zefan33345d012011-04-20 10:31:50 +08008214 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008215 /* force full log commit if subvolume involved. */
8216 root->fs_info->last_trans_log_full_commit = trans->transid;
8217 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04008218 ret = btrfs_insert_inode_ref(trans, dest,
8219 new_dentry->d_name.name,
8220 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08008221 old_ino,
8222 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04008223 if (ret)
8224 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008225 /*
8226 * this is an ugly little race, but the rename is required
8227 * to make sure that if we crash, the inode is either at the
8228 * old name or the new one. pinning the log transaction lets
8229 * us make sure we don't allow a log commit to come in after
8230 * we unlink the name but before we add the new name back in.
8231 */
8232 btrfs_pin_log_trans(root);
8233 }
Chris Mason12fcfd22009-03-24 10:24:20 -04008234 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04008235 * make sure the inode gets flushed if it is replacing
8236 * something.
8237 */
Li Zefan33345d012011-04-20 10:31:50 +08008238 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04008239 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008240
Josef Bacik0c4d2d92012-04-05 15:03:02 -04008241 inode_inc_iversion(old_dir);
8242 inode_inc_iversion(new_dir);
8243 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008244 old_dir->i_ctime = old_dir->i_mtime = ctime;
8245 new_dir->i_ctime = new_dir->i_mtime = ctime;
8246 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04008247
Chris Mason12fcfd22009-03-24 10:24:20 -04008248 if (old_dentry->d_parent != new_dentry->d_parent)
8249 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
8250
Li Zefan33345d012011-04-20 10:31:50 +08008251 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008252 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
8253 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
8254 old_dentry->d_name.name,
8255 old_dentry->d_name.len);
8256 } else {
Al Viro92986792011-03-04 17:14:37 +00008257 ret = __btrfs_unlink_inode(trans, root, old_dir,
8258 old_dentry->d_inode,
8259 old_dentry->d_name.name,
8260 old_dentry->d_name.len);
8261 if (!ret)
8262 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008263 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008264 if (ret) {
8265 btrfs_abort_transaction(trans, root, ret);
8266 goto out_fail;
8267 }
Chris Mason39279cc2007-06-12 06:35:45 -04008268
8269 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04008270 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008271 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08008272 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008273 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
8274 root_objectid = BTRFS_I(new_inode)->location.objectid;
8275 ret = btrfs_unlink_subvol(trans, dest, new_dir,
8276 root_objectid,
8277 new_dentry->d_name.name,
8278 new_dentry->d_name.len);
8279 BUG_ON(new_inode->i_nlink == 0);
8280 } else {
8281 ret = btrfs_unlink_inode(trans, dest, new_dir,
8282 new_dentry->d_inode,
8283 new_dentry->d_name.name,
8284 new_dentry->d_name.len);
8285 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008286 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04008287 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008288 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04008289 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008290 if (ret) {
8291 btrfs_abort_transaction(trans, root, ret);
8292 goto out_fail;
8293 }
Chris Mason39279cc2007-06-12 06:35:45 -04008294 }
Josef Bacikaec74772008-07-24 12:12:38 -04008295
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008296 ret = btrfs_add_link(trans, new_dir, old_inode,
8297 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04008298 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008299 if (ret) {
8300 btrfs_abort_transaction(trans, root, ret);
8301 goto out_fail;
8302 }
Chris Mason39279cc2007-06-12 06:35:45 -04008303
Li Zefan33345d012011-04-20 10:31:50 +08008304 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04008305 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00008306 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008307 btrfs_end_log_trans(root);
8308 }
Chris Mason39279cc2007-06-12 06:35:45 -04008309out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05008310 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00008311out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08008312 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04008313 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008314
Chris Mason39279cc2007-06-12 06:35:45 -04008315 return ret;
8316}
8317
Miao Xie8ccf6f192012-10-25 09:28:04 +00008318static void btrfs_run_delalloc_work(struct btrfs_work *work)
8319{
8320 struct btrfs_delalloc_work *delalloc_work;
8321
8322 delalloc_work = container_of(work, struct btrfs_delalloc_work,
8323 work);
8324 if (delalloc_work->wait)
8325 btrfs_wait_ordered_range(delalloc_work->inode, 0, (u64)-1);
8326 else
8327 filemap_flush(delalloc_work->inode->i_mapping);
8328
8329 if (delalloc_work->delay_iput)
8330 btrfs_add_delayed_iput(delalloc_work->inode);
8331 else
8332 iput(delalloc_work->inode);
8333 complete(&delalloc_work->completion);
8334}
8335
8336struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
8337 int wait, int delay_iput)
8338{
8339 struct btrfs_delalloc_work *work;
8340
8341 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
8342 if (!work)
8343 return NULL;
8344
8345 init_completion(&work->completion);
8346 INIT_LIST_HEAD(&work->list);
8347 work->inode = inode;
8348 work->wait = wait;
8349 work->delay_iput = delay_iput;
8350 work->work.func = btrfs_run_delalloc_work;
8351
8352 return work;
8353}
8354
8355void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
8356{
8357 wait_for_completion(&work->completion);
8358 kmem_cache_free(btrfs_delalloc_work_cachep, work);
8359}
8360
Chris Masond352ac62008-09-29 15:18:18 -04008361/*
8362 * some fairly slow code that needs optimization. This walks the list
8363 * of all the inodes with pending delalloc and forces them to disk.
8364 */
Yan, Zheng24bbcf042009-11-12 09:36:34 +00008365int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04008366{
Chris Masonea8c2812008-08-04 23:17:27 -04008367 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008368 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00008369 struct btrfs_delalloc_work *work, *next;
8370 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00008371 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00008372 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04008373
Yan Zhengc146afa2008-11-12 14:34:12 -05008374 if (root->fs_info->sb->s_flags & MS_RDONLY)
8375 return -EROFS;
8376
Miao Xie8ccf6f192012-10-25 09:28:04 +00008377 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008378 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00008379
Chris Mason75eff682008-12-15 15:54:40 -05008380 spin_lock(&root->fs_info->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008381 list_splice_init(&root->fs_info->delalloc_inodes, &splice);
8382 while (!list_empty(&splice)) {
8383 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04008384 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008385
8386 list_del_init(&binode->delalloc_inodes);
8387
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008388 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00008389 if (!inode) {
8390 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
8391 &binode->runtime_flags);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008392 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00008393 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00008394
8395 list_add_tail(&binode->delalloc_inodes,
8396 &root->fs_info->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05008397 spin_unlock(&root->fs_info->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008398
8399 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
8400 if (unlikely(!work)) {
8401 ret = -ENOMEM;
8402 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008403 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00008404 list_add_tail(&work->list, &works);
8405 btrfs_queue_worker(&root->fs_info->flush_workers,
8406 &work->work);
8407
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008408 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05008409 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04008410 }
Chris Mason75eff682008-12-15 15:54:40 -05008411 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04008412
Miao Xie1eafa6c2013-01-22 10:49:00 +00008413 list_for_each_entry_safe(work, next, &works, list) {
8414 list_del_init(&work->list);
8415 btrfs_wait_and_free_delalloc_work(work);
8416 }
8417
Chris Mason8c8bee12008-09-29 11:19:10 -04008418 /* the filemap_flush will queue IO into the worker threads, but
8419 * we have to make sure the IO is actually started and that
8420 * ordered extents get created before we return
8421 */
8422 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05008423 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05008424 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04008425 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05008426 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
8427 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04008428 }
8429 atomic_dec(&root->fs_info->async_submit_draining);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008430 return 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +00008431out:
8432 list_for_each_entry_safe(work, next, &works, list) {
8433 list_del_init(&work->list);
8434 btrfs_wait_and_free_delalloc_work(work);
8435 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00008436
8437 if (!list_empty_careful(&splice)) {
8438 spin_lock(&root->fs_info->delalloc_lock);
8439 list_splice_tail(&splice, &root->fs_info->delalloc_inodes);
8440 spin_unlock(&root->fs_info->delalloc_lock);
8441 }
Miao Xie8ccf6f192012-10-25 09:28:04 +00008442 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04008443}
8444
Chris Mason39279cc2007-06-12 06:35:45 -04008445static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
8446 const char *symname)
8447{
8448 struct btrfs_trans_handle *trans;
8449 struct btrfs_root *root = BTRFS_I(dir)->root;
8450 struct btrfs_path *path;
8451 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05008452 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04008453 int err;
8454 int drop_inode = 0;
8455 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008456 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04008457 int name_len;
8458 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04008459 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04008460 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04008461 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04008462
8463 name_len = strlen(symname) + 1;
8464 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
8465 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05008466
Josef Bacik9ed74f22009-09-11 16:12:44 -04008467 /*
8468 * 2 items for inode item and ref
8469 * 2 items for dir items
8470 * 1 item for xattr if selinux is on
8471 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04008472 trans = btrfs_start_transaction(root, 5);
8473 if (IS_ERR(trans))
8474 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05008475
Li Zefan581bb052011-04-20 10:06:11 +08008476 err = btrfs_find_free_ino(root, &objectid);
8477 if (err)
8478 goto out_unlock;
8479
Josef Bacikaec74772008-07-24 12:12:38 -04008480 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08008481 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04008482 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04008483 if (IS_ERR(inode)) {
8484 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008485 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04008486 }
Chris Mason39279cc2007-06-12 06:35:45 -04008487
Eric Paris2a7dba32011-02-01 11:05:39 -05008488 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04008489 if (err) {
8490 drop_inode = 1;
8491 goto out_unlock;
8492 }
8493
Casey Schauflerad19db72011-12-15 10:09:07 -05008494 /*
8495 * If the active LSM wants to access the inode during
8496 * d_instantiate it needs these. Smack checks to see
8497 * if the filesystem supports xattrs by looking at the
8498 * ops vector.
8499 */
8500 inode->i_fop = &btrfs_file_operations;
8501 inode->i_op = &btrfs_file_inode_operations;
8502
Josef Bacika1b075d2010-11-19 20:36:11 +00008503 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04008504 if (err)
8505 drop_inode = 1;
8506 else {
8507 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04008508 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05008509 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04008510 }
Chris Mason39279cc2007-06-12 06:35:45 -04008511 if (drop_inode)
8512 goto out_unlock;
8513
8514 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07008515 if (!path) {
8516 err = -ENOMEM;
8517 drop_inode = 1;
8518 goto out_unlock;
8519 }
Li Zefan33345d012011-04-20 10:31:50 +08008520 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008521 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008522 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
8523 datasize = btrfs_file_extent_calc_inline_size(name_len);
8524 err = btrfs_insert_empty_item(trans, root, path, &key,
8525 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04008526 if (err) {
8527 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00008528 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04008529 goto out_unlock;
8530 }
Chris Mason5f39d392007-10-15 16:14:19 -04008531 leaf = path->nodes[0];
8532 ei = btrfs_item_ptr(leaf, path->slots[0],
8533 struct btrfs_file_extent_item);
8534 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
8535 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04008536 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04008537 btrfs_set_file_extent_encryption(leaf, ei, 0);
8538 btrfs_set_file_extent_compression(leaf, ei, 0);
8539 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
8540 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
8541
Chris Mason39279cc2007-06-12 06:35:45 -04008542 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04008543 write_extent_buffer(leaf, symname, ptr, name_len);
8544 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04008545 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04008546
Chris Mason39279cc2007-06-12 06:35:45 -04008547 inode->i_op = &btrfs_symlink_inode_operations;
8548 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04008549 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04008550 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04008551 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04008552 err = btrfs_update_inode(trans, root, inode);
8553 if (err)
8554 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04008555
8556out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05008557 if (!err)
8558 d_instantiate(dentry, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05008559 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04008560 if (drop_inode) {
8561 inode_dec_link_count(inode);
8562 iput(inode);
8563 }
Liu Bob53d3f52012-11-14 14:34:34 +00008564 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04008565 return err;
8566}
Chris Mason16432982008-04-10 10:23:21 -04008567
Josef Bacik0af3d002010-06-21 14:48:16 -04008568static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
8569 u64 start, u64 num_bytes, u64 min_size,
8570 loff_t actual_len, u64 *alloc_hint,
8571 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04008572{
Josef Bacik5dc562c2012-08-17 13:14:17 -04008573 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
8574 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04008575 struct btrfs_root *root = BTRFS_I(inode)->root;
8576 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04008577 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00008578 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -05008579 u64 cur_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04008580 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04008581 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04008582
Josef Bacik0af3d002010-06-21 14:48:16 -04008583 if (trans)
8584 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04008585 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04008586 if (own_trans) {
8587 trans = btrfs_start_transaction(root, 3);
8588 if (IS_ERR(trans)) {
8589 ret = PTR_ERR(trans);
8590 break;
8591 }
Yan Zhengd899e052008-10-30 14:25:28 -04008592 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00008593
Chris Mason154ea282013-03-05 11:11:26 -05008594 cur_bytes = min(num_bytes, 256ULL * 1024 * 1024);
8595 cur_bytes = max(cur_bytes, min_size);
8596 ret = btrfs_reserve_extent(trans, root, cur_bytes,
Zach Brown24542bf2012-11-16 00:04:43 +00008597 min_size, 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00008598 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04008599 if (own_trans)
8600 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04008601 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00008602 }
8603
Yan Zhengd899e052008-10-30 14:25:28 -04008604 ret = insert_reserved_file_extent(trans, inode,
8605 cur_offset, ins.objectid,
8606 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00008607 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04008608 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008609 if (ret) {
8610 btrfs_abort_transaction(trans, root, ret);
8611 if (own_trans)
8612 btrfs_end_transaction(trans, root);
8613 break;
8614 }
Chris Masona1ed8352009-09-11 12:27:37 -04008615 btrfs_drop_extent_cache(inode, cur_offset,
8616 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00008617
Josef Bacik5dc562c2012-08-17 13:14:17 -04008618 em = alloc_extent_map();
8619 if (!em) {
8620 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
8621 &BTRFS_I(inode)->runtime_flags);
8622 goto next;
8623 }
8624
8625 em->start = cur_offset;
8626 em->orig_start = cur_offset;
8627 em->len = ins.offset;
8628 em->block_start = ins.objectid;
8629 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -05008630 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04008631 em->ram_bytes = ins.offset;
Josef Bacik5dc562c2012-08-17 13:14:17 -04008632 em->bdev = root->fs_info->fs_devices->latest_bdev;
8633 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
8634 em->generation = trans->transid;
8635
8636 while (1) {
8637 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04008638 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04008639 write_unlock(&em_tree->lock);
8640 if (ret != -EEXIST)
8641 break;
8642 btrfs_drop_extent_cache(inode, cur_offset,
8643 cur_offset + ins.offset - 1,
8644 0);
8645 }
8646 free_extent_map(em);
8647next:
Yan Zhengd899e052008-10-30 14:25:28 -04008648 num_bytes -= ins.offset;
8649 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04008650 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00008651
Josef Bacik0c4d2d92012-04-05 15:03:02 -04008652 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04008653 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02008654 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04008655 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04008656 (actual_len > inode->i_size) &&
8657 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00008658 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00008659 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00008660 else
Josef Bacik55a61d12010-11-22 18:50:32 +00008661 i_size = cur_offset;
8662 i_size_write(inode, i_size);
8663 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00008664 }
8665
Yan Zhengd899e052008-10-30 14:25:28 -04008666 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008667
8668 if (ret) {
8669 btrfs_abort_transaction(trans, root, ret);
8670 if (own_trans)
8671 btrfs_end_transaction(trans, root);
8672 break;
8673 }
Yan Zhengd899e052008-10-30 14:25:28 -04008674
Josef Bacik0af3d002010-06-21 14:48:16 -04008675 if (own_trans)
8676 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00008677 }
Yan Zhengd899e052008-10-30 14:25:28 -04008678 return ret;
8679}
8680
Josef Bacik0af3d002010-06-21 14:48:16 -04008681int btrfs_prealloc_file_range(struct inode *inode, int mode,
8682 u64 start, u64 num_bytes, u64 min_size,
8683 loff_t actual_len, u64 *alloc_hint)
8684{
8685 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
8686 min_size, actual_len, alloc_hint,
8687 NULL);
8688}
8689
8690int btrfs_prealloc_file_range_trans(struct inode *inode,
8691 struct btrfs_trans_handle *trans, int mode,
8692 u64 start, u64 num_bytes, u64 min_size,
8693 loff_t actual_len, u64 *alloc_hint)
8694{
8695 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
8696 min_size, actual_len, alloc_hint, trans);
8697}
8698
Chris Masone6dcd2d2008-07-17 12:53:50 -04008699static int btrfs_set_page_dirty(struct page *page)
8700{
Chris Masone6dcd2d2008-07-17 12:53:50 -04008701 return __set_page_dirty_nobuffers(page);
8702}
8703
Al Viro10556cb2011-06-20 19:28:19 -04008704static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05008705{
Li Zefanb83cc962010-12-20 16:04:08 +08008706 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00008707 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08008708
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00008709 if (mask & MAY_WRITE &&
8710 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
8711 if (btrfs_root_readonly(root))
8712 return -EROFS;
8713 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
8714 return -EACCES;
8715 }
Al Viro2830ba72011-06-20 19:16:29 -04008716 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05008717}
Chris Mason39279cc2007-06-12 06:35:45 -04008718
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008719static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05008720 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04008721 .lookup = btrfs_lookup,
8722 .create = btrfs_create,
8723 .unlink = btrfs_unlink,
8724 .link = btrfs_link,
8725 .mkdir = btrfs_mkdir,
8726 .rmdir = btrfs_rmdir,
8727 .rename = btrfs_rename,
8728 .symlink = btrfs_symlink,
8729 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04008730 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008731 .setxattr = btrfs_setxattr,
8732 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05008733 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008734 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05008735 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008736 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04008737};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008738static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008739 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05008740 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008741 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04008742};
Yan, Zheng76dda932009-09-21 16:00:26 -04008743
Alexey Dobriyan828c0952009-10-01 15:43:56 -07008744static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008745 .llseek = generic_file_llseek,
8746 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01008747 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04008748 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04008749#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04008750 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04008751#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04008752 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04008753 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04008754};
8755
Chris Masond1310b22008-01-24 16:13:08 -05008756static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04008757 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05008758 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04008759 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04008760 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04008761 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04008762 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05008763 .set_bit_hook = btrfs_set_bit_hook,
8764 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04008765 .merge_extent_hook = btrfs_merge_extent_hook,
8766 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04008767};
8768
Chris Mason35054392009-01-21 13:11:13 -05008769/*
8770 * btrfs doesn't support the bmap operation because swapfiles
8771 * use bmap to make a mapping of extents in the file. They assume
8772 * these extents won't change over the life of the file and they
8773 * use the bmap result to do IO directly to the drive.
8774 *
8775 * the btrfs bmap call would return logical addresses that aren't
8776 * suitable for IO and they also will change frequently as COW
8777 * operations happen. So, swapfile + btrfs == corruption.
8778 *
8779 * For now we're avoiding this by dropping bmap.
8780 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07008781static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04008782 .readpage = btrfs_readpage,
8783 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04008784 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05008785 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04008786 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04008787 .invalidatepage = btrfs_invalidatepage,
8788 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04008789 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02008790 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04008791};
8792
Alexey Dobriyan7f094102009-09-21 17:01:10 -07008793static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04008794 .readpage = btrfs_readpage,
8795 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04008796 .invalidatepage = btrfs_invalidatepage,
8797 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04008798};
8799
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008800static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008801 .getattr = btrfs_getattr,
8802 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008803 .setxattr = btrfs_setxattr,
8804 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05008805 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008806 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05008807 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008808 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008809 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04008810 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04008811};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008812static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04008813 .getattr = btrfs_getattr,
8814 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05008815 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008816 .setxattr = btrfs_setxattr,
8817 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04008818 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008819 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008820 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04008821 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04008822};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008823static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008824 .readlink = generic_readlink,
8825 .follow_link = page_follow_link_light,
8826 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00008827 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05008828 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05008829 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05008830 .setxattr = btrfs_setxattr,
8831 .getxattr = btrfs_getxattr,
8832 .listxattr = btrfs_listxattr,
8833 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008834 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04008835 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04008836};
Yan, Zheng76dda932009-09-21 16:00:26 -04008837
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04008838const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04008839 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04008840 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04008841};