blob: bef020451525ae9d8f341f315c2b42751932a6c0 [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 Mason39279cc2007-06-12 06:35:45 -040019#include <linux/fs.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/time.h>
23#include <linux/init.h>
24#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040025#include <linux/backing-dev.h>
26#include <linux/mpage.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010027#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040028#include <linux/swap.h>
29#include <linux/writeback.h>
30#include <linux/statfs.h>
31#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Chris Mason39279cc2007-06-12 06:35:45 -040033#include "ctree.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "btrfs_inode.h"
37#include "ioctl.h"
38#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040039#include "tree-log.h"
40#include "locking.h"
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -040041#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040042
43
Chris Masond352ac62008-09-29 15:18:18 -040044/* simple helper to fault in pages and copy. This should go away
45 * and be replaced with calls into generic code.
46 */
Chris Masond3977122009-01-05 21:25:51 -050047static noinline int btrfs_copy_from_user(loff_t pos, int num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -050048 size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -040049 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -040050 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -040051{
Xin Zhong914ee292010-12-09 09:30:14 +000052 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -050053 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -040054 int pg = 0;
Chris Mason39279cc2007-06-12 06:35:45 -040055 int offset = pos & (PAGE_CACHE_SIZE - 1);
56
Josef Bacik11c65dc2010-05-23 11:07:21 -040057 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -040058 size_t count = min_t(size_t,
59 PAGE_CACHE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -040060 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +000061 /*
62 * Copy data from userspace to the current page
63 *
64 * Disable pagefault to avoid recursive lock since
65 * the pages are already locked
66 */
67 pagefault_disable();
68 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
69 pagefault_enable();
Josef Bacik11c65dc2010-05-23 11:07:21 -040070
Chris Mason39279cc2007-06-12 06:35:45 -040071 /* Flush processor's dcache for this page */
72 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -050073
74 /*
75 * if we get a partial write, we can end up with
76 * partially up to date pages. These add
77 * a lot of complexity, so make sure they don't
78 * happen by forcing this copy to be retried.
79 *
80 * The rest of the btrfs_file_write code will fall
81 * back to page at a time copies after we return 0.
82 */
83 if (!PageUptodate(page) && copied < count)
84 copied = 0;
85
Josef Bacik11c65dc2010-05-23 11:07:21 -040086 iov_iter_advance(i, copied);
87 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +000088 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -040089
Xin Zhong914ee292010-12-09 09:30:14 +000090 /* Return to btrfs_file_aio_write to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -050091 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +000092 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -040093
94 if (unlikely(copied < PAGE_CACHE_SIZE - offset)) {
95 offset += copied;
96 } else {
97 pg++;
98 offset = 0;
99 }
Chris Mason39279cc2007-06-12 06:35:45 -0400100 }
Xin Zhong914ee292010-12-09 09:30:14 +0000101 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400102}
103
Chris Masond352ac62008-09-29 15:18:18 -0400104/*
105 * unlocks pages after btrfs_file_write is done with them
106 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400107void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400108{
109 size_t i;
110 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400111 /* page checked is some magic around finding pages that
112 * have been modified without going through btrfs_set_page_dirty
113 * clear it here
114 */
Chris Mason4a096752008-07-21 10:29:44 -0400115 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400116 unlock_page(pages[i]);
117 mark_page_accessed(pages[i]);
118 page_cache_release(pages[i]);
119 }
120}
121
Chris Masond352ac62008-09-29 15:18:18 -0400122/*
123 * after copy_from_user, pages need to be dirtied and we need to make
124 * sure holes are created between the current EOF and the start of
125 * any next extents (if required).
126 *
127 * this also makes the decision about creating an inline extent vs
128 * doing real data extents, marking pages dirty and delalloc as required.
129 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400130int btrfs_dirty_pages(struct btrfs_root *root, struct inode *inode,
131 struct page **pages, size_t num_pages,
132 loff_t pos, size_t write_bytes,
133 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400134{
Chris Mason39279cc2007-06-12 06:35:45 -0400135 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400136 int i;
Chris Masondb945352007-10-15 16:15:53 -0400137 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400138 u64 start_pos;
139 u64 end_of_last_block;
140 u64 end_pos = pos + write_bytes;
141 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400142
Chris Mason5f39d392007-10-15 16:14:19 -0400143 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400144 num_bytes = (write_bytes + pos - start_pos +
145 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400146
Chris Masondb945352007-10-15 16:15:53 -0400147 end_of_last_block = start_pos + num_bytes - 1;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000148 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400149 cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500150 if (err)
151 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400152
Chris Masonc8b97812008-10-29 14:49:59 -0400153 for (i = 0; i < num_pages; i++) {
154 struct page *p = pages[i];
155 SetPageUptodate(p);
156 ClearPageChecked(p);
157 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400158 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500159
160 /*
161 * we've only changed i_size in ram, and we haven't updated
162 * the disk i_size. There is no need to log the inode
163 * at this time.
164 */
165 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400166 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400167 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400168}
169
Chris Masond352ac62008-09-29 15:18:18 -0400170/*
171 * this drops all the extents in the cache that intersect the range
172 * [start, end]. Existing extents are split as required.
173 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400174int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
175 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400176{
177 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400178 struct extent_map *split = NULL;
179 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400180 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500181 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400182 int ret;
183 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400184 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400185 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400186
Chris Masone6dcd2d2008-07-17 12:53:50 -0400187 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400188 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500189 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400190 testend = 0;
191 }
Chris Masond3977122009-01-05 21:25:51 -0500192 while (1) {
Chris Mason3b951512008-04-17 11:29:12 -0400193 if (!split)
194 split = alloc_extent_map(GFP_NOFS);
195 if (!split2)
196 split2 = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000197 BUG_ON(!split || !split2);
Chris Mason3b951512008-04-17 11:29:12 -0400198
Chris Mason890871b2009-09-02 16:24:52 -0400199 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500200 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500201 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400202 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400203 break;
Chris Masond1310b22008-01-24 16:13:08 -0500204 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400205 flags = em->flags;
206 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000207 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400208 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400209 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400210 break;
211 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000212 start = em->start + em->len;
213 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400214 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400215 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400216 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400217 continue;
218 }
Chris Masonc8b97812008-10-29 14:49:59 -0400219 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400220 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400221 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400222
223 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
224 em->start < start) {
225 split->start = em->start;
226 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500227 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400228 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400229
230 if (compressed)
231 split->block_len = em->block_len;
232 else
233 split->block_len = split->len;
234
Chris Mason3b951512008-04-17 11:29:12 -0400235 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400236 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800237 split->compress_type = em->compress_type;
Chris Mason3b951512008-04-17 11:29:12 -0400238 ret = add_extent_mapping(em_tree, split);
239 BUG_ON(ret);
240 free_extent_map(split);
241 split = split2;
242 split2 = NULL;
243 }
244 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
245 testend && em->start + em->len > start + len) {
246 u64 diff = start + len - em->start;
247
248 split->start = start + len;
249 split->len = em->start + em->len - (start + len);
250 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400251 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800252 split->compress_type = em->compress_type;
Chris Mason3b951512008-04-17 11:29:12 -0400253
Chris Masonc8b97812008-10-29 14:49:59 -0400254 if (compressed) {
255 split->block_len = em->block_len;
256 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500257 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400258 } else {
259 split->block_len = split->len;
260 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500261 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400262 }
Chris Mason3b951512008-04-17 11:29:12 -0400263
264 ret = add_extent_mapping(em_tree, split);
265 BUG_ON(ret);
266 free_extent_map(split);
267 split = NULL;
268 }
Chris Mason890871b2009-09-02 16:24:52 -0400269 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500270
Chris Masona52d9a82007-08-27 16:49:44 -0400271 /* once for us */
272 free_extent_map(em);
273 /* once for the tree*/
274 free_extent_map(em);
275 }
Chris Mason3b951512008-04-17 11:29:12 -0400276 if (split)
277 free_extent_map(split);
278 if (split2)
279 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400280 return 0;
281}
282
Chris Mason39279cc2007-06-12 06:35:45 -0400283/*
284 * this is very complex, but the basic idea is to drop all extents
285 * in the range start - end. hint_block is filled in with a block number
286 * that would be a good hint to the block allocator for this file.
287 *
288 * If an extent intersects the range but is not entirely inside the range
289 * it is either truncated or split. Anything entirely inside the range
290 * is deleted from the tree.
291 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000292int btrfs_drop_extents(struct btrfs_trans_handle *trans, struct inode *inode,
293 u64 start, u64 end, u64 *hint_byte, int drop_cache)
Chris Mason39279cc2007-06-12 06:35:45 -0400294{
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000295 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason00f5c792007-11-30 10:09:33 -0500296 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000297 struct btrfs_file_extent_item *fi;
Chris Mason00f5c792007-11-30 10:09:33 -0500298 struct btrfs_path *path;
299 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000300 struct btrfs_key new_key;
Li Zefan33345d012011-04-20 10:31:50 +0800301 u64 ino = btrfs_ino(inode);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000302 u64 search_start = start;
303 u64 disk_bytenr = 0;
304 u64 num_bytes = 0;
305 u64 extent_offset = 0;
306 u64 extent_end = 0;
307 int del_nr = 0;
308 int del_slot = 0;
309 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400310 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500311 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400312
Chris Masona1ed8352009-09-11 12:27:37 -0400313 if (drop_cache)
314 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400315
Chris Mason39279cc2007-06-12 06:35:45 -0400316 path = btrfs_alloc_path();
317 if (!path)
318 return -ENOMEM;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000319
Chris Masond3977122009-01-05 21:25:51 -0500320 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400321 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800322 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Mason39279cc2007-06-12 06:35:45 -0400323 search_start, -1);
324 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000325 break;
326 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
327 leaf = path->nodes[0];
328 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800329 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000330 key.type == BTRFS_EXTENT_DATA_KEY)
331 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400332 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400333 ret = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000334next_slot:
335 leaf = path->nodes[0];
336 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
337 BUG_ON(del_nr > 0);
338 ret = btrfs_next_leaf(root, path);
339 if (ret < 0)
340 break;
341 if (ret > 0) {
342 ret = 0;
343 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400344 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000345 leaf = path->nodes[0];
346 recow = 1;
347 }
348
349 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +0800350 if (key.objectid > ino ||
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000351 key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
352 break;
353
354 fi = btrfs_item_ptr(leaf, path->slots[0],
355 struct btrfs_file_extent_item);
356 extent_type = btrfs_file_extent_type(leaf, fi);
357
358 if (extent_type == BTRFS_FILE_EXTENT_REG ||
359 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
360 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
361 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
362 extent_offset = btrfs_file_extent_offset(leaf, fi);
363 extent_end = key.offset +
364 btrfs_file_extent_num_bytes(leaf, fi);
365 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
366 extent_end = key.offset +
367 btrfs_file_extent_inline_len(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400368 } else {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000369 WARN_ON(1);
Chris Mason8c2383c2007-06-18 09:57:58 -0400370 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400371 }
372
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000373 if (extent_end <= search_start) {
374 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400375 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400376 }
377
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000378 search_start = max(key.offset, start);
379 if (recow) {
Zheng Yan31840ae2008-09-23 13:14:14 -0400380 btrfs_release_path(root, path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000381 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400382 }
Chris Mason771ed682008-11-06 22:02:51 -0500383
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000384 /*
385 * | - range to drop - |
386 * | -------- extent -------- |
387 */
388 if (start > key.offset && end < extent_end) {
389 BUG_ON(del_nr > 0);
390 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
391
392 memcpy(&new_key, &key, sizeof(new_key));
393 new_key.offset = start;
394 ret = btrfs_duplicate_item(trans, root, path,
395 &new_key);
396 if (ret == -EAGAIN) {
397 btrfs_release_path(root, path);
398 continue;
399 }
400 if (ret < 0)
401 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400402
Chris Mason5f39d392007-10-15 16:14:19 -0400403 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000404 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
405 struct btrfs_file_extent_item);
406 btrfs_set_file_extent_num_bytes(leaf, fi,
407 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400408
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000409 fi = btrfs_item_ptr(leaf, path->slots[0],
410 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400411
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000412 extent_offset += start - key.offset;
413 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
414 btrfs_set_file_extent_num_bytes(leaf, fi,
415 extent_end - start);
416 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400417
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000418 if (disk_bytenr > 0) {
419 ret = btrfs_inc_extent_ref(trans, root,
420 disk_bytenr, num_bytes, 0,
421 root->root_key.objectid,
422 new_key.objectid,
423 start - extent_offset);
Zheng Yan31840ae2008-09-23 13:14:14 -0400424 BUG_ON(ret);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000425 *hint_byte = disk_bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -0400426 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000427 key.offset = start;
428 }
429 /*
430 * | ---- range to drop ----- |
431 * | -------- extent -------- |
432 */
433 if (start <= key.offset && end < extent_end) {
434 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
435
436 memcpy(&new_key, &key, sizeof(new_key));
437 new_key.offset = end;
438 btrfs_set_item_key_safe(trans, root, path, &new_key);
439
440 extent_offset += end - key.offset;
441 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
442 btrfs_set_file_extent_num_bytes(leaf, fi,
443 extent_end - end);
444 btrfs_mark_buffer_dirty(leaf);
445 if (disk_bytenr > 0) {
446 inode_sub_bytes(inode, end - key.offset);
447 *hint_byte = disk_bytenr;
448 }
449 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400450 }
451
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000452 search_start = extent_end;
453 /*
454 * | ---- range to drop ----- |
455 * | -------- extent -------- |
456 */
457 if (start > key.offset && end >= extent_end) {
458 BUG_ON(del_nr > 0);
459 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
460
461 btrfs_set_file_extent_num_bytes(leaf, fi,
462 start - key.offset);
463 btrfs_mark_buffer_dirty(leaf);
464 if (disk_bytenr > 0) {
465 inode_sub_bytes(inode, extent_end - start);
466 *hint_byte = disk_bytenr;
467 }
468 if (end == extent_end)
469 break;
470
471 path->slots[0]++;
472 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400473 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000474
475 /*
476 * | ---- range to drop ----- |
477 * | ------ extent ------ |
478 */
479 if (start <= key.offset && end >= extent_end) {
480 if (del_nr == 0) {
481 del_slot = path->slots[0];
482 del_nr = 1;
483 } else {
484 BUG_ON(del_slot + del_nr != path->slots[0]);
485 del_nr++;
486 }
487
488 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
489 inode_sub_bytes(inode,
490 extent_end - key.offset);
491 extent_end = ALIGN(extent_end,
492 root->sectorsize);
493 } else if (disk_bytenr > 0) {
494 ret = btrfs_free_extent(trans, root,
495 disk_bytenr, num_bytes, 0,
496 root->root_key.objectid,
497 key.objectid, key.offset -
498 extent_offset);
499 BUG_ON(ret);
500 inode_sub_bytes(inode,
501 extent_end - key.offset);
502 *hint_byte = disk_bytenr;
503 }
504
505 if (end == extent_end)
506 break;
507
508 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
509 path->slots[0]++;
510 goto next_slot;
511 }
512
513 ret = btrfs_del_items(trans, root, path, del_slot,
514 del_nr);
515 BUG_ON(ret);
516
517 del_nr = 0;
518 del_slot = 0;
519
520 btrfs_release_path(root, path);
521 continue;
522 }
523
524 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400525 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000526
527 if (del_nr > 0) {
528 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
529 BUG_ON(ret);
530 }
531
Chris Mason39279cc2007-06-12 06:35:45 -0400532 btrfs_free_path(path);
533 return ret;
534}
535
Yan Zhengd899e052008-10-30 14:25:28 -0400536static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000537 u64 objectid, u64 bytenr, u64 orig_offset,
538 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -0400539{
540 struct btrfs_file_extent_item *fi;
541 struct btrfs_key key;
542 u64 extent_end;
543
544 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
545 return 0;
546
547 btrfs_item_key_to_cpu(leaf, &key, slot);
548 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
549 return 0;
550
551 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
552 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
553 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000554 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -0400555 btrfs_file_extent_compression(leaf, fi) ||
556 btrfs_file_extent_encryption(leaf, fi) ||
557 btrfs_file_extent_other_encoding(leaf, fi))
558 return 0;
559
560 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
561 if ((*start && *start != key.offset) || (*end && *end != extent_end))
562 return 0;
563
564 *start = key.offset;
565 *end = extent_end;
566 return 1;
567}
568
569/*
570 * Mark extent in the range start - end as written.
571 *
572 * This changes extent type from 'pre-allocated' to 'regular'. If only
573 * part of extent is marked as written, the extent will be split into
574 * two or three.
575 */
576int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Yan Zhengd899e052008-10-30 14:25:28 -0400577 struct inode *inode, u64 start, u64 end)
578{
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000579 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zhengd899e052008-10-30 14:25:28 -0400580 struct extent_buffer *leaf;
581 struct btrfs_path *path;
582 struct btrfs_file_extent_item *fi;
583 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000584 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -0400585 u64 bytenr;
586 u64 num_bytes;
587 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400588 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -0400589 u64 other_start;
590 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000591 u64 split;
592 int del_nr = 0;
593 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000594 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -0400595 int ret;
Li Zefan33345d012011-04-20 10:31:50 +0800596 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -0400597
598 btrfs_drop_extent_cache(inode, start, end - 1, 0);
599
600 path = btrfs_alloc_path();
601 BUG_ON(!path);
602again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000603 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000604 split = start;
Li Zefan33345d012011-04-20 10:31:50 +0800605 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -0400606 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000607 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -0400608
609 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -0400610 if (ret < 0)
611 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -0400612 if (ret > 0 && path->slots[0] > 0)
613 path->slots[0]--;
614
615 leaf = path->nodes[0];
616 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +0800617 BUG_ON(key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY);
Yan Zhengd899e052008-10-30 14:25:28 -0400618 fi = btrfs_item_ptr(leaf, path->slots[0],
619 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000620 BUG_ON(btrfs_file_extent_type(leaf, fi) !=
621 BTRFS_FILE_EXTENT_PREALLOC);
Yan Zhengd899e052008-10-30 14:25:28 -0400622 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
623 BUG_ON(key.offset > start || extent_end < end);
624
625 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
626 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400627 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000628 memcpy(&new_key, &key, sizeof(new_key));
629
630 if (start == key.offset && end < extent_end) {
631 other_start = 0;
632 other_end = start;
633 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +0800634 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000635 &other_start, &other_end)) {
636 new_key.offset = end;
637 btrfs_set_item_key_safe(trans, root, path, &new_key);
638 fi = btrfs_item_ptr(leaf, path->slots[0],
639 struct btrfs_file_extent_item);
640 btrfs_set_file_extent_num_bytes(leaf, fi,
641 extent_end - end);
642 btrfs_set_file_extent_offset(leaf, fi,
643 end - orig_offset);
644 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
645 struct btrfs_file_extent_item);
646 btrfs_set_file_extent_num_bytes(leaf, fi,
647 end - other_start);
648 btrfs_mark_buffer_dirty(leaf);
649 goto out;
650 }
651 }
652
653 if (start > key.offset && end == extent_end) {
654 other_start = end;
655 other_end = 0;
656 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +0800657 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000658 &other_start, &other_end)) {
659 fi = btrfs_item_ptr(leaf, path->slots[0],
660 struct btrfs_file_extent_item);
661 btrfs_set_file_extent_num_bytes(leaf, fi,
662 start - key.offset);
663 path->slots[0]++;
664 new_key.offset = start;
665 btrfs_set_item_key_safe(trans, root, path, &new_key);
666
667 fi = btrfs_item_ptr(leaf, path->slots[0],
668 struct btrfs_file_extent_item);
669 btrfs_set_file_extent_num_bytes(leaf, fi,
670 other_end - start);
671 btrfs_set_file_extent_offset(leaf, fi,
672 start - orig_offset);
673 btrfs_mark_buffer_dirty(leaf);
674 goto out;
675 }
676 }
Yan Zhengd899e052008-10-30 14:25:28 -0400677
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000678 while (start > key.offset || end < extent_end) {
679 if (key.offset == start)
680 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -0400681
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000682 new_key.offset = split;
683 ret = btrfs_duplicate_item(trans, root, path, &new_key);
684 if (ret == -EAGAIN) {
685 btrfs_release_path(root, path);
686 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -0400687 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000688 BUG_ON(ret < 0);
Yan Zhengd899e052008-10-30 14:25:28 -0400689
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000690 leaf = path->nodes[0];
691 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -0400692 struct btrfs_file_extent_item);
Yan Zhengd899e052008-10-30 14:25:28 -0400693 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000694 split - key.offset);
695
696 fi = btrfs_item_ptr(leaf, path->slots[0],
697 struct btrfs_file_extent_item);
698
699 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
700 btrfs_set_file_extent_num_bytes(leaf, fi,
701 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -0400702 btrfs_mark_buffer_dirty(leaf);
703
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000704 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
705 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800706 ino, orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400707 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -0400708
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000709 if (split == start) {
710 key.offset = start;
711 } else {
712 BUG_ON(start != key.offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400713 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000714 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -0400715 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000716 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -0400717 }
718
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000719 other_start = end;
720 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000721 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +0800722 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000723 &other_start, &other_end)) {
724 if (recow) {
725 btrfs_release_path(root, path);
726 goto again;
727 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000728 extent_end = other_end;
729 del_slot = path->slots[0] + 1;
730 del_nr++;
731 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
732 0, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800733 ino, orig_offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000734 BUG_ON(ret);
735 }
736 other_start = 0;
737 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000738 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +0800739 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000740 &other_start, &other_end)) {
741 if (recow) {
742 btrfs_release_path(root, path);
743 goto again;
744 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000745 key.offset = other_start;
746 del_slot = path->slots[0];
747 del_nr++;
748 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
749 0, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800750 ino, orig_offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000751 BUG_ON(ret);
752 }
753 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +0000754 fi = btrfs_item_ptr(leaf, path->slots[0],
755 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000756 btrfs_set_file_extent_type(leaf, fi,
757 BTRFS_FILE_EXTENT_REG);
758 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000759 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +0000760 fi = btrfs_item_ptr(leaf, del_slot - 1,
761 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000762 btrfs_set_file_extent_type(leaf, fi,
763 BTRFS_FILE_EXTENT_REG);
764 btrfs_set_file_extent_num_bytes(leaf, fi,
765 extent_end - key.offset);
766 btrfs_mark_buffer_dirty(leaf);
767
768 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
769 BUG_ON(ret);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000770 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000771out:
Yan Zhengd899e052008-10-30 14:25:28 -0400772 btrfs_free_path(path);
773 return 0;
774}
775
Chris Mason39279cc2007-06-12 06:35:45 -0400776/*
Chris Masonb1bf8622011-02-28 09:52:08 -0500777 * on error we return an unlocked page and the error value
778 * on success we return a locked page and 0
779 */
780static int prepare_uptodate_page(struct page *page, u64 pos)
781{
782 int ret = 0;
783
784 if ((pos & (PAGE_CACHE_SIZE - 1)) && !PageUptodate(page)) {
785 ret = btrfs_readpage(NULL, page);
786 if (ret)
787 return ret;
788 lock_page(page);
789 if (!PageUptodate(page)) {
790 unlock_page(page);
791 return -EIO;
792 }
793 }
794 return 0;
795}
796
797/*
Chris Masond352ac62008-09-29 15:18:18 -0400798 * this gets pages into the page cache and locks them down, it also properly
799 * waits for data=ordered extents to finish before allowing the pages to be
800 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -0400801 */
Chris Masond3977122009-01-05 21:25:51 -0500802static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -0500803 struct page **pages, size_t num_pages,
804 loff_t pos, unsigned long first_index,
805 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400806{
Josef Bacik2ac55d42010-02-03 19:33:23 +0000807 struct extent_state *cached_state = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -0400808 int i;
809 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500810 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400811 int err = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -0500812 int faili = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400813 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400814 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400815
Chris Mason5f39d392007-10-15 16:14:19 -0400816 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400817 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400818
Yan Zheng9036c102008-10-30 14:19:41 -0400819 if (start_pos > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -0500820 err = btrfs_cont_expand(inode, i_size_read(inode), start_pos);
Yan Zheng9036c102008-10-30 14:19:41 -0400821 if (err)
822 return err;
823 }
824
Chris Masone6dcd2d2008-07-17 12:53:50 -0400825again:
Chris Mason39279cc2007-06-12 06:35:45 -0400826 for (i = 0; i < num_pages; i++) {
827 pages[i] = grab_cache_page(inode->i_mapping, index + i);
828 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -0500829 faili = i - 1;
830 err = -ENOMEM;
831 goto fail;
832 }
833
834 if (i == 0)
835 err = prepare_uptodate_page(pages[i], pos);
836 if (i == num_pages - 1)
837 err = prepare_uptodate_page(pages[i],
838 pos + write_bytes);
839 if (err) {
840 page_cache_release(pages[i]);
841 faili = i - 1;
842 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -0400843 }
Chris Masonccd467d2007-06-28 15:57:36 -0400844 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400845 }
Chris Masonb1bf8622011-02-28 09:52:08 -0500846 err = 0;
Chris Mason07627042008-02-19 11:29:24 -0500847 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400848 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000849 lock_extent_bits(&BTRFS_I(inode)->io_tree,
850 start_pos, last_pos - 1, 0, &cached_state,
851 GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500852 ordered = btrfs_lookup_first_ordered_extent(inode,
853 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400854 if (ordered &&
855 ordered->file_offset + ordered->len > start_pos &&
856 ordered->file_offset < last_pos) {
857 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +0000858 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
859 start_pos, last_pos - 1,
860 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400861 for (i = 0; i < num_pages; i++) {
862 unlock_page(pages[i]);
863 page_cache_release(pages[i]);
864 }
865 btrfs_wait_ordered_range(inode, start_pos,
866 last_pos - start_pos);
867 goto again;
868 }
869 if (ordered)
870 btrfs_put_ordered_extent(ordered);
871
Josef Bacik2ac55d42010-02-03 19:33:23 +0000872 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos,
Josef Bacik32c00af2009-10-08 13:34:05 -0400873 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +0000874 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
Chris Mason07627042008-02-19 11:29:24 -0500875 GFP_NOFS);
Josef Bacik2ac55d42010-02-03 19:33:23 +0000876 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
877 start_pos, last_pos - 1, &cached_state,
878 GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500879 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400880 for (i = 0; i < num_pages; i++) {
Chris Masonf87f0572008-08-01 11:27:23 -0400881 clear_page_dirty_for_io(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400882 set_page_extent_mapped(pages[i]);
883 WARN_ON(!PageLocked(pages[i]));
884 }
Chris Mason39279cc2007-06-12 06:35:45 -0400885 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -0500886fail:
887 while (faili >= 0) {
888 unlock_page(pages[faili]);
889 page_cache_release(pages[faili]);
890 faili--;
891 }
892 return err;
893
Chris Mason39279cc2007-06-12 06:35:45 -0400894}
895
Josef Bacikd0215f32011-01-25 14:57:24 -0500896static noinline ssize_t __btrfs_buffered_write(struct file *file,
897 struct iov_iter *i,
898 loff_t pos)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400899{
Josef Bacik11c65dc2010-05-23 11:07:21 -0400900 struct inode *inode = fdentry(file)->d_inode;
901 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400902 struct page **pages = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -0400903 unsigned long first_index;
904 unsigned long last_index;
Josef Bacikd0215f32011-01-25 14:57:24 -0500905 size_t num_written = 0;
906 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +0000907 int ret = 0;
Chris Masoncb843a62008-10-03 12:30:02 -0400908
Josef Bacikd0215f32011-01-25 14:57:24 -0500909 nrptrs = min((iov_iter_count(i) + PAGE_CACHE_SIZE - 1) /
Josef Bacik11c65dc2010-05-23 11:07:21 -0400910 PAGE_CACHE_SIZE, PAGE_CACHE_SIZE /
911 (sizeof(struct page *)));
Chris Mason8c2383c2007-06-18 09:57:58 -0400912 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -0500913 if (!pages)
914 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -0400915
Chris Mason39279cc2007-06-12 06:35:45 -0400916 first_index = pos >> PAGE_CACHE_SHIFT;
Josef Bacikd0215f32011-01-25 14:57:24 -0500917 last_index = (pos + iov_iter_count(i)) >> PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400918
Josef Bacikd0215f32011-01-25 14:57:24 -0500919 while (iov_iter_count(i) > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400920 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Josef Bacikd0215f32011-01-25 14:57:24 -0500921 size_t write_bytes = min(iov_iter_count(i),
Josef Bacik11c65dc2010-05-23 11:07:21 -0400922 nrptrs * (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400923 offset);
Yan, Zheng3a909832011-01-18 13:34:40 +0800924 size_t num_pages = (write_bytes + offset +
925 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Josef Bacikd0215f32011-01-25 14:57:24 -0500926 size_t dirty_pages;
927 size_t copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400928
Chris Mason8c2383c2007-06-18 09:57:58 -0400929 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -0500930
Xin Zhong914ee292010-12-09 09:30:14 +0000931 /*
932 * Fault pages before locking them in prepare_pages
933 * to avoid recursive lock
934 */
Josef Bacikd0215f32011-01-25 14:57:24 -0500935 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +0000936 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -0500937 break;
Xin Zhong914ee292010-12-09 09:30:14 +0000938 }
939
940 ret = btrfs_delalloc_reserve_space(inode,
941 num_pages << PAGE_CACHE_SHIFT);
Chris Mason1832a6d2007-12-21 16:27:21 -0500942 if (ret)
Josef Bacikd0215f32011-01-25 14:57:24 -0500943 break;
Chris Mason1832a6d2007-12-21 16:27:21 -0500944
Josef Bacik4a640012011-01-25 15:10:08 -0500945 /*
946 * This is going to setup the pages array with the number of
947 * pages we want, so we don't really need to worry about the
948 * contents of pages from loop to loop
949 */
Chris Mason39279cc2007-06-12 06:35:45 -0400950 ret = prepare_pages(root, file, pages, num_pages,
951 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400952 write_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500953 if (ret) {
Xin Zhong914ee292010-12-09 09:30:14 +0000954 btrfs_delalloc_release_space(inode,
955 num_pages << PAGE_CACHE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -0500956 break;
Josef Bacik6a632092009-02-20 11:00:09 -0500957 }
Chris Mason39279cc2007-06-12 06:35:45 -0400958
Xin Zhong914ee292010-12-09 09:30:14 +0000959 copied = btrfs_copy_from_user(pos, num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -0500960 write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -0500961
962 /*
963 * if we have trouble faulting in the pages, fall
964 * back to one page at a time
965 */
966 if (copied < write_bytes)
967 nrptrs = 1;
968
969 if (copied == 0)
970 dirty_pages = 0;
971 else
972 dirty_pages = (copied + offset +
973 PAGE_CACHE_SIZE - 1) >>
974 PAGE_CACHE_SHIFT;
Xin Zhong914ee292010-12-09 09:30:14 +0000975
Josef Bacikd0215f32011-01-25 14:57:24 -0500976 /*
977 * If we had a short copy we need to release the excess delaloc
978 * bytes we reserved. We need to increment outstanding_extents
979 * because btrfs_delalloc_release_space will decrement it, but
980 * we still have an outstanding extent for the chunk we actually
981 * managed to copy.
982 */
Xin Zhong914ee292010-12-09 09:30:14 +0000983 if (num_pages > dirty_pages) {
984 if (copied > 0)
985 atomic_inc(
986 &BTRFS_I(inode)->outstanding_extents);
987 btrfs_delalloc_release_space(inode,
988 (num_pages - dirty_pages) <<
989 PAGE_CACHE_SHIFT);
990 }
991
992 if (copied > 0) {
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400993 ret = btrfs_dirty_pages(root, inode, pages,
994 dirty_pages, pos, copied,
995 NULL);
Josef Bacikd0215f32011-01-25 14:57:24 -0500996 if (ret) {
997 btrfs_delalloc_release_space(inode,
998 dirty_pages << PAGE_CACHE_SHIFT);
999 btrfs_drop_pages(pages, num_pages);
1000 break;
1001 }
Chris Mason54aa1f42007-06-22 14:16:25 -04001002 }
Chris Mason39279cc2007-06-12 06:35:45 -04001003
Chris Mason39279cc2007-06-12 06:35:45 -04001004 btrfs_drop_pages(pages, num_pages);
Xin Zhong914ee292010-12-09 09:30:14 +00001005
Josef Bacikd0215f32011-01-25 14:57:24 -05001006 cond_resched();
1007
1008 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1009 dirty_pages);
1010 if (dirty_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1011 btrfs_btree_balance_dirty(root, 1);
1012 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001013
Xin Zhong914ee292010-12-09 09:30:14 +00001014 pos += copied;
1015 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001016 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001017
Chris Mason8c2383c2007-06-18 09:57:58 -04001018 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001019
1020 return num_written ? num_written : ret;
1021}
1022
1023static ssize_t __btrfs_direct_write(struct kiocb *iocb,
1024 const struct iovec *iov,
1025 unsigned long nr_segs, loff_t pos,
1026 loff_t *ppos, size_t count, size_t ocount)
1027{
1028 struct file *file = iocb->ki_filp;
1029 struct inode *inode = fdentry(file)->d_inode;
1030 struct iov_iter i;
1031 ssize_t written;
1032 ssize_t written_buffered;
1033 loff_t endbyte;
1034 int err;
1035
1036 written = generic_file_direct_write(iocb, iov, &nr_segs, pos, ppos,
1037 count, ocount);
1038
1039 /*
1040 * the generic O_DIRECT will update in-memory i_size after the
1041 * DIOs are done. But our endio handlers that update the on
1042 * disk i_size never update past the in memory i_size. So we
1043 * need one more update here to catch any additions to the
1044 * file
1045 */
1046 if (inode->i_size != BTRFS_I(inode)->disk_i_size) {
1047 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
1048 mark_inode_dirty(inode);
1049 }
1050
1051 if (written < 0 || written == count)
1052 return written;
1053
1054 pos += written;
1055 count -= written;
1056 iov_iter_init(&i, iov, nr_segs, count, written);
1057 written_buffered = __btrfs_buffered_write(file, &i, pos);
1058 if (written_buffered < 0) {
1059 err = written_buffered;
1060 goto out;
1061 }
1062 endbyte = pos + written_buffered - 1;
1063 err = filemap_write_and_wait_range(file->f_mapping, pos, endbyte);
1064 if (err)
1065 goto out;
1066 written += written_buffered;
1067 *ppos = pos + written_buffered;
1068 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_CACHE_SHIFT,
1069 endbyte >> PAGE_CACHE_SHIFT);
1070out:
1071 return written ? written : err;
1072}
1073
1074static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
1075 const struct iovec *iov,
1076 unsigned long nr_segs, loff_t pos)
1077{
1078 struct file *file = iocb->ki_filp;
1079 struct inode *inode = fdentry(file)->d_inode;
1080 struct btrfs_root *root = BTRFS_I(inode)->root;
1081 loff_t *ppos = &iocb->ki_pos;
1082 ssize_t num_written = 0;
1083 ssize_t err = 0;
1084 size_t count, ocount;
1085
1086 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1087
1088 mutex_lock(&inode->i_mutex);
1089
1090 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
1091 if (err) {
1092 mutex_unlock(&inode->i_mutex);
1093 goto out;
1094 }
1095 count = ocount;
1096
1097 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1098 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1099 if (err) {
1100 mutex_unlock(&inode->i_mutex);
1101 goto out;
1102 }
1103
1104 if (count == 0) {
1105 mutex_unlock(&inode->i_mutex);
1106 goto out;
1107 }
1108
1109 err = file_remove_suid(file);
1110 if (err) {
1111 mutex_unlock(&inode->i_mutex);
1112 goto out;
1113 }
1114
1115 /*
1116 * If BTRFS flips readonly due to some impossible error
1117 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1118 * although we have opened a file as writable, we have
1119 * to stop this write operation to ensure FS consistency.
1120 */
1121 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
1122 mutex_unlock(&inode->i_mutex);
1123 err = -EROFS;
1124 goto out;
1125 }
1126
1127 file_update_time(file);
1128 BTRFS_I(inode)->sequence++;
1129
1130 if (unlikely(file->f_flags & O_DIRECT)) {
1131 num_written = __btrfs_direct_write(iocb, iov, nr_segs,
1132 pos, ppos, count, ocount);
1133 } else {
1134 struct iov_iter i;
1135
1136 iov_iter_init(&i, iov, nr_segs, count, num_written);
1137
1138 num_written = __btrfs_buffered_write(file, &i, pos);
1139 if (num_written > 0)
1140 *ppos = pos + num_written;
1141 }
1142
1143 mutex_unlock(&inode->i_mutex);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001144
Chris Mason5a3f23d2009-03-31 13:27:11 -04001145 /*
1146 * we want to make sure fsync finds this change
1147 * but we haven't joined a transaction running right now.
1148 *
1149 * Later on, someone is sure to update the inode and get the
1150 * real transid recorded.
1151 *
1152 * We set last_trans now to the fs_info generation + 1,
1153 * this will either be one more than the running transaction
1154 * or the generation used for the next transaction if there isn't
1155 * one running right now.
1156 */
1157 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
Josef Bacikd0215f32011-01-25 14:57:24 -05001158 if (num_written > 0 || num_written == -EIOCBQUEUED) {
1159 err = generic_write_sync(file, pos, num_written);
1160 if (err < 0 && num_written > 0)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001161 num_written = err;
1162 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001163out:
Chris Mason39279cc2007-06-12 06:35:45 -04001164 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001165 return num_written ? num_written : err;
1166}
1167
Chris Masond3977122009-01-05 21:25:51 -05001168int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001169{
Chris Mason5a3f23d2009-03-31 13:27:11 -04001170 /*
1171 * ordered_data_close is set by settattr when we are about to truncate
1172 * a file from a non-zero size to a zero size. This tries to
1173 * flush down new bytes that may have been written if the
1174 * application were using truncate to replace a file in place.
1175 */
1176 if (BTRFS_I(inode)->ordered_data_close) {
1177 BTRFS_I(inode)->ordered_data_close = 0;
1178 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1179 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1180 filemap_flush(inode->i_mapping);
1181 }
Sage Weil6bf13c02008-06-10 10:07:39 -04001182 if (filp->private_data)
1183 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001184 return 0;
1185}
1186
Chris Masond352ac62008-09-29 15:18:18 -04001187/*
1188 * fsync call for both files and directories. This logs the inode into
1189 * the tree log instead of forcing full commits whenever possible.
1190 *
1191 * It needs to call filemap_fdatawait so that all ordered extent updates are
1192 * in the metadata btree are up to date for copying to the log.
1193 *
1194 * It drops the inode mutex before doing the tree log commit. This is an
1195 * important optimization for directories because holding the mutex prevents
1196 * new operations on the dir while we write to disk.
1197 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001198int btrfs_sync_file(struct file *file, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001199{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001200 struct dentry *dentry = file->f_path.dentry;
Chris Mason39279cc2007-06-12 06:35:45 -04001201 struct inode *inode = dentry->d_inode;
1202 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001203 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001204 struct btrfs_trans_handle *trans;
1205
liubo1abe9b82011-03-24 11:18:59 +00001206 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04001207
1208 /* we wait first, since the writeback may change the inode */
1209 root->log_batch++;
1210 /* the VFS called filemap_fdatawrite for us */
1211 btrfs_wait_ordered_range(inode, 0, (u64)-1);
1212 root->log_batch++;
1213
Chris Mason39279cc2007-06-12 06:35:45 -04001214 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001215 * check the transaction that last modified this inode
1216 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001217 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001218 if (!BTRFS_I(inode)->last_trans)
1219 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001220
Chris Mason257c62e2009-10-13 13:21:08 -04001221 /*
1222 * if the last transaction that changed this file was before
1223 * the current transaction, we can bail out now without any
1224 * syncing
1225 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001226 mutex_lock(&root->fs_info->trans_mutex);
1227 if (BTRFS_I(inode)->last_trans <=
1228 root->fs_info->last_trans_committed) {
1229 BTRFS_I(inode)->last_trans = 0;
1230 mutex_unlock(&root->fs_info->trans_mutex);
1231 goto out;
1232 }
1233 mutex_unlock(&root->fs_info->trans_mutex);
1234
1235 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001236 * ok we haven't committed the transaction yet, lets do a commit
1237 */
Dan Carpenter6f902af2010-05-29 09:49:07 +00001238 if (file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001239 btrfs_ioctl_trans_end(file);
1240
Yan, Zhenga22285a2010-05-16 10:48:46 -04001241 trans = btrfs_start_transaction(root, 0);
1242 if (IS_ERR(trans)) {
1243 ret = PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04001244 goto out;
1245 }
Chris Masone02119d2008-09-05 16:13:11 -04001246
Chris Mason2cfbd502009-02-20 10:55:10 -05001247 ret = btrfs_log_dentry_safe(trans, root, dentry);
Chris Masond3977122009-01-05 21:25:51 -05001248 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04001249 goto out;
Chris Mason49eb7e42008-09-11 15:53:12 -04001250
1251 /* we've logged all the items and now have a consistent
1252 * version of the file in the log. It is possible that
1253 * someone will come in and modify the file, but that's
1254 * fine because the log is consistent on disk, and we
1255 * have references to all of the file's extents
1256 *
1257 * It is possible that someone will come in and log the
1258 * file again, but that will end up using the synchronization
1259 * inside btrfs_sync_log to keep things safe.
1260 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001261 mutex_unlock(&dentry->d_inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001262
Chris Mason257c62e2009-10-13 13:21:08 -04001263 if (ret != BTRFS_NO_LOG_SYNC) {
1264 if (ret > 0) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001265 ret = btrfs_commit_transaction(trans, root);
Chris Mason257c62e2009-10-13 13:21:08 -04001266 } else {
1267 ret = btrfs_sync_log(trans, root);
1268 if (ret == 0)
1269 ret = btrfs_end_transaction(trans, root);
1270 else
1271 ret = btrfs_commit_transaction(trans, root);
1272 }
1273 } else {
1274 ret = btrfs_end_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001275 }
Chris Mason2cfbd502009-02-20 10:55:10 -05001276 mutex_lock(&dentry->d_inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001277out:
Roel Kluin014e4ac2010-01-29 10:42:11 +00001278 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04001279}
1280
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001281static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001282 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001283 .page_mkwrite = btrfs_page_mkwrite,
1284};
1285
1286static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1287{
Miao Xie058a4572010-05-20 07:21:50 +00001288 struct address_space *mapping = filp->f_mapping;
1289
1290 if (!mapping->a_ops->readpage)
1291 return -ENOEXEC;
1292
Chris Mason9ebefb182007-06-15 13:50:00 -04001293 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00001294 vma->vm_ops = &btrfs_file_vm_ops;
1295 vma->vm_flags |= VM_CAN_NONLINEAR;
1296
Chris Mason9ebefb182007-06-15 13:50:00 -04001297 return 0;
1298}
1299
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001300static long btrfs_fallocate(struct file *file, int mode,
1301 loff_t offset, loff_t len)
1302{
1303 struct inode *inode = file->f_path.dentry->d_inode;
1304 struct extent_state *cached_state = NULL;
1305 u64 cur_offset;
1306 u64 last_byte;
1307 u64 alloc_start;
1308 u64 alloc_end;
1309 u64 alloc_hint = 0;
1310 u64 locked_end;
1311 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
1312 struct extent_map *em;
1313 int ret;
1314
1315 alloc_start = offset & ~mask;
1316 alloc_end = (offset + len + mask) & ~mask;
1317
1318 /* We only support the FALLOC_FL_KEEP_SIZE mode */
1319 if (mode & ~FALLOC_FL_KEEP_SIZE)
1320 return -EOPNOTSUPP;
1321
1322 /*
1323 * wait for ordered IO before we have any locks. We'll loop again
1324 * below with the locks held.
1325 */
1326 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
1327
1328 mutex_lock(&inode->i_mutex);
1329 ret = inode_newsize_ok(inode, alloc_end);
1330 if (ret)
1331 goto out;
1332
1333 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05001334 ret = btrfs_cont_expand(inode, i_size_read(inode),
1335 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001336 if (ret)
1337 goto out;
1338 }
1339
1340 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start);
1341 if (ret)
1342 goto out;
1343
1344 locked_end = alloc_end - 1;
1345 while (1) {
1346 struct btrfs_ordered_extent *ordered;
1347
1348 /* the extent lock is ordered inside the running
1349 * transaction
1350 */
1351 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
1352 locked_end, 0, &cached_state, GFP_NOFS);
1353 ordered = btrfs_lookup_first_ordered_extent(inode,
1354 alloc_end - 1);
1355 if (ordered &&
1356 ordered->file_offset + ordered->len > alloc_start &&
1357 ordered->file_offset < alloc_end) {
1358 btrfs_put_ordered_extent(ordered);
1359 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1360 alloc_start, locked_end,
1361 &cached_state, GFP_NOFS);
1362 /*
1363 * we can't wait on the range with the transaction
1364 * running or with the extent lock held
1365 */
1366 btrfs_wait_ordered_range(inode, alloc_start,
1367 alloc_end - alloc_start);
1368 } else {
1369 if (ordered)
1370 btrfs_put_ordered_extent(ordered);
1371 break;
1372 }
1373 }
1374
1375 cur_offset = alloc_start;
1376 while (1) {
1377 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
1378 alloc_end - cur_offset, 0);
1379 BUG_ON(IS_ERR(em) || !em);
1380 last_byte = min(extent_map_end(em), alloc_end);
1381 last_byte = (last_byte + mask) & ~mask;
1382 if (em->block_start == EXTENT_MAP_HOLE ||
1383 (cur_offset >= inode->i_size &&
1384 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
1385 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
1386 last_byte - cur_offset,
1387 1 << inode->i_blkbits,
1388 offset + len,
1389 &alloc_hint);
1390 if (ret < 0) {
1391 free_extent_map(em);
1392 break;
1393 }
1394 }
1395 free_extent_map(em);
1396
1397 cur_offset = last_byte;
1398 if (cur_offset >= alloc_end) {
1399 ret = 0;
1400 break;
1401 }
1402 }
1403 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
1404 &cached_state, GFP_NOFS);
1405
1406 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start);
1407out:
1408 mutex_unlock(&inode->i_mutex);
1409 return ret;
1410}
1411
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001412const struct file_operations btrfs_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04001413 .llseek = generic_file_llseek,
1414 .read = do_sync_read,
Miao Xie4a0010712010-06-07 03:38:51 +00001415 .write = do_sync_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001416 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001417 .splice_read = generic_file_splice_read,
Josef Bacik11c65dc2010-05-23 11:07:21 -04001418 .aio_write = btrfs_file_aio_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001419 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001420 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001421 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001422 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001423 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001424 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001425#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001426 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001427#endif
1428};