blob: e621ea54a3fd64bcf3dae29e4f96e887b6eff95c [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 */
Chris Masond3977122009-01-05 21:25:51 -0500107static noinline void 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 Bacikd0215f32011-01-25 14:57:24 -0500130static noinline int dirty_and_release_pages(struct btrfs_root *root,
131 struct file *file,
132 struct page **pages,
133 size_t num_pages,
134 loff_t pos,
135 size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400136{
Chris Mason39279cc2007-06-12 06:35:45 -0400137 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400138 int i;
Chris Mason6da6aba2007-12-18 16:15:09 -0500139 struct inode *inode = fdentry(file)->d_inode;
Chris Masondb945352007-10-15 16:15:53 -0400140 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400141 u64 start_pos;
142 u64 end_of_last_block;
143 u64 end_pos = pos + write_bytes;
144 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400145
Chris Mason5f39d392007-10-15 16:14:19 -0400146 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400147 num_bytes = (write_bytes + pos - start_pos +
148 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400149
Chris Masondb945352007-10-15 16:15:53 -0400150 end_of_last_block = start_pos + num_bytes - 1;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000151 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
152 NULL);
Josef Bacikd0215f32011-01-25 14:57:24 -0500153 if (err)
154 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400155
Chris Masonc8b97812008-10-29 14:49:59 -0400156 for (i = 0; i < num_pages; i++) {
157 struct page *p = pages[i];
158 SetPageUptodate(p);
159 ClearPageChecked(p);
160 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400161 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500162
163 /*
164 * we've only changed i_size in ram, and we haven't updated
165 * the disk i_size. There is no need to log the inode
166 * at this time.
167 */
168 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400169 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400170 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400171}
172
Chris Masond352ac62008-09-29 15:18:18 -0400173/*
174 * this drops all the extents in the cache that intersect the range
175 * [start, end]. Existing extents are split as required.
176 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400177int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
178 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400179{
180 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400181 struct extent_map *split = NULL;
182 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400183 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500184 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400185 int ret;
186 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400187 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400188 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400189
Chris Masone6dcd2d2008-07-17 12:53:50 -0400190 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400191 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500192 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400193 testend = 0;
194 }
Chris Masond3977122009-01-05 21:25:51 -0500195 while (1) {
Chris Mason3b951512008-04-17 11:29:12 -0400196 if (!split)
197 split = alloc_extent_map(GFP_NOFS);
198 if (!split2)
199 split2 = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000200 BUG_ON(!split || !split2);
Chris Mason3b951512008-04-17 11:29:12 -0400201
Chris Mason890871b2009-09-02 16:24:52 -0400202 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500203 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500204 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400205 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400206 break;
Chris Masond1310b22008-01-24 16:13:08 -0500207 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400208 flags = em->flags;
209 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000210 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400211 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400212 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400213 break;
214 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000215 start = em->start + em->len;
216 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400217 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400218 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400219 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400220 continue;
221 }
Chris Masonc8b97812008-10-29 14:49:59 -0400222 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400223 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400224 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400225
226 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
227 em->start < start) {
228 split->start = em->start;
229 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500230 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400231 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400232
233 if (compressed)
234 split->block_len = em->block_len;
235 else
236 split->block_len = split->len;
237
Chris Mason3b951512008-04-17 11:29:12 -0400238 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400239 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800240 split->compress_type = em->compress_type;
Chris Mason3b951512008-04-17 11:29:12 -0400241 ret = add_extent_mapping(em_tree, split);
242 BUG_ON(ret);
243 free_extent_map(split);
244 split = split2;
245 split2 = NULL;
246 }
247 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
248 testend && em->start + em->len > start + len) {
249 u64 diff = start + len - em->start;
250
251 split->start = start + len;
252 split->len = em->start + em->len - (start + len);
253 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400254 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800255 split->compress_type = em->compress_type;
Chris Mason3b951512008-04-17 11:29:12 -0400256
Chris Masonc8b97812008-10-29 14:49:59 -0400257 if (compressed) {
258 split->block_len = em->block_len;
259 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500260 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400261 } else {
262 split->block_len = split->len;
263 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500264 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400265 }
Chris Mason3b951512008-04-17 11:29:12 -0400266
267 ret = add_extent_mapping(em_tree, split);
268 BUG_ON(ret);
269 free_extent_map(split);
270 split = NULL;
271 }
Chris Mason890871b2009-09-02 16:24:52 -0400272 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500273
Chris Masona52d9a82007-08-27 16:49:44 -0400274 /* once for us */
275 free_extent_map(em);
276 /* once for the tree*/
277 free_extent_map(em);
278 }
Chris Mason3b951512008-04-17 11:29:12 -0400279 if (split)
280 free_extent_map(split);
281 if (split2)
282 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400283 return 0;
284}
285
Chris Mason39279cc2007-06-12 06:35:45 -0400286/*
287 * this is very complex, but the basic idea is to drop all extents
288 * in the range start - end. hint_block is filled in with a block number
289 * that would be a good hint to the block allocator for this file.
290 *
291 * If an extent intersects the range but is not entirely inside the range
292 * it is either truncated or split. Anything entirely inside the range
293 * is deleted from the tree.
294 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000295int btrfs_drop_extents(struct btrfs_trans_handle *trans, struct inode *inode,
296 u64 start, u64 end, u64 *hint_byte, int drop_cache)
Chris Mason39279cc2007-06-12 06:35:45 -0400297{
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000298 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason00f5c792007-11-30 10:09:33 -0500299 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000300 struct btrfs_file_extent_item *fi;
Chris Mason00f5c792007-11-30 10:09:33 -0500301 struct btrfs_path *path;
302 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000303 struct btrfs_key new_key;
304 u64 search_start = start;
305 u64 disk_bytenr = 0;
306 u64 num_bytes = 0;
307 u64 extent_offset = 0;
308 u64 extent_end = 0;
309 int del_nr = 0;
310 int del_slot = 0;
311 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400312 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500313 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400314
Chris Masona1ed8352009-09-11 12:27:37 -0400315 if (drop_cache)
316 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400317
Chris Mason39279cc2007-06-12 06:35:45 -0400318 path = btrfs_alloc_path();
319 if (!path)
320 return -ENOMEM;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000321
Chris Masond3977122009-01-05 21:25:51 -0500322 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400323 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400324 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
325 search_start, -1);
326 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000327 break;
328 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
329 leaf = path->nodes[0];
330 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
331 if (key.objectid == inode->i_ino &&
332 key.type == BTRFS_EXTENT_DATA_KEY)
333 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400334 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400335 ret = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000336next_slot:
337 leaf = path->nodes[0];
338 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
339 BUG_ON(del_nr > 0);
340 ret = btrfs_next_leaf(root, path);
341 if (ret < 0)
342 break;
343 if (ret > 0) {
344 ret = 0;
345 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400346 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000347 leaf = path->nodes[0];
348 recow = 1;
349 }
350
351 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
352 if (key.objectid > inode->i_ino ||
353 key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
354 break;
355
356 fi = btrfs_item_ptr(leaf, path->slots[0],
357 struct btrfs_file_extent_item);
358 extent_type = btrfs_file_extent_type(leaf, fi);
359
360 if (extent_type == BTRFS_FILE_EXTENT_REG ||
361 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
362 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
363 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
364 extent_offset = btrfs_file_extent_offset(leaf, fi);
365 extent_end = key.offset +
366 btrfs_file_extent_num_bytes(leaf, fi);
367 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
368 extent_end = key.offset +
369 btrfs_file_extent_inline_len(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400370 } else {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000371 WARN_ON(1);
Chris Mason8c2383c2007-06-18 09:57:58 -0400372 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400373 }
374
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000375 if (extent_end <= search_start) {
376 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400377 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400378 }
379
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000380 search_start = max(key.offset, start);
381 if (recow) {
Zheng Yan31840ae2008-09-23 13:14:14 -0400382 btrfs_release_path(root, path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000383 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400384 }
Chris Mason771ed682008-11-06 22:02:51 -0500385
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000386 /*
387 * | - range to drop - |
388 * | -------- extent -------- |
389 */
390 if (start > key.offset && end < extent_end) {
391 BUG_ON(del_nr > 0);
392 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
393
394 memcpy(&new_key, &key, sizeof(new_key));
395 new_key.offset = start;
396 ret = btrfs_duplicate_item(trans, root, path,
397 &new_key);
398 if (ret == -EAGAIN) {
399 btrfs_release_path(root, path);
400 continue;
401 }
402 if (ret < 0)
403 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400404
Chris Mason5f39d392007-10-15 16:14:19 -0400405 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000406 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
407 struct btrfs_file_extent_item);
408 btrfs_set_file_extent_num_bytes(leaf, fi,
409 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400410
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000411 fi = btrfs_item_ptr(leaf, path->slots[0],
412 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400413
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000414 extent_offset += start - key.offset;
415 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
416 btrfs_set_file_extent_num_bytes(leaf, fi,
417 extent_end - start);
418 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400419
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000420 if (disk_bytenr > 0) {
421 ret = btrfs_inc_extent_ref(trans, root,
422 disk_bytenr, num_bytes, 0,
423 root->root_key.objectid,
424 new_key.objectid,
425 start - extent_offset);
Zheng Yan31840ae2008-09-23 13:14:14 -0400426 BUG_ON(ret);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000427 *hint_byte = disk_bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -0400428 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000429 key.offset = start;
430 }
431 /*
432 * | ---- range to drop ----- |
433 * | -------- extent -------- |
434 */
435 if (start <= key.offset && end < extent_end) {
436 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
437
438 memcpy(&new_key, &key, sizeof(new_key));
439 new_key.offset = end;
440 btrfs_set_item_key_safe(trans, root, path, &new_key);
441
442 extent_offset += end - key.offset;
443 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
444 btrfs_set_file_extent_num_bytes(leaf, fi,
445 extent_end - end);
446 btrfs_mark_buffer_dirty(leaf);
447 if (disk_bytenr > 0) {
448 inode_sub_bytes(inode, end - key.offset);
449 *hint_byte = disk_bytenr;
450 }
451 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400452 }
453
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000454 search_start = extent_end;
455 /*
456 * | ---- range to drop ----- |
457 * | -------- extent -------- |
458 */
459 if (start > key.offset && end >= extent_end) {
460 BUG_ON(del_nr > 0);
461 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
462
463 btrfs_set_file_extent_num_bytes(leaf, fi,
464 start - key.offset);
465 btrfs_mark_buffer_dirty(leaf);
466 if (disk_bytenr > 0) {
467 inode_sub_bytes(inode, extent_end - start);
468 *hint_byte = disk_bytenr;
469 }
470 if (end == extent_end)
471 break;
472
473 path->slots[0]++;
474 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400475 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000476
477 /*
478 * | ---- range to drop ----- |
479 * | ------ extent ------ |
480 */
481 if (start <= key.offset && end >= extent_end) {
482 if (del_nr == 0) {
483 del_slot = path->slots[0];
484 del_nr = 1;
485 } else {
486 BUG_ON(del_slot + del_nr != path->slots[0]);
487 del_nr++;
488 }
489
490 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
491 inode_sub_bytes(inode,
492 extent_end - key.offset);
493 extent_end = ALIGN(extent_end,
494 root->sectorsize);
495 } else if (disk_bytenr > 0) {
496 ret = btrfs_free_extent(trans, root,
497 disk_bytenr, num_bytes, 0,
498 root->root_key.objectid,
499 key.objectid, key.offset -
500 extent_offset);
501 BUG_ON(ret);
502 inode_sub_bytes(inode,
503 extent_end - key.offset);
504 *hint_byte = disk_bytenr;
505 }
506
507 if (end == extent_end)
508 break;
509
510 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
511 path->slots[0]++;
512 goto next_slot;
513 }
514
515 ret = btrfs_del_items(trans, root, path, del_slot,
516 del_nr);
517 BUG_ON(ret);
518
519 del_nr = 0;
520 del_slot = 0;
521
522 btrfs_release_path(root, path);
523 continue;
524 }
525
526 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400527 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000528
529 if (del_nr > 0) {
530 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
531 BUG_ON(ret);
532 }
533
Chris Mason39279cc2007-06-12 06:35:45 -0400534 btrfs_free_path(path);
535 return ret;
536}
537
Yan Zhengd899e052008-10-30 14:25:28 -0400538static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000539 u64 objectid, u64 bytenr, u64 orig_offset,
540 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -0400541{
542 struct btrfs_file_extent_item *fi;
543 struct btrfs_key key;
544 u64 extent_end;
545
546 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
547 return 0;
548
549 btrfs_item_key_to_cpu(leaf, &key, slot);
550 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
551 return 0;
552
553 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
554 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
555 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000556 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -0400557 btrfs_file_extent_compression(leaf, fi) ||
558 btrfs_file_extent_encryption(leaf, fi) ||
559 btrfs_file_extent_other_encoding(leaf, fi))
560 return 0;
561
562 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
563 if ((*start && *start != key.offset) || (*end && *end != extent_end))
564 return 0;
565
566 *start = key.offset;
567 *end = extent_end;
568 return 1;
569}
570
571/*
572 * Mark extent in the range start - end as written.
573 *
574 * This changes extent type from 'pre-allocated' to 'regular'. If only
575 * part of extent is marked as written, the extent will be split into
576 * two or three.
577 */
578int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Yan Zhengd899e052008-10-30 14:25:28 -0400579 struct inode *inode, u64 start, u64 end)
580{
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000581 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zhengd899e052008-10-30 14:25:28 -0400582 struct extent_buffer *leaf;
583 struct btrfs_path *path;
584 struct btrfs_file_extent_item *fi;
585 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000586 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -0400587 u64 bytenr;
588 u64 num_bytes;
589 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400590 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -0400591 u64 other_start;
592 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000593 u64 split;
594 int del_nr = 0;
595 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000596 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -0400597 int ret;
598
599 btrfs_drop_extent_cache(inode, start, end - 1, 0);
600
601 path = btrfs_alloc_path();
602 BUG_ON(!path);
603again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000604 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000605 split = start;
Yan Zhengd899e052008-10-30 14:25:28 -0400606 key.objectid = inode->i_ino;
607 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000608 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -0400609
610 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -0400611 if (ret < 0)
612 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -0400613 if (ret > 0 && path->slots[0] > 0)
614 path->slots[0]--;
615
616 leaf = path->nodes[0];
617 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
618 BUG_ON(key.objectid != inode->i_ino ||
619 key.type != BTRFS_EXTENT_DATA_KEY);
620 fi = btrfs_item_ptr(leaf, path->slots[0],
621 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000622 BUG_ON(btrfs_file_extent_type(leaf, fi) !=
623 BTRFS_FILE_EXTENT_PREALLOC);
Yan Zhengd899e052008-10-30 14:25:28 -0400624 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
625 BUG_ON(key.offset > start || extent_end < end);
626
627 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
628 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400629 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000630 memcpy(&new_key, &key, sizeof(new_key));
631
632 if (start == key.offset && end < extent_end) {
633 other_start = 0;
634 other_end = start;
635 if (extent_mergeable(leaf, path->slots[0] - 1,
636 inode->i_ino, bytenr, orig_offset,
637 &other_start, &other_end)) {
638 new_key.offset = end;
639 btrfs_set_item_key_safe(trans, root, path, &new_key);
640 fi = btrfs_item_ptr(leaf, path->slots[0],
641 struct btrfs_file_extent_item);
642 btrfs_set_file_extent_num_bytes(leaf, fi,
643 extent_end - end);
644 btrfs_set_file_extent_offset(leaf, fi,
645 end - orig_offset);
646 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
647 struct btrfs_file_extent_item);
648 btrfs_set_file_extent_num_bytes(leaf, fi,
649 end - other_start);
650 btrfs_mark_buffer_dirty(leaf);
651 goto out;
652 }
653 }
654
655 if (start > key.offset && end == extent_end) {
656 other_start = end;
657 other_end = 0;
658 if (extent_mergeable(leaf, path->slots[0] + 1,
659 inode->i_ino, bytenr, orig_offset,
660 &other_start, &other_end)) {
661 fi = btrfs_item_ptr(leaf, path->slots[0],
662 struct btrfs_file_extent_item);
663 btrfs_set_file_extent_num_bytes(leaf, fi,
664 start - key.offset);
665 path->slots[0]++;
666 new_key.offset = start;
667 btrfs_set_item_key_safe(trans, root, path, &new_key);
668
669 fi = btrfs_item_ptr(leaf, path->slots[0],
670 struct btrfs_file_extent_item);
671 btrfs_set_file_extent_num_bytes(leaf, fi,
672 other_end - start);
673 btrfs_set_file_extent_offset(leaf, fi,
674 start - orig_offset);
675 btrfs_mark_buffer_dirty(leaf);
676 goto out;
677 }
678 }
Yan Zhengd899e052008-10-30 14:25:28 -0400679
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000680 while (start > key.offset || end < extent_end) {
681 if (key.offset == start)
682 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -0400683
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000684 new_key.offset = split;
685 ret = btrfs_duplicate_item(trans, root, path, &new_key);
686 if (ret == -EAGAIN) {
687 btrfs_release_path(root, path);
688 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -0400689 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000690 BUG_ON(ret < 0);
Yan Zhengd899e052008-10-30 14:25:28 -0400691
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000692 leaf = path->nodes[0];
693 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -0400694 struct btrfs_file_extent_item);
Yan Zhengd899e052008-10-30 14:25:28 -0400695 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000696 split - key.offset);
697
698 fi = btrfs_item_ptr(leaf, path->slots[0],
699 struct btrfs_file_extent_item);
700
701 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
702 btrfs_set_file_extent_num_bytes(leaf, fi,
703 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -0400704 btrfs_mark_buffer_dirty(leaf);
705
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000706 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
707 root->root_key.objectid,
708 inode->i_ino, orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400709 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -0400710
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000711 if (split == start) {
712 key.offset = start;
713 } else {
714 BUG_ON(start != key.offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400715 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000716 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -0400717 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000718 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -0400719 }
720
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000721 other_start = end;
722 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000723 if (extent_mergeable(leaf, path->slots[0] + 1,
724 inode->i_ino, bytenr, orig_offset,
725 &other_start, &other_end)) {
726 if (recow) {
727 btrfs_release_path(root, path);
728 goto again;
729 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000730 extent_end = other_end;
731 del_slot = path->slots[0] + 1;
732 del_nr++;
733 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
734 0, root->root_key.objectid,
735 inode->i_ino, orig_offset);
736 BUG_ON(ret);
737 }
738 other_start = 0;
739 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000740 if (extent_mergeable(leaf, path->slots[0] - 1,
741 inode->i_ino, bytenr, orig_offset,
742 &other_start, &other_end)) {
743 if (recow) {
744 btrfs_release_path(root, path);
745 goto again;
746 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000747 key.offset = other_start;
748 del_slot = path->slots[0];
749 del_nr++;
750 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
751 0, root->root_key.objectid,
752 inode->i_ino, orig_offset);
753 BUG_ON(ret);
754 }
755 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +0000756 fi = btrfs_item_ptr(leaf, path->slots[0],
757 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000758 btrfs_set_file_extent_type(leaf, fi,
759 BTRFS_FILE_EXTENT_REG);
760 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000761 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +0000762 fi = btrfs_item_ptr(leaf, del_slot - 1,
763 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000764 btrfs_set_file_extent_type(leaf, fi,
765 BTRFS_FILE_EXTENT_REG);
766 btrfs_set_file_extent_num_bytes(leaf, fi,
767 extent_end - key.offset);
768 btrfs_mark_buffer_dirty(leaf);
769
770 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
771 BUG_ON(ret);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000772 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000773out:
Yan Zhengd899e052008-10-30 14:25:28 -0400774 btrfs_free_path(path);
775 return 0;
776}
777
Chris Mason39279cc2007-06-12 06:35:45 -0400778/*
Chris Masonb1bf8622011-02-28 09:52:08 -0500779 * on error we return an unlocked page and the error value
780 * on success we return a locked page and 0
781 */
782static int prepare_uptodate_page(struct page *page, u64 pos)
783{
784 int ret = 0;
785
786 if ((pos & (PAGE_CACHE_SIZE - 1)) && !PageUptodate(page)) {
787 ret = btrfs_readpage(NULL, page);
788 if (ret)
789 return ret;
790 lock_page(page);
791 if (!PageUptodate(page)) {
792 unlock_page(page);
793 return -EIO;
794 }
795 }
796 return 0;
797}
798
799/*
Chris Masond352ac62008-09-29 15:18:18 -0400800 * this gets pages into the page cache and locks them down, it also properly
801 * waits for data=ordered extents to finish before allowing the pages to be
802 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -0400803 */
Chris Masond3977122009-01-05 21:25:51 -0500804static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -0500805 struct page **pages, size_t num_pages,
806 loff_t pos, unsigned long first_index,
807 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400808{
Josef Bacik2ac55d42010-02-03 19:33:23 +0000809 struct extent_state *cached_state = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -0400810 int i;
811 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500812 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400813 int err = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -0500814 int faili = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400815 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400816 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400817
Chris Mason5f39d392007-10-15 16:14:19 -0400818 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400819 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400820
Yan Zheng9036c102008-10-30 14:19:41 -0400821 if (start_pos > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -0500822 err = btrfs_cont_expand(inode, i_size_read(inode), start_pos);
Yan Zheng9036c102008-10-30 14:19:41 -0400823 if (err)
824 return err;
825 }
826
Chris Masone6dcd2d2008-07-17 12:53:50 -0400827again:
Chris Mason39279cc2007-06-12 06:35:45 -0400828 for (i = 0; i < num_pages; i++) {
829 pages[i] = grab_cache_page(inode->i_mapping, index + i);
830 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -0500831 faili = i - 1;
832 err = -ENOMEM;
833 goto fail;
834 }
835
836 if (i == 0)
837 err = prepare_uptodate_page(pages[i], pos);
838 if (i == num_pages - 1)
839 err = prepare_uptodate_page(pages[i],
840 pos + write_bytes);
841 if (err) {
842 page_cache_release(pages[i]);
843 faili = i - 1;
844 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -0400845 }
Chris Masonccd467d2007-06-28 15:57:36 -0400846 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400847 }
Chris Masonb1bf8622011-02-28 09:52:08 -0500848 err = 0;
Chris Mason07627042008-02-19 11:29:24 -0500849 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400850 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000851 lock_extent_bits(&BTRFS_I(inode)->io_tree,
852 start_pos, last_pos - 1, 0, &cached_state,
853 GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500854 ordered = btrfs_lookup_first_ordered_extent(inode,
855 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400856 if (ordered &&
857 ordered->file_offset + ordered->len > start_pos &&
858 ordered->file_offset < last_pos) {
859 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +0000860 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
861 start_pos, last_pos - 1,
862 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400863 for (i = 0; i < num_pages; i++) {
864 unlock_page(pages[i]);
865 page_cache_release(pages[i]);
866 }
867 btrfs_wait_ordered_range(inode, start_pos,
868 last_pos - start_pos);
869 goto again;
870 }
871 if (ordered)
872 btrfs_put_ordered_extent(ordered);
873
Josef Bacik2ac55d42010-02-03 19:33:23 +0000874 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos,
Josef Bacik32c00af2009-10-08 13:34:05 -0400875 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +0000876 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
Chris Mason07627042008-02-19 11:29:24 -0500877 GFP_NOFS);
Josef Bacik2ac55d42010-02-03 19:33:23 +0000878 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
879 start_pos, last_pos - 1, &cached_state,
880 GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500881 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400882 for (i = 0; i < num_pages; i++) {
Chris Masonf87f0572008-08-01 11:27:23 -0400883 clear_page_dirty_for_io(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400884 set_page_extent_mapped(pages[i]);
885 WARN_ON(!PageLocked(pages[i]));
886 }
Chris Mason39279cc2007-06-12 06:35:45 -0400887 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -0500888fail:
889 while (faili >= 0) {
890 unlock_page(pages[faili]);
891 page_cache_release(pages[faili]);
892 faili--;
893 }
894 return err;
895
Chris Mason39279cc2007-06-12 06:35:45 -0400896}
897
Josef Bacikd0215f32011-01-25 14:57:24 -0500898static noinline ssize_t __btrfs_buffered_write(struct file *file,
899 struct iov_iter *i,
900 loff_t pos)
Josef Bacik4b46fce2010-05-23 11:00:55 -0400901{
Josef Bacik11c65dc2010-05-23 11:07:21 -0400902 struct inode *inode = fdentry(file)->d_inode;
903 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400904 struct page **pages = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -0400905 unsigned long first_index;
906 unsigned long last_index;
Josef Bacikd0215f32011-01-25 14:57:24 -0500907 size_t num_written = 0;
908 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +0000909 int ret = 0;
Chris Masoncb843a62008-10-03 12:30:02 -0400910
Josef Bacikd0215f32011-01-25 14:57:24 -0500911 nrptrs = min((iov_iter_count(i) + PAGE_CACHE_SIZE - 1) /
Josef Bacik11c65dc2010-05-23 11:07:21 -0400912 PAGE_CACHE_SIZE, PAGE_CACHE_SIZE /
913 (sizeof(struct page *)));
Chris Mason8c2383c2007-06-18 09:57:58 -0400914 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -0500915 if (!pages)
916 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -0400917
Chris Mason39279cc2007-06-12 06:35:45 -0400918 first_index = pos >> PAGE_CACHE_SHIFT;
Josef Bacikd0215f32011-01-25 14:57:24 -0500919 last_index = (pos + iov_iter_count(i)) >> PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400920
Josef Bacikd0215f32011-01-25 14:57:24 -0500921 while (iov_iter_count(i) > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400922 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Josef Bacikd0215f32011-01-25 14:57:24 -0500923 size_t write_bytes = min(iov_iter_count(i),
Josef Bacik11c65dc2010-05-23 11:07:21 -0400924 nrptrs * (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400925 offset);
Yan, Zheng3a909832011-01-18 13:34:40 +0800926 size_t num_pages = (write_bytes + offset +
927 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Josef Bacikd0215f32011-01-25 14:57:24 -0500928 size_t dirty_pages;
929 size_t copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400930
Chris Mason8c2383c2007-06-18 09:57:58 -0400931 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -0500932
Xin Zhong914ee292010-12-09 09:30:14 +0000933 /*
934 * Fault pages before locking them in prepare_pages
935 * to avoid recursive lock
936 */
Josef Bacikd0215f32011-01-25 14:57:24 -0500937 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +0000938 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -0500939 break;
Xin Zhong914ee292010-12-09 09:30:14 +0000940 }
941
942 ret = btrfs_delalloc_reserve_space(inode,
943 num_pages << PAGE_CACHE_SHIFT);
Chris Mason1832a6d2007-12-21 16:27:21 -0500944 if (ret)
Josef Bacikd0215f32011-01-25 14:57:24 -0500945 break;
Chris Mason1832a6d2007-12-21 16:27:21 -0500946
Josef Bacik4a640012011-01-25 15:10:08 -0500947 /*
948 * This is going to setup the pages array with the number of
949 * pages we want, so we don't really need to worry about the
950 * contents of pages from loop to loop
951 */
Chris Mason39279cc2007-06-12 06:35:45 -0400952 ret = prepare_pages(root, file, pages, num_pages,
953 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400954 write_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500955 if (ret) {
Xin Zhong914ee292010-12-09 09:30:14 +0000956 btrfs_delalloc_release_space(inode,
957 num_pages << PAGE_CACHE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -0500958 break;
Josef Bacik6a632092009-02-20 11:00:09 -0500959 }
Chris Mason39279cc2007-06-12 06:35:45 -0400960
Xin Zhong914ee292010-12-09 09:30:14 +0000961 copied = btrfs_copy_from_user(pos, num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -0500962 write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -0500963
964 /*
965 * if we have trouble faulting in the pages, fall
966 * back to one page at a time
967 */
968 if (copied < write_bytes)
969 nrptrs = 1;
970
971 if (copied == 0)
972 dirty_pages = 0;
973 else
974 dirty_pages = (copied + offset +
975 PAGE_CACHE_SIZE - 1) >>
976 PAGE_CACHE_SHIFT;
Xin Zhong914ee292010-12-09 09:30:14 +0000977
Josef Bacikd0215f32011-01-25 14:57:24 -0500978 /*
979 * If we had a short copy we need to release the excess delaloc
980 * bytes we reserved. We need to increment outstanding_extents
981 * because btrfs_delalloc_release_space will decrement it, but
982 * we still have an outstanding extent for the chunk we actually
983 * managed to copy.
984 */
Xin Zhong914ee292010-12-09 09:30:14 +0000985 if (num_pages > dirty_pages) {
986 if (copied > 0)
987 atomic_inc(
988 &BTRFS_I(inode)->outstanding_extents);
989 btrfs_delalloc_release_space(inode,
990 (num_pages - dirty_pages) <<
991 PAGE_CACHE_SHIFT);
992 }
993
994 if (copied > 0) {
Josef Bacikd0215f32011-01-25 14:57:24 -0500995 ret = dirty_and_release_pages(root, file, pages,
996 dirty_pages, pos,
997 copied);
998 if (ret) {
999 btrfs_delalloc_release_space(inode,
1000 dirty_pages << PAGE_CACHE_SHIFT);
1001 btrfs_drop_pages(pages, num_pages);
1002 break;
1003 }
Chris Mason54aa1f42007-06-22 14:16:25 -04001004 }
Chris Mason39279cc2007-06-12 06:35:45 -04001005
Chris Mason39279cc2007-06-12 06:35:45 -04001006 btrfs_drop_pages(pages, num_pages);
Xin Zhong914ee292010-12-09 09:30:14 +00001007
Josef Bacikd0215f32011-01-25 14:57:24 -05001008 cond_resched();
1009
1010 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1011 dirty_pages);
1012 if (dirty_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1013 btrfs_btree_balance_dirty(root, 1);
1014 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001015
Xin Zhong914ee292010-12-09 09:30:14 +00001016 pos += copied;
1017 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001018 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001019
Chris Mason8c2383c2007-06-18 09:57:58 -04001020 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001021
1022 return num_written ? num_written : ret;
1023}
1024
1025static ssize_t __btrfs_direct_write(struct kiocb *iocb,
1026 const struct iovec *iov,
1027 unsigned long nr_segs, loff_t pos,
1028 loff_t *ppos, size_t count, size_t ocount)
1029{
1030 struct file *file = iocb->ki_filp;
1031 struct inode *inode = fdentry(file)->d_inode;
1032 struct iov_iter i;
1033 ssize_t written;
1034 ssize_t written_buffered;
1035 loff_t endbyte;
1036 int err;
1037
1038 written = generic_file_direct_write(iocb, iov, &nr_segs, pos, ppos,
1039 count, ocount);
1040
1041 /*
1042 * the generic O_DIRECT will update in-memory i_size after the
1043 * DIOs are done. But our endio handlers that update the on
1044 * disk i_size never update past the in memory i_size. So we
1045 * need one more update here to catch any additions to the
1046 * file
1047 */
1048 if (inode->i_size != BTRFS_I(inode)->disk_i_size) {
1049 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
1050 mark_inode_dirty(inode);
1051 }
1052
1053 if (written < 0 || written == count)
1054 return written;
1055
1056 pos += written;
1057 count -= written;
1058 iov_iter_init(&i, iov, nr_segs, count, written);
1059 written_buffered = __btrfs_buffered_write(file, &i, pos);
1060 if (written_buffered < 0) {
1061 err = written_buffered;
1062 goto out;
1063 }
1064 endbyte = pos + written_buffered - 1;
1065 err = filemap_write_and_wait_range(file->f_mapping, pos, endbyte);
1066 if (err)
1067 goto out;
1068 written += written_buffered;
1069 *ppos = pos + written_buffered;
1070 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_CACHE_SHIFT,
1071 endbyte >> PAGE_CACHE_SHIFT);
1072out:
1073 return written ? written : err;
1074}
1075
1076static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
1077 const struct iovec *iov,
1078 unsigned long nr_segs, loff_t pos)
1079{
1080 struct file *file = iocb->ki_filp;
1081 struct inode *inode = fdentry(file)->d_inode;
1082 struct btrfs_root *root = BTRFS_I(inode)->root;
1083 loff_t *ppos = &iocb->ki_pos;
1084 ssize_t num_written = 0;
1085 ssize_t err = 0;
1086 size_t count, ocount;
1087
1088 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1089
1090 mutex_lock(&inode->i_mutex);
1091
1092 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
1093 if (err) {
1094 mutex_unlock(&inode->i_mutex);
1095 goto out;
1096 }
1097 count = ocount;
1098
1099 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1100 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1101 if (err) {
1102 mutex_unlock(&inode->i_mutex);
1103 goto out;
1104 }
1105
1106 if (count == 0) {
1107 mutex_unlock(&inode->i_mutex);
1108 goto out;
1109 }
1110
1111 err = file_remove_suid(file);
1112 if (err) {
1113 mutex_unlock(&inode->i_mutex);
1114 goto out;
1115 }
1116
1117 /*
1118 * If BTRFS flips readonly due to some impossible error
1119 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1120 * although we have opened a file as writable, we have
1121 * to stop this write operation to ensure FS consistency.
1122 */
1123 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
1124 mutex_unlock(&inode->i_mutex);
1125 err = -EROFS;
1126 goto out;
1127 }
1128
1129 file_update_time(file);
1130 BTRFS_I(inode)->sequence++;
1131
1132 if (unlikely(file->f_flags & O_DIRECT)) {
1133 num_written = __btrfs_direct_write(iocb, iov, nr_segs,
1134 pos, ppos, count, ocount);
1135 } else {
1136 struct iov_iter i;
1137
1138 iov_iter_init(&i, iov, nr_segs, count, num_written);
1139
1140 num_written = __btrfs_buffered_write(file, &i, pos);
1141 if (num_written > 0)
1142 *ppos = pos + num_written;
1143 }
1144
1145 mutex_unlock(&inode->i_mutex);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001146
Chris Mason5a3f23d2009-03-31 13:27:11 -04001147 /*
1148 * we want to make sure fsync finds this change
1149 * but we haven't joined a transaction running right now.
1150 *
1151 * Later on, someone is sure to update the inode and get the
1152 * real transid recorded.
1153 *
1154 * We set last_trans now to the fs_info generation + 1,
1155 * this will either be one more than the running transaction
1156 * or the generation used for the next transaction if there isn't
1157 * one running right now.
1158 */
1159 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
Josef Bacikd0215f32011-01-25 14:57:24 -05001160 if (num_written > 0 || num_written == -EIOCBQUEUED) {
1161 err = generic_write_sync(file, pos, num_written);
1162 if (err < 0 && num_written > 0)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001163 num_written = err;
1164 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001165out:
Chris Mason39279cc2007-06-12 06:35:45 -04001166 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001167 return num_written ? num_written : err;
1168}
1169
Chris Masond3977122009-01-05 21:25:51 -05001170int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001171{
Chris Mason5a3f23d2009-03-31 13:27:11 -04001172 /*
1173 * ordered_data_close is set by settattr when we are about to truncate
1174 * a file from a non-zero size to a zero size. This tries to
1175 * flush down new bytes that may have been written if the
1176 * application were using truncate to replace a file in place.
1177 */
1178 if (BTRFS_I(inode)->ordered_data_close) {
1179 BTRFS_I(inode)->ordered_data_close = 0;
1180 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1181 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1182 filemap_flush(inode->i_mapping);
1183 }
Sage Weil6bf13c02008-06-10 10:07:39 -04001184 if (filp->private_data)
1185 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001186 return 0;
1187}
1188
Chris Masond352ac62008-09-29 15:18:18 -04001189/*
1190 * fsync call for both files and directories. This logs the inode into
1191 * the tree log instead of forcing full commits whenever possible.
1192 *
1193 * It needs to call filemap_fdatawait so that all ordered extent updates are
1194 * in the metadata btree are up to date for copying to the log.
1195 *
1196 * It drops the inode mutex before doing the tree log commit. This is an
1197 * important optimization for directories because holding the mutex prevents
1198 * new operations on the dir while we write to disk.
1199 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001200int btrfs_sync_file(struct file *file, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001201{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001202 struct dentry *dentry = file->f_path.dentry;
Chris Mason39279cc2007-06-12 06:35:45 -04001203 struct inode *inode = dentry->d_inode;
1204 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001205 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001206 struct btrfs_trans_handle *trans;
1207
liubo1abe9b82011-03-24 11:18:59 +00001208 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04001209
1210 /* we wait first, since the writeback may change the inode */
1211 root->log_batch++;
1212 /* the VFS called filemap_fdatawrite for us */
1213 btrfs_wait_ordered_range(inode, 0, (u64)-1);
1214 root->log_batch++;
1215
Chris Mason39279cc2007-06-12 06:35:45 -04001216 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001217 * check the transaction that last modified this inode
1218 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001219 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001220 if (!BTRFS_I(inode)->last_trans)
1221 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001222
Chris Mason257c62e2009-10-13 13:21:08 -04001223 /*
1224 * if the last transaction that changed this file was before
1225 * the current transaction, we can bail out now without any
1226 * syncing
1227 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001228 mutex_lock(&root->fs_info->trans_mutex);
1229 if (BTRFS_I(inode)->last_trans <=
1230 root->fs_info->last_trans_committed) {
1231 BTRFS_I(inode)->last_trans = 0;
1232 mutex_unlock(&root->fs_info->trans_mutex);
1233 goto out;
1234 }
1235 mutex_unlock(&root->fs_info->trans_mutex);
1236
1237 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001238 * ok we haven't committed the transaction yet, lets do a commit
1239 */
Dan Carpenter6f902af2010-05-29 09:49:07 +00001240 if (file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001241 btrfs_ioctl_trans_end(file);
1242
Yan, Zhenga22285a2010-05-16 10:48:46 -04001243 trans = btrfs_start_transaction(root, 0);
1244 if (IS_ERR(trans)) {
1245 ret = PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04001246 goto out;
1247 }
Chris Masone02119d2008-09-05 16:13:11 -04001248
Chris Mason2cfbd502009-02-20 10:55:10 -05001249 ret = btrfs_log_dentry_safe(trans, root, dentry);
Chris Masond3977122009-01-05 21:25:51 -05001250 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04001251 goto out;
Chris Mason49eb7e42008-09-11 15:53:12 -04001252
1253 /* we've logged all the items and now have a consistent
1254 * version of the file in the log. It is possible that
1255 * someone will come in and modify the file, but that's
1256 * fine because the log is consistent on disk, and we
1257 * have references to all of the file's extents
1258 *
1259 * It is possible that someone will come in and log the
1260 * file again, but that will end up using the synchronization
1261 * inside btrfs_sync_log to keep things safe.
1262 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001263 mutex_unlock(&dentry->d_inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001264
Chris Mason257c62e2009-10-13 13:21:08 -04001265 if (ret != BTRFS_NO_LOG_SYNC) {
1266 if (ret > 0) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001267 ret = btrfs_commit_transaction(trans, root);
Chris Mason257c62e2009-10-13 13:21:08 -04001268 } else {
1269 ret = btrfs_sync_log(trans, root);
1270 if (ret == 0)
1271 ret = btrfs_end_transaction(trans, root);
1272 else
1273 ret = btrfs_commit_transaction(trans, root);
1274 }
1275 } else {
1276 ret = btrfs_end_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001277 }
Chris Mason2cfbd502009-02-20 10:55:10 -05001278 mutex_lock(&dentry->d_inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001279out:
Roel Kluin014e4ac2010-01-29 10:42:11 +00001280 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04001281}
1282
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001283static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001284 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001285 .page_mkwrite = btrfs_page_mkwrite,
1286};
1287
1288static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1289{
Miao Xie058a4572010-05-20 07:21:50 +00001290 struct address_space *mapping = filp->f_mapping;
1291
1292 if (!mapping->a_ops->readpage)
1293 return -ENOEXEC;
1294
Chris Mason9ebefb182007-06-15 13:50:00 -04001295 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00001296 vma->vm_ops = &btrfs_file_vm_ops;
1297 vma->vm_flags |= VM_CAN_NONLINEAR;
1298
Chris Mason9ebefb182007-06-15 13:50:00 -04001299 return 0;
1300}
1301
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001302static long btrfs_fallocate(struct file *file, int mode,
1303 loff_t offset, loff_t len)
1304{
1305 struct inode *inode = file->f_path.dentry->d_inode;
1306 struct extent_state *cached_state = NULL;
1307 u64 cur_offset;
1308 u64 last_byte;
1309 u64 alloc_start;
1310 u64 alloc_end;
1311 u64 alloc_hint = 0;
1312 u64 locked_end;
1313 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
1314 struct extent_map *em;
1315 int ret;
1316
1317 alloc_start = offset & ~mask;
1318 alloc_end = (offset + len + mask) & ~mask;
1319
1320 /* We only support the FALLOC_FL_KEEP_SIZE mode */
1321 if (mode & ~FALLOC_FL_KEEP_SIZE)
1322 return -EOPNOTSUPP;
1323
1324 /*
1325 * wait for ordered IO before we have any locks. We'll loop again
1326 * below with the locks held.
1327 */
1328 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
1329
1330 mutex_lock(&inode->i_mutex);
1331 ret = inode_newsize_ok(inode, alloc_end);
1332 if (ret)
1333 goto out;
1334
1335 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05001336 ret = btrfs_cont_expand(inode, i_size_read(inode),
1337 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001338 if (ret)
1339 goto out;
1340 }
1341
1342 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start);
1343 if (ret)
1344 goto out;
1345
1346 locked_end = alloc_end - 1;
1347 while (1) {
1348 struct btrfs_ordered_extent *ordered;
1349
1350 /* the extent lock is ordered inside the running
1351 * transaction
1352 */
1353 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
1354 locked_end, 0, &cached_state, GFP_NOFS);
1355 ordered = btrfs_lookup_first_ordered_extent(inode,
1356 alloc_end - 1);
1357 if (ordered &&
1358 ordered->file_offset + ordered->len > alloc_start &&
1359 ordered->file_offset < alloc_end) {
1360 btrfs_put_ordered_extent(ordered);
1361 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1362 alloc_start, locked_end,
1363 &cached_state, GFP_NOFS);
1364 /*
1365 * we can't wait on the range with the transaction
1366 * running or with the extent lock held
1367 */
1368 btrfs_wait_ordered_range(inode, alloc_start,
1369 alloc_end - alloc_start);
1370 } else {
1371 if (ordered)
1372 btrfs_put_ordered_extent(ordered);
1373 break;
1374 }
1375 }
1376
1377 cur_offset = alloc_start;
1378 while (1) {
1379 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
1380 alloc_end - cur_offset, 0);
1381 BUG_ON(IS_ERR(em) || !em);
1382 last_byte = min(extent_map_end(em), alloc_end);
1383 last_byte = (last_byte + mask) & ~mask;
1384 if (em->block_start == EXTENT_MAP_HOLE ||
1385 (cur_offset >= inode->i_size &&
1386 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
1387 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
1388 last_byte - cur_offset,
1389 1 << inode->i_blkbits,
1390 offset + len,
1391 &alloc_hint);
1392 if (ret < 0) {
1393 free_extent_map(em);
1394 break;
1395 }
1396 }
1397 free_extent_map(em);
1398
1399 cur_offset = last_byte;
1400 if (cur_offset >= alloc_end) {
1401 ret = 0;
1402 break;
1403 }
1404 }
1405 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
1406 &cached_state, GFP_NOFS);
1407
1408 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start);
1409out:
1410 mutex_unlock(&inode->i_mutex);
1411 return ret;
1412}
1413
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001414const struct file_operations btrfs_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04001415 .llseek = generic_file_llseek,
1416 .read = do_sync_read,
Miao Xie4a0010712010-06-07 03:38:51 +00001417 .write = do_sync_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001418 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001419 .splice_read = generic_file_splice_read,
Josef Bacik11c65dc2010-05-23 11:07:21 -04001420 .aio_write = btrfs_file_aio_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001421 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001422 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001423 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001424 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001425 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001426 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001427#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001428 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001429#endif
1430};