blob: 7c3cd248d8d6151ce5a89d876c2541b2abf73179 [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>
25#include <linux/smp_lock.h>
26#include <linux/backing-dev.h>
27#include <linux/mpage.h>
28#include <linux/swap.h>
29#include <linux/writeback.h>
30#include <linux/statfs.h>
31#include <linux/compat.h>
32#include "ctree.h"
33#include "disk-io.h"
34#include "transaction.h"
35#include "btrfs_inode.h"
36#include "ioctl.h"
37#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040038#include "tree-log.h"
39#include "locking.h"
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -040040#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040041
42
Chris Masond352ac62008-09-29 15:18:18 -040043/* simple helper to fault in pages and copy. This should go away
44 * and be replaced with calls into generic code.
45 */
Chris Masond3977122009-01-05 21:25:51 -050046static noinline int btrfs_copy_from_user(loff_t pos, int num_pages,
Chris Masona1b32a52008-09-05 16:09:51 -040047 int write_bytes,
48 struct page **prepared_pages,
Chris Masond3977122009-01-05 21:25:51 -050049 const char __user *buf)
Chris Mason39279cc2007-06-12 06:35:45 -040050{
51 long page_fault = 0;
52 int i;
53 int offset = pos & (PAGE_CACHE_SIZE - 1);
54
55 for (i = 0; i < num_pages && write_bytes > 0; i++, offset = 0) {
56 size_t count = min_t(size_t,
57 PAGE_CACHE_SIZE - offset, write_bytes);
58 struct page *page = prepared_pages[i];
59 fault_in_pages_readable(buf, count);
60
61 /* Copy data from userspace to the current page */
62 kmap(page);
63 page_fault = __copy_from_user(page_address(page) + offset,
64 buf, count);
65 /* Flush processor's dcache for this page */
66 flush_dcache_page(page);
67 kunmap(page);
68 buf += count;
69 write_bytes -= count;
70
71 if (page_fault)
72 break;
73 }
74 return page_fault ? -EFAULT : 0;
75}
76
Chris Masond352ac62008-09-29 15:18:18 -040077/*
78 * unlocks pages after btrfs_file_write is done with them
79 */
Chris Masond3977122009-01-05 21:25:51 -050080static noinline void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -040081{
82 size_t i;
83 for (i = 0; i < num_pages; i++) {
84 if (!pages[i])
85 break;
Chris Masond352ac62008-09-29 15:18:18 -040086 /* page checked is some magic around finding pages that
87 * have been modified without going through btrfs_set_page_dirty
88 * clear it here
89 */
Chris Mason4a096752008-07-21 10:29:44 -040090 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -040091 unlock_page(pages[i]);
92 mark_page_accessed(pages[i]);
93 page_cache_release(pages[i]);
94 }
95}
96
Chris Masond352ac62008-09-29 15:18:18 -040097/*
98 * after copy_from_user, pages need to be dirtied and we need to make
99 * sure holes are created between the current EOF and the start of
100 * any next extents (if required).
101 *
102 * this also makes the decision about creating an inline extent vs
103 * doing real data extents, marking pages dirty and delalloc as required.
104 */
Chris Masond3977122009-01-05 21:25:51 -0500105static noinline int dirty_and_release_pages(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400106 struct btrfs_root *root,
107 struct file *file,
108 struct page **pages,
109 size_t num_pages,
110 loff_t pos,
111 size_t write_bytes)
112{
Chris Mason39279cc2007-06-12 06:35:45 -0400113 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400114 int i;
Chris Mason6da6aba2007-12-18 16:15:09 -0500115 struct inode *inode = fdentry(file)->d_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500116 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masondb945352007-10-15 16:15:53 -0400117 u64 hint_byte;
118 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400119 u64 start_pos;
120 u64 end_of_last_block;
121 u64 end_pos = pos + write_bytes;
122 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400123
Chris Mason5f39d392007-10-15 16:14:19 -0400124 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400125 num_bytes = (write_bytes + pos - start_pos +
126 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400127
Chris Masondb945352007-10-15 16:15:53 -0400128 end_of_last_block = start_pos + num_bytes - 1;
129
Chris Masond1310b22008-01-24 16:13:08 -0500130 lock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason37d1aee2008-07-31 10:48:37 -0400131 trans = btrfs_join_transaction(root, 1);
Chris Masona52d9a82007-08-27 16:49:44 -0400132 if (!trans) {
133 err = -ENOMEM;
134 goto out_unlock;
135 }
136 btrfs_set_trans_block_group(trans, inode);
Chris Masondb945352007-10-15 16:15:53 -0400137 hint_byte = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400138
Chris Masond1310b22008-01-24 16:13:08 -0500139 set_extent_uptodate(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400140
Chris Masonc8b97812008-10-29 14:49:59 -0400141 /* check for reserved extents on each page, we don't want
142 * to reset the delalloc bit on things that already have
143 * extents reserved.
Chris Masona52d9a82007-08-27 16:49:44 -0400144 */
Chris Masonc8b97812008-10-29 14:49:59 -0400145 btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block);
146 for (i = 0; i < num_pages; i++) {
147 struct page *p = pages[i];
148 SetPageUptodate(p);
149 ClearPageChecked(p);
150 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400151 }
152 if (end_pos > isize) {
153 i_size_write(inode, end_pos);
Chris Masonf597bb12009-06-27 21:06:22 -0400154 /* we've only changed i_size in ram, and we haven't updated
155 * the disk i_size. There is no need to log the inode
156 * at this time.
157 */
Chris Mason39279cc2007-06-12 06:35:45 -0400158 }
Chris Mason017e5362008-07-28 15:32:51 -0400159 err = btrfs_end_transaction(trans, root);
Chris Masona52d9a82007-08-27 16:49:44 -0400160out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500161 unlock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400162 return err;
163}
164
Chris Masond352ac62008-09-29 15:18:18 -0400165/*
166 * this drops all the extents in the cache that intersect the range
167 * [start, end]. Existing extents are split as required.
168 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400169int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
170 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400171{
172 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400173 struct extent_map *split = NULL;
174 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400175 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500176 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400177 int ret;
178 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400179 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400180 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400181
Chris Masone6dcd2d2008-07-17 12:53:50 -0400182 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400183 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500184 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400185 testend = 0;
186 }
Chris Masond3977122009-01-05 21:25:51 -0500187 while (1) {
Chris Mason3b951512008-04-17 11:29:12 -0400188 if (!split)
189 split = alloc_extent_map(GFP_NOFS);
190 if (!split2)
191 split2 = alloc_extent_map(GFP_NOFS);
192
Chris Masond1310b22008-01-24 16:13:08 -0500193 spin_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500194 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500195 if (!em) {
196 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400197 break;
Chris Masond1310b22008-01-24 16:13:08 -0500198 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400199 flags = em->flags;
200 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
201 spin_unlock(&em_tree->lock);
202 if (em->start <= start &&
203 (!testend || em->start + em->len >= start + len)) {
204 free_extent_map(em);
205 break;
206 }
207 if (start < em->start) {
208 len = em->start - start;
209 } else {
210 len = start + len - (em->start + em->len);
211 start = em->start + em->len;
212 }
213 free_extent_map(em);
214 continue;
215 }
Chris Masonc8b97812008-10-29 14:49:59 -0400216 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400217 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400218 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400219
220 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
221 em->start < start) {
222 split->start = em->start;
223 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500224 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400225 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400226
227 if (compressed)
228 split->block_len = em->block_len;
229 else
230 split->block_len = split->len;
231
Chris Mason3b951512008-04-17 11:29:12 -0400232 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400233 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400234 ret = add_extent_mapping(em_tree, split);
235 BUG_ON(ret);
236 free_extent_map(split);
237 split = split2;
238 split2 = NULL;
239 }
240 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
241 testend && em->start + em->len > start + len) {
242 u64 diff = start + len - em->start;
243
244 split->start = start + len;
245 split->len = em->start + em->len - (start + len);
246 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400247 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400248
Chris Masonc8b97812008-10-29 14:49:59 -0400249 if (compressed) {
250 split->block_len = em->block_len;
251 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500252 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400253 } else {
254 split->block_len = split->len;
255 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500256 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400257 }
Chris Mason3b951512008-04-17 11:29:12 -0400258
259 ret = add_extent_mapping(em_tree, split);
260 BUG_ON(ret);
261 free_extent_map(split);
262 split = NULL;
263 }
Chris Masond1310b22008-01-24 16:13:08 -0500264 spin_unlock(&em_tree->lock);
265
Chris Masona52d9a82007-08-27 16:49:44 -0400266 /* once for us */
267 free_extent_map(em);
268 /* once for the tree*/
269 free_extent_map(em);
270 }
Chris Mason3b951512008-04-17 11:29:12 -0400271 if (split)
272 free_extent_map(split);
273 if (split2)
274 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400275 return 0;
276}
277
Chris Mason39279cc2007-06-12 06:35:45 -0400278/*
279 * this is very complex, but the basic idea is to drop all extents
280 * in the range start - end. hint_block is filled in with a block number
281 * that would be a good hint to the block allocator for this file.
282 *
283 * If an extent intersects the range but is not entirely inside the range
284 * it is either truncated or split. Anything entirely inside the range
285 * is deleted from the tree.
Chris Masond352ac62008-09-29 15:18:18 -0400286 *
287 * inline_limit is used to tell this code which offsets in the file to keep
288 * if they contain inline extents.
Chris Mason39279cc2007-06-12 06:35:45 -0400289 */
Chris Masond3977122009-01-05 21:25:51 -0500290noinline int btrfs_drop_extents(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400291 struct btrfs_root *root, struct inode *inode,
Chris Masone980b502009-04-24 14:39:24 -0400292 u64 start, u64 end, u64 locked_end,
293 u64 inline_limit, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400294{
Chris Mason39279cc2007-06-12 06:35:45 -0400295 u64 extent_end = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400296 u64 search_start = start;
Chris Masonc8b97812008-10-29 14:49:59 -0400297 u64 ram_bytes = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500298 u64 disk_bytenr = 0;
Chris Masone980b502009-04-24 14:39:24 -0400299 u64 orig_locked_end = locked_end;
Chris Mason70b99e62008-10-31 12:46:39 -0400300 u8 compression;
301 u8 encryption;
Chris Masonc8b97812008-10-29 14:49:59 -0400302 u16 other_encoding = 0;
Chris Mason00f5c792007-11-30 10:09:33 -0500303 struct extent_buffer *leaf;
304 struct btrfs_file_extent_item *extent;
305 struct btrfs_path *path;
306 struct btrfs_key key;
307 struct btrfs_file_extent_item old;
308 int keep;
309 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400310 int bookend;
Yan Zhengd899e052008-10-30 14:25:28 -0400311 int found_type = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400312 int found_extent;
313 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400314 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500315 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400316
Chris Masonc8b97812008-10-29 14:49:59 -0400317 inline_limit = 0;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400318 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400319
Chris Mason39279cc2007-06-12 06:35:45 -0400320 path = btrfs_alloc_path();
321 if (!path)
322 return -ENOMEM;
Chris Masond3977122009-01-05 21:25:51 -0500323 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400324 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400325 btrfs_release_path(root, path);
326 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
327 search_start, -1);
328 if (ret < 0)
329 goto out;
330 if (ret > 0) {
331 if (path->slots[0] == 0) {
332 ret = 0;
333 goto out;
334 }
335 path->slots[0]--;
336 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400337next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400338 keep = 0;
339 bookend = 0;
340 found_extent = 0;
341 found_inline = 0;
Chris Mason70b99e62008-10-31 12:46:39 -0400342 compression = 0;
343 encryption = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400344 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400345 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400346 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400347 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400348 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan72610092008-02-05 15:40:36 -0500349 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY &&
350 key.offset >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400351 goto out;
352 }
Yan72610092008-02-05 15:40:36 -0500353 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
354 key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400355 goto out;
356 }
Chris Masonccd467d2007-06-28 15:57:36 -0400357 if (recow) {
Yan Zheng8247b412008-11-11 09:33:29 -0500358 search_start = max(key.offset, start);
Chris Masonccd467d2007-06-28 15:57:36 -0400359 continue;
360 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400361 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
362 extent = btrfs_item_ptr(leaf, slot,
363 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400364 found_type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400365 compression = btrfs_file_extent_compression(leaf,
366 extent);
367 encryption = btrfs_file_extent_encryption(leaf,
368 extent);
369 other_encoding = btrfs_file_extent_other_encoding(leaf,
370 extent);
Yan Zhengd899e052008-10-30 14:25:28 -0400371 if (found_type == BTRFS_FILE_EXTENT_REG ||
372 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500373 extent_end =
374 btrfs_file_extent_disk_bytenr(leaf,
375 extent);
376 if (extent_end)
377 *hint_byte = extent_end;
378
Chris Mason8c2383c2007-06-18 09:57:58 -0400379 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400380 btrfs_file_extent_num_bytes(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400381 ram_bytes = btrfs_file_extent_ram_bytes(leaf,
382 extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400383 found_extent = 1;
384 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
385 found_inline = 1;
386 extent_end = key.offset +
Chris Masonc8b97812008-10-29 14:49:59 -0400387 btrfs_file_extent_inline_len(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400388 }
389 } else {
390 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400391 }
392
393 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400394 if ((!found_extent && !found_inline) ||
395 search_start >= extent_end) {
396 int nextret;
397 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400398 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400399 if (slot >= nritems - 1) {
400 nextret = btrfs_next_leaf(root, path);
401 if (nextret)
402 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400403 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400404 } else {
405 path->slots[0]++;
406 }
407 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400408 }
409
Chris Masonc8b97812008-10-29 14:49:59 -0400410 if (end <= extent_end && start >= key.offset && found_inline)
Chris Mason179e29e2007-11-01 11:28:41 -0400411 *hint_byte = EXTENT_MAP_INLINE;
Zheng Yan31840ae2008-09-23 13:14:14 -0400412
413 if (found_extent) {
414 read_extent_buffer(leaf, &old, (unsigned long)extent,
415 sizeof(old));
Zheng Yan31840ae2008-09-23 13:14:14 -0400416 }
417
Chris Mason39279cc2007-06-12 06:35:45 -0400418 if (end < extent_end && end >= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400419 bookend = 1;
Yan0181e582008-01-30 14:39:54 -0500420 if (found_inline && start <= key.offset)
Chris Mason179e29e2007-11-01 11:28:41 -0400421 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400422 }
Yan Zheng66435582008-10-30 14:19:50 -0400423
Chris Mason771ed682008-11-06 22:02:51 -0500424 if (bookend && found_extent) {
425 if (locked_end < extent_end) {
426 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
427 locked_end, extent_end - 1,
428 GFP_NOFS);
429 if (!ret) {
430 btrfs_release_path(root, path);
431 lock_extent(&BTRFS_I(inode)->io_tree,
432 locked_end, extent_end - 1,
433 GFP_NOFS);
434 locked_end = extent_end;
435 continue;
436 }
Yan Zheng66435582008-10-30 14:19:50 -0400437 locked_end = extent_end;
Yan Zheng66435582008-10-30 14:19:50 -0400438 }
Chris Mason771ed682008-11-06 22:02:51 -0500439 disk_bytenr = le64_to_cpu(old.disk_bytenr);
440 if (disk_bytenr != 0) {
441 ret = btrfs_inc_extent_ref(trans, root,
442 disk_bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400443 le64_to_cpu(old.disk_num_bytes), 0,
444 root->root_key.objectid,
445 key.objectid, key.offset -
446 le64_to_cpu(old.offset));
Chris Mason771ed682008-11-06 22:02:51 -0500447 BUG_ON(ret);
448 }
Yan Zheng66435582008-10-30 14:19:50 -0400449 }
450
451 if (found_inline) {
452 u64 mask = root->sectorsize - 1;
453 search_start = (extent_end + mask) & ~mask;
454 } else
455 search_start = extent_end;
456
Chris Mason39279cc2007-06-12 06:35:45 -0400457 /* truncate existing extent */
458 if (start > key.offset) {
459 u64 new_num;
460 u64 old_num;
461 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400462 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400463 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400464 new_num = start - key.offset;
465 old_num = btrfs_file_extent_num_bytes(leaf,
466 extent);
467 *hint_byte =
468 btrfs_file_extent_disk_bytenr(leaf,
469 extent);
470 if (btrfs_file_extent_disk_bytenr(leaf,
471 extent)) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400472 inode_sub_bytes(inode, old_num -
473 new_num);
Chris Mason39279cc2007-06-12 06:35:45 -0400474 }
Chris Mason771ed682008-11-06 22:02:51 -0500475 btrfs_set_file_extent_num_bytes(leaf,
476 extent, new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400477 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500478 } else if (key.offset < inline_limit &&
479 (end > extent_end) &&
480 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400481 u32 new_size;
482 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500483 inline_limit - key.offset);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400484 inode_sub_bytes(inode, extent_end -
485 inline_limit);
Chris Mason70b99e62008-10-31 12:46:39 -0400486 btrfs_set_file_extent_ram_bytes(leaf, extent,
487 new_size);
488 if (!compression && !encryption) {
489 btrfs_truncate_item(trans, root, path,
490 new_size, 1);
491 }
Chris Mason39279cc2007-06-12 06:35:45 -0400492 }
493 }
494 /* delete the entire extent */
495 if (!keep) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400496 if (found_inline)
497 inode_sub_bytes(inode, extent_end -
498 key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400499 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400500 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400501 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -0400502 extent = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -0400503 btrfs_release_path(root, path);
504 /* the extent will be freed later */
Chris Mason39279cc2007-06-12 06:35:45 -0400505 }
Yan0181e582008-01-30 14:39:54 -0500506 if (bookend && found_inline && start <= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400507 u32 new_size;
508 new_size = btrfs_file_extent_calc_inline_size(
Yan0181e582008-01-30 14:39:54 -0500509 extent_end - end);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400510 inode_sub_bytes(inode, end - key.offset);
Chris Mason70b99e62008-10-31 12:46:39 -0400511 btrfs_set_file_extent_ram_bytes(leaf, extent,
512 new_size);
513 if (!compression && !encryption)
514 ret = btrfs_truncate_item(trans, root, path,
515 new_size, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400516 BUG_ON(ret);
Chris Mason179e29e2007-11-01 11:28:41 -0400517 }
Chris Mason39279cc2007-06-12 06:35:45 -0400518 /* create bookend, splitting the extent in two */
519 if (bookend && found_extent) {
520 struct btrfs_key ins;
521 ins.objectid = inode->i_ino;
522 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400523 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason771ed682008-11-06 22:02:51 -0500524
Chris Mason39279cc2007-06-12 06:35:45 -0400525 btrfs_release_path(root, path);
Chris Masonb9473432009-03-13 11:00:37 -0400526 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400527 ret = btrfs_insert_empty_item(trans, root, path, &ins,
528 sizeof(*extent));
Zheng Yan31840ae2008-09-23 13:14:14 -0400529 BUG_ON(ret);
Chris Mason8c2383c2007-06-18 09:57:58 -0400530
Chris Mason5f39d392007-10-15 16:14:19 -0400531 leaf = path->nodes[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400532 extent = btrfs_item_ptr(leaf, path->slots[0],
533 struct btrfs_file_extent_item);
534 write_extent_buffer(leaf, &old,
535 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400536
Chris Masonc8b97812008-10-29 14:49:59 -0400537 btrfs_set_file_extent_compression(leaf, extent,
538 compression);
539 btrfs_set_file_extent_encryption(leaf, extent,
540 encryption);
541 btrfs_set_file_extent_other_encoding(leaf, extent,
542 other_encoding);
Chris Mason5f39d392007-10-15 16:14:19 -0400543 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400544 le64_to_cpu(old.offset) + end - key.offset);
545 WARN_ON(le64_to_cpu(old.num_bytes) <
546 (extent_end - end));
547 btrfs_set_file_extent_num_bytes(leaf, extent,
548 extent_end - end);
Chris Masonc8b97812008-10-29 14:49:59 -0400549
550 /*
551 * set the ram bytes to the size of the full extent
552 * before splitting. This is a worst case flag,
553 * but its the best we can do because we don't know
554 * how splitting affects compression
555 */
556 btrfs_set_file_extent_ram_bytes(leaf, extent,
557 ram_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -0400558 btrfs_set_file_extent_type(leaf, extent, found_type);
Chris Masondb945352007-10-15 16:15:53 -0400559
Chris Masonb9473432009-03-13 11:00:37 -0400560 btrfs_unlock_up_safe(path, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400561 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masonb9473432009-03-13 11:00:37 -0400562 btrfs_set_lock_blocking(path->nodes[0]);
Zheng Yan31840ae2008-09-23 13:14:14 -0400563
Chris Masonb9473432009-03-13 11:00:37 -0400564 path->leave_spinning = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -0400565 btrfs_release_path(root, path);
Chris Masond3977122009-01-05 21:25:51 -0500566 if (disk_bytenr != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400567 inode_add_bytes(inode, extent_end - end);
Zheng Yan31840ae2008-09-23 13:14:14 -0400568 }
569
570 if (found_extent && !keep) {
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500571 u64 old_disk_bytenr = le64_to_cpu(old.disk_bytenr);
Zheng Yan31840ae2008-09-23 13:14:14 -0400572
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500573 if (old_disk_bytenr != 0) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400574 inode_sub_bytes(inode,
575 le64_to_cpu(old.num_bytes));
Zheng Yan31840ae2008-09-23 13:14:14 -0400576 ret = btrfs_free_extent(trans, root,
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500577 old_disk_bytenr,
Zheng Yan31840ae2008-09-23 13:14:14 -0400578 le64_to_cpu(old.disk_num_bytes),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400579 0, root->root_key.objectid,
580 key.objectid, key.offset -
581 le64_to_cpu(old.offset));
Zheng Yan31840ae2008-09-23 13:14:14 -0400582 BUG_ON(ret);
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500583 *hint_byte = old_disk_bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -0400584 }
585 }
586
587 if (search_start >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400588 ret = 0;
589 goto out;
590 }
591 }
592out:
593 btrfs_free_path(path);
Chris Masone980b502009-04-24 14:39:24 -0400594 if (locked_end > orig_locked_end) {
595 unlock_extent(&BTRFS_I(inode)->io_tree, orig_locked_end,
596 locked_end - 1, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -0400597 }
Chris Mason39279cc2007-06-12 06:35:45 -0400598 return ret;
599}
600
Yan Zhengd899e052008-10-30 14:25:28 -0400601static int extent_mergeable(struct extent_buffer *leaf, int slot,
602 u64 objectid, u64 bytenr, u64 *start, u64 *end)
603{
604 struct btrfs_file_extent_item *fi;
605 struct btrfs_key key;
606 u64 extent_end;
607
608 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
609 return 0;
610
611 btrfs_item_key_to_cpu(leaf, &key, slot);
612 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
613 return 0;
614
615 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
616 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
617 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
618 btrfs_file_extent_compression(leaf, fi) ||
619 btrfs_file_extent_encryption(leaf, fi) ||
620 btrfs_file_extent_other_encoding(leaf, fi))
621 return 0;
622
623 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
624 if ((*start && *start != key.offset) || (*end && *end != extent_end))
625 return 0;
626
627 *start = key.offset;
628 *end = extent_end;
629 return 1;
630}
631
632/*
633 * Mark extent in the range start - end as written.
634 *
635 * This changes extent type from 'pre-allocated' to 'regular'. If only
636 * part of extent is marked as written, the extent will be split into
637 * two or three.
638 */
639int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
640 struct btrfs_root *root,
641 struct inode *inode, u64 start, u64 end)
642{
643 struct extent_buffer *leaf;
644 struct btrfs_path *path;
645 struct btrfs_file_extent_item *fi;
646 struct btrfs_key key;
647 u64 bytenr;
648 u64 num_bytes;
649 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400650 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -0400651 u64 other_start;
652 u64 other_end;
653 u64 split = start;
654 u64 locked_end = end;
655 int extent_type;
656 int split_end = 1;
657 int ret;
658
659 btrfs_drop_extent_cache(inode, start, end - 1, 0);
660
661 path = btrfs_alloc_path();
662 BUG_ON(!path);
663again:
664 key.objectid = inode->i_ino;
665 key.type = BTRFS_EXTENT_DATA_KEY;
666 if (split == start)
667 key.offset = split;
668 else
669 key.offset = split - 1;
670
671 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
672 if (ret > 0 && path->slots[0] > 0)
673 path->slots[0]--;
674
675 leaf = path->nodes[0];
676 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
677 BUG_ON(key.objectid != inode->i_ino ||
678 key.type != BTRFS_EXTENT_DATA_KEY);
679 fi = btrfs_item_ptr(leaf, path->slots[0],
680 struct btrfs_file_extent_item);
681 extent_type = btrfs_file_extent_type(leaf, fi);
682 BUG_ON(extent_type != BTRFS_FILE_EXTENT_PREALLOC);
683 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
684 BUG_ON(key.offset > start || extent_end < end);
685
686 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
687 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400688 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -0400689
690 if (key.offset == start)
691 split = end;
692
693 if (key.offset == start && extent_end == end) {
694 int del_nr = 0;
695 int del_slot = 0;
Yan Zhengd899e052008-10-30 14:25:28 -0400696 other_start = end;
697 other_end = 0;
698 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
699 bytenr, &other_start, &other_end)) {
700 extent_end = other_end;
701 del_slot = path->slots[0] + 1;
702 del_nr++;
703 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400704 0, root->root_key.objectid,
705 inode->i_ino, orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400706 BUG_ON(ret);
707 }
708 other_start = 0;
709 other_end = start;
710 if (extent_mergeable(leaf, path->slots[0] - 1, inode->i_ino,
711 bytenr, &other_start, &other_end)) {
712 key.offset = other_start;
713 del_slot = path->slots[0];
714 del_nr++;
715 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400716 0, root->root_key.objectid,
717 inode->i_ino, orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400718 BUG_ON(ret);
719 }
720 split_end = 0;
721 if (del_nr == 0) {
722 btrfs_set_file_extent_type(leaf, fi,
723 BTRFS_FILE_EXTENT_REG);
724 goto done;
725 }
726
727 fi = btrfs_item_ptr(leaf, del_slot - 1,
728 struct btrfs_file_extent_item);
729 btrfs_set_file_extent_type(leaf, fi, BTRFS_FILE_EXTENT_REG);
730 btrfs_set_file_extent_num_bytes(leaf, fi,
731 extent_end - key.offset);
732 btrfs_mark_buffer_dirty(leaf);
733
734 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
735 BUG_ON(ret);
Chris Mason546888d2009-04-21 11:53:38 -0400736 goto release;
Yan Zhengd899e052008-10-30 14:25:28 -0400737 } else if (split == start) {
738 if (locked_end < extent_end) {
739 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
740 locked_end, extent_end - 1, GFP_NOFS);
741 if (!ret) {
742 btrfs_release_path(root, path);
743 lock_extent(&BTRFS_I(inode)->io_tree,
744 locked_end, extent_end - 1, GFP_NOFS);
745 locked_end = extent_end;
746 goto again;
747 }
748 locked_end = extent_end;
749 }
750 btrfs_set_file_extent_num_bytes(leaf, fi, split - key.offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400751 } else {
752 BUG_ON(key.offset != start);
Yan Zhengd899e052008-10-30 14:25:28 -0400753 key.offset = split;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400754 btrfs_set_file_extent_offset(leaf, fi, key.offset -
755 orig_offset);
756 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -0400757 btrfs_set_item_key_safe(trans, root, path, &key);
758 extent_end = split;
759 }
760
761 if (extent_end == end) {
762 split_end = 0;
763 extent_type = BTRFS_FILE_EXTENT_REG;
764 }
765 if (extent_end == end && split == start) {
766 other_start = end;
767 other_end = 0;
768 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
769 bytenr, &other_start, &other_end)) {
770 path->slots[0]++;
771 fi = btrfs_item_ptr(leaf, path->slots[0],
772 struct btrfs_file_extent_item);
773 key.offset = split;
774 btrfs_set_item_key_safe(trans, root, path, &key);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400775 btrfs_set_file_extent_offset(leaf, fi, key.offset -
776 orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400777 btrfs_set_file_extent_num_bytes(leaf, fi,
778 other_end - split);
779 goto done;
780 }
781 }
782 if (extent_end == end && split == end) {
783 other_start = 0;
784 other_end = start;
785 if (extent_mergeable(leaf, path->slots[0] - 1 , inode->i_ino,
786 bytenr, &other_start, &other_end)) {
787 path->slots[0]--;
788 fi = btrfs_item_ptr(leaf, path->slots[0],
789 struct btrfs_file_extent_item);
790 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end -
791 other_start);
792 goto done;
793 }
794 }
795
796 btrfs_mark_buffer_dirty(leaf);
Yan Zhengc36047d2008-11-12 14:19:50 -0500797
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400798 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
799 root->root_key.objectid,
800 inode->i_ino, orig_offset);
Yan Zhengc36047d2008-11-12 14:19:50 -0500801 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -0400802 btrfs_release_path(root, path);
803
804 key.offset = start;
805 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(*fi));
806 BUG_ON(ret);
807
808 leaf = path->nodes[0];
809 fi = btrfs_item_ptr(leaf, path->slots[0],
810 struct btrfs_file_extent_item);
811 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
812 btrfs_set_file_extent_type(leaf, fi, extent_type);
813 btrfs_set_file_extent_disk_bytenr(leaf, fi, bytenr);
814 btrfs_set_file_extent_disk_num_bytes(leaf, fi, num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400815 btrfs_set_file_extent_offset(leaf, fi, key.offset - orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400816 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - key.offset);
817 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
818 btrfs_set_file_extent_compression(leaf, fi, 0);
819 btrfs_set_file_extent_encryption(leaf, fi, 0);
820 btrfs_set_file_extent_other_encoding(leaf, fi, 0);
Yan Zhengd899e052008-10-30 14:25:28 -0400821done:
822 btrfs_mark_buffer_dirty(leaf);
Chris Mason546888d2009-04-21 11:53:38 -0400823
824release:
Yan Zhengd899e052008-10-30 14:25:28 -0400825 btrfs_release_path(root, path);
826 if (split_end && split == start) {
827 split = end;
828 goto again;
829 }
830 if (locked_end > end) {
831 unlock_extent(&BTRFS_I(inode)->io_tree, end, locked_end - 1,
832 GFP_NOFS);
833 }
834 btrfs_free_path(path);
835 return 0;
836}
837
Chris Mason39279cc2007-06-12 06:35:45 -0400838/*
Chris Masond352ac62008-09-29 15:18:18 -0400839 * this gets pages into the page cache and locks them down, it also properly
840 * waits for data=ordered extents to finish before allowing the pages to be
841 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -0400842 */
Chris Masond3977122009-01-05 21:25:51 -0500843static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -0500844 struct page **pages, size_t num_pages,
845 loff_t pos, unsigned long first_index,
846 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400847{
848 int i;
849 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500850 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400851 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400852 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400853 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400854
Chris Mason5f39d392007-10-15 16:14:19 -0400855 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400856 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400857
Yan Zheng9036c102008-10-30 14:19:41 -0400858 if (start_pos > inode->i_size) {
859 err = btrfs_cont_expand(inode, start_pos);
860 if (err)
861 return err;
862 }
863
Chris Mason39279cc2007-06-12 06:35:45 -0400864 memset(pages, 0, num_pages * sizeof(struct page *));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400865again:
Chris Mason39279cc2007-06-12 06:35:45 -0400866 for (i = 0; i < num_pages; i++) {
867 pages[i] = grab_cache_page(inode->i_mapping, index + i);
868 if (!pages[i]) {
869 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400870 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400871 }
Chris Masonccd467d2007-06-28 15:57:36 -0400872 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400873 }
Chris Mason07627042008-02-19 11:29:24 -0500874 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400875 struct btrfs_ordered_extent *ordered;
Chris Masond99cb302008-02-19 12:55:05 -0500876 lock_extent(&BTRFS_I(inode)->io_tree,
877 start_pos, last_pos - 1, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500878 ordered = btrfs_lookup_first_ordered_extent(inode,
879 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400880 if (ordered &&
881 ordered->file_offset + ordered->len > start_pos &&
882 ordered->file_offset < last_pos) {
883 btrfs_put_ordered_extent(ordered);
884 unlock_extent(&BTRFS_I(inode)->io_tree,
885 start_pos, last_pos - 1, GFP_NOFS);
886 for (i = 0; i < num_pages; i++) {
887 unlock_page(pages[i]);
888 page_cache_release(pages[i]);
889 }
890 btrfs_wait_ordered_range(inode, start_pos,
891 last_pos - start_pos);
892 goto again;
893 }
894 if (ordered)
895 btrfs_put_ordered_extent(ordered);
896
Chris Mason07627042008-02-19 11:29:24 -0500897 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos,
898 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC,
899 GFP_NOFS);
Chris Masond99cb302008-02-19 12:55:05 -0500900 unlock_extent(&BTRFS_I(inode)->io_tree,
901 start_pos, last_pos - 1, GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500902 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400903 for (i = 0; i < num_pages; i++) {
Chris Masonf87f0572008-08-01 11:27:23 -0400904 clear_page_dirty_for_io(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400905 set_page_extent_mapped(pages[i]);
906 WARN_ON(!PageLocked(pages[i]));
907 }
Chris Mason39279cc2007-06-12 06:35:45 -0400908 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400909}
910
911static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
912 size_t count, loff_t *ppos)
913{
914 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400915 loff_t start_pos;
916 ssize_t num_written = 0;
917 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400918 int ret = 0;
Chris Mason6da6aba2007-12-18 16:15:09 -0500919 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400920 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -0400921 struct page **pages = NULL;
922 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -0400923 struct page *pinned[2];
924 unsigned long first_index;
925 unsigned long last_index;
Chris Masoncb843a62008-10-03 12:30:02 -0400926 int will_write;
927
928 will_write = ((file->f_flags & O_SYNC) || IS_SYNC(inode) ||
929 (file->f_flags & O_DIRECT));
Chris Mason8c2383c2007-06-18 09:57:58 -0400930
931 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
932 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -0400933 pinned[0] = NULL;
934 pinned[1] = NULL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400935
Chris Mason39279cc2007-06-12 06:35:45 -0400936 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400937 start_pos = pos;
938
Chris Mason39279cc2007-06-12 06:35:45 -0400939 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
940 current->backing_dev_info = inode->i_mapping->backing_dev_info;
941 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
942 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500943 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400944 if (count == 0)
Chris Mason1832a6d2007-12-21 16:27:21 -0500945 goto out_nolock;
Chris Mason2b1f55b2008-09-24 11:48:04 -0400946
Sven Wegener0ee0fda2008-07-30 16:54:26 -0400947 err = file_remove_suid(file);
Chris Mason39279cc2007-06-12 06:35:45 -0400948 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500949 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400950 file_update_time(file);
951
Chris Mason8c2383c2007-06-18 09:57:58 -0400952 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400953
954 mutex_lock(&inode->i_mutex);
Chris Masonc3027eb2008-12-08 16:40:21 -0500955 BTRFS_I(inode)->sequence++;
Chris Mason39279cc2007-06-12 06:35:45 -0400956 first_index = pos >> PAGE_CACHE_SHIFT;
957 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
958
959 /*
960 * there are lots of better ways to do this, but this code
961 * makes sure the first and last page in the file range are
962 * up to date and ready for cow
963 */
964 if ((pos & (PAGE_CACHE_SIZE - 1))) {
965 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
966 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400967 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400968 BUG_ON(ret);
969 wait_on_page_locked(pinned[0]);
970 } else {
971 unlock_page(pinned[0]);
972 }
973 }
974 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
975 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
976 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400977 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400978 BUG_ON(ret);
979 wait_on_page_locked(pinned[1]);
980 } else {
981 unlock_page(pinned[1]);
982 }
983 }
984
Chris Masond3977122009-01-05 21:25:51 -0500985 while (count > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400986 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400987 size_t write_bytes = min(count, nrptrs *
988 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400989 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400990 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
991 PAGE_CACHE_SHIFT;
992
Chris Mason8c2383c2007-06-18 09:57:58 -0400993 WARN_ON(num_pages > nrptrs);
yanhai zhu9aead432009-01-05 15:49:11 -0500994 memset(pages, 0, sizeof(struct page *) * nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -0500995
Josef Bacik6a632092009-02-20 11:00:09 -0500996 ret = btrfs_check_data_free_space(root, inode, write_bytes);
Chris Mason1832a6d2007-12-21 16:27:21 -0500997 if (ret)
998 goto out;
999
Chris Mason39279cc2007-06-12 06:35:45 -04001000 ret = prepare_pages(root, file, pages, num_pages,
1001 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -04001002 write_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001003 if (ret) {
1004 btrfs_free_reserved_data_space(root, inode,
1005 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001006 goto out;
Josef Bacik6a632092009-02-20 11:00:09 -05001007 }
Chris Mason39279cc2007-06-12 06:35:45 -04001008
Chris Mason39279cc2007-06-12 06:35:45 -04001009 ret = btrfs_copy_from_user(pos, num_pages,
1010 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -04001011 if (ret) {
Josef Bacik6a632092009-02-20 11:00:09 -05001012 btrfs_free_reserved_data_space(root, inode,
1013 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001014 btrfs_drop_pages(pages, num_pages);
1015 goto out;
1016 }
Chris Mason39279cc2007-06-12 06:35:45 -04001017
1018 ret = dirty_and_release_pages(NULL, root, file, pages,
1019 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04001020 btrfs_drop_pages(pages, num_pages);
Josef Bacik6a632092009-02-20 11:00:09 -05001021 if (ret) {
1022 btrfs_free_reserved_data_space(root, inode,
1023 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001024 goto out;
Josef Bacik6a632092009-02-20 11:00:09 -05001025 }
Chris Mason39279cc2007-06-12 06:35:45 -04001026
Chris Masoncb843a62008-10-03 12:30:02 -04001027 if (will_write) {
1028 btrfs_fdatawrite_range(inode->i_mapping, pos,
1029 pos + write_bytes - 1,
Chris Masond313d7a2009-04-20 15:50:09 -04001030 WB_SYNC_ALL);
Chris Masoncb843a62008-10-03 12:30:02 -04001031 } else {
1032 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1033 num_pages);
1034 if (num_pages <
1035 (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1036 btrfs_btree_balance_dirty(root, 1);
1037 btrfs_throttle(root);
1038 }
1039
Chris Mason39279cc2007-06-12 06:35:45 -04001040 buf += write_bytes;
1041 count -= write_bytes;
1042 pos += write_bytes;
1043 num_written += write_bytes;
1044
Chris Mason39279cc2007-06-12 06:35:45 -04001045 cond_resched();
1046 }
Chris Mason39279cc2007-06-12 06:35:45 -04001047out:
Chris Mason1832a6d2007-12-21 16:27:21 -05001048 mutex_unlock(&inode->i_mutex);
Josef Bacik6a632092009-02-20 11:00:09 -05001049 if (ret)
1050 err = ret;
Chris Mason5b92ee72008-01-03 13:46:11 -05001051
Chris Mason1832a6d2007-12-21 16:27:21 -05001052out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -04001053 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -04001054 if (pinned[0])
1055 page_cache_release(pinned[0]);
1056 if (pinned[1])
1057 page_cache_release(pinned[1]);
1058 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001059
Chris Mason5a3f23d2009-03-31 13:27:11 -04001060 /*
1061 * we want to make sure fsync finds this change
1062 * but we haven't joined a transaction running right now.
1063 *
1064 * Later on, someone is sure to update the inode and get the
1065 * real transid recorded.
1066 *
1067 * We set last_trans now to the fs_info generation + 1,
1068 * this will either be one more than the running transaction
1069 * or the generation used for the next transaction if there isn't
1070 * one running right now.
1071 */
1072 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
1073
Chris Masoncb843a62008-10-03 12:30:02 -04001074 if (num_written > 0 && will_write) {
Chris Masone02119d2008-09-05 16:13:11 -04001075 struct btrfs_trans_handle *trans;
1076
Chris Masoncb843a62008-10-03 12:30:02 -04001077 err = btrfs_wait_ordered_range(inode, start_pos, num_written);
1078 if (err)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001079 num_written = err;
Chris Masone02119d2008-09-05 16:13:11 -04001080
Chris Masoncb843a62008-10-03 12:30:02 -04001081 if ((file->f_flags & O_SYNC) || IS_SYNC(inode)) {
1082 trans = btrfs_start_transaction(root, 1);
1083 ret = btrfs_log_dentry_safe(trans, root,
1084 file->f_dentry);
1085 if (ret == 0) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001086 ret = btrfs_sync_log(trans, root);
1087 if (ret == 0)
1088 btrfs_end_transaction(trans, root);
1089 else
1090 btrfs_commit_transaction(trans, root);
Chris Masoncb843a62008-10-03 12:30:02 -04001091 } else {
1092 btrfs_commit_transaction(trans, root);
1093 }
Chris Masone02119d2008-09-05 16:13:11 -04001094 }
Chris Masoncb843a62008-10-03 12:30:02 -04001095 if (file->f_flags & O_DIRECT) {
1096 invalidate_mapping_pages(inode->i_mapping,
1097 start_pos >> PAGE_CACHE_SHIFT,
1098 (start_pos + num_written - 1) >> PAGE_CACHE_SHIFT);
1099 }
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001100 }
Chris Mason39279cc2007-06-12 06:35:45 -04001101 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001102 return num_written ? num_written : err;
1103}
1104
Chris Masond3977122009-01-05 21:25:51 -05001105int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001106{
Chris Mason5a3f23d2009-03-31 13:27:11 -04001107 /*
1108 * ordered_data_close is set by settattr when we are about to truncate
1109 * a file from a non-zero size to a zero size. This tries to
1110 * flush down new bytes that may have been written if the
1111 * application were using truncate to replace a file in place.
1112 */
1113 if (BTRFS_I(inode)->ordered_data_close) {
1114 BTRFS_I(inode)->ordered_data_close = 0;
1115 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1116 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1117 filemap_flush(inode->i_mapping);
1118 }
Sage Weil6bf13c02008-06-10 10:07:39 -04001119 if (filp->private_data)
1120 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001121 return 0;
1122}
1123
Chris Masond352ac62008-09-29 15:18:18 -04001124/*
1125 * fsync call for both files and directories. This logs the inode into
1126 * the tree log instead of forcing full commits whenever possible.
1127 *
1128 * It needs to call filemap_fdatawait so that all ordered extent updates are
1129 * in the metadata btree are up to date for copying to the log.
1130 *
1131 * It drops the inode mutex before doing the tree log commit. This is an
1132 * important optimization for directories because holding the mutex prevents
1133 * new operations on the dir while we write to disk.
1134 */
Chris Masone02119d2008-09-05 16:13:11 -04001135int btrfs_sync_file(struct file *file, struct dentry *dentry, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001136{
1137 struct inode *inode = dentry->d_inode;
1138 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001139 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001140 struct btrfs_trans_handle *trans;
1141
1142 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001143 * check the transaction that last modified this inode
1144 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001145 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001146 if (!BTRFS_I(inode)->last_trans)
1147 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001148
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001149 mutex_lock(&root->fs_info->trans_mutex);
1150 if (BTRFS_I(inode)->last_trans <=
1151 root->fs_info->last_trans_committed) {
1152 BTRFS_I(inode)->last_trans = 0;
1153 mutex_unlock(&root->fs_info->trans_mutex);
1154 goto out;
1155 }
1156 mutex_unlock(&root->fs_info->trans_mutex);
1157
Yan Zheng7237f182009-01-21 12:54:03 -05001158 root->log_batch++;
Chris Mason580afd72008-12-08 19:15:39 -05001159 filemap_fdatawrite(inode->i_mapping);
1160 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Yan Zheng7237f182009-01-21 12:54:03 -05001161 root->log_batch++;
Chris Masone02119d2008-09-05 16:13:11 -04001162
Hisashi Hifumi524724e2009-06-10 11:13:17 -04001163 if (datasync && !(inode->i_state & I_DIRTY_PAGES))
1164 goto out;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001165 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001166 * ok we haven't committed the transaction yet, lets do a commit
1167 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001168 if (file && file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001169 btrfs_ioctl_trans_end(file);
1170
Chris Mason39279cc2007-06-12 06:35:45 -04001171 trans = btrfs_start_transaction(root, 1);
1172 if (!trans) {
1173 ret = -ENOMEM;
1174 goto out;
1175 }
Chris Masone02119d2008-09-05 16:13:11 -04001176
Chris Mason2cfbd502009-02-20 10:55:10 -05001177 ret = btrfs_log_dentry_safe(trans, root, dentry);
Chris Masond3977122009-01-05 21:25:51 -05001178 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04001179 goto out;
Chris Mason49eb7e42008-09-11 15:53:12 -04001180
1181 /* we've logged all the items and now have a consistent
1182 * version of the file in the log. It is possible that
1183 * someone will come in and modify the file, but that's
1184 * fine because the log is consistent on disk, and we
1185 * have references to all of the file's extents
1186 *
1187 * It is possible that someone will come in and log the
1188 * file again, but that will end up using the synchronization
1189 * inside btrfs_sync_log to keep things safe.
1190 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001191 mutex_unlock(&dentry->d_inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001192
Chris Masone02119d2008-09-05 16:13:11 -04001193 if (ret > 0) {
1194 ret = btrfs_commit_transaction(trans, root);
1195 } else {
Chris Mason12fcfd22009-03-24 10:24:20 -04001196 ret = btrfs_sync_log(trans, root);
1197 if (ret == 0)
1198 ret = btrfs_end_transaction(trans, root);
1199 else
1200 ret = btrfs_commit_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001201 }
Chris Mason2cfbd502009-02-20 10:55:10 -05001202 mutex_lock(&dentry->d_inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001203out:
1204 return ret > 0 ? EIO : ret;
1205}
1206
Chris Mason9ebefb182007-06-15 13:50:00 -04001207static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001208 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001209 .page_mkwrite = btrfs_page_mkwrite,
1210};
1211
1212static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1213{
1214 vma->vm_ops = &btrfs_file_vm_ops;
1215 file_accessed(filp);
1216 return 0;
1217}
1218
Chris Mason39279cc2007-06-12 06:35:45 -04001219struct file_operations btrfs_file_operations = {
1220 .llseek = generic_file_llseek,
1221 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -04001222 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001223 .splice_read = generic_file_splice_read,
Chris Mason39279cc2007-06-12 06:35:45 -04001224 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001225 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001226 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001227 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001228 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001229 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001230#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001231 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001232#endif
1233};