blob: 872f104576e580699985fec78c19a1421b1aa46d [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);
154 btrfs_update_inode(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400155 }
Chris Mason017e5362008-07-28 15:32:51 -0400156 err = btrfs_end_transaction(trans, root);
Chris Masona52d9a82007-08-27 16:49:44 -0400157out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500158 unlock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400159 return err;
160}
161
Chris Masond352ac62008-09-29 15:18:18 -0400162/*
163 * this drops all the extents in the cache that intersect the range
164 * [start, end]. Existing extents are split as required.
165 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400166int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
167 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400168{
169 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400170 struct extent_map *split = NULL;
171 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400172 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500173 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400174 int ret;
175 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400176 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400177 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400178
Chris Masone6dcd2d2008-07-17 12:53:50 -0400179 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400180 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500181 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400182 testend = 0;
183 }
Chris Masond3977122009-01-05 21:25:51 -0500184 while (1) {
Chris Mason3b951512008-04-17 11:29:12 -0400185 if (!split)
186 split = alloc_extent_map(GFP_NOFS);
187 if (!split2)
188 split2 = alloc_extent_map(GFP_NOFS);
189
Chris Masond1310b22008-01-24 16:13:08 -0500190 spin_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500191 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500192 if (!em) {
193 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400194 break;
Chris Masond1310b22008-01-24 16:13:08 -0500195 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400196 flags = em->flags;
197 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
198 spin_unlock(&em_tree->lock);
199 if (em->start <= start &&
200 (!testend || em->start + em->len >= start + len)) {
201 free_extent_map(em);
202 break;
203 }
204 if (start < em->start) {
205 len = em->start - start;
206 } else {
207 len = start + len - (em->start + em->len);
208 start = em->start + em->len;
209 }
210 free_extent_map(em);
211 continue;
212 }
Chris Masonc8b97812008-10-29 14:49:59 -0400213 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400214 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400215 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400216
217 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
218 em->start < start) {
219 split->start = em->start;
220 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500221 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400222 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400223
224 if (compressed)
225 split->block_len = em->block_len;
226 else
227 split->block_len = split->len;
228
Chris Mason3b951512008-04-17 11:29:12 -0400229 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400230 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400231 ret = add_extent_mapping(em_tree, split);
232 BUG_ON(ret);
233 free_extent_map(split);
234 split = split2;
235 split2 = NULL;
236 }
237 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
238 testend && em->start + em->len > start + len) {
239 u64 diff = start + len - em->start;
240
241 split->start = start + len;
242 split->len = em->start + em->len - (start + len);
243 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400244 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400245
Chris Masonc8b97812008-10-29 14:49:59 -0400246 if (compressed) {
247 split->block_len = em->block_len;
248 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500249 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400250 } else {
251 split->block_len = split->len;
252 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500253 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400254 }
Chris Mason3b951512008-04-17 11:29:12 -0400255
256 ret = add_extent_mapping(em_tree, split);
257 BUG_ON(ret);
258 free_extent_map(split);
259 split = NULL;
260 }
Chris Masond1310b22008-01-24 16:13:08 -0500261 spin_unlock(&em_tree->lock);
262
Chris Masona52d9a82007-08-27 16:49:44 -0400263 /* once for us */
264 free_extent_map(em);
265 /* once for the tree*/
266 free_extent_map(em);
267 }
Chris Mason3b951512008-04-17 11:29:12 -0400268 if (split)
269 free_extent_map(split);
270 if (split2)
271 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400272 return 0;
273}
274
Chris Mason5f564062008-01-22 16:47:59 -0500275int btrfs_check_file(struct btrfs_root *root, struct inode *inode)
276{
277 return 0;
278#if 0
279 struct btrfs_path *path;
280 struct btrfs_key found_key;
281 struct extent_buffer *leaf;
282 struct btrfs_file_extent_item *extent;
283 u64 last_offset = 0;
284 int nritems;
285 int slot;
286 int found_type;
287 int ret;
288 int err = 0;
289 u64 extent_end = 0;
290
291 path = btrfs_alloc_path();
292 ret = btrfs_lookup_file_extent(NULL, root, path, inode->i_ino,
293 last_offset, 0);
Chris Masond3977122009-01-05 21:25:51 -0500294 while (1) {
Chris Mason5f564062008-01-22 16:47:59 -0500295 nritems = btrfs_header_nritems(path->nodes[0]);
296 if (path->slots[0] >= nritems) {
297 ret = btrfs_next_leaf(root, path);
298 if (ret)
299 goto out;
300 nritems = btrfs_header_nritems(path->nodes[0]);
301 }
302 slot = path->slots[0];
303 leaf = path->nodes[0];
304 btrfs_item_key_to_cpu(leaf, &found_key, slot);
305 if (found_key.objectid != inode->i_ino)
306 break;
307 if (found_key.type != BTRFS_EXTENT_DATA_KEY)
308 goto out;
309
Chris Mason90692182008-02-08 13:49:28 -0500310 if (found_key.offset < last_offset) {
Chris Mason5f564062008-01-22 16:47:59 -0500311 WARN_ON(1);
312 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500313 printk(KERN_ERR "inode %lu found offset %llu "
314 "expected %llu\n", inode->i_ino,
315 (unsigned long long)found_key.offset,
316 (unsigned long long)last_offset);
Chris Mason5f564062008-01-22 16:47:59 -0500317 err = 1;
318 goto out;
319 }
320 extent = btrfs_item_ptr(leaf, slot,
321 struct btrfs_file_extent_item);
322 found_type = btrfs_file_extent_type(leaf, extent);
323 if (found_type == BTRFS_FILE_EXTENT_REG) {
324 extent_end = found_key.offset +
325 btrfs_file_extent_num_bytes(leaf, extent);
326 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
327 struct btrfs_item *item;
328 item = btrfs_item_nr(leaf, slot);
329 extent_end = found_key.offset +
Chris Masonc8b97812008-10-29 14:49:59 -0400330 btrfs_file_extent_inline_len(leaf, extent);
Chris Mason5f564062008-01-22 16:47:59 -0500331 extent_end = (extent_end + root->sectorsize - 1) &
Chris Masond3977122009-01-05 21:25:51 -0500332 ~((u64)root->sectorsize - 1);
Chris Mason5f564062008-01-22 16:47:59 -0500333 }
334 last_offset = extent_end;
335 path->slots[0]++;
336 }
Chris Mason90692182008-02-08 13:49:28 -0500337 if (0 && last_offset < inode->i_size) {
Chris Mason5f564062008-01-22 16:47:59 -0500338 WARN_ON(1);
339 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500340 printk(KERN_ERR "inode %lu found offset %llu size %llu\n",
341 inode->i_ino, (unsigned long long)last_offset,
342 (unsigned long long)inode->i_size);
Chris Mason5f564062008-01-22 16:47:59 -0500343 err = 1;
344
345 }
346out:
347 btrfs_free_path(path);
348 return err;
349#endif
350}
351
Chris Mason39279cc2007-06-12 06:35:45 -0400352/*
353 * this is very complex, but the basic idea is to drop all extents
354 * in the range start - end. hint_block is filled in with a block number
355 * that would be a good hint to the block allocator for this file.
356 *
357 * If an extent intersects the range but is not entirely inside the range
358 * it is either truncated or split. Anything entirely inside the range
359 * is deleted from the tree.
Chris Masond352ac62008-09-29 15:18:18 -0400360 *
361 * inline_limit is used to tell this code which offsets in the file to keep
362 * if they contain inline extents.
Chris Mason39279cc2007-06-12 06:35:45 -0400363 */
Chris Masond3977122009-01-05 21:25:51 -0500364noinline int btrfs_drop_extents(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400365 struct btrfs_root *root, struct inode *inode,
Chris Mason00f5c792007-11-30 10:09:33 -0500366 u64 start, u64 end, u64 inline_limit, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400367{
Chris Mason39279cc2007-06-12 06:35:45 -0400368 u64 extent_end = 0;
Yan Zheng66435582008-10-30 14:19:50 -0400369 u64 locked_end = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400370 u64 search_start = start;
Zheng Yan31840ae2008-09-23 13:14:14 -0400371 u64 leaf_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400372 u64 ram_bytes = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500373 u64 orig_parent = 0;
374 u64 disk_bytenr = 0;
Chris Mason70b99e62008-10-31 12:46:39 -0400375 u8 compression;
376 u8 encryption;
Chris Masonc8b97812008-10-29 14:49:59 -0400377 u16 other_encoding = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -0400378 u64 root_gen;
379 u64 root_owner;
Chris Mason00f5c792007-11-30 10:09:33 -0500380 struct extent_buffer *leaf;
381 struct btrfs_file_extent_item *extent;
382 struct btrfs_path *path;
383 struct btrfs_key key;
384 struct btrfs_file_extent_item old;
385 int keep;
386 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400387 int bookend;
Yan Zhengd899e052008-10-30 14:25:28 -0400388 int found_type = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400389 int found_extent;
390 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400391 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500392 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400393
Chris Masonc8b97812008-10-29 14:49:59 -0400394 inline_limit = 0;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400395 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400396
Chris Mason39279cc2007-06-12 06:35:45 -0400397 path = btrfs_alloc_path();
398 if (!path)
399 return -ENOMEM;
Chris Masond3977122009-01-05 21:25:51 -0500400 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400401 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400402 btrfs_release_path(root, path);
403 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
404 search_start, -1);
405 if (ret < 0)
406 goto out;
407 if (ret > 0) {
408 if (path->slots[0] == 0) {
409 ret = 0;
410 goto out;
411 }
412 path->slots[0]--;
413 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400414next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400415 keep = 0;
416 bookend = 0;
417 found_extent = 0;
418 found_inline = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -0400419 leaf_start = 0;
420 root_gen = 0;
421 root_owner = 0;
Chris Mason70b99e62008-10-31 12:46:39 -0400422 compression = 0;
423 encryption = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400424 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400425 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400426 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400427 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400428 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan72610092008-02-05 15:40:36 -0500429 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY &&
430 key.offset >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400431 goto out;
432 }
Yan72610092008-02-05 15:40:36 -0500433 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
434 key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400435 goto out;
436 }
Chris Masonccd467d2007-06-28 15:57:36 -0400437 if (recow) {
Yan Zheng8247b412008-11-11 09:33:29 -0500438 search_start = max(key.offset, start);
Chris Masonccd467d2007-06-28 15:57:36 -0400439 continue;
440 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400441 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
442 extent = btrfs_item_ptr(leaf, slot,
443 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400444 found_type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400445 compression = btrfs_file_extent_compression(leaf,
446 extent);
447 encryption = btrfs_file_extent_encryption(leaf,
448 extent);
449 other_encoding = btrfs_file_extent_other_encoding(leaf,
450 extent);
Yan Zhengd899e052008-10-30 14:25:28 -0400451 if (found_type == BTRFS_FILE_EXTENT_REG ||
452 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500453 extent_end =
454 btrfs_file_extent_disk_bytenr(leaf,
455 extent);
456 if (extent_end)
457 *hint_byte = extent_end;
458
Chris Mason8c2383c2007-06-18 09:57:58 -0400459 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400460 btrfs_file_extent_num_bytes(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400461 ram_bytes = btrfs_file_extent_ram_bytes(leaf,
462 extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400463 found_extent = 1;
464 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
465 found_inline = 1;
466 extent_end = key.offset +
Chris Masonc8b97812008-10-29 14:49:59 -0400467 btrfs_file_extent_inline_len(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400468 }
469 } else {
470 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400471 }
472
473 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400474 if ((!found_extent && !found_inline) ||
475 search_start >= extent_end) {
476 int nextret;
477 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400478 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400479 if (slot >= nritems - 1) {
480 nextret = btrfs_next_leaf(root, path);
481 if (nextret)
482 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400483 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400484 } else {
485 path->slots[0]++;
486 }
487 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400488 }
489
Chris Masonc8b97812008-10-29 14:49:59 -0400490 if (end <= extent_end && start >= key.offset && found_inline)
Chris Mason179e29e2007-11-01 11:28:41 -0400491 *hint_byte = EXTENT_MAP_INLINE;
Zheng Yan31840ae2008-09-23 13:14:14 -0400492
493 if (found_extent) {
494 read_extent_buffer(leaf, &old, (unsigned long)extent,
495 sizeof(old));
496 root_gen = btrfs_header_generation(leaf);
497 root_owner = btrfs_header_owner(leaf);
498 leaf_start = leaf->start;
499 }
500
Chris Mason39279cc2007-06-12 06:35:45 -0400501 if (end < extent_end && end >= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400502 bookend = 1;
Yan0181e582008-01-30 14:39:54 -0500503 if (found_inline && start <= key.offset)
Chris Mason179e29e2007-11-01 11:28:41 -0400504 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400505 }
Yan Zheng66435582008-10-30 14:19:50 -0400506
Chris Mason771ed682008-11-06 22:02:51 -0500507 if (bookend && found_extent) {
508 if (locked_end < extent_end) {
509 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
510 locked_end, extent_end - 1,
511 GFP_NOFS);
512 if (!ret) {
513 btrfs_release_path(root, path);
514 lock_extent(&BTRFS_I(inode)->io_tree,
515 locked_end, extent_end - 1,
516 GFP_NOFS);
517 locked_end = extent_end;
518 continue;
519 }
Yan Zheng66435582008-10-30 14:19:50 -0400520 locked_end = extent_end;
Yan Zheng66435582008-10-30 14:19:50 -0400521 }
Chris Mason771ed682008-11-06 22:02:51 -0500522 orig_parent = path->nodes[0]->start;
523 disk_bytenr = le64_to_cpu(old.disk_bytenr);
524 if (disk_bytenr != 0) {
525 ret = btrfs_inc_extent_ref(trans, root,
526 disk_bytenr,
527 le64_to_cpu(old.disk_num_bytes),
528 orig_parent, root->root_key.objectid,
529 trans->transid, inode->i_ino);
530 BUG_ON(ret);
531 }
Yan Zheng66435582008-10-30 14:19:50 -0400532 }
533
534 if (found_inline) {
535 u64 mask = root->sectorsize - 1;
536 search_start = (extent_end + mask) & ~mask;
537 } else
538 search_start = extent_end;
539
Chris Mason39279cc2007-06-12 06:35:45 -0400540 /* truncate existing extent */
541 if (start > key.offset) {
542 u64 new_num;
543 u64 old_num;
544 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400545 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400546 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400547 new_num = start - key.offset;
548 old_num = btrfs_file_extent_num_bytes(leaf,
549 extent);
550 *hint_byte =
551 btrfs_file_extent_disk_bytenr(leaf,
552 extent);
553 if (btrfs_file_extent_disk_bytenr(leaf,
554 extent)) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400555 inode_sub_bytes(inode, old_num -
556 new_num);
Chris Mason39279cc2007-06-12 06:35:45 -0400557 }
Chris Mason771ed682008-11-06 22:02:51 -0500558 btrfs_set_file_extent_num_bytes(leaf,
559 extent, new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400560 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500561 } else if (key.offset < inline_limit &&
562 (end > extent_end) &&
563 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400564 u32 new_size;
565 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500566 inline_limit - key.offset);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400567 inode_sub_bytes(inode, extent_end -
568 inline_limit);
Chris Mason70b99e62008-10-31 12:46:39 -0400569 btrfs_set_file_extent_ram_bytes(leaf, extent,
570 new_size);
571 if (!compression && !encryption) {
572 btrfs_truncate_item(trans, root, path,
573 new_size, 1);
574 }
Chris Mason39279cc2007-06-12 06:35:45 -0400575 }
576 }
577 /* delete the entire extent */
578 if (!keep) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400579 if (found_inline)
580 inode_sub_bytes(inode, extent_end -
581 key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400582 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400583 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400584 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -0400585 extent = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -0400586 btrfs_release_path(root, path);
587 /* the extent will be freed later */
Chris Mason39279cc2007-06-12 06:35:45 -0400588 }
Yan0181e582008-01-30 14:39:54 -0500589 if (bookend && found_inline && start <= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400590 u32 new_size;
591 new_size = btrfs_file_extent_calc_inline_size(
Yan0181e582008-01-30 14:39:54 -0500592 extent_end - end);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400593 inode_sub_bytes(inode, end - key.offset);
Chris Mason70b99e62008-10-31 12:46:39 -0400594 btrfs_set_file_extent_ram_bytes(leaf, extent,
595 new_size);
596 if (!compression && !encryption)
597 ret = btrfs_truncate_item(trans, root, path,
598 new_size, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400599 BUG_ON(ret);
Chris Mason179e29e2007-11-01 11:28:41 -0400600 }
Chris Mason39279cc2007-06-12 06:35:45 -0400601 /* create bookend, splitting the extent in two */
602 if (bookend && found_extent) {
603 struct btrfs_key ins;
604 ins.objectid = inode->i_ino;
605 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400606 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason771ed682008-11-06 22:02:51 -0500607
Chris Mason39279cc2007-06-12 06:35:45 -0400608 btrfs_release_path(root, path);
609 ret = btrfs_insert_empty_item(trans, root, path, &ins,
610 sizeof(*extent));
Zheng Yan31840ae2008-09-23 13:14:14 -0400611 BUG_ON(ret);
Chris Mason8c2383c2007-06-18 09:57:58 -0400612
Chris Mason5f39d392007-10-15 16:14:19 -0400613 leaf = path->nodes[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400614 extent = btrfs_item_ptr(leaf, path->slots[0],
615 struct btrfs_file_extent_item);
616 write_extent_buffer(leaf, &old,
617 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400618
Chris Masonc8b97812008-10-29 14:49:59 -0400619 btrfs_set_file_extent_compression(leaf, extent,
620 compression);
621 btrfs_set_file_extent_encryption(leaf, extent,
622 encryption);
623 btrfs_set_file_extent_other_encoding(leaf, extent,
624 other_encoding);
Chris Mason5f39d392007-10-15 16:14:19 -0400625 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400626 le64_to_cpu(old.offset) + end - key.offset);
627 WARN_ON(le64_to_cpu(old.num_bytes) <
628 (extent_end - end));
629 btrfs_set_file_extent_num_bytes(leaf, extent,
630 extent_end - end);
Chris Masonc8b97812008-10-29 14:49:59 -0400631
632 /*
633 * set the ram bytes to the size of the full extent
634 * before splitting. This is a worst case flag,
635 * but its the best we can do because we don't know
636 * how splitting affects compression
637 */
638 btrfs_set_file_extent_ram_bytes(leaf, extent,
639 ram_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -0400640 btrfs_set_file_extent_type(leaf, extent, found_type);
Chris Masondb945352007-10-15 16:15:53 -0400641
Chris Mason39279cc2007-06-12 06:35:45 -0400642 btrfs_mark_buffer_dirty(path->nodes[0]);
Zheng Yan31840ae2008-09-23 13:14:14 -0400643
Zheng Yan31840ae2008-09-23 13:14:14 -0400644 if (disk_bytenr != 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500645 ret = btrfs_update_extent_ref(trans, root,
646 disk_bytenr, orig_parent,
Chris Masond3977122009-01-05 21:25:51 -0500647 leaf->start,
Zheng Yan31840ae2008-09-23 13:14:14 -0400648 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400649 trans->transid, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500650
Zheng Yan31840ae2008-09-23 13:14:14 -0400651 BUG_ON(ret);
652 }
653 btrfs_release_path(root, path);
Chris Masond3977122009-01-05 21:25:51 -0500654 if (disk_bytenr != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400655 inode_add_bytes(inode, extent_end - end);
Zheng Yan31840ae2008-09-23 13:14:14 -0400656 }
657
658 if (found_extent && !keep) {
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500659 u64 old_disk_bytenr = le64_to_cpu(old.disk_bytenr);
Zheng Yan31840ae2008-09-23 13:14:14 -0400660
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500661 if (old_disk_bytenr != 0) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400662 inode_sub_bytes(inode,
663 le64_to_cpu(old.num_bytes));
Zheng Yan31840ae2008-09-23 13:14:14 -0400664 ret = btrfs_free_extent(trans, root,
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500665 old_disk_bytenr,
Zheng Yan31840ae2008-09-23 13:14:14 -0400666 le64_to_cpu(old.disk_num_bytes),
667 leaf_start, root_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400668 root_gen, key.objectid, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400669 BUG_ON(ret);
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500670 *hint_byte = old_disk_bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -0400671 }
672 }
673
674 if (search_start >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400675 ret = 0;
676 goto out;
677 }
678 }
679out:
680 btrfs_free_path(path);
Yan Zheng66435582008-10-30 14:19:50 -0400681 if (locked_end > end) {
682 unlock_extent(&BTRFS_I(inode)->io_tree, end, locked_end - 1,
683 GFP_NOFS);
684 }
Chris Mason90692182008-02-08 13:49:28 -0500685 btrfs_check_file(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400686 return ret;
687}
688
Yan Zhengd899e052008-10-30 14:25:28 -0400689static int extent_mergeable(struct extent_buffer *leaf, int slot,
690 u64 objectid, u64 bytenr, u64 *start, u64 *end)
691{
692 struct btrfs_file_extent_item *fi;
693 struct btrfs_key key;
694 u64 extent_end;
695
696 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
697 return 0;
698
699 btrfs_item_key_to_cpu(leaf, &key, slot);
700 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
701 return 0;
702
703 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
704 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
705 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
706 btrfs_file_extent_compression(leaf, fi) ||
707 btrfs_file_extent_encryption(leaf, fi) ||
708 btrfs_file_extent_other_encoding(leaf, fi))
709 return 0;
710
711 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
712 if ((*start && *start != key.offset) || (*end && *end != extent_end))
713 return 0;
714
715 *start = key.offset;
716 *end = extent_end;
717 return 1;
718}
719
720/*
721 * Mark extent in the range start - end as written.
722 *
723 * This changes extent type from 'pre-allocated' to 'regular'. If only
724 * part of extent is marked as written, the extent will be split into
725 * two or three.
726 */
727int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
728 struct btrfs_root *root,
729 struct inode *inode, u64 start, u64 end)
730{
731 struct extent_buffer *leaf;
732 struct btrfs_path *path;
733 struct btrfs_file_extent_item *fi;
734 struct btrfs_key key;
735 u64 bytenr;
736 u64 num_bytes;
737 u64 extent_end;
738 u64 extent_offset;
739 u64 other_start;
740 u64 other_end;
741 u64 split = start;
742 u64 locked_end = end;
Yan Zhengc36047d2008-11-12 14:19:50 -0500743 u64 orig_parent;
Yan Zhengd899e052008-10-30 14:25:28 -0400744 int extent_type;
745 int split_end = 1;
746 int ret;
747
748 btrfs_drop_extent_cache(inode, start, end - 1, 0);
749
750 path = btrfs_alloc_path();
751 BUG_ON(!path);
752again:
753 key.objectid = inode->i_ino;
754 key.type = BTRFS_EXTENT_DATA_KEY;
755 if (split == start)
756 key.offset = split;
757 else
758 key.offset = split - 1;
759
760 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
761 if (ret > 0 && path->slots[0] > 0)
762 path->slots[0]--;
763
764 leaf = path->nodes[0];
765 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
766 BUG_ON(key.objectid != inode->i_ino ||
767 key.type != BTRFS_EXTENT_DATA_KEY);
768 fi = btrfs_item_ptr(leaf, path->slots[0],
769 struct btrfs_file_extent_item);
770 extent_type = btrfs_file_extent_type(leaf, fi);
771 BUG_ON(extent_type != BTRFS_FILE_EXTENT_PREALLOC);
772 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
773 BUG_ON(key.offset > start || extent_end < end);
774
775 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
776 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
777 extent_offset = btrfs_file_extent_offset(leaf, fi);
778
779 if (key.offset == start)
780 split = end;
781
782 if (key.offset == start && extent_end == end) {
783 int del_nr = 0;
784 int del_slot = 0;
785 u64 leaf_owner = btrfs_header_owner(leaf);
786 u64 leaf_gen = btrfs_header_generation(leaf);
787 other_start = end;
788 other_end = 0;
789 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
790 bytenr, &other_start, &other_end)) {
791 extent_end = other_end;
792 del_slot = path->slots[0] + 1;
793 del_nr++;
794 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
795 leaf->start, leaf_owner,
796 leaf_gen, inode->i_ino, 0);
797 BUG_ON(ret);
798 }
799 other_start = 0;
800 other_end = start;
801 if (extent_mergeable(leaf, path->slots[0] - 1, inode->i_ino,
802 bytenr, &other_start, &other_end)) {
803 key.offset = other_start;
804 del_slot = path->slots[0];
805 del_nr++;
806 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
807 leaf->start, leaf_owner,
808 leaf_gen, inode->i_ino, 0);
809 BUG_ON(ret);
810 }
811 split_end = 0;
812 if (del_nr == 0) {
813 btrfs_set_file_extent_type(leaf, fi,
814 BTRFS_FILE_EXTENT_REG);
815 goto done;
816 }
817
818 fi = btrfs_item_ptr(leaf, del_slot - 1,
819 struct btrfs_file_extent_item);
820 btrfs_set_file_extent_type(leaf, fi, BTRFS_FILE_EXTENT_REG);
821 btrfs_set_file_extent_num_bytes(leaf, fi,
822 extent_end - key.offset);
823 btrfs_mark_buffer_dirty(leaf);
824
825 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
826 BUG_ON(ret);
827 goto done;
828 } else if (split == start) {
829 if (locked_end < extent_end) {
830 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
831 locked_end, extent_end - 1, GFP_NOFS);
832 if (!ret) {
833 btrfs_release_path(root, path);
834 lock_extent(&BTRFS_I(inode)->io_tree,
835 locked_end, extent_end - 1, GFP_NOFS);
836 locked_end = extent_end;
837 goto again;
838 }
839 locked_end = extent_end;
840 }
841 btrfs_set_file_extent_num_bytes(leaf, fi, split - key.offset);
842 extent_offset += split - key.offset;
843 } else {
844 BUG_ON(key.offset != start);
845 btrfs_set_file_extent_offset(leaf, fi, extent_offset +
846 split - key.offset);
847 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - split);
848 key.offset = split;
849 btrfs_set_item_key_safe(trans, root, path, &key);
850 extent_end = split;
851 }
852
853 if (extent_end == end) {
854 split_end = 0;
855 extent_type = BTRFS_FILE_EXTENT_REG;
856 }
857 if (extent_end == end && split == start) {
858 other_start = end;
859 other_end = 0;
860 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
861 bytenr, &other_start, &other_end)) {
862 path->slots[0]++;
863 fi = btrfs_item_ptr(leaf, path->slots[0],
864 struct btrfs_file_extent_item);
865 key.offset = split;
866 btrfs_set_item_key_safe(trans, root, path, &key);
867 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
868 btrfs_set_file_extent_num_bytes(leaf, fi,
869 other_end - split);
870 goto done;
871 }
872 }
873 if (extent_end == end && split == end) {
874 other_start = 0;
875 other_end = start;
876 if (extent_mergeable(leaf, path->slots[0] - 1 , inode->i_ino,
877 bytenr, &other_start, &other_end)) {
878 path->slots[0]--;
879 fi = btrfs_item_ptr(leaf, path->slots[0],
880 struct btrfs_file_extent_item);
881 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end -
882 other_start);
883 goto done;
884 }
885 }
886
887 btrfs_mark_buffer_dirty(leaf);
Yan Zhengc36047d2008-11-12 14:19:50 -0500888
889 orig_parent = leaf->start;
890 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
891 orig_parent, root->root_key.objectid,
892 trans->transid, inode->i_ino);
893 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -0400894 btrfs_release_path(root, path);
895
896 key.offset = start;
897 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(*fi));
898 BUG_ON(ret);
899
900 leaf = path->nodes[0];
901 fi = btrfs_item_ptr(leaf, path->slots[0],
902 struct btrfs_file_extent_item);
903 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
904 btrfs_set_file_extent_type(leaf, fi, extent_type);
905 btrfs_set_file_extent_disk_bytenr(leaf, fi, bytenr);
906 btrfs_set_file_extent_disk_num_bytes(leaf, fi, num_bytes);
907 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
908 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - key.offset);
909 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
910 btrfs_set_file_extent_compression(leaf, fi, 0);
911 btrfs_set_file_extent_encryption(leaf, fi, 0);
912 btrfs_set_file_extent_other_encoding(leaf, fi, 0);
913
Yan Zhengc36047d2008-11-12 14:19:50 -0500914 if (orig_parent != leaf->start) {
915 ret = btrfs_update_extent_ref(trans, root, bytenr,
916 orig_parent, leaf->start,
917 root->root_key.objectid,
918 trans->transid, inode->i_ino);
919 BUG_ON(ret);
920 }
Yan Zhengd899e052008-10-30 14:25:28 -0400921done:
922 btrfs_mark_buffer_dirty(leaf);
923 btrfs_release_path(root, path);
924 if (split_end && split == start) {
925 split = end;
926 goto again;
927 }
928 if (locked_end > end) {
929 unlock_extent(&BTRFS_I(inode)->io_tree, end, locked_end - 1,
930 GFP_NOFS);
931 }
932 btrfs_free_path(path);
933 return 0;
934}
935
Chris Mason39279cc2007-06-12 06:35:45 -0400936/*
Chris Masond352ac62008-09-29 15:18:18 -0400937 * this gets pages into the page cache and locks them down, it also properly
938 * waits for data=ordered extents to finish before allowing the pages to be
939 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -0400940 */
Chris Masond3977122009-01-05 21:25:51 -0500941static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -0500942 struct page **pages, size_t num_pages,
943 loff_t pos, unsigned long first_index,
944 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400945{
946 int i;
947 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500948 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400949 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400950 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400951 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400952
Chris Mason5f39d392007-10-15 16:14:19 -0400953 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400954 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400955
Yan Zheng9036c102008-10-30 14:19:41 -0400956 if (start_pos > inode->i_size) {
957 err = btrfs_cont_expand(inode, start_pos);
958 if (err)
959 return err;
960 }
961
Chris Mason39279cc2007-06-12 06:35:45 -0400962 memset(pages, 0, num_pages * sizeof(struct page *));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400963again:
Chris Mason39279cc2007-06-12 06:35:45 -0400964 for (i = 0; i < num_pages; i++) {
965 pages[i] = grab_cache_page(inode->i_mapping, index + i);
966 if (!pages[i]) {
967 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400968 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400969 }
Chris Masonccd467d2007-06-28 15:57:36 -0400970 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400971 }
Chris Mason07627042008-02-19 11:29:24 -0500972 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400973 struct btrfs_ordered_extent *ordered;
Chris Masond99cb302008-02-19 12:55:05 -0500974 lock_extent(&BTRFS_I(inode)->io_tree,
975 start_pos, last_pos - 1, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500976 ordered = btrfs_lookup_first_ordered_extent(inode,
977 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400978 if (ordered &&
979 ordered->file_offset + ordered->len > start_pos &&
980 ordered->file_offset < last_pos) {
981 btrfs_put_ordered_extent(ordered);
982 unlock_extent(&BTRFS_I(inode)->io_tree,
983 start_pos, last_pos - 1, GFP_NOFS);
984 for (i = 0; i < num_pages; i++) {
985 unlock_page(pages[i]);
986 page_cache_release(pages[i]);
987 }
988 btrfs_wait_ordered_range(inode, start_pos,
989 last_pos - start_pos);
990 goto again;
991 }
992 if (ordered)
993 btrfs_put_ordered_extent(ordered);
994
Chris Mason07627042008-02-19 11:29:24 -0500995 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos,
996 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC,
997 GFP_NOFS);
Chris Masond99cb302008-02-19 12:55:05 -0500998 unlock_extent(&BTRFS_I(inode)->io_tree,
999 start_pos, last_pos - 1, GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -05001000 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001001 for (i = 0; i < num_pages; i++) {
Chris Masonf87f0572008-08-01 11:27:23 -04001002 clear_page_dirty_for_io(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001003 set_page_extent_mapped(pages[i]);
1004 WARN_ON(!PageLocked(pages[i]));
1005 }
Chris Mason39279cc2007-06-12 06:35:45 -04001006 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001007}
1008
1009static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
1010 size_t count, loff_t *ppos)
1011{
1012 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001013 loff_t start_pos;
1014 ssize_t num_written = 0;
1015 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001016 int ret = 0;
Chris Mason6da6aba2007-12-18 16:15:09 -05001017 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001018 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -04001019 struct page **pages = NULL;
1020 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -04001021 struct page *pinned[2];
1022 unsigned long first_index;
1023 unsigned long last_index;
Chris Masoncb843a62008-10-03 12:30:02 -04001024 int will_write;
1025
1026 will_write = ((file->f_flags & O_SYNC) || IS_SYNC(inode) ||
1027 (file->f_flags & O_DIRECT));
Chris Mason8c2383c2007-06-18 09:57:58 -04001028
1029 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
1030 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -04001031 pinned[0] = NULL;
1032 pinned[1] = NULL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001033
Chris Mason39279cc2007-06-12 06:35:45 -04001034 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001035 start_pos = pos;
1036
Chris Mason39279cc2007-06-12 06:35:45 -04001037 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1038 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1039 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1040 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -05001041 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -04001042 if (count == 0)
Chris Mason1832a6d2007-12-21 16:27:21 -05001043 goto out_nolock;
Chris Mason2b1f55b2008-09-24 11:48:04 -04001044
Sven Wegener0ee0fda2008-07-30 16:54:26 -04001045 err = file_remove_suid(file);
Chris Mason39279cc2007-06-12 06:35:45 -04001046 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -05001047 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -04001048 file_update_time(file);
1049
Chris Mason8c2383c2007-06-18 09:57:58 -04001050 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -04001051
1052 mutex_lock(&inode->i_mutex);
Chris Masonc3027eb2008-12-08 16:40:21 -05001053 BTRFS_I(inode)->sequence++;
Chris Mason39279cc2007-06-12 06:35:45 -04001054 first_index = pos >> PAGE_CACHE_SHIFT;
1055 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
1056
1057 /*
1058 * there are lots of better ways to do this, but this code
1059 * makes sure the first and last page in the file range are
1060 * up to date and ready for cow
1061 */
1062 if ((pos & (PAGE_CACHE_SIZE - 1))) {
1063 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
1064 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -04001065 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -04001066 BUG_ON(ret);
1067 wait_on_page_locked(pinned[0]);
1068 } else {
1069 unlock_page(pinned[0]);
1070 }
1071 }
1072 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
1073 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
1074 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -04001075 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -04001076 BUG_ON(ret);
1077 wait_on_page_locked(pinned[1]);
1078 } else {
1079 unlock_page(pinned[1]);
1080 }
1081 }
1082
Chris Masond3977122009-01-05 21:25:51 -05001083 while (count > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -04001084 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -04001085 size_t write_bytes = min(count, nrptrs *
1086 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001087 offset);
Chris Mason39279cc2007-06-12 06:35:45 -04001088 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
1089 PAGE_CACHE_SHIFT;
1090
Chris Mason8c2383c2007-06-18 09:57:58 -04001091 WARN_ON(num_pages > nrptrs);
yanhai zhu9aead432009-01-05 15:49:11 -05001092 memset(pages, 0, sizeof(struct page *) * nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001093
Chris Mason1832a6d2007-12-21 16:27:21 -05001094 ret = btrfs_check_free_space(root, write_bytes, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05001095 if (ret)
1096 goto out;
1097
Chris Mason39279cc2007-06-12 06:35:45 -04001098 ret = prepare_pages(root, file, pages, num_pages,
1099 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -04001100 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001101 if (ret)
1102 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001103
Chris Mason39279cc2007-06-12 06:35:45 -04001104 ret = btrfs_copy_from_user(pos, num_pages,
1105 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -04001106 if (ret) {
1107 btrfs_drop_pages(pages, num_pages);
1108 goto out;
1109 }
Chris Mason39279cc2007-06-12 06:35:45 -04001110
1111 ret = dirty_and_release_pages(NULL, root, file, pages,
1112 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04001113 btrfs_drop_pages(pages, num_pages);
Chris Mason54aa1f42007-06-22 14:16:25 -04001114 if (ret)
1115 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001116
Chris Masoncb843a62008-10-03 12:30:02 -04001117 if (will_write) {
1118 btrfs_fdatawrite_range(inode->i_mapping, pos,
1119 pos + write_bytes - 1,
1120 WB_SYNC_NONE);
1121 } else {
1122 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1123 num_pages);
1124 if (num_pages <
1125 (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1126 btrfs_btree_balance_dirty(root, 1);
1127 btrfs_throttle(root);
1128 }
1129
Chris Mason39279cc2007-06-12 06:35:45 -04001130 buf += write_bytes;
1131 count -= write_bytes;
1132 pos += write_bytes;
1133 num_written += write_bytes;
1134
Chris Mason39279cc2007-06-12 06:35:45 -04001135 cond_resched();
1136 }
Chris Mason39279cc2007-06-12 06:35:45 -04001137out:
Chris Mason1832a6d2007-12-21 16:27:21 -05001138 mutex_unlock(&inode->i_mutex);
Chris Mason5b92ee72008-01-03 13:46:11 -05001139
Chris Mason1832a6d2007-12-21 16:27:21 -05001140out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -04001141 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -04001142 if (pinned[0])
1143 page_cache_release(pinned[0]);
1144 if (pinned[1])
1145 page_cache_release(pinned[1]);
1146 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001147
Chris Masoncb843a62008-10-03 12:30:02 -04001148 if (num_written > 0 && will_write) {
Chris Masone02119d2008-09-05 16:13:11 -04001149 struct btrfs_trans_handle *trans;
1150
Chris Masoncb843a62008-10-03 12:30:02 -04001151 err = btrfs_wait_ordered_range(inode, start_pos, num_written);
1152 if (err)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001153 num_written = err;
Chris Masone02119d2008-09-05 16:13:11 -04001154
Chris Masoncb843a62008-10-03 12:30:02 -04001155 if ((file->f_flags & O_SYNC) || IS_SYNC(inode)) {
1156 trans = btrfs_start_transaction(root, 1);
1157 ret = btrfs_log_dentry_safe(trans, root,
1158 file->f_dentry);
1159 if (ret == 0) {
1160 btrfs_sync_log(trans, root);
1161 btrfs_end_transaction(trans, root);
1162 } else {
1163 btrfs_commit_transaction(trans, root);
1164 }
Chris Masone02119d2008-09-05 16:13:11 -04001165 }
Chris Masoncb843a62008-10-03 12:30:02 -04001166 if (file->f_flags & O_DIRECT) {
1167 invalidate_mapping_pages(inode->i_mapping,
1168 start_pos >> PAGE_CACHE_SHIFT,
1169 (start_pos + num_written - 1) >> PAGE_CACHE_SHIFT);
1170 }
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001171 }
Chris Mason39279cc2007-06-12 06:35:45 -04001172 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001173 return num_written ? num_written : err;
1174}
1175
Chris Masond3977122009-01-05 21:25:51 -05001176int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001177{
Sage Weil6bf13c02008-06-10 10:07:39 -04001178 if (filp->private_data)
1179 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001180 return 0;
1181}
1182
Chris Masond352ac62008-09-29 15:18:18 -04001183/*
1184 * fsync call for both files and directories. This logs the inode into
1185 * the tree log instead of forcing full commits whenever possible.
1186 *
1187 * It needs to call filemap_fdatawait so that all ordered extent updates are
1188 * in the metadata btree are up to date for copying to the log.
1189 *
1190 * It drops the inode mutex before doing the tree log commit. This is an
1191 * important optimization for directories because holding the mutex prevents
1192 * new operations on the dir while we write to disk.
1193 */
Chris Masone02119d2008-09-05 16:13:11 -04001194int btrfs_sync_file(struct file *file, struct dentry *dentry, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001195{
1196 struct inode *inode = dentry->d_inode;
1197 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001198 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001199 struct btrfs_trans_handle *trans;
1200
1201 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001202 * check the transaction that last modified this inode
1203 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001204 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001205 if (!BTRFS_I(inode)->last_trans)
1206 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001207
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001208 mutex_lock(&root->fs_info->trans_mutex);
1209 if (BTRFS_I(inode)->last_trans <=
1210 root->fs_info->last_trans_committed) {
1211 BTRFS_I(inode)->last_trans = 0;
1212 mutex_unlock(&root->fs_info->trans_mutex);
1213 goto out;
1214 }
1215 mutex_unlock(&root->fs_info->trans_mutex);
1216
Yan Zheng7237f182009-01-21 12:54:03 -05001217 root->log_batch++;
Chris Mason580afd72008-12-08 19:15:39 -05001218 filemap_fdatawrite(inode->i_mapping);
1219 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Yan Zheng7237f182009-01-21 12:54:03 -05001220 root->log_batch++;
Chris Masone02119d2008-09-05 16:13:11 -04001221
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001222 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001223 * ok we haven't committed the transaction yet, lets do a commit
1224 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001225 if (file && file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001226 btrfs_ioctl_trans_end(file);
1227
Chris Mason39279cc2007-06-12 06:35:45 -04001228 trans = btrfs_start_transaction(root, 1);
1229 if (!trans) {
1230 ret = -ENOMEM;
1231 goto out;
1232 }
Chris Masone02119d2008-09-05 16:13:11 -04001233
Chris Mason2cfbd502009-02-20 10:55:10 -05001234 ret = btrfs_log_dentry_safe(trans, root, dentry);
Chris Masond3977122009-01-05 21:25:51 -05001235 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04001236 goto out;
Chris Mason49eb7e42008-09-11 15:53:12 -04001237
1238 /* we've logged all the items and now have a consistent
1239 * version of the file in the log. It is possible that
1240 * someone will come in and modify the file, but that's
1241 * fine because the log is consistent on disk, and we
1242 * have references to all of the file's extents
1243 *
1244 * It is possible that someone will come in and log the
1245 * file again, but that will end up using the synchronization
1246 * inside btrfs_sync_log to keep things safe.
1247 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001248 mutex_unlock(&dentry->d_inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001249
Chris Masone02119d2008-09-05 16:13:11 -04001250 if (ret > 0) {
1251 ret = btrfs_commit_transaction(trans, root);
1252 } else {
1253 btrfs_sync_log(trans, root);
1254 ret = btrfs_end_transaction(trans, root);
1255 }
Chris Mason2cfbd502009-02-20 10:55:10 -05001256 mutex_lock(&dentry->d_inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001257out:
1258 return ret > 0 ? EIO : ret;
1259}
1260
Chris Mason9ebefb182007-06-15 13:50:00 -04001261static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001262 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001263 .page_mkwrite = btrfs_page_mkwrite,
1264};
1265
1266static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1267{
1268 vma->vm_ops = &btrfs_file_vm_ops;
1269 file_accessed(filp);
1270 return 0;
1271}
1272
Chris Mason39279cc2007-06-12 06:35:45 -04001273struct file_operations btrfs_file_operations = {
1274 .llseek = generic_file_llseek,
1275 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -04001276 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001277 .splice_read = generic_file_splice_read,
Chris Mason39279cc2007-06-12 06:35:45 -04001278 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001279 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001280 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001281 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001282 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001283 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001284#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001285 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001286#endif
1287};