blob: 4119f9a953204bff0f68d206ccc70f2fc8d3d7cc [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>
Chris Mason92fee662007-07-25 12:31:35 -040032#include <linux/version.h>
Chris Mason39279cc2007-06-12 06:35:45 -040033#include "ctree.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "btrfs_inode.h"
37#include "ioctl.h"
38#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040039#include "tree-log.h"
40#include "locking.h"
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -040041#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040042
43
Chris Masond352ac62008-09-29 15:18:18 -040044/* simple helper to fault in pages and copy. This should go away
45 * and be replaced with calls into generic code.
46 */
Chris Masona1b32a52008-09-05 16:09:51 -040047static int noinline btrfs_copy_from_user(loff_t pos, int num_pages,
48 int write_bytes,
49 struct page **prepared_pages,
50 const char __user * buf)
Chris Mason39279cc2007-06-12 06:35:45 -040051{
52 long page_fault = 0;
53 int i;
54 int offset = pos & (PAGE_CACHE_SIZE - 1);
55
56 for (i = 0; i < num_pages && write_bytes > 0; i++, offset = 0) {
57 size_t count = min_t(size_t,
58 PAGE_CACHE_SIZE - offset, write_bytes);
59 struct page *page = prepared_pages[i];
60 fault_in_pages_readable(buf, count);
61
62 /* Copy data from userspace to the current page */
63 kmap(page);
64 page_fault = __copy_from_user(page_address(page) + offset,
65 buf, count);
66 /* Flush processor's dcache for this page */
67 flush_dcache_page(page);
68 kunmap(page);
69 buf += count;
70 write_bytes -= count;
71
72 if (page_fault)
73 break;
74 }
75 return page_fault ? -EFAULT : 0;
76}
77
Chris Masond352ac62008-09-29 15:18:18 -040078/*
79 * unlocks pages after btrfs_file_write is done with them
80 */
Chris Masona1b32a52008-09-05 16:09:51 -040081static void noinline btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -040082{
83 size_t i;
84 for (i = 0; i < num_pages; i++) {
85 if (!pages[i])
86 break;
Chris Masond352ac62008-09-29 15:18:18 -040087 /* page checked is some magic around finding pages that
88 * have been modified without going through btrfs_set_page_dirty
89 * clear it here
90 */
Chris Mason4a096752008-07-21 10:29:44 -040091 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -040092 unlock_page(pages[i]);
93 mark_page_accessed(pages[i]);
94 page_cache_release(pages[i]);
95 }
96}
97
Chris Masond352ac62008-09-29 15:18:18 -040098/*
99 * after copy_from_user, pages need to be dirtied and we need to make
100 * sure holes are created between the current EOF and the start of
101 * any next extents (if required).
102 *
103 * this also makes the decision about creating an inline extent vs
104 * doing real data extents, marking pages dirty and delalloc as required.
105 */
Chris Mason98ed5172008-01-03 10:01:48 -0500106static int noinline dirty_and_release_pages(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400107 struct btrfs_root *root,
108 struct file *file,
109 struct page **pages,
110 size_t num_pages,
111 loff_t pos,
112 size_t write_bytes)
113{
Chris Mason39279cc2007-06-12 06:35:45 -0400114 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400115 int i;
Chris Mason6da6aba2007-12-18 16:15:09 -0500116 struct inode *inode = fdentry(file)->d_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500117 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masondb945352007-10-15 16:15:53 -0400118 u64 hint_byte;
119 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400120 u64 start_pos;
121 u64 end_of_last_block;
122 u64 end_pos = pos + write_bytes;
123 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400124
Chris Mason5f39d392007-10-15 16:14:19 -0400125 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400126 num_bytes = (write_bytes + pos - start_pos +
127 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400128
Chris Masondb945352007-10-15 16:15:53 -0400129 end_of_last_block = start_pos + num_bytes - 1;
130
Chris Masond1310b22008-01-24 16:13:08 -0500131 lock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason37d1aee2008-07-31 10:48:37 -0400132 trans = btrfs_join_transaction(root, 1);
Chris Masona52d9a82007-08-27 16:49:44 -0400133 if (!trans) {
134 err = -ENOMEM;
135 goto out_unlock;
136 }
137 btrfs_set_trans_block_group(trans, inode);
Chris Masondb945352007-10-15 16:15:53 -0400138 hint_byte = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400139
140 if ((end_of_last_block & 4095) == 0) {
Christoph Hellwig94330632007-09-10 20:02:22 -0400141 printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block);
Chris Masona52d9a82007-08-27 16:49:44 -0400142 }
Chris Masond1310b22008-01-24 16:13:08 -0500143 set_extent_uptodate(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400144
Chris Masonc8b97812008-10-29 14:49:59 -0400145 /* check for reserved extents on each page, we don't want
146 * to reset the delalloc bit on things that already have
147 * extents reserved.
Chris Masona52d9a82007-08-27 16:49:44 -0400148 */
Chris Masonc8b97812008-10-29 14:49:59 -0400149 btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block);
150 for (i = 0; i < num_pages; i++) {
151 struct page *p = pages[i];
152 SetPageUptodate(p);
153 ClearPageChecked(p);
154 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400155 }
156 if (end_pos > isize) {
157 i_size_write(inode, end_pos);
158 btrfs_update_inode(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400159 }
Chris Mason017e5362008-07-28 15:32:51 -0400160 err = btrfs_end_transaction(trans, root);
Chris Masona52d9a82007-08-27 16:49:44 -0400161out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500162 unlock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400163 return err;
164}
165
Chris Masond352ac62008-09-29 15:18:18 -0400166/*
167 * this drops all the extents in the cache that intersect the range
168 * [start, end]. Existing extents are split as required.
169 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400170int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
171 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400172{
173 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400174 struct extent_map *split = NULL;
175 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400176 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500177 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400178 int ret;
179 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400180 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400181 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400182
Chris Masone6dcd2d2008-07-17 12:53:50 -0400183 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400184 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500185 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400186 testend = 0;
187 }
Chris Masona52d9a82007-08-27 16:49:44 -0400188 while(1) {
Chris Mason3b951512008-04-17 11:29:12 -0400189 if (!split)
190 split = alloc_extent_map(GFP_NOFS);
191 if (!split2)
192 split2 = alloc_extent_map(GFP_NOFS);
193
Chris Masond1310b22008-01-24 16:13:08 -0500194 spin_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500195 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500196 if (!em) {
197 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400198 break;
Chris Masond1310b22008-01-24 16:13:08 -0500199 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400200 flags = em->flags;
201 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
202 spin_unlock(&em_tree->lock);
203 if (em->start <= start &&
204 (!testend || em->start + em->len >= start + len)) {
205 free_extent_map(em);
206 break;
207 }
208 if (start < em->start) {
209 len = em->start - start;
210 } else {
211 len = start + len - (em->start + em->len);
212 start = em->start + em->len;
213 }
214 free_extent_map(em);
215 continue;
216 }
Chris Masonc8b97812008-10-29 14:49:59 -0400217 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400218 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400219 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400220
221 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
222 em->start < start) {
223 split->start = em->start;
224 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500225 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400226 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400227
228 if (compressed)
229 split->block_len = em->block_len;
230 else
231 split->block_len = split->len;
232
Chris Mason3b951512008-04-17 11:29:12 -0400233 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400234 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400235 ret = add_extent_mapping(em_tree, split);
236 BUG_ON(ret);
237 free_extent_map(split);
238 split = split2;
239 split2 = NULL;
240 }
241 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
242 testend && em->start + em->len > start + len) {
243 u64 diff = start + len - em->start;
244
245 split->start = start + len;
246 split->len = em->start + em->len - (start + len);
247 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400248 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400249
Chris Masonc8b97812008-10-29 14:49:59 -0400250 if (compressed) {
251 split->block_len = em->block_len;
252 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500253 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400254 } else {
255 split->block_len = split->len;
256 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500257 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400258 }
Chris Mason3b951512008-04-17 11:29:12 -0400259
260 ret = add_extent_mapping(em_tree, split);
261 BUG_ON(ret);
262 free_extent_map(split);
263 split = NULL;
264 }
Chris Masond1310b22008-01-24 16:13:08 -0500265 spin_unlock(&em_tree->lock);
266
Chris Masona52d9a82007-08-27 16:49:44 -0400267 /* once for us */
268 free_extent_map(em);
269 /* once for the tree*/
270 free_extent_map(em);
271 }
Chris Mason3b951512008-04-17 11:29:12 -0400272 if (split)
273 free_extent_map(split);
274 if (split2)
275 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400276 return 0;
277}
278
Chris Mason5f564062008-01-22 16:47:59 -0500279int btrfs_check_file(struct btrfs_root *root, struct inode *inode)
280{
281 return 0;
282#if 0
283 struct btrfs_path *path;
284 struct btrfs_key found_key;
285 struct extent_buffer *leaf;
286 struct btrfs_file_extent_item *extent;
287 u64 last_offset = 0;
288 int nritems;
289 int slot;
290 int found_type;
291 int ret;
292 int err = 0;
293 u64 extent_end = 0;
294
295 path = btrfs_alloc_path();
296 ret = btrfs_lookup_file_extent(NULL, root, path, inode->i_ino,
297 last_offset, 0);
298 while(1) {
299 nritems = btrfs_header_nritems(path->nodes[0]);
300 if (path->slots[0] >= nritems) {
301 ret = btrfs_next_leaf(root, path);
302 if (ret)
303 goto out;
304 nritems = btrfs_header_nritems(path->nodes[0]);
305 }
306 slot = path->slots[0];
307 leaf = path->nodes[0];
308 btrfs_item_key_to_cpu(leaf, &found_key, slot);
309 if (found_key.objectid != inode->i_ino)
310 break;
311 if (found_key.type != BTRFS_EXTENT_DATA_KEY)
312 goto out;
313
Chris Mason90692182008-02-08 13:49:28 -0500314 if (found_key.offset < last_offset) {
Chris Mason5f564062008-01-22 16:47:59 -0500315 WARN_ON(1);
316 btrfs_print_leaf(root, leaf);
317 printk("inode %lu found offset %Lu expected %Lu\n",
318 inode->i_ino, found_key.offset, last_offset);
319 err = 1;
320 goto out;
321 }
322 extent = btrfs_item_ptr(leaf, slot,
323 struct btrfs_file_extent_item);
324 found_type = btrfs_file_extent_type(leaf, extent);
325 if (found_type == BTRFS_FILE_EXTENT_REG) {
326 extent_end = found_key.offset +
327 btrfs_file_extent_num_bytes(leaf, extent);
328 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
329 struct btrfs_item *item;
330 item = btrfs_item_nr(leaf, slot);
331 extent_end = found_key.offset +
Chris Masonc8b97812008-10-29 14:49:59 -0400332 btrfs_file_extent_inline_len(leaf, extent);
Chris Mason5f564062008-01-22 16:47:59 -0500333 extent_end = (extent_end + root->sectorsize - 1) &
334 ~((u64)root->sectorsize -1 );
335 }
336 last_offset = extent_end;
337 path->slots[0]++;
338 }
Chris Mason90692182008-02-08 13:49:28 -0500339 if (0 && last_offset < inode->i_size) {
Chris Mason5f564062008-01-22 16:47:59 -0500340 WARN_ON(1);
341 btrfs_print_leaf(root, leaf);
342 printk("inode %lu found offset %Lu size %Lu\n", inode->i_ino,
343 last_offset, inode->i_size);
344 err = 1;
345
346 }
347out:
348 btrfs_free_path(path);
349 return err;
350#endif
351}
352
Chris Mason39279cc2007-06-12 06:35:45 -0400353/*
354 * this is very complex, but the basic idea is to drop all extents
355 * in the range start - end. hint_block is filled in with a block number
356 * that would be a good hint to the block allocator for this file.
357 *
358 * If an extent intersects the range but is not entirely inside the range
359 * it is either truncated or split. Anything entirely inside the range
360 * is deleted from the tree.
Chris Masond352ac62008-09-29 15:18:18 -0400361 *
362 * inline_limit is used to tell this code which offsets in the file to keep
363 * if they contain inline extents.
Chris Mason39279cc2007-06-12 06:35:45 -0400364 */
Chris Masona1b32a52008-09-05 16:09:51 -0400365int noinline btrfs_drop_extents(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400366 struct btrfs_root *root, struct inode *inode,
Chris Mason00f5c792007-11-30 10:09:33 -0500367 u64 start, u64 end, u64 inline_limit, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400368{
Chris Mason39279cc2007-06-12 06:35:45 -0400369 u64 extent_end = 0;
Yan Zheng66435582008-10-30 14:19:50 -0400370 u64 locked_end = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400371 u64 search_start = start;
Zheng Yan31840ae2008-09-23 13:14:14 -0400372 u64 leaf_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400373 u64 ram_bytes = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500374 u64 orig_parent = 0;
375 u64 disk_bytenr = 0;
Chris Mason70b99e62008-10-31 12:46:39 -0400376 u8 compression;
377 u8 encryption;
Chris Masonc8b97812008-10-29 14:49:59 -0400378 u16 other_encoding = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -0400379 u64 root_gen;
380 u64 root_owner;
Chris Mason00f5c792007-11-30 10:09:33 -0500381 struct extent_buffer *leaf;
382 struct btrfs_file_extent_item *extent;
383 struct btrfs_path *path;
384 struct btrfs_key key;
385 struct btrfs_file_extent_item old;
386 int keep;
387 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400388 int bookend;
Yan Zhengd899e052008-10-30 14:25:28 -0400389 int found_type = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400390 int found_extent;
391 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400392 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500393 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400394
Chris Masonc8b97812008-10-29 14:49:59 -0400395 inline_limit = 0;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400396 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400397
Chris Mason39279cc2007-06-12 06:35:45 -0400398 path = btrfs_alloc_path();
399 if (!path)
400 return -ENOMEM;
401 while(1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400402 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400403 btrfs_release_path(root, path);
404 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
405 search_start, -1);
406 if (ret < 0)
407 goto out;
408 if (ret > 0) {
409 if (path->slots[0] == 0) {
410 ret = 0;
411 goto out;
412 }
413 path->slots[0]--;
414 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400415next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400416 keep = 0;
417 bookend = 0;
418 found_extent = 0;
419 found_inline = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -0400420 leaf_start = 0;
421 root_gen = 0;
422 root_owner = 0;
Chris Mason70b99e62008-10-31 12:46:39 -0400423 compression = 0;
424 encryption = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400425 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400426 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400427 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400428 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400429 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan72610092008-02-05 15:40:36 -0500430 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY &&
431 key.offset >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400432 goto out;
433 }
Yan72610092008-02-05 15:40:36 -0500434 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
435 key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400436 goto out;
437 }
Chris Masonccd467d2007-06-28 15:57:36 -0400438 if (recow) {
439 search_start = key.offset;
440 continue;
441 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400442 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
443 extent = btrfs_item_ptr(leaf, slot,
444 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400445 found_type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400446 compression = btrfs_file_extent_compression(leaf,
447 extent);
448 encryption = btrfs_file_extent_encryption(leaf,
449 extent);
450 other_encoding = btrfs_file_extent_other_encoding(leaf,
451 extent);
Yan Zhengd899e052008-10-30 14:25:28 -0400452 if (found_type == BTRFS_FILE_EXTENT_REG ||
453 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500454 extent_end =
455 btrfs_file_extent_disk_bytenr(leaf,
456 extent);
457 if (extent_end)
458 *hint_byte = extent_end;
459
Chris Mason8c2383c2007-06-18 09:57:58 -0400460 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400461 btrfs_file_extent_num_bytes(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400462 ram_bytes = btrfs_file_extent_ram_bytes(leaf,
463 extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400464 found_extent = 1;
465 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
466 found_inline = 1;
467 extent_end = key.offset +
Chris Masonc8b97812008-10-29 14:49:59 -0400468 btrfs_file_extent_inline_len(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400469 }
470 } else {
471 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400472 }
473
474 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400475 if ((!found_extent && !found_inline) ||
476 search_start >= extent_end) {
477 int nextret;
478 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400479 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400480 if (slot >= nritems - 1) {
481 nextret = btrfs_next_leaf(root, path);
482 if (nextret)
483 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400484 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400485 } else {
486 path->slots[0]++;
487 }
488 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400489 }
490
Chris Masonc8b97812008-10-29 14:49:59 -0400491 if (end <= extent_end && start >= key.offset && found_inline)
Chris Mason179e29e2007-11-01 11:28:41 -0400492 *hint_byte = EXTENT_MAP_INLINE;
Zheng Yan31840ae2008-09-23 13:14:14 -0400493
494 if (found_extent) {
495 read_extent_buffer(leaf, &old, (unsigned long)extent,
496 sizeof(old));
497 root_gen = btrfs_header_generation(leaf);
498 root_owner = btrfs_header_owner(leaf);
499 leaf_start = leaf->start;
500 }
501
Chris Mason39279cc2007-06-12 06:35:45 -0400502 if (end < extent_end && end >= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400503 bookend = 1;
Yan0181e582008-01-30 14:39:54 -0500504 if (found_inline && start <= key.offset)
Chris Mason179e29e2007-11-01 11:28:41 -0400505 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400506 }
Yan Zheng66435582008-10-30 14:19:50 -0400507
Chris Mason771ed682008-11-06 22:02:51 -0500508 if (bookend && found_extent) {
509 if (locked_end < extent_end) {
510 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
511 locked_end, extent_end - 1,
512 GFP_NOFS);
513 if (!ret) {
514 btrfs_release_path(root, path);
515 lock_extent(&BTRFS_I(inode)->io_tree,
516 locked_end, extent_end - 1,
517 GFP_NOFS);
518 locked_end = extent_end;
519 continue;
520 }
Yan Zheng66435582008-10-30 14:19:50 -0400521 locked_end = extent_end;
Yan Zheng66435582008-10-30 14:19:50 -0400522 }
Chris Mason771ed682008-11-06 22:02:51 -0500523 orig_parent = path->nodes[0]->start;
524 disk_bytenr = le64_to_cpu(old.disk_bytenr);
525 if (disk_bytenr != 0) {
526 ret = btrfs_inc_extent_ref(trans, root,
527 disk_bytenr,
528 le64_to_cpu(old.disk_num_bytes),
529 orig_parent, root->root_key.objectid,
530 trans->transid, inode->i_ino);
531 BUG_ON(ret);
532 }
Yan Zheng66435582008-10-30 14:19:50 -0400533 }
534
535 if (found_inline) {
536 u64 mask = root->sectorsize - 1;
537 search_start = (extent_end + mask) & ~mask;
538 } else
539 search_start = extent_end;
540
Chris Mason39279cc2007-06-12 06:35:45 -0400541 /* truncate existing extent */
542 if (start > key.offset) {
543 u64 new_num;
544 u64 old_num;
545 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400546 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400547 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400548 new_num = start - key.offset;
549 old_num = btrfs_file_extent_num_bytes(leaf,
550 extent);
551 *hint_byte =
552 btrfs_file_extent_disk_bytenr(leaf,
553 extent);
554 if (btrfs_file_extent_disk_bytenr(leaf,
555 extent)) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400556 inode_sub_bytes(inode, old_num -
557 new_num);
Chris Mason39279cc2007-06-12 06:35:45 -0400558 }
Chris Mason771ed682008-11-06 22:02:51 -0500559 if (!compression && !encryption) {
560 btrfs_set_file_extent_ram_bytes(leaf,
561 extent, new_num);
562 }
563 btrfs_set_file_extent_num_bytes(leaf,
564 extent, new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400565 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500566 } else if (key.offset < inline_limit &&
567 (end > extent_end) &&
568 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400569 u32 new_size;
570 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500571 inline_limit - key.offset);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400572 inode_sub_bytes(inode, extent_end -
573 inline_limit);
Chris Mason70b99e62008-10-31 12:46:39 -0400574 btrfs_set_file_extent_ram_bytes(leaf, extent,
575 new_size);
576 if (!compression && !encryption) {
577 btrfs_truncate_item(trans, root, path,
578 new_size, 1);
579 }
Chris Mason39279cc2007-06-12 06:35:45 -0400580 }
581 }
582 /* delete the entire extent */
583 if (!keep) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400584 if (found_inline)
585 inode_sub_bytes(inode, extent_end -
586 key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400587 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400588 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400589 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -0400590 extent = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -0400591 btrfs_release_path(root, path);
592 /* the extent will be freed later */
Chris Mason39279cc2007-06-12 06:35:45 -0400593 }
Yan0181e582008-01-30 14:39:54 -0500594 if (bookend && found_inline && start <= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400595 u32 new_size;
596 new_size = btrfs_file_extent_calc_inline_size(
Yan0181e582008-01-30 14:39:54 -0500597 extent_end - end);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400598 inode_sub_bytes(inode, end - key.offset);
Chris Mason70b99e62008-10-31 12:46:39 -0400599 btrfs_set_file_extent_ram_bytes(leaf, extent,
600 new_size);
601 if (!compression && !encryption)
602 ret = btrfs_truncate_item(trans, root, path,
603 new_size, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400604 BUG_ON(ret);
Chris Mason179e29e2007-11-01 11:28:41 -0400605 }
Chris Mason39279cc2007-06-12 06:35:45 -0400606 /* create bookend, splitting the extent in two */
607 if (bookend && found_extent) {
608 struct btrfs_key ins;
609 ins.objectid = inode->i_ino;
610 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400611 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason771ed682008-11-06 22:02:51 -0500612
Chris Mason39279cc2007-06-12 06:35:45 -0400613 btrfs_release_path(root, path);
614 ret = btrfs_insert_empty_item(trans, root, path, &ins,
615 sizeof(*extent));
Zheng Yan31840ae2008-09-23 13:14:14 -0400616 BUG_ON(ret);
Chris Mason8c2383c2007-06-18 09:57:58 -0400617
Chris Mason5f39d392007-10-15 16:14:19 -0400618 leaf = path->nodes[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400619 extent = btrfs_item_ptr(leaf, path->slots[0],
620 struct btrfs_file_extent_item);
621 write_extent_buffer(leaf, &old,
622 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400623
Chris Masonc8b97812008-10-29 14:49:59 -0400624 btrfs_set_file_extent_compression(leaf, extent,
625 compression);
626 btrfs_set_file_extent_encryption(leaf, extent,
627 encryption);
628 btrfs_set_file_extent_other_encoding(leaf, extent,
629 other_encoding);
Chris Mason5f39d392007-10-15 16:14:19 -0400630 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400631 le64_to_cpu(old.offset) + end - key.offset);
632 WARN_ON(le64_to_cpu(old.num_bytes) <
633 (extent_end - end));
634 btrfs_set_file_extent_num_bytes(leaf, extent,
635 extent_end - end);
Chris Masonc8b97812008-10-29 14:49:59 -0400636
637 /*
638 * set the ram bytes to the size of the full extent
639 * before splitting. This is a worst case flag,
640 * but its the best we can do because we don't know
641 * how splitting affects compression
642 */
643 btrfs_set_file_extent_ram_bytes(leaf, extent,
644 ram_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -0400645 btrfs_set_file_extent_type(leaf, extent, found_type);
Chris Masondb945352007-10-15 16:15:53 -0400646
Chris Mason39279cc2007-06-12 06:35:45 -0400647 btrfs_mark_buffer_dirty(path->nodes[0]);
Zheng Yan31840ae2008-09-23 13:14:14 -0400648
Zheng Yan31840ae2008-09-23 13:14:14 -0400649 if (disk_bytenr != 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500650 ret = btrfs_update_extent_ref(trans, root,
651 disk_bytenr, orig_parent,
652 leaf->start,
Zheng Yan31840ae2008-09-23 13:14:14 -0400653 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400654 trans->transid, ins.objectid);
Chris Mason771ed682008-11-06 22:02:51 -0500655
Zheng Yan31840ae2008-09-23 13:14:14 -0400656 BUG_ON(ret);
657 }
658 btrfs_release_path(root, path);
659 if (disk_bytenr != 0) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400660 inode_add_bytes(inode, extent_end - end);
Chris Mason39279cc2007-06-12 06:35:45 -0400661 }
Zheng Yan31840ae2008-09-23 13:14:14 -0400662 }
663
664 if (found_extent && !keep) {
665 u64 disk_bytenr = le64_to_cpu(old.disk_bytenr);
666
667 if (disk_bytenr != 0) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400668 inode_sub_bytes(inode,
669 le64_to_cpu(old.num_bytes));
Zheng Yan31840ae2008-09-23 13:14:14 -0400670 ret = btrfs_free_extent(trans, root,
671 disk_bytenr,
672 le64_to_cpu(old.disk_num_bytes),
673 leaf_start, root_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400674 root_gen, key.objectid, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400675 BUG_ON(ret);
676 *hint_byte = disk_bytenr;
677 }
678 }
679
680 if (search_start >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400681 ret = 0;
682 goto out;
683 }
684 }
685out:
686 btrfs_free_path(path);
Yan Zheng66435582008-10-30 14:19:50 -0400687 if (locked_end > end) {
688 unlock_extent(&BTRFS_I(inode)->io_tree, end, locked_end - 1,
689 GFP_NOFS);
690 }
Chris Mason90692182008-02-08 13:49:28 -0500691 btrfs_check_file(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400692 return ret;
693}
694
Yan Zhengd899e052008-10-30 14:25:28 -0400695static int extent_mergeable(struct extent_buffer *leaf, int slot,
696 u64 objectid, u64 bytenr, u64 *start, u64 *end)
697{
698 struct btrfs_file_extent_item *fi;
699 struct btrfs_key key;
700 u64 extent_end;
701
702 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
703 return 0;
704
705 btrfs_item_key_to_cpu(leaf, &key, slot);
706 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
707 return 0;
708
709 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
710 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
711 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
712 btrfs_file_extent_compression(leaf, fi) ||
713 btrfs_file_extent_encryption(leaf, fi) ||
714 btrfs_file_extent_other_encoding(leaf, fi))
715 return 0;
716
717 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
718 if ((*start && *start != key.offset) || (*end && *end != extent_end))
719 return 0;
720
721 *start = key.offset;
722 *end = extent_end;
723 return 1;
724}
725
726/*
727 * Mark extent in the range start - end as written.
728 *
729 * This changes extent type from 'pre-allocated' to 'regular'. If only
730 * part of extent is marked as written, the extent will be split into
731 * two or three.
732 */
733int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
734 struct btrfs_root *root,
735 struct inode *inode, u64 start, u64 end)
736{
737 struct extent_buffer *leaf;
738 struct btrfs_path *path;
739 struct btrfs_file_extent_item *fi;
740 struct btrfs_key key;
741 u64 bytenr;
742 u64 num_bytes;
743 u64 extent_end;
744 u64 extent_offset;
745 u64 other_start;
746 u64 other_end;
747 u64 split = start;
748 u64 locked_end = end;
749 int extent_type;
750 int split_end = 1;
751 int ret;
752
753 btrfs_drop_extent_cache(inode, start, end - 1, 0);
754
755 path = btrfs_alloc_path();
756 BUG_ON(!path);
757again:
758 key.objectid = inode->i_ino;
759 key.type = BTRFS_EXTENT_DATA_KEY;
760 if (split == start)
761 key.offset = split;
762 else
763 key.offset = split - 1;
764
765 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
766 if (ret > 0 && path->slots[0] > 0)
767 path->slots[0]--;
768
769 leaf = path->nodes[0];
770 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
771 BUG_ON(key.objectid != inode->i_ino ||
772 key.type != BTRFS_EXTENT_DATA_KEY);
773 fi = btrfs_item_ptr(leaf, path->slots[0],
774 struct btrfs_file_extent_item);
775 extent_type = btrfs_file_extent_type(leaf, fi);
776 BUG_ON(extent_type != BTRFS_FILE_EXTENT_PREALLOC);
777 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
778 BUG_ON(key.offset > start || extent_end < end);
779
780 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
781 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
782 extent_offset = btrfs_file_extent_offset(leaf, fi);
783
784 if (key.offset == start)
785 split = end;
786
787 if (key.offset == start && extent_end == end) {
788 int del_nr = 0;
789 int del_slot = 0;
790 u64 leaf_owner = btrfs_header_owner(leaf);
791 u64 leaf_gen = btrfs_header_generation(leaf);
792 other_start = end;
793 other_end = 0;
794 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
795 bytenr, &other_start, &other_end)) {
796 extent_end = other_end;
797 del_slot = path->slots[0] + 1;
798 del_nr++;
799 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
800 leaf->start, leaf_owner,
801 leaf_gen, inode->i_ino, 0);
802 BUG_ON(ret);
803 }
804 other_start = 0;
805 other_end = start;
806 if (extent_mergeable(leaf, path->slots[0] - 1, inode->i_ino,
807 bytenr, &other_start, &other_end)) {
808 key.offset = other_start;
809 del_slot = path->slots[0];
810 del_nr++;
811 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
812 leaf->start, leaf_owner,
813 leaf_gen, inode->i_ino, 0);
814 BUG_ON(ret);
815 }
816 split_end = 0;
817 if (del_nr == 0) {
818 btrfs_set_file_extent_type(leaf, fi,
819 BTRFS_FILE_EXTENT_REG);
820 goto done;
821 }
822
823 fi = btrfs_item_ptr(leaf, del_slot - 1,
824 struct btrfs_file_extent_item);
825 btrfs_set_file_extent_type(leaf, fi, BTRFS_FILE_EXTENT_REG);
826 btrfs_set_file_extent_num_bytes(leaf, fi,
827 extent_end - key.offset);
828 btrfs_mark_buffer_dirty(leaf);
829
830 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
831 BUG_ON(ret);
832 goto done;
833 } else if (split == start) {
834 if (locked_end < extent_end) {
835 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
836 locked_end, extent_end - 1, GFP_NOFS);
837 if (!ret) {
838 btrfs_release_path(root, path);
839 lock_extent(&BTRFS_I(inode)->io_tree,
840 locked_end, extent_end - 1, GFP_NOFS);
841 locked_end = extent_end;
842 goto again;
843 }
844 locked_end = extent_end;
845 }
846 btrfs_set_file_extent_num_bytes(leaf, fi, split - key.offset);
847 extent_offset += split - key.offset;
848 } else {
849 BUG_ON(key.offset != start);
850 btrfs_set_file_extent_offset(leaf, fi, extent_offset +
851 split - key.offset);
852 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - split);
853 key.offset = split;
854 btrfs_set_item_key_safe(trans, root, path, &key);
855 extent_end = split;
856 }
857
858 if (extent_end == end) {
859 split_end = 0;
860 extent_type = BTRFS_FILE_EXTENT_REG;
861 }
862 if (extent_end == end && split == start) {
863 other_start = end;
864 other_end = 0;
865 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
866 bytenr, &other_start, &other_end)) {
867 path->slots[0]++;
868 fi = btrfs_item_ptr(leaf, path->slots[0],
869 struct btrfs_file_extent_item);
870 key.offset = split;
871 btrfs_set_item_key_safe(trans, root, path, &key);
872 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
873 btrfs_set_file_extent_num_bytes(leaf, fi,
874 other_end - split);
875 goto done;
876 }
877 }
878 if (extent_end == end && split == end) {
879 other_start = 0;
880 other_end = start;
881 if (extent_mergeable(leaf, path->slots[0] - 1 , inode->i_ino,
882 bytenr, &other_start, &other_end)) {
883 path->slots[0]--;
884 fi = btrfs_item_ptr(leaf, path->slots[0],
885 struct btrfs_file_extent_item);
886 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end -
887 other_start);
888 goto done;
889 }
890 }
891
892 btrfs_mark_buffer_dirty(leaf);
893 btrfs_release_path(root, path);
894
895 key.offset = start;
896 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(*fi));
897 BUG_ON(ret);
898
899 leaf = path->nodes[0];
900 fi = btrfs_item_ptr(leaf, path->slots[0],
901 struct btrfs_file_extent_item);
902 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
903 btrfs_set_file_extent_type(leaf, fi, extent_type);
904 btrfs_set_file_extent_disk_bytenr(leaf, fi, bytenr);
905 btrfs_set_file_extent_disk_num_bytes(leaf, fi, num_bytes);
906 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
907 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - key.offset);
908 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
909 btrfs_set_file_extent_compression(leaf, fi, 0);
910 btrfs_set_file_extent_encryption(leaf, fi, 0);
911 btrfs_set_file_extent_other_encoding(leaf, fi, 0);
912
913 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
914 leaf->start, root->root_key.objectid,
915 trans->transid, inode->i_ino);
916 BUG_ON(ret);
917done:
918 btrfs_mark_buffer_dirty(leaf);
919 btrfs_release_path(root, path);
920 if (split_end && split == start) {
921 split = end;
922 goto again;
923 }
924 if (locked_end > end) {
925 unlock_extent(&BTRFS_I(inode)->io_tree, end, locked_end - 1,
926 GFP_NOFS);
927 }
928 btrfs_free_path(path);
929 return 0;
930}
931
Chris Mason39279cc2007-06-12 06:35:45 -0400932/*
Chris Masond352ac62008-09-29 15:18:18 -0400933 * this gets pages into the page cache and locks them down, it also properly
934 * waits for data=ordered extents to finish before allowing the pages to be
935 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -0400936 */
Chris Masona1b32a52008-09-05 16:09:51 -0400937static int noinline prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -0500938 struct page **pages, size_t num_pages,
939 loff_t pos, unsigned long first_index,
940 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400941{
942 int i;
943 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500944 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400945 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400946 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400947 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400948
Chris Mason5f39d392007-10-15 16:14:19 -0400949 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400950 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400951
Yan Zheng9036c102008-10-30 14:19:41 -0400952 if (start_pos > inode->i_size) {
953 err = btrfs_cont_expand(inode, start_pos);
954 if (err)
955 return err;
956 }
957
Chris Mason39279cc2007-06-12 06:35:45 -0400958 memset(pages, 0, num_pages * sizeof(struct page *));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400959again:
Chris Mason39279cc2007-06-12 06:35:45 -0400960 for (i = 0; i < num_pages; i++) {
961 pages[i] = grab_cache_page(inode->i_mapping, index + i);
962 if (!pages[i]) {
963 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400964 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400965 }
Chris Masonccd467d2007-06-28 15:57:36 -0400966 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400967 }
Chris Mason07627042008-02-19 11:29:24 -0500968 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400969 struct btrfs_ordered_extent *ordered;
Chris Masond99cb302008-02-19 12:55:05 -0500970 lock_extent(&BTRFS_I(inode)->io_tree,
971 start_pos, last_pos - 1, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400972 ordered = btrfs_lookup_first_ordered_extent(inode, last_pos -1);
973 if (ordered &&
974 ordered->file_offset + ordered->len > start_pos &&
975 ordered->file_offset < last_pos) {
976 btrfs_put_ordered_extent(ordered);
977 unlock_extent(&BTRFS_I(inode)->io_tree,
978 start_pos, last_pos - 1, GFP_NOFS);
979 for (i = 0; i < num_pages; i++) {
980 unlock_page(pages[i]);
981 page_cache_release(pages[i]);
982 }
983 btrfs_wait_ordered_range(inode, start_pos,
984 last_pos - start_pos);
985 goto again;
986 }
987 if (ordered)
988 btrfs_put_ordered_extent(ordered);
989
Chris Mason07627042008-02-19 11:29:24 -0500990 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos,
991 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC,
992 GFP_NOFS);
Chris Masond99cb302008-02-19 12:55:05 -0500993 unlock_extent(&BTRFS_I(inode)->io_tree,
994 start_pos, last_pos - 1, GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500995 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400996 for (i = 0; i < num_pages; i++) {
Chris Masonf87f0572008-08-01 11:27:23 -0400997 clear_page_dirty_for_io(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400998 set_page_extent_mapped(pages[i]);
999 WARN_ON(!PageLocked(pages[i]));
1000 }
Chris Mason39279cc2007-06-12 06:35:45 -04001001 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001002}
1003
1004static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
1005 size_t count, loff_t *ppos)
1006{
1007 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001008 loff_t start_pos;
1009 ssize_t num_written = 0;
1010 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001011 int ret = 0;
Chris Mason6da6aba2007-12-18 16:15:09 -05001012 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001013 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -04001014 struct page **pages = NULL;
1015 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -04001016 struct page *pinned[2];
1017 unsigned long first_index;
1018 unsigned long last_index;
Chris Masoncb843a62008-10-03 12:30:02 -04001019 int will_write;
1020
1021 will_write = ((file->f_flags & O_SYNC) || IS_SYNC(inode) ||
1022 (file->f_flags & O_DIRECT));
Chris Mason8c2383c2007-06-18 09:57:58 -04001023
1024 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
1025 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -04001026 pinned[0] = NULL;
1027 pinned[1] = NULL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001028
Chris Mason39279cc2007-06-12 06:35:45 -04001029 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001030 start_pos = pos;
1031
Chris Mason39279cc2007-06-12 06:35:45 -04001032 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1033 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1034 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1035 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -05001036 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -04001037 if (count == 0)
Chris Mason1832a6d2007-12-21 16:27:21 -05001038 goto out_nolock;
Chris Mason2b1f55b2008-09-24 11:48:04 -04001039
Sven Wegener0ee0fda2008-07-30 16:54:26 -04001040 err = file_remove_suid(file);
Chris Mason39279cc2007-06-12 06:35:45 -04001041 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -05001042 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -04001043 file_update_time(file);
1044
Chris Mason8c2383c2007-06-18 09:57:58 -04001045 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -04001046
1047 mutex_lock(&inode->i_mutex);
1048 first_index = pos >> PAGE_CACHE_SHIFT;
1049 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
1050
1051 /*
Chris Mason409c6112008-04-22 09:24:20 -04001052 * if this is a nodatasum mount, force summing off for the inode
1053 * all the time. That way a later mount with summing on won't
1054 * get confused
1055 */
1056 if (btrfs_test_opt(root, NODATASUM))
1057 btrfs_set_flag(inode, NODATASUM);
1058
1059 /*
Chris Mason39279cc2007-06-12 06:35:45 -04001060 * there are lots of better ways to do this, but this code
1061 * makes sure the first and last page in the file range are
1062 * up to date and ready for cow
1063 */
1064 if ((pos & (PAGE_CACHE_SIZE - 1))) {
1065 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
1066 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -04001067 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -04001068 BUG_ON(ret);
1069 wait_on_page_locked(pinned[0]);
1070 } else {
1071 unlock_page(pinned[0]);
1072 }
1073 }
1074 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
1075 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
1076 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -04001077 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -04001078 BUG_ON(ret);
1079 wait_on_page_locked(pinned[1]);
1080 } else {
1081 unlock_page(pinned[1]);
1082 }
1083 }
1084
Chris Mason39279cc2007-06-12 06:35:45 -04001085 while(count > 0) {
1086 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -04001087 size_t write_bytes = min(count, nrptrs *
1088 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001089 offset);
Chris Mason39279cc2007-06-12 06:35:45 -04001090 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
1091 PAGE_CACHE_SHIFT;
1092
Chris Mason8c2383c2007-06-18 09:57:58 -04001093 WARN_ON(num_pages > nrptrs);
Chris Mason39279cc2007-06-12 06:35:45 -04001094 memset(pages, 0, sizeof(pages));
Chris Mason1832a6d2007-12-21 16:27:21 -05001095
Chris Mason1832a6d2007-12-21 16:27:21 -05001096 ret = btrfs_check_free_space(root, write_bytes, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05001097 if (ret)
1098 goto out;
1099
Chris Mason39279cc2007-06-12 06:35:45 -04001100 ret = prepare_pages(root, file, pages, num_pages,
1101 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -04001102 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001103 if (ret)
1104 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001105
Chris Mason39279cc2007-06-12 06:35:45 -04001106 ret = btrfs_copy_from_user(pos, num_pages,
1107 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -04001108 if (ret) {
1109 btrfs_drop_pages(pages, num_pages);
1110 goto out;
1111 }
Chris Mason39279cc2007-06-12 06:35:45 -04001112
1113 ret = dirty_and_release_pages(NULL, root, file, pages,
1114 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04001115 btrfs_drop_pages(pages, num_pages);
Chris Mason54aa1f42007-06-22 14:16:25 -04001116 if (ret)
1117 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001118
Chris Masoncb843a62008-10-03 12:30:02 -04001119 if (will_write) {
1120 btrfs_fdatawrite_range(inode->i_mapping, pos,
1121 pos + write_bytes - 1,
1122 WB_SYNC_NONE);
1123 } else {
1124 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1125 num_pages);
1126 if (num_pages <
1127 (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1128 btrfs_btree_balance_dirty(root, 1);
1129 btrfs_throttle(root);
1130 }
1131
Chris Mason39279cc2007-06-12 06:35:45 -04001132 buf += write_bytes;
1133 count -= write_bytes;
1134 pos += write_bytes;
1135 num_written += write_bytes;
1136
Chris Mason39279cc2007-06-12 06:35:45 -04001137 cond_resched();
1138 }
Chris Mason39279cc2007-06-12 06:35:45 -04001139out:
Chris Mason1832a6d2007-12-21 16:27:21 -05001140 mutex_unlock(&inode->i_mutex);
Chris Mason5b92ee72008-01-03 13:46:11 -05001141
Chris Mason1832a6d2007-12-21 16:27:21 -05001142out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -04001143 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -04001144 if (pinned[0])
1145 page_cache_release(pinned[0]);
1146 if (pinned[1])
1147 page_cache_release(pinned[1]);
1148 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001149
Chris Masoncb843a62008-10-03 12:30:02 -04001150 if (num_written > 0 && will_write) {
Chris Masone02119d2008-09-05 16:13:11 -04001151 struct btrfs_trans_handle *trans;
1152
Chris Masoncb843a62008-10-03 12:30:02 -04001153 err = btrfs_wait_ordered_range(inode, start_pos, num_written);
1154 if (err)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001155 num_written = err;
Chris Masone02119d2008-09-05 16:13:11 -04001156
Chris Masoncb843a62008-10-03 12:30:02 -04001157 if ((file->f_flags & O_SYNC) || IS_SYNC(inode)) {
1158 trans = btrfs_start_transaction(root, 1);
1159 ret = btrfs_log_dentry_safe(trans, root,
1160 file->f_dentry);
1161 if (ret == 0) {
1162 btrfs_sync_log(trans, root);
1163 btrfs_end_transaction(trans, root);
1164 } else {
1165 btrfs_commit_transaction(trans, root);
1166 }
Chris Masone02119d2008-09-05 16:13:11 -04001167 }
Chris Masoncb843a62008-10-03 12:30:02 -04001168 if (file->f_flags & O_DIRECT) {
1169 invalidate_mapping_pages(inode->i_mapping,
1170 start_pos >> PAGE_CACHE_SHIFT,
1171 (start_pos + num_written - 1) >> PAGE_CACHE_SHIFT);
1172 }
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001173 }
Chris Mason39279cc2007-06-12 06:35:45 -04001174 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001175 return num_written ? num_written : err;
1176}
1177
Sage Weil6bf13c02008-06-10 10:07:39 -04001178int btrfs_release_file(struct inode * inode, struct file * filp)
Mingminge1b81e62008-05-27 10:55:43 -04001179{
Sage Weil6bf13c02008-06-10 10:07:39 -04001180 if (filp->private_data)
1181 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001182 return 0;
1183}
1184
Chris Masond352ac62008-09-29 15:18:18 -04001185/*
1186 * fsync call for both files and directories. This logs the inode into
1187 * the tree log instead of forcing full commits whenever possible.
1188 *
1189 * It needs to call filemap_fdatawait so that all ordered extent updates are
1190 * in the metadata btree are up to date for copying to the log.
1191 *
1192 * It drops the inode mutex before doing the tree log commit. This is an
1193 * important optimization for directories because holding the mutex prevents
1194 * new operations on the dir while we write to disk.
1195 */
Chris Masone02119d2008-09-05 16:13:11 -04001196int btrfs_sync_file(struct file *file, struct dentry *dentry, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001197{
1198 struct inode *inode = dentry->d_inode;
1199 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001200 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001201 struct btrfs_trans_handle *trans;
1202
1203 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001204 * check the transaction that last modified this inode
1205 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001206 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001207 if (!BTRFS_I(inode)->last_trans)
1208 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001209
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001210 mutex_lock(&root->fs_info->trans_mutex);
1211 if (BTRFS_I(inode)->last_trans <=
1212 root->fs_info->last_trans_committed) {
1213 BTRFS_I(inode)->last_trans = 0;
1214 mutex_unlock(&root->fs_info->trans_mutex);
1215 goto out;
1216 }
1217 mutex_unlock(&root->fs_info->trans_mutex);
1218
Chris Mason49eb7e42008-09-11 15:53:12 -04001219 root->fs_info->tree_log_batch++;
Chris Masone02119d2008-09-05 16:13:11 -04001220 filemap_fdatawait(inode->i_mapping);
Chris Mason49eb7e42008-09-11 15:53:12 -04001221 root->fs_info->tree_log_batch++;
Chris Masone02119d2008-09-05 16:13:11 -04001222
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001223 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001224 * ok we haven't committed the transaction yet, lets do a commit
1225 */
Sage Weil6bf13c02008-06-10 10:07:39 -04001226 if (file->private_data)
1227 btrfs_ioctl_trans_end(file);
1228
Chris Mason39279cc2007-06-12 06:35:45 -04001229 trans = btrfs_start_transaction(root, 1);
1230 if (!trans) {
1231 ret = -ENOMEM;
1232 goto out;
1233 }
Chris Masone02119d2008-09-05 16:13:11 -04001234
1235 ret = btrfs_log_dentry_safe(trans, root, file->f_dentry);
Chris Mason49eb7e42008-09-11 15:53:12 -04001236 if (ret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001237 goto out;
Chris Mason49eb7e42008-09-11 15:53:12 -04001238 }
1239
1240 /* we've logged all the items and now have a consistent
1241 * version of the file in the log. It is possible that
1242 * someone will come in and modify the file, but that's
1243 * fine because the log is consistent on disk, and we
1244 * have references to all of the file's extents
1245 *
1246 * It is possible that someone will come in and log the
1247 * file again, but that will end up using the synchronization
1248 * inside btrfs_sync_log to keep things safe.
1249 */
1250 mutex_unlock(&file->f_dentry->d_inode->i_mutex);
1251
Chris Masone02119d2008-09-05 16:13:11 -04001252 if (ret > 0) {
1253 ret = btrfs_commit_transaction(trans, root);
1254 } else {
1255 btrfs_sync_log(trans, root);
1256 ret = btrfs_end_transaction(trans, root);
1257 }
Chris Mason49eb7e42008-09-11 15:53:12 -04001258 mutex_lock(&file->f_dentry->d_inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001259out:
1260 return ret > 0 ? EIO : ret;
1261}
1262
Chris Mason9ebefb182007-06-15 13:50:00 -04001263static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001264 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001265 .page_mkwrite = btrfs_page_mkwrite,
1266};
1267
1268static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1269{
1270 vma->vm_ops = &btrfs_file_vm_ops;
1271 file_accessed(filp);
1272 return 0;
1273}
1274
Chris Mason39279cc2007-06-12 06:35:45 -04001275struct file_operations btrfs_file_operations = {
1276 .llseek = generic_file_llseek,
1277 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -04001278 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001279 .splice_read = generic_file_splice_read,
Chris Mason39279cc2007-06-12 06:35:45 -04001280 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001281 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001282 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001283 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001284 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001285 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001286#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001287 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001288#endif
1289};