blob: 8a9c76aecdf30e3413512bd74ab7b09cbe51a3ff [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 Masonc8b97812008-10-29 14:49:59 -0400139 /* check for reserved extents on each page, we don't want
140 * to reset the delalloc bit on things that already have
141 * extents reserved.
Chris Masona52d9a82007-08-27 16:49:44 -0400142 */
Chris Masonc8b97812008-10-29 14:49:59 -0400143 btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block);
144 for (i = 0; i < num_pages; i++) {
145 struct page *p = pages[i];
146 SetPageUptodate(p);
147 ClearPageChecked(p);
148 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400149 }
150 if (end_pos > isize) {
151 i_size_write(inode, end_pos);
Chris Masonf597bb12009-06-27 21:06:22 -0400152 /* we've only changed i_size in ram, and we haven't updated
153 * the disk i_size. There is no need to log the inode
154 * at this time.
155 */
Chris Mason39279cc2007-06-12 06:35:45 -0400156 }
Chris Mason017e5362008-07-28 15:32:51 -0400157 err = btrfs_end_transaction(trans, root);
Chris Masona52d9a82007-08-27 16:49:44 -0400158out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500159 unlock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400160 return err;
161}
162
Chris Masond352ac62008-09-29 15:18:18 -0400163/*
164 * this drops all the extents in the cache that intersect the range
165 * [start, end]. Existing extents are split as required.
166 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400167int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
168 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400169{
170 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400171 struct extent_map *split = NULL;
172 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400173 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500174 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400175 int ret;
176 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400177 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400178 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400179
Chris Masone6dcd2d2008-07-17 12:53:50 -0400180 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400181 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500182 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400183 testend = 0;
184 }
Chris Masond3977122009-01-05 21:25:51 -0500185 while (1) {
Chris Mason3b951512008-04-17 11:29:12 -0400186 if (!split)
187 split = alloc_extent_map(GFP_NOFS);
188 if (!split2)
189 split2 = alloc_extent_map(GFP_NOFS);
190
Chris Mason890871b2009-09-02 16:24:52 -0400191 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500192 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500193 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400194 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400195 break;
Chris Masond1310b22008-01-24 16:13:08 -0500196 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400197 flags = em->flags;
198 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Chris Mason890871b2009-09-02 16:24:52 -0400199 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400200 if (em->start <= start &&
201 (!testend || em->start + em->len >= start + len)) {
202 free_extent_map(em);
203 break;
204 }
205 if (start < em->start) {
206 len = em->start - start;
207 } else {
208 len = start + len - (em->start + em->len);
209 start = em->start + em->len;
210 }
211 free_extent_map(em);
212 continue;
213 }
Chris Masonc8b97812008-10-29 14:49:59 -0400214 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400215 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400216 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400217
218 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
219 em->start < start) {
220 split->start = em->start;
221 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500222 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400223 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400224
225 if (compressed)
226 split->block_len = em->block_len;
227 else
228 split->block_len = split->len;
229
Chris Mason3b951512008-04-17 11:29:12 -0400230 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400231 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400232 ret = add_extent_mapping(em_tree, split);
233 BUG_ON(ret);
234 free_extent_map(split);
235 split = split2;
236 split2 = NULL;
237 }
238 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
239 testend && em->start + em->len > start + len) {
240 u64 diff = start + len - em->start;
241
242 split->start = start + len;
243 split->len = em->start + em->len - (start + len);
244 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400245 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400246
Chris Masonc8b97812008-10-29 14:49:59 -0400247 if (compressed) {
248 split->block_len = em->block_len;
249 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500250 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400251 } else {
252 split->block_len = split->len;
253 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500254 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400255 }
Chris Mason3b951512008-04-17 11:29:12 -0400256
257 ret = add_extent_mapping(em_tree, split);
258 BUG_ON(ret);
259 free_extent_map(split);
260 split = NULL;
261 }
Chris Mason890871b2009-09-02 16:24:52 -0400262 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500263
Chris Masona52d9a82007-08-27 16:49:44 -0400264 /* once for us */
265 free_extent_map(em);
266 /* once for the tree*/
267 free_extent_map(em);
268 }
Chris Mason3b951512008-04-17 11:29:12 -0400269 if (split)
270 free_extent_map(split);
271 if (split2)
272 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400273 return 0;
274}
275
Chris Mason39279cc2007-06-12 06:35:45 -0400276/*
277 * this is very complex, but the basic idea is to drop all extents
278 * in the range start - end. hint_block is filled in with a block number
279 * that would be a good hint to the block allocator for this file.
280 *
281 * If an extent intersects the range but is not entirely inside the range
282 * it is either truncated or split. Anything entirely inside the range
283 * is deleted from the tree.
Chris Masond352ac62008-09-29 15:18:18 -0400284 *
285 * inline_limit is used to tell this code which offsets in the file to keep
286 * if they contain inline extents.
Chris Mason39279cc2007-06-12 06:35:45 -0400287 */
Chris Masond3977122009-01-05 21:25:51 -0500288noinline int btrfs_drop_extents(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400289 struct btrfs_root *root, struct inode *inode,
Chris Masone980b502009-04-24 14:39:24 -0400290 u64 start, u64 end, u64 locked_end,
291 u64 inline_limit, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400292{
Chris Mason39279cc2007-06-12 06:35:45 -0400293 u64 extent_end = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400294 u64 search_start = start;
Chris Masonc8b97812008-10-29 14:49:59 -0400295 u64 ram_bytes = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500296 u64 disk_bytenr = 0;
Chris Masone980b502009-04-24 14:39:24 -0400297 u64 orig_locked_end = locked_end;
Chris Mason70b99e62008-10-31 12:46:39 -0400298 u8 compression;
299 u8 encryption;
Chris Masonc8b97812008-10-29 14:49:59 -0400300 u16 other_encoding = 0;
Chris Mason00f5c792007-11-30 10:09:33 -0500301 struct extent_buffer *leaf;
302 struct btrfs_file_extent_item *extent;
303 struct btrfs_path *path;
304 struct btrfs_key key;
305 struct btrfs_file_extent_item old;
306 int keep;
307 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400308 int bookend;
Yan Zhengd899e052008-10-30 14:25:28 -0400309 int found_type = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400310 int found_extent;
311 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400312 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500313 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400314
Chris Masonc8b97812008-10-29 14:49:59 -0400315 inline_limit = 0;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400316 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400317
Chris Mason39279cc2007-06-12 06:35:45 -0400318 path = btrfs_alloc_path();
319 if (!path)
320 return -ENOMEM;
Chris Masond3977122009-01-05 21:25:51 -0500321 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400322 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400323 btrfs_release_path(root, path);
324 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
325 search_start, -1);
326 if (ret < 0)
327 goto out;
328 if (ret > 0) {
329 if (path->slots[0] == 0) {
330 ret = 0;
331 goto out;
332 }
333 path->slots[0]--;
334 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400335next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400336 keep = 0;
337 bookend = 0;
338 found_extent = 0;
339 found_inline = 0;
Chris Mason70b99e62008-10-31 12:46:39 -0400340 compression = 0;
341 encryption = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400342 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400343 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400344 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400345 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400346 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan72610092008-02-05 15:40:36 -0500347 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY &&
348 key.offset >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400349 goto out;
350 }
Yan72610092008-02-05 15:40:36 -0500351 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
352 key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400353 goto out;
354 }
Chris Masonccd467d2007-06-28 15:57:36 -0400355 if (recow) {
Yan Zheng8247b412008-11-11 09:33:29 -0500356 search_start = max(key.offset, start);
Chris Masonccd467d2007-06-28 15:57:36 -0400357 continue;
358 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400359 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
360 extent = btrfs_item_ptr(leaf, slot,
361 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400362 found_type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400363 compression = btrfs_file_extent_compression(leaf,
364 extent);
365 encryption = btrfs_file_extent_encryption(leaf,
366 extent);
367 other_encoding = btrfs_file_extent_other_encoding(leaf,
368 extent);
Yan Zhengd899e052008-10-30 14:25:28 -0400369 if (found_type == BTRFS_FILE_EXTENT_REG ||
370 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500371 extent_end =
372 btrfs_file_extent_disk_bytenr(leaf,
373 extent);
374 if (extent_end)
375 *hint_byte = extent_end;
376
Chris Mason8c2383c2007-06-18 09:57:58 -0400377 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400378 btrfs_file_extent_num_bytes(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400379 ram_bytes = btrfs_file_extent_ram_bytes(leaf,
380 extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400381 found_extent = 1;
382 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
383 found_inline = 1;
384 extent_end = key.offset +
Chris Masonc8b97812008-10-29 14:49:59 -0400385 btrfs_file_extent_inline_len(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400386 }
387 } else {
388 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400389 }
390
391 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400392 if ((!found_extent && !found_inline) ||
393 search_start >= extent_end) {
394 int nextret;
395 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400396 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400397 if (slot >= nritems - 1) {
398 nextret = btrfs_next_leaf(root, path);
399 if (nextret)
400 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400401 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400402 } else {
403 path->slots[0]++;
404 }
405 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400406 }
407
Chris Masonc8b97812008-10-29 14:49:59 -0400408 if (end <= extent_end && start >= key.offset && found_inline)
Chris Mason179e29e2007-11-01 11:28:41 -0400409 *hint_byte = EXTENT_MAP_INLINE;
Zheng Yan31840ae2008-09-23 13:14:14 -0400410
411 if (found_extent) {
412 read_extent_buffer(leaf, &old, (unsigned long)extent,
413 sizeof(old));
Zheng Yan31840ae2008-09-23 13:14:14 -0400414 }
415
Chris Mason39279cc2007-06-12 06:35:45 -0400416 if (end < extent_end && end >= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400417 bookend = 1;
Yan0181e582008-01-30 14:39:54 -0500418 if (found_inline && start <= key.offset)
Chris Mason179e29e2007-11-01 11:28:41 -0400419 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400420 }
Yan Zheng66435582008-10-30 14:19:50 -0400421
Chris Mason771ed682008-11-06 22:02:51 -0500422 if (bookend && found_extent) {
423 if (locked_end < extent_end) {
424 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
425 locked_end, extent_end - 1,
426 GFP_NOFS);
427 if (!ret) {
428 btrfs_release_path(root, path);
429 lock_extent(&BTRFS_I(inode)->io_tree,
430 locked_end, extent_end - 1,
431 GFP_NOFS);
432 locked_end = extent_end;
433 continue;
434 }
Yan Zheng66435582008-10-30 14:19:50 -0400435 locked_end = extent_end;
Yan Zheng66435582008-10-30 14:19:50 -0400436 }
Chris Mason771ed682008-11-06 22:02:51 -0500437 disk_bytenr = le64_to_cpu(old.disk_bytenr);
438 if (disk_bytenr != 0) {
439 ret = btrfs_inc_extent_ref(trans, root,
440 disk_bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400441 le64_to_cpu(old.disk_num_bytes), 0,
442 root->root_key.objectid,
443 key.objectid, key.offset -
444 le64_to_cpu(old.offset));
Chris Mason771ed682008-11-06 22:02:51 -0500445 BUG_ON(ret);
446 }
Yan Zheng66435582008-10-30 14:19:50 -0400447 }
448
449 if (found_inline) {
450 u64 mask = root->sectorsize - 1;
451 search_start = (extent_end + mask) & ~mask;
452 } else
453 search_start = extent_end;
454
Chris Mason39279cc2007-06-12 06:35:45 -0400455 /* truncate existing extent */
456 if (start > key.offset) {
457 u64 new_num;
458 u64 old_num;
459 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400460 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400461 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400462 new_num = start - key.offset;
463 old_num = btrfs_file_extent_num_bytes(leaf,
464 extent);
465 *hint_byte =
466 btrfs_file_extent_disk_bytenr(leaf,
467 extent);
468 if (btrfs_file_extent_disk_bytenr(leaf,
469 extent)) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400470 inode_sub_bytes(inode, old_num -
471 new_num);
Chris Mason39279cc2007-06-12 06:35:45 -0400472 }
Chris Mason771ed682008-11-06 22:02:51 -0500473 btrfs_set_file_extent_num_bytes(leaf,
474 extent, new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400475 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500476 } else if (key.offset < inline_limit &&
477 (end > extent_end) &&
478 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400479 u32 new_size;
480 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500481 inline_limit - key.offset);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400482 inode_sub_bytes(inode, extent_end -
483 inline_limit);
Chris Mason70b99e62008-10-31 12:46:39 -0400484 btrfs_set_file_extent_ram_bytes(leaf, extent,
485 new_size);
486 if (!compression && !encryption) {
487 btrfs_truncate_item(trans, root, path,
488 new_size, 1);
489 }
Chris Mason39279cc2007-06-12 06:35:45 -0400490 }
491 }
492 /* delete the entire extent */
493 if (!keep) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400494 if (found_inline)
495 inode_sub_bytes(inode, extent_end -
496 key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400497 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400498 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400499 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -0400500 extent = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -0400501 btrfs_release_path(root, path);
502 /* the extent will be freed later */
Chris Mason39279cc2007-06-12 06:35:45 -0400503 }
Yan0181e582008-01-30 14:39:54 -0500504 if (bookend && found_inline && start <= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400505 u32 new_size;
506 new_size = btrfs_file_extent_calc_inline_size(
Yan0181e582008-01-30 14:39:54 -0500507 extent_end - end);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400508 inode_sub_bytes(inode, end - key.offset);
Chris Mason70b99e62008-10-31 12:46:39 -0400509 btrfs_set_file_extent_ram_bytes(leaf, extent,
510 new_size);
511 if (!compression && !encryption)
512 ret = btrfs_truncate_item(trans, root, path,
513 new_size, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400514 BUG_ON(ret);
Chris Mason179e29e2007-11-01 11:28:41 -0400515 }
Chris Mason39279cc2007-06-12 06:35:45 -0400516 /* create bookend, splitting the extent in two */
517 if (bookend && found_extent) {
518 struct btrfs_key ins;
519 ins.objectid = inode->i_ino;
520 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400521 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason771ed682008-11-06 22:02:51 -0500522
Chris Mason39279cc2007-06-12 06:35:45 -0400523 btrfs_release_path(root, path);
Chris Masonb9473432009-03-13 11:00:37 -0400524 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400525 ret = btrfs_insert_empty_item(trans, root, path, &ins,
526 sizeof(*extent));
Zheng Yan31840ae2008-09-23 13:14:14 -0400527 BUG_ON(ret);
Chris Mason8c2383c2007-06-18 09:57:58 -0400528
Chris Mason5f39d392007-10-15 16:14:19 -0400529 leaf = path->nodes[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400530 extent = btrfs_item_ptr(leaf, path->slots[0],
531 struct btrfs_file_extent_item);
532 write_extent_buffer(leaf, &old,
533 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400534
Chris Masonc8b97812008-10-29 14:49:59 -0400535 btrfs_set_file_extent_compression(leaf, extent,
536 compression);
537 btrfs_set_file_extent_encryption(leaf, extent,
538 encryption);
539 btrfs_set_file_extent_other_encoding(leaf, extent,
540 other_encoding);
Chris Mason5f39d392007-10-15 16:14:19 -0400541 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400542 le64_to_cpu(old.offset) + end - key.offset);
543 WARN_ON(le64_to_cpu(old.num_bytes) <
544 (extent_end - end));
545 btrfs_set_file_extent_num_bytes(leaf, extent,
546 extent_end - end);
Chris Masonc8b97812008-10-29 14:49:59 -0400547
548 /*
549 * set the ram bytes to the size of the full extent
550 * before splitting. This is a worst case flag,
551 * but its the best we can do because we don't know
552 * how splitting affects compression
553 */
554 btrfs_set_file_extent_ram_bytes(leaf, extent,
555 ram_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -0400556 btrfs_set_file_extent_type(leaf, extent, found_type);
Chris Masondb945352007-10-15 16:15:53 -0400557
Chris Masonb9473432009-03-13 11:00:37 -0400558 btrfs_unlock_up_safe(path, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400559 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masonb9473432009-03-13 11:00:37 -0400560 btrfs_set_lock_blocking(path->nodes[0]);
Zheng Yan31840ae2008-09-23 13:14:14 -0400561
Chris Masonb9473432009-03-13 11:00:37 -0400562 path->leave_spinning = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -0400563 btrfs_release_path(root, path);
Chris Masond3977122009-01-05 21:25:51 -0500564 if (disk_bytenr != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400565 inode_add_bytes(inode, extent_end - end);
Zheng Yan31840ae2008-09-23 13:14:14 -0400566 }
567
568 if (found_extent && !keep) {
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500569 u64 old_disk_bytenr = le64_to_cpu(old.disk_bytenr);
Zheng Yan31840ae2008-09-23 13:14:14 -0400570
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500571 if (old_disk_bytenr != 0) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400572 inode_sub_bytes(inode,
573 le64_to_cpu(old.num_bytes));
Zheng Yan31840ae2008-09-23 13:14:14 -0400574 ret = btrfs_free_extent(trans, root,
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500575 old_disk_bytenr,
Zheng Yan31840ae2008-09-23 13:14:14 -0400576 le64_to_cpu(old.disk_num_bytes),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400577 0, root->root_key.objectid,
578 key.objectid, key.offset -
579 le64_to_cpu(old.offset));
Zheng Yan31840ae2008-09-23 13:14:14 -0400580 BUG_ON(ret);
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500581 *hint_byte = old_disk_bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -0400582 }
583 }
584
585 if (search_start >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400586 ret = 0;
587 goto out;
588 }
589 }
590out:
591 btrfs_free_path(path);
Chris Masone980b502009-04-24 14:39:24 -0400592 if (locked_end > orig_locked_end) {
593 unlock_extent(&BTRFS_I(inode)->io_tree, orig_locked_end,
594 locked_end - 1, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -0400595 }
Chris Mason39279cc2007-06-12 06:35:45 -0400596 return ret;
597}
598
Yan Zhengd899e052008-10-30 14:25:28 -0400599static int extent_mergeable(struct extent_buffer *leaf, int slot,
600 u64 objectid, u64 bytenr, u64 *start, u64 *end)
601{
602 struct btrfs_file_extent_item *fi;
603 struct btrfs_key key;
604 u64 extent_end;
605
606 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
607 return 0;
608
609 btrfs_item_key_to_cpu(leaf, &key, slot);
610 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
611 return 0;
612
613 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
614 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
615 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
616 btrfs_file_extent_compression(leaf, fi) ||
617 btrfs_file_extent_encryption(leaf, fi) ||
618 btrfs_file_extent_other_encoding(leaf, fi))
619 return 0;
620
621 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
622 if ((*start && *start != key.offset) || (*end && *end != extent_end))
623 return 0;
624
625 *start = key.offset;
626 *end = extent_end;
627 return 1;
628}
629
630/*
631 * Mark extent in the range start - end as written.
632 *
633 * This changes extent type from 'pre-allocated' to 'regular'. If only
634 * part of extent is marked as written, the extent will be split into
635 * two or three.
636 */
637int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
638 struct btrfs_root *root,
639 struct inode *inode, u64 start, u64 end)
640{
641 struct extent_buffer *leaf;
642 struct btrfs_path *path;
643 struct btrfs_file_extent_item *fi;
644 struct btrfs_key key;
645 u64 bytenr;
646 u64 num_bytes;
647 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400648 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -0400649 u64 other_start;
650 u64 other_end;
651 u64 split = start;
652 u64 locked_end = end;
653 int extent_type;
654 int split_end = 1;
655 int ret;
656
657 btrfs_drop_extent_cache(inode, start, end - 1, 0);
658
659 path = btrfs_alloc_path();
660 BUG_ON(!path);
661again:
662 key.objectid = inode->i_ino;
663 key.type = BTRFS_EXTENT_DATA_KEY;
664 if (split == start)
665 key.offset = split;
666 else
667 key.offset = split - 1;
668
669 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
670 if (ret > 0 && path->slots[0] > 0)
671 path->slots[0]--;
672
673 leaf = path->nodes[0];
674 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
675 BUG_ON(key.objectid != inode->i_ino ||
676 key.type != BTRFS_EXTENT_DATA_KEY);
677 fi = btrfs_item_ptr(leaf, path->slots[0],
678 struct btrfs_file_extent_item);
679 extent_type = btrfs_file_extent_type(leaf, fi);
680 BUG_ON(extent_type != BTRFS_FILE_EXTENT_PREALLOC);
681 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
682 BUG_ON(key.offset > start || extent_end < end);
683
684 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
685 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400686 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -0400687
688 if (key.offset == start)
689 split = end;
690
691 if (key.offset == start && extent_end == end) {
692 int del_nr = 0;
693 int del_slot = 0;
Yan Zhengd899e052008-10-30 14:25:28 -0400694 other_start = end;
695 other_end = 0;
696 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
697 bytenr, &other_start, &other_end)) {
698 extent_end = other_end;
699 del_slot = path->slots[0] + 1;
700 del_nr++;
701 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400702 0, root->root_key.objectid,
703 inode->i_ino, orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400704 BUG_ON(ret);
705 }
706 other_start = 0;
707 other_end = start;
708 if (extent_mergeable(leaf, path->slots[0] - 1, inode->i_ino,
709 bytenr, &other_start, &other_end)) {
710 key.offset = other_start;
711 del_slot = path->slots[0];
712 del_nr++;
713 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400714 0, root->root_key.objectid,
715 inode->i_ino, orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400716 BUG_ON(ret);
717 }
718 split_end = 0;
719 if (del_nr == 0) {
720 btrfs_set_file_extent_type(leaf, fi,
721 BTRFS_FILE_EXTENT_REG);
722 goto done;
723 }
724
725 fi = btrfs_item_ptr(leaf, del_slot - 1,
726 struct btrfs_file_extent_item);
727 btrfs_set_file_extent_type(leaf, fi, BTRFS_FILE_EXTENT_REG);
728 btrfs_set_file_extent_num_bytes(leaf, fi,
729 extent_end - key.offset);
730 btrfs_mark_buffer_dirty(leaf);
731
732 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
733 BUG_ON(ret);
Chris Mason546888d2009-04-21 11:53:38 -0400734 goto release;
Yan Zhengd899e052008-10-30 14:25:28 -0400735 } else if (split == start) {
736 if (locked_end < extent_end) {
737 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
738 locked_end, extent_end - 1, GFP_NOFS);
739 if (!ret) {
740 btrfs_release_path(root, path);
741 lock_extent(&BTRFS_I(inode)->io_tree,
742 locked_end, extent_end - 1, GFP_NOFS);
743 locked_end = extent_end;
744 goto again;
745 }
746 locked_end = extent_end;
747 }
748 btrfs_set_file_extent_num_bytes(leaf, fi, split - key.offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400749 } else {
750 BUG_ON(key.offset != start);
Yan Zhengd899e052008-10-30 14:25:28 -0400751 key.offset = split;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400752 btrfs_set_file_extent_offset(leaf, fi, key.offset -
753 orig_offset);
754 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -0400755 btrfs_set_item_key_safe(trans, root, path, &key);
756 extent_end = split;
757 }
758
759 if (extent_end == end) {
760 split_end = 0;
761 extent_type = BTRFS_FILE_EXTENT_REG;
762 }
763 if (extent_end == end && split == start) {
764 other_start = end;
765 other_end = 0;
766 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
767 bytenr, &other_start, &other_end)) {
768 path->slots[0]++;
769 fi = btrfs_item_ptr(leaf, path->slots[0],
770 struct btrfs_file_extent_item);
771 key.offset = split;
772 btrfs_set_item_key_safe(trans, root, path, &key);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400773 btrfs_set_file_extent_offset(leaf, fi, key.offset -
774 orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400775 btrfs_set_file_extent_num_bytes(leaf, fi,
776 other_end - split);
777 goto done;
778 }
779 }
780 if (extent_end == end && split == end) {
781 other_start = 0;
782 other_end = start;
783 if (extent_mergeable(leaf, path->slots[0] - 1 , inode->i_ino,
784 bytenr, &other_start, &other_end)) {
785 path->slots[0]--;
786 fi = btrfs_item_ptr(leaf, path->slots[0],
787 struct btrfs_file_extent_item);
788 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end -
789 other_start);
790 goto done;
791 }
792 }
793
794 btrfs_mark_buffer_dirty(leaf);
Yan Zhengc36047d2008-11-12 14:19:50 -0500795
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400796 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
797 root->root_key.objectid,
798 inode->i_ino, orig_offset);
Yan Zhengc36047d2008-11-12 14:19:50 -0500799 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -0400800 btrfs_release_path(root, path);
801
802 key.offset = start;
803 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(*fi));
804 BUG_ON(ret);
805
806 leaf = path->nodes[0];
807 fi = btrfs_item_ptr(leaf, path->slots[0],
808 struct btrfs_file_extent_item);
809 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
810 btrfs_set_file_extent_type(leaf, fi, extent_type);
811 btrfs_set_file_extent_disk_bytenr(leaf, fi, bytenr);
812 btrfs_set_file_extent_disk_num_bytes(leaf, fi, num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400813 btrfs_set_file_extent_offset(leaf, fi, key.offset - orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400814 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - key.offset);
815 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
816 btrfs_set_file_extent_compression(leaf, fi, 0);
817 btrfs_set_file_extent_encryption(leaf, fi, 0);
818 btrfs_set_file_extent_other_encoding(leaf, fi, 0);
Yan Zhengd899e052008-10-30 14:25:28 -0400819done:
820 btrfs_mark_buffer_dirty(leaf);
Chris Mason546888d2009-04-21 11:53:38 -0400821
822release:
Yan Zhengd899e052008-10-30 14:25:28 -0400823 btrfs_release_path(root, path);
824 if (split_end && split == start) {
825 split = end;
826 goto again;
827 }
828 if (locked_end > end) {
829 unlock_extent(&BTRFS_I(inode)->io_tree, end, locked_end - 1,
830 GFP_NOFS);
831 }
832 btrfs_free_path(path);
833 return 0;
834}
835
Chris Mason39279cc2007-06-12 06:35:45 -0400836/*
Chris Masond352ac62008-09-29 15:18:18 -0400837 * this gets pages into the page cache and locks them down, it also properly
838 * waits for data=ordered extents to finish before allowing the pages to be
839 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -0400840 */
Chris Masond3977122009-01-05 21:25:51 -0500841static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -0500842 struct page **pages, size_t num_pages,
843 loff_t pos, unsigned long first_index,
844 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400845{
846 int i;
847 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500848 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400849 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400850 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400851 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400852
Chris Mason5f39d392007-10-15 16:14:19 -0400853 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400854 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400855
Yan Zheng9036c102008-10-30 14:19:41 -0400856 if (start_pos > inode->i_size) {
857 err = btrfs_cont_expand(inode, start_pos);
858 if (err)
859 return err;
860 }
861
Chris Mason39279cc2007-06-12 06:35:45 -0400862 memset(pages, 0, num_pages * sizeof(struct page *));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400863again:
Chris Mason39279cc2007-06-12 06:35:45 -0400864 for (i = 0; i < num_pages; i++) {
865 pages[i] = grab_cache_page(inode->i_mapping, index + i);
866 if (!pages[i]) {
867 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400868 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400869 }
Chris Masonccd467d2007-06-28 15:57:36 -0400870 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400871 }
Chris Mason07627042008-02-19 11:29:24 -0500872 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400873 struct btrfs_ordered_extent *ordered;
Chris Masond99cb302008-02-19 12:55:05 -0500874 lock_extent(&BTRFS_I(inode)->io_tree,
875 start_pos, last_pos - 1, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500876 ordered = btrfs_lookup_first_ordered_extent(inode,
877 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400878 if (ordered &&
879 ordered->file_offset + ordered->len > start_pos &&
880 ordered->file_offset < last_pos) {
881 btrfs_put_ordered_extent(ordered);
882 unlock_extent(&BTRFS_I(inode)->io_tree,
883 start_pos, last_pos - 1, GFP_NOFS);
884 for (i = 0; i < num_pages; i++) {
885 unlock_page(pages[i]);
886 page_cache_release(pages[i]);
887 }
888 btrfs_wait_ordered_range(inode, start_pos,
889 last_pos - start_pos);
890 goto again;
891 }
892 if (ordered)
893 btrfs_put_ordered_extent(ordered);
894
Chris Mason07627042008-02-19 11:29:24 -0500895 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos,
896 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC,
897 GFP_NOFS);
Chris Masond99cb302008-02-19 12:55:05 -0500898 unlock_extent(&BTRFS_I(inode)->io_tree,
899 start_pos, last_pos - 1, GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500900 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400901 for (i = 0; i < num_pages; i++) {
Chris Masonf87f0572008-08-01 11:27:23 -0400902 clear_page_dirty_for_io(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400903 set_page_extent_mapped(pages[i]);
904 WARN_ON(!PageLocked(pages[i]));
905 }
Chris Mason39279cc2007-06-12 06:35:45 -0400906 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400907}
908
909static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
910 size_t count, loff_t *ppos)
911{
912 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400913 loff_t start_pos;
914 ssize_t num_written = 0;
915 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400916 int ret = 0;
Chris Mason6da6aba2007-12-18 16:15:09 -0500917 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400918 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -0400919 struct page **pages = NULL;
920 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -0400921 struct page *pinned[2];
922 unsigned long first_index;
923 unsigned long last_index;
Chris Masoncb843a62008-10-03 12:30:02 -0400924 int will_write;
925
926 will_write = ((file->f_flags & O_SYNC) || IS_SYNC(inode) ||
927 (file->f_flags & O_DIRECT));
Chris Mason8c2383c2007-06-18 09:57:58 -0400928
929 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
930 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -0400931 pinned[0] = NULL;
932 pinned[1] = NULL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400933
Chris Mason39279cc2007-06-12 06:35:45 -0400934 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400935 start_pos = pos;
936
Chris Mason39279cc2007-06-12 06:35:45 -0400937 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
938 current->backing_dev_info = inode->i_mapping->backing_dev_info;
939 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
940 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500941 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400942 if (count == 0)
Chris Mason1832a6d2007-12-21 16:27:21 -0500943 goto out_nolock;
Chris Mason2b1f55b2008-09-24 11:48:04 -0400944
Sven Wegener0ee0fda2008-07-30 16:54:26 -0400945 err = file_remove_suid(file);
Chris Mason39279cc2007-06-12 06:35:45 -0400946 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500947 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400948 file_update_time(file);
949
Chris Mason8c2383c2007-06-18 09:57:58 -0400950 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400951
952 mutex_lock(&inode->i_mutex);
Chris Masonc3027eb2008-12-08 16:40:21 -0500953 BTRFS_I(inode)->sequence++;
Chris Mason39279cc2007-06-12 06:35:45 -0400954 first_index = pos >> PAGE_CACHE_SHIFT;
955 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
956
957 /*
958 * there are lots of better ways to do this, but this code
959 * makes sure the first and last page in the file range are
960 * up to date and ready for cow
961 */
962 if ((pos & (PAGE_CACHE_SIZE - 1))) {
963 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
964 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400965 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400966 BUG_ON(ret);
967 wait_on_page_locked(pinned[0]);
968 } else {
969 unlock_page(pinned[0]);
970 }
971 }
972 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
973 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
974 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400975 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400976 BUG_ON(ret);
977 wait_on_page_locked(pinned[1]);
978 } else {
979 unlock_page(pinned[1]);
980 }
981 }
982
Chris Masond3977122009-01-05 21:25:51 -0500983 while (count > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400984 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400985 size_t write_bytes = min(count, nrptrs *
986 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400987 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400988 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
989 PAGE_CACHE_SHIFT;
990
Chris Mason8c2383c2007-06-18 09:57:58 -0400991 WARN_ON(num_pages > nrptrs);
yanhai zhu9aead432009-01-05 15:49:11 -0500992 memset(pages, 0, sizeof(struct page *) * nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -0500993
Josef Bacik6a632092009-02-20 11:00:09 -0500994 ret = btrfs_check_data_free_space(root, inode, write_bytes);
Chris Mason1832a6d2007-12-21 16:27:21 -0500995 if (ret)
996 goto out;
997
Chris Mason39279cc2007-06-12 06:35:45 -0400998 ret = prepare_pages(root, file, pages, num_pages,
999 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -04001000 write_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001001 if (ret) {
1002 btrfs_free_reserved_data_space(root, inode,
1003 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001004 goto out;
Josef Bacik6a632092009-02-20 11:00:09 -05001005 }
Chris Mason39279cc2007-06-12 06:35:45 -04001006
Chris Mason39279cc2007-06-12 06:35:45 -04001007 ret = btrfs_copy_from_user(pos, num_pages,
1008 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -04001009 if (ret) {
Josef Bacik6a632092009-02-20 11:00:09 -05001010 btrfs_free_reserved_data_space(root, inode,
1011 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001012 btrfs_drop_pages(pages, num_pages);
1013 goto out;
1014 }
Chris Mason39279cc2007-06-12 06:35:45 -04001015
1016 ret = dirty_and_release_pages(NULL, root, file, pages,
1017 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04001018 btrfs_drop_pages(pages, num_pages);
Josef Bacik6a632092009-02-20 11:00:09 -05001019 if (ret) {
1020 btrfs_free_reserved_data_space(root, inode,
1021 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001022 goto out;
Josef Bacik6a632092009-02-20 11:00:09 -05001023 }
Chris Mason39279cc2007-06-12 06:35:45 -04001024
Chris Masoncb843a62008-10-03 12:30:02 -04001025 if (will_write) {
1026 btrfs_fdatawrite_range(inode->i_mapping, pos,
1027 pos + write_bytes - 1,
Chris Masond313d7a2009-04-20 15:50:09 -04001028 WB_SYNC_ALL);
Chris Masoncb843a62008-10-03 12:30:02 -04001029 } else {
1030 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1031 num_pages);
1032 if (num_pages <
1033 (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1034 btrfs_btree_balance_dirty(root, 1);
1035 btrfs_throttle(root);
1036 }
1037
Chris Mason39279cc2007-06-12 06:35:45 -04001038 buf += write_bytes;
1039 count -= write_bytes;
1040 pos += write_bytes;
1041 num_written += write_bytes;
1042
Chris Mason39279cc2007-06-12 06:35:45 -04001043 cond_resched();
1044 }
Chris Mason39279cc2007-06-12 06:35:45 -04001045out:
Chris Mason1832a6d2007-12-21 16:27:21 -05001046 mutex_unlock(&inode->i_mutex);
Josef Bacik6a632092009-02-20 11:00:09 -05001047 if (ret)
1048 err = ret;
Chris Mason5b92ee72008-01-03 13:46:11 -05001049
Chris Mason1832a6d2007-12-21 16:27:21 -05001050out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -04001051 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -04001052 if (pinned[0])
1053 page_cache_release(pinned[0]);
1054 if (pinned[1])
1055 page_cache_release(pinned[1]);
1056 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001057
Chris Mason5a3f23d2009-03-31 13:27:11 -04001058 /*
1059 * we want to make sure fsync finds this change
1060 * but we haven't joined a transaction running right now.
1061 *
1062 * Later on, someone is sure to update the inode and get the
1063 * real transid recorded.
1064 *
1065 * We set last_trans now to the fs_info generation + 1,
1066 * this will either be one more than the running transaction
1067 * or the generation used for the next transaction if there isn't
1068 * one running right now.
1069 */
1070 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
1071
Chris Masoncb843a62008-10-03 12:30:02 -04001072 if (num_written > 0 && will_write) {
Chris Masone02119d2008-09-05 16:13:11 -04001073 struct btrfs_trans_handle *trans;
1074
Chris Masoncb843a62008-10-03 12:30:02 -04001075 err = btrfs_wait_ordered_range(inode, start_pos, num_written);
1076 if (err)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001077 num_written = err;
Chris Masone02119d2008-09-05 16:13:11 -04001078
Chris Masoncb843a62008-10-03 12:30:02 -04001079 if ((file->f_flags & O_SYNC) || IS_SYNC(inode)) {
1080 trans = btrfs_start_transaction(root, 1);
1081 ret = btrfs_log_dentry_safe(trans, root,
1082 file->f_dentry);
1083 if (ret == 0) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001084 ret = btrfs_sync_log(trans, root);
1085 if (ret == 0)
1086 btrfs_end_transaction(trans, root);
1087 else
1088 btrfs_commit_transaction(trans, root);
Chris Masoncb843a62008-10-03 12:30:02 -04001089 } else {
1090 btrfs_commit_transaction(trans, root);
1091 }
Chris Masone02119d2008-09-05 16:13:11 -04001092 }
Chris Masoncb843a62008-10-03 12:30:02 -04001093 if (file->f_flags & O_DIRECT) {
1094 invalidate_mapping_pages(inode->i_mapping,
1095 start_pos >> PAGE_CACHE_SHIFT,
1096 (start_pos + num_written - 1) >> PAGE_CACHE_SHIFT);
1097 }
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001098 }
Chris Mason39279cc2007-06-12 06:35:45 -04001099 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001100 return num_written ? num_written : err;
1101}
1102
Chris Masond3977122009-01-05 21:25:51 -05001103int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001104{
Chris Mason5a3f23d2009-03-31 13:27:11 -04001105 /*
1106 * ordered_data_close is set by settattr when we are about to truncate
1107 * a file from a non-zero size to a zero size. This tries to
1108 * flush down new bytes that may have been written if the
1109 * application were using truncate to replace a file in place.
1110 */
1111 if (BTRFS_I(inode)->ordered_data_close) {
1112 BTRFS_I(inode)->ordered_data_close = 0;
1113 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1114 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1115 filemap_flush(inode->i_mapping);
1116 }
Sage Weil6bf13c02008-06-10 10:07:39 -04001117 if (filp->private_data)
1118 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001119 return 0;
1120}
1121
Chris Masond352ac62008-09-29 15:18:18 -04001122/*
1123 * fsync call for both files and directories. This logs the inode into
1124 * the tree log instead of forcing full commits whenever possible.
1125 *
1126 * It needs to call filemap_fdatawait so that all ordered extent updates are
1127 * in the metadata btree are up to date for copying to the log.
1128 *
1129 * It drops the inode mutex before doing the tree log commit. This is an
1130 * important optimization for directories because holding the mutex prevents
1131 * new operations on the dir while we write to disk.
1132 */
Chris Masone02119d2008-09-05 16:13:11 -04001133int btrfs_sync_file(struct file *file, struct dentry *dentry, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001134{
1135 struct inode *inode = dentry->d_inode;
1136 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001137 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001138 struct btrfs_trans_handle *trans;
1139
1140 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001141 * check the transaction that last modified this inode
1142 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001143 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001144 if (!BTRFS_I(inode)->last_trans)
1145 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001146
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001147 mutex_lock(&root->fs_info->trans_mutex);
1148 if (BTRFS_I(inode)->last_trans <=
1149 root->fs_info->last_trans_committed) {
1150 BTRFS_I(inode)->last_trans = 0;
1151 mutex_unlock(&root->fs_info->trans_mutex);
1152 goto out;
1153 }
1154 mutex_unlock(&root->fs_info->trans_mutex);
1155
Yan Zheng7237f182009-01-21 12:54:03 -05001156 root->log_batch++;
Chris Mason580afd72008-12-08 19:15:39 -05001157 filemap_fdatawrite(inode->i_mapping);
1158 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Yan Zheng7237f182009-01-21 12:54:03 -05001159 root->log_batch++;
Chris Masone02119d2008-09-05 16:13:11 -04001160
Hisashi Hifumi524724e2009-06-10 11:13:17 -04001161 if (datasync && !(inode->i_state & I_DIRTY_PAGES))
1162 goto out;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001163 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001164 * ok we haven't committed the transaction yet, lets do a commit
1165 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001166 if (file && file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001167 btrfs_ioctl_trans_end(file);
1168
Chris Mason39279cc2007-06-12 06:35:45 -04001169 trans = btrfs_start_transaction(root, 1);
1170 if (!trans) {
1171 ret = -ENOMEM;
1172 goto out;
1173 }
Chris Masone02119d2008-09-05 16:13:11 -04001174
Chris Mason2cfbd502009-02-20 10:55:10 -05001175 ret = btrfs_log_dentry_safe(trans, root, dentry);
Chris Masond3977122009-01-05 21:25:51 -05001176 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04001177 goto out;
Chris Mason49eb7e42008-09-11 15:53:12 -04001178
1179 /* we've logged all the items and now have a consistent
1180 * version of the file in the log. It is possible that
1181 * someone will come in and modify the file, but that's
1182 * fine because the log is consistent on disk, and we
1183 * have references to all of the file's extents
1184 *
1185 * It is possible that someone will come in and log the
1186 * file again, but that will end up using the synchronization
1187 * inside btrfs_sync_log to keep things safe.
1188 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001189 mutex_unlock(&dentry->d_inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001190
Chris Masone02119d2008-09-05 16:13:11 -04001191 if (ret > 0) {
1192 ret = btrfs_commit_transaction(trans, root);
1193 } else {
Chris Mason12fcfd22009-03-24 10:24:20 -04001194 ret = btrfs_sync_log(trans, root);
1195 if (ret == 0)
1196 ret = btrfs_end_transaction(trans, root);
1197 else
1198 ret = btrfs_commit_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001199 }
Chris Mason2cfbd502009-02-20 10:55:10 -05001200 mutex_lock(&dentry->d_inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001201out:
1202 return ret > 0 ? EIO : ret;
1203}
1204
Chris Mason9ebefb182007-06-15 13:50:00 -04001205static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001206 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001207 .page_mkwrite = btrfs_page_mkwrite,
1208};
1209
1210static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1211{
1212 vma->vm_ops = &btrfs_file_vm_ops;
1213 file_accessed(filp);
1214 return 0;
1215}
1216
Chris Mason39279cc2007-06-12 06:35:45 -04001217struct file_operations btrfs_file_operations = {
1218 .llseek = generic_file_llseek,
1219 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -04001220 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001221 .splice_read = generic_file_splice_read,
Chris Mason39279cc2007-06-12 06:35:45 -04001222 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001223 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001224 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001225 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001226 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001227 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001228#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001229 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001230#endif
1231};