blob: f19e1259a971d52d62a9979ba311d3f136289e05 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason39279cc2007-06-12 06:35:45 -040019#include <linux/fs.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/time.h>
23#include <linux/init.h>
24#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040025#include <linux/backing-dev.h>
26#include <linux/mpage.h>
27#include <linux/swap.h>
28#include <linux/writeback.h>
29#include <linux/statfs.h>
30#include <linux/compat.h>
31#include "ctree.h"
32#include "disk-io.h"
33#include "transaction.h"
34#include "btrfs_inode.h"
35#include "ioctl.h"
36#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040037#include "tree-log.h"
38#include "locking.h"
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -040039#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040040
41
Chris Masond352ac62008-09-29 15:18:18 -040042/* simple helper to fault in pages and copy. This should go away
43 * and be replaced with calls into generic code.
44 */
Chris Masond3977122009-01-05 21:25:51 -050045static noinline int btrfs_copy_from_user(loff_t pos, int num_pages,
Chris Masona1b32a52008-09-05 16:09:51 -040046 int write_bytes,
47 struct page **prepared_pages,
Chris Masond3977122009-01-05 21:25:51 -050048 const char __user *buf)
Chris Mason39279cc2007-06-12 06:35:45 -040049{
50 long page_fault = 0;
51 int i;
52 int offset = pos & (PAGE_CACHE_SIZE - 1);
53
54 for (i = 0; i < num_pages && write_bytes > 0; i++, offset = 0) {
55 size_t count = min_t(size_t,
56 PAGE_CACHE_SIZE - offset, write_bytes);
57 struct page *page = prepared_pages[i];
58 fault_in_pages_readable(buf, count);
59
60 /* Copy data from userspace to the current page */
61 kmap(page);
62 page_fault = __copy_from_user(page_address(page) + offset,
63 buf, count);
64 /* Flush processor's dcache for this page */
65 flush_dcache_page(page);
66 kunmap(page);
67 buf += count;
68 write_bytes -= count;
69
70 if (page_fault)
71 break;
72 }
73 return page_fault ? -EFAULT : 0;
74}
75
Chris Masond352ac62008-09-29 15:18:18 -040076/*
77 * unlocks pages after btrfs_file_write is done with them
78 */
Chris Masond3977122009-01-05 21:25:51 -050079static noinline void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -040080{
81 size_t i;
82 for (i = 0; i < num_pages; i++) {
83 if (!pages[i])
84 break;
Chris Masond352ac62008-09-29 15:18:18 -040085 /* page checked is some magic around finding pages that
86 * have been modified without going through btrfs_set_page_dirty
87 * clear it here
88 */
Chris Mason4a096752008-07-21 10:29:44 -040089 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -040090 unlock_page(pages[i]);
91 mark_page_accessed(pages[i]);
92 page_cache_release(pages[i]);
93 }
94}
95
Chris Masond352ac62008-09-29 15:18:18 -040096/*
97 * after copy_from_user, pages need to be dirtied and we need to make
98 * sure holes are created between the current EOF and the start of
99 * any next extents (if required).
100 *
101 * this also makes the decision about creating an inline extent vs
102 * doing real data extents, marking pages dirty and delalloc as required.
103 */
Chris Masond3977122009-01-05 21:25:51 -0500104static noinline int dirty_and_release_pages(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400105 struct btrfs_root *root,
106 struct file *file,
107 struct page **pages,
108 size_t num_pages,
109 loff_t pos,
110 size_t write_bytes)
111{
Chris Mason39279cc2007-06-12 06:35:45 -0400112 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400113 int i;
Chris Mason6da6aba2007-12-18 16:15:09 -0500114 struct inode *inode = fdentry(file)->d_inode;
Chris Masondb945352007-10-15 16:15:53 -0400115 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400116 u64 start_pos;
117 u64 end_of_last_block;
118 u64 end_pos = pos + write_bytes;
119 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400120
Chris Mason5f39d392007-10-15 16:14:19 -0400121 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400122 num_bytes = (write_bytes + pos - start_pos +
123 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400124
Chris Masondb945352007-10-15 16:15:53 -0400125 end_of_last_block = start_pos + num_bytes - 1;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400126 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block);
127 if (err)
128 return err;
129
Chris Masonc8b97812008-10-29 14:49:59 -0400130 for (i = 0; i < num_pages; i++) {
131 struct page *p = pages[i];
132 SetPageUptodate(p);
133 ClearPageChecked(p);
134 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400135 }
136 if (end_pos > isize) {
137 i_size_write(inode, end_pos);
Chris Masonf597bb12009-06-27 21:06:22 -0400138 /* we've only changed i_size in ram, and we haven't updated
139 * the disk i_size. There is no need to log the inode
140 * at this time.
141 */
Chris Mason39279cc2007-06-12 06:35:45 -0400142 }
Chris Mason39279cc2007-06-12 06:35:45 -0400143 return err;
144}
145
Chris Masond352ac62008-09-29 15:18:18 -0400146/*
147 * this drops all the extents in the cache that intersect the range
148 * [start, end]. Existing extents are split as required.
149 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400150int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
151 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400152{
153 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400154 struct extent_map *split = NULL;
155 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400156 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500157 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400158 int ret;
159 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400160 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400161 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400162
Chris Masone6dcd2d2008-07-17 12:53:50 -0400163 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400164 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500165 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400166 testend = 0;
167 }
Chris Masond3977122009-01-05 21:25:51 -0500168 while (1) {
Chris Mason3b951512008-04-17 11:29:12 -0400169 if (!split)
170 split = alloc_extent_map(GFP_NOFS);
171 if (!split2)
172 split2 = alloc_extent_map(GFP_NOFS);
173
Chris Mason890871b2009-09-02 16:24:52 -0400174 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500175 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500176 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400177 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400178 break;
Chris Masond1310b22008-01-24 16:13:08 -0500179 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400180 flags = em->flags;
181 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400182 if (em->start <= start &&
183 (!testend || em->start + em->len >= start + len)) {
184 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400185 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400186 break;
187 }
188 if (start < em->start) {
189 len = em->start - start;
190 } else {
191 len = start + len - (em->start + em->len);
192 start = em->start + em->len;
193 }
194 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400195 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400196 continue;
197 }
Chris Masonc8b97812008-10-29 14:49:59 -0400198 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400199 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400200 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400201
202 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
203 em->start < start) {
204 split->start = em->start;
205 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500206 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400207 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400208
209 if (compressed)
210 split->block_len = em->block_len;
211 else
212 split->block_len = split->len;
213
Chris Mason3b951512008-04-17 11:29:12 -0400214 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400215 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400216 ret = add_extent_mapping(em_tree, split);
217 BUG_ON(ret);
218 free_extent_map(split);
219 split = split2;
220 split2 = NULL;
221 }
222 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
223 testend && em->start + em->len > start + len) {
224 u64 diff = start + len - em->start;
225
226 split->start = start + len;
227 split->len = em->start + em->len - (start + len);
228 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400229 split->flags = flags;
Chris Mason3b951512008-04-17 11:29:12 -0400230
Chris Masonc8b97812008-10-29 14:49:59 -0400231 if (compressed) {
232 split->block_len = em->block_len;
233 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500234 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400235 } else {
236 split->block_len = split->len;
237 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500238 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400239 }
Chris Mason3b951512008-04-17 11:29:12 -0400240
241 ret = add_extent_mapping(em_tree, split);
242 BUG_ON(ret);
243 free_extent_map(split);
244 split = NULL;
245 }
Chris Mason890871b2009-09-02 16:24:52 -0400246 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500247
Chris Masona52d9a82007-08-27 16:49:44 -0400248 /* once for us */
249 free_extent_map(em);
250 /* once for the tree*/
251 free_extent_map(em);
252 }
Chris Mason3b951512008-04-17 11:29:12 -0400253 if (split)
254 free_extent_map(split);
255 if (split2)
256 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400257 return 0;
258}
259
Chris Mason39279cc2007-06-12 06:35:45 -0400260/*
261 * this is very complex, but the basic idea is to drop all extents
262 * in the range start - end. hint_block is filled in with a block number
263 * that would be a good hint to the block allocator for this file.
264 *
265 * If an extent intersects the range but is not entirely inside the range
266 * it is either truncated or split. Anything entirely inside the range
267 * is deleted from the tree.
Chris Masond352ac62008-09-29 15:18:18 -0400268 *
269 * inline_limit is used to tell this code which offsets in the file to keep
270 * if they contain inline extents.
Chris Mason39279cc2007-06-12 06:35:45 -0400271 */
Chris Masond3977122009-01-05 21:25:51 -0500272noinline int btrfs_drop_extents(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400273 struct btrfs_root *root, struct inode *inode,
Chris Masone980b502009-04-24 14:39:24 -0400274 u64 start, u64 end, u64 locked_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400275 u64 inline_limit, u64 *hint_byte, int drop_cache)
Chris Mason39279cc2007-06-12 06:35:45 -0400276{
Chris Mason39279cc2007-06-12 06:35:45 -0400277 u64 extent_end = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400278 u64 search_start = start;
Chris Masonc8b97812008-10-29 14:49:59 -0400279 u64 ram_bytes = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500280 u64 disk_bytenr = 0;
Chris Masone980b502009-04-24 14:39:24 -0400281 u64 orig_locked_end = locked_end;
Chris Mason70b99e62008-10-31 12:46:39 -0400282 u8 compression;
283 u8 encryption;
Chris Masonc8b97812008-10-29 14:49:59 -0400284 u16 other_encoding = 0;
Chris Mason00f5c792007-11-30 10:09:33 -0500285 struct extent_buffer *leaf;
286 struct btrfs_file_extent_item *extent;
287 struct btrfs_path *path;
288 struct btrfs_key key;
289 struct btrfs_file_extent_item old;
290 int keep;
291 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400292 int bookend;
Yan Zhengd899e052008-10-30 14:25:28 -0400293 int found_type = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400294 int found_extent;
295 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400296 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500297 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400298
Chris Masonc8b97812008-10-29 14:49:59 -0400299 inline_limit = 0;
Chris Masona1ed8352009-09-11 12:27:37 -0400300 if (drop_cache)
301 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400302
Chris Mason39279cc2007-06-12 06:35:45 -0400303 path = btrfs_alloc_path();
304 if (!path)
305 return -ENOMEM;
Chris Masond3977122009-01-05 21:25:51 -0500306 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400307 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400308 btrfs_release_path(root, path);
309 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
310 search_start, -1);
311 if (ret < 0)
312 goto out;
313 if (ret > 0) {
314 if (path->slots[0] == 0) {
315 ret = 0;
316 goto out;
317 }
318 path->slots[0]--;
319 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400320next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400321 keep = 0;
322 bookend = 0;
323 found_extent = 0;
324 found_inline = 0;
Chris Mason70b99e62008-10-31 12:46:39 -0400325 compression = 0;
326 encryption = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400327 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400328 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400329 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400330 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400331 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan72610092008-02-05 15:40:36 -0500332 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY &&
333 key.offset >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400334 goto out;
335 }
Yan72610092008-02-05 15:40:36 -0500336 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
337 key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400338 goto out;
339 }
Chris Masonccd467d2007-06-28 15:57:36 -0400340 if (recow) {
Yan Zheng8247b412008-11-11 09:33:29 -0500341 search_start = max(key.offset, start);
Chris Masonccd467d2007-06-28 15:57:36 -0400342 continue;
343 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400344 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
345 extent = btrfs_item_ptr(leaf, slot,
346 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400347 found_type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400348 compression = btrfs_file_extent_compression(leaf,
349 extent);
350 encryption = btrfs_file_extent_encryption(leaf,
351 extent);
352 other_encoding = btrfs_file_extent_other_encoding(leaf,
353 extent);
Yan Zhengd899e052008-10-30 14:25:28 -0400354 if (found_type == BTRFS_FILE_EXTENT_REG ||
355 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500356 extent_end =
357 btrfs_file_extent_disk_bytenr(leaf,
358 extent);
359 if (extent_end)
360 *hint_byte = extent_end;
361
Chris Mason8c2383c2007-06-18 09:57:58 -0400362 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400363 btrfs_file_extent_num_bytes(leaf, extent);
Chris Masonc8b97812008-10-29 14:49:59 -0400364 ram_bytes = btrfs_file_extent_ram_bytes(leaf,
365 extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400366 found_extent = 1;
367 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
368 found_inline = 1;
369 extent_end = key.offset +
Chris Masonc8b97812008-10-29 14:49:59 -0400370 btrfs_file_extent_inline_len(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400371 }
372 } else {
373 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400374 }
375
376 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400377 if ((!found_extent && !found_inline) ||
378 search_start >= extent_end) {
379 int nextret;
380 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400381 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400382 if (slot >= nritems - 1) {
383 nextret = btrfs_next_leaf(root, path);
384 if (nextret)
385 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400386 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400387 } else {
388 path->slots[0]++;
389 }
390 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400391 }
392
Chris Masonc8b97812008-10-29 14:49:59 -0400393 if (end <= extent_end && start >= key.offset && found_inline)
Chris Mason179e29e2007-11-01 11:28:41 -0400394 *hint_byte = EXTENT_MAP_INLINE;
Zheng Yan31840ae2008-09-23 13:14:14 -0400395
396 if (found_extent) {
397 read_extent_buffer(leaf, &old, (unsigned long)extent,
398 sizeof(old));
Zheng Yan31840ae2008-09-23 13:14:14 -0400399 }
400
Chris Mason39279cc2007-06-12 06:35:45 -0400401 if (end < extent_end && end >= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400402 bookend = 1;
Yan0181e582008-01-30 14:39:54 -0500403 if (found_inline && start <= key.offset)
Chris Mason179e29e2007-11-01 11:28:41 -0400404 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400405 }
Yan Zheng66435582008-10-30 14:19:50 -0400406
Chris Mason771ed682008-11-06 22:02:51 -0500407 if (bookend && found_extent) {
408 if (locked_end < extent_end) {
409 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
410 locked_end, extent_end - 1,
411 GFP_NOFS);
412 if (!ret) {
413 btrfs_release_path(root, path);
414 lock_extent(&BTRFS_I(inode)->io_tree,
415 locked_end, extent_end - 1,
416 GFP_NOFS);
417 locked_end = extent_end;
418 continue;
419 }
Yan Zheng66435582008-10-30 14:19:50 -0400420 locked_end = extent_end;
Yan Zheng66435582008-10-30 14:19:50 -0400421 }
Chris Mason771ed682008-11-06 22:02:51 -0500422 disk_bytenr = le64_to_cpu(old.disk_bytenr);
423 if (disk_bytenr != 0) {
424 ret = btrfs_inc_extent_ref(trans, root,
425 disk_bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400426 le64_to_cpu(old.disk_num_bytes), 0,
427 root->root_key.objectid,
428 key.objectid, key.offset -
429 le64_to_cpu(old.offset));
Chris Mason771ed682008-11-06 22:02:51 -0500430 BUG_ON(ret);
431 }
Yan Zheng66435582008-10-30 14:19:50 -0400432 }
433
434 if (found_inline) {
435 u64 mask = root->sectorsize - 1;
436 search_start = (extent_end + mask) & ~mask;
437 } else
438 search_start = extent_end;
439
Chris Mason39279cc2007-06-12 06:35:45 -0400440 /* truncate existing extent */
441 if (start > key.offset) {
442 u64 new_num;
443 u64 old_num;
444 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400445 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400446 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400447 new_num = start - key.offset;
448 old_num = btrfs_file_extent_num_bytes(leaf,
449 extent);
450 *hint_byte =
451 btrfs_file_extent_disk_bytenr(leaf,
452 extent);
453 if (btrfs_file_extent_disk_bytenr(leaf,
454 extent)) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400455 inode_sub_bytes(inode, old_num -
456 new_num);
Chris Mason39279cc2007-06-12 06:35:45 -0400457 }
Chris Mason771ed682008-11-06 22:02:51 -0500458 btrfs_set_file_extent_num_bytes(leaf,
459 extent, new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400460 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500461 } else if (key.offset < inline_limit &&
462 (end > extent_end) &&
463 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400464 u32 new_size;
465 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500466 inline_limit - key.offset);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400467 inode_sub_bytes(inode, extent_end -
468 inline_limit);
Chris Mason70b99e62008-10-31 12:46:39 -0400469 btrfs_set_file_extent_ram_bytes(leaf, extent,
470 new_size);
471 if (!compression && !encryption) {
472 btrfs_truncate_item(trans, root, path,
473 new_size, 1);
474 }
Chris Mason39279cc2007-06-12 06:35:45 -0400475 }
476 }
477 /* delete the entire extent */
478 if (!keep) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400479 if (found_inline)
480 inode_sub_bytes(inode, extent_end -
481 key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400482 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400483 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400484 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -0400485 extent = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -0400486 btrfs_release_path(root, path);
487 /* the extent will be freed later */
Chris Mason39279cc2007-06-12 06:35:45 -0400488 }
Yan0181e582008-01-30 14:39:54 -0500489 if (bookend && found_inline && start <= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400490 u32 new_size;
491 new_size = btrfs_file_extent_calc_inline_size(
Yan0181e582008-01-30 14:39:54 -0500492 extent_end - end);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400493 inode_sub_bytes(inode, end - key.offset);
Chris Mason70b99e62008-10-31 12:46:39 -0400494 btrfs_set_file_extent_ram_bytes(leaf, extent,
495 new_size);
496 if (!compression && !encryption)
497 ret = btrfs_truncate_item(trans, root, path,
498 new_size, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400499 BUG_ON(ret);
Chris Mason179e29e2007-11-01 11:28:41 -0400500 }
Chris Mason39279cc2007-06-12 06:35:45 -0400501 /* create bookend, splitting the extent in two */
502 if (bookend && found_extent) {
503 struct btrfs_key ins;
504 ins.objectid = inode->i_ino;
505 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400506 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason771ed682008-11-06 22:02:51 -0500507
Chris Mason39279cc2007-06-12 06:35:45 -0400508 btrfs_release_path(root, path);
Chris Masonb9473432009-03-13 11:00:37 -0400509 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400510 ret = btrfs_insert_empty_item(trans, root, path, &ins,
511 sizeof(*extent));
Zheng Yan31840ae2008-09-23 13:14:14 -0400512 BUG_ON(ret);
Chris Mason8c2383c2007-06-18 09:57:58 -0400513
Chris Mason5f39d392007-10-15 16:14:19 -0400514 leaf = path->nodes[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400515 extent = btrfs_item_ptr(leaf, path->slots[0],
516 struct btrfs_file_extent_item);
517 write_extent_buffer(leaf, &old,
518 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400519
Chris Masonc8b97812008-10-29 14:49:59 -0400520 btrfs_set_file_extent_compression(leaf, extent,
521 compression);
522 btrfs_set_file_extent_encryption(leaf, extent,
523 encryption);
524 btrfs_set_file_extent_other_encoding(leaf, extent,
525 other_encoding);
Chris Mason5f39d392007-10-15 16:14:19 -0400526 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400527 le64_to_cpu(old.offset) + end - key.offset);
528 WARN_ON(le64_to_cpu(old.num_bytes) <
529 (extent_end - end));
530 btrfs_set_file_extent_num_bytes(leaf, extent,
531 extent_end - end);
Chris Masonc8b97812008-10-29 14:49:59 -0400532
533 /*
534 * set the ram bytes to the size of the full extent
535 * before splitting. This is a worst case flag,
536 * but its the best we can do because we don't know
537 * how splitting affects compression
538 */
539 btrfs_set_file_extent_ram_bytes(leaf, extent,
540 ram_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -0400541 btrfs_set_file_extent_type(leaf, extent, found_type);
Chris Masondb945352007-10-15 16:15:53 -0400542
Chris Masonb9473432009-03-13 11:00:37 -0400543 btrfs_unlock_up_safe(path, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400544 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masonb9473432009-03-13 11:00:37 -0400545 btrfs_set_lock_blocking(path->nodes[0]);
Zheng Yan31840ae2008-09-23 13:14:14 -0400546
Chris Masonb9473432009-03-13 11:00:37 -0400547 path->leave_spinning = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -0400548 btrfs_release_path(root, path);
Chris Masond3977122009-01-05 21:25:51 -0500549 if (disk_bytenr != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400550 inode_add_bytes(inode, extent_end - end);
Zheng Yan31840ae2008-09-23 13:14:14 -0400551 }
552
553 if (found_extent && !keep) {
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500554 u64 old_disk_bytenr = le64_to_cpu(old.disk_bytenr);
Zheng Yan31840ae2008-09-23 13:14:14 -0400555
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500556 if (old_disk_bytenr != 0) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400557 inode_sub_bytes(inode,
558 le64_to_cpu(old.num_bytes));
Zheng Yan31840ae2008-09-23 13:14:14 -0400559 ret = btrfs_free_extent(trans, root,
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500560 old_disk_bytenr,
Zheng Yan31840ae2008-09-23 13:14:14 -0400561 le64_to_cpu(old.disk_num_bytes),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400562 0, root->root_key.objectid,
563 key.objectid, key.offset -
564 le64_to_cpu(old.offset));
Zheng Yan31840ae2008-09-23 13:14:14 -0400565 BUG_ON(ret);
Christoph Hellwig6e430f92008-12-02 06:36:09 -0500566 *hint_byte = old_disk_bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -0400567 }
568 }
569
570 if (search_start >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400571 ret = 0;
572 goto out;
573 }
574 }
575out:
576 btrfs_free_path(path);
Chris Masone980b502009-04-24 14:39:24 -0400577 if (locked_end > orig_locked_end) {
578 unlock_extent(&BTRFS_I(inode)->io_tree, orig_locked_end,
579 locked_end - 1, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -0400580 }
Chris Mason39279cc2007-06-12 06:35:45 -0400581 return ret;
582}
583
Yan Zhengd899e052008-10-30 14:25:28 -0400584static int extent_mergeable(struct extent_buffer *leaf, int slot,
585 u64 objectid, u64 bytenr, u64 *start, u64 *end)
586{
587 struct btrfs_file_extent_item *fi;
588 struct btrfs_key key;
589 u64 extent_end;
590
591 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
592 return 0;
593
594 btrfs_item_key_to_cpu(leaf, &key, slot);
595 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
596 return 0;
597
598 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
599 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
600 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
601 btrfs_file_extent_compression(leaf, fi) ||
602 btrfs_file_extent_encryption(leaf, fi) ||
603 btrfs_file_extent_other_encoding(leaf, fi))
604 return 0;
605
606 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
607 if ((*start && *start != key.offset) || (*end && *end != extent_end))
608 return 0;
609
610 *start = key.offset;
611 *end = extent_end;
612 return 1;
613}
614
615/*
616 * Mark extent in the range start - end as written.
617 *
618 * This changes extent type from 'pre-allocated' to 'regular'. If only
619 * part of extent is marked as written, the extent will be split into
620 * two or three.
621 */
622int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
623 struct btrfs_root *root,
624 struct inode *inode, u64 start, u64 end)
625{
626 struct extent_buffer *leaf;
627 struct btrfs_path *path;
628 struct btrfs_file_extent_item *fi;
629 struct btrfs_key key;
630 u64 bytenr;
631 u64 num_bytes;
632 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400633 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -0400634 u64 other_start;
635 u64 other_end;
636 u64 split = start;
637 u64 locked_end = end;
638 int extent_type;
639 int split_end = 1;
640 int ret;
641
642 btrfs_drop_extent_cache(inode, start, end - 1, 0);
643
644 path = btrfs_alloc_path();
645 BUG_ON(!path);
646again:
647 key.objectid = inode->i_ino;
648 key.type = BTRFS_EXTENT_DATA_KEY;
649 if (split == start)
650 key.offset = split;
651 else
652 key.offset = split - 1;
653
654 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
655 if (ret > 0 && path->slots[0] > 0)
656 path->slots[0]--;
657
658 leaf = path->nodes[0];
659 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
660 BUG_ON(key.objectid != inode->i_ino ||
661 key.type != BTRFS_EXTENT_DATA_KEY);
662 fi = btrfs_item_ptr(leaf, path->slots[0],
663 struct btrfs_file_extent_item);
664 extent_type = btrfs_file_extent_type(leaf, fi);
665 BUG_ON(extent_type != BTRFS_FILE_EXTENT_PREALLOC);
666 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
667 BUG_ON(key.offset > start || extent_end < end);
668
669 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
670 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400671 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -0400672
673 if (key.offset == start)
674 split = end;
675
676 if (key.offset == start && extent_end == end) {
677 int del_nr = 0;
678 int del_slot = 0;
Yan Zhengd899e052008-10-30 14:25:28 -0400679 other_start = end;
680 other_end = 0;
681 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
682 bytenr, &other_start, &other_end)) {
683 extent_end = other_end;
684 del_slot = path->slots[0] + 1;
685 del_nr++;
686 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400687 0, root->root_key.objectid,
688 inode->i_ino, orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400689 BUG_ON(ret);
690 }
691 other_start = 0;
692 other_end = start;
693 if (extent_mergeable(leaf, path->slots[0] - 1, inode->i_ino,
694 bytenr, &other_start, &other_end)) {
695 key.offset = other_start;
696 del_slot = path->slots[0];
697 del_nr++;
698 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400699 0, root->root_key.objectid,
700 inode->i_ino, orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400701 BUG_ON(ret);
702 }
703 split_end = 0;
704 if (del_nr == 0) {
705 btrfs_set_file_extent_type(leaf, fi,
706 BTRFS_FILE_EXTENT_REG);
707 goto done;
708 }
709
710 fi = btrfs_item_ptr(leaf, del_slot - 1,
711 struct btrfs_file_extent_item);
712 btrfs_set_file_extent_type(leaf, fi, BTRFS_FILE_EXTENT_REG);
713 btrfs_set_file_extent_num_bytes(leaf, fi,
714 extent_end - key.offset);
715 btrfs_mark_buffer_dirty(leaf);
716
717 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
718 BUG_ON(ret);
Chris Mason546888d2009-04-21 11:53:38 -0400719 goto release;
Yan Zhengd899e052008-10-30 14:25:28 -0400720 } else if (split == start) {
721 if (locked_end < extent_end) {
722 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
723 locked_end, extent_end - 1, GFP_NOFS);
724 if (!ret) {
725 btrfs_release_path(root, path);
726 lock_extent(&BTRFS_I(inode)->io_tree,
727 locked_end, extent_end - 1, GFP_NOFS);
728 locked_end = extent_end;
729 goto again;
730 }
731 locked_end = extent_end;
732 }
733 btrfs_set_file_extent_num_bytes(leaf, fi, split - key.offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400734 } else {
735 BUG_ON(key.offset != start);
Yan Zhengd899e052008-10-30 14:25:28 -0400736 key.offset = split;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400737 btrfs_set_file_extent_offset(leaf, fi, key.offset -
738 orig_offset);
739 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -0400740 btrfs_set_item_key_safe(trans, root, path, &key);
741 extent_end = split;
742 }
743
744 if (extent_end == end) {
745 split_end = 0;
746 extent_type = BTRFS_FILE_EXTENT_REG;
747 }
748 if (extent_end == end && split == start) {
749 other_start = end;
750 other_end = 0;
751 if (extent_mergeable(leaf, path->slots[0] + 1, inode->i_ino,
752 bytenr, &other_start, &other_end)) {
753 path->slots[0]++;
754 fi = btrfs_item_ptr(leaf, path->slots[0],
755 struct btrfs_file_extent_item);
756 key.offset = split;
757 btrfs_set_item_key_safe(trans, root, path, &key);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400758 btrfs_set_file_extent_offset(leaf, fi, key.offset -
759 orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400760 btrfs_set_file_extent_num_bytes(leaf, fi,
761 other_end - split);
762 goto done;
763 }
764 }
765 if (extent_end == end && split == end) {
766 other_start = 0;
767 other_end = start;
768 if (extent_mergeable(leaf, path->slots[0] - 1 , inode->i_ino,
769 bytenr, &other_start, &other_end)) {
770 path->slots[0]--;
771 fi = btrfs_item_ptr(leaf, path->slots[0],
772 struct btrfs_file_extent_item);
773 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end -
774 other_start);
775 goto done;
776 }
777 }
778
779 btrfs_mark_buffer_dirty(leaf);
Yan Zhengc36047d2008-11-12 14:19:50 -0500780
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400781 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
782 root->root_key.objectid,
783 inode->i_ino, orig_offset);
Yan Zhengc36047d2008-11-12 14:19:50 -0500784 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -0400785 btrfs_release_path(root, path);
786
787 key.offset = start;
788 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(*fi));
789 BUG_ON(ret);
790
791 leaf = path->nodes[0];
792 fi = btrfs_item_ptr(leaf, path->slots[0],
793 struct btrfs_file_extent_item);
794 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
795 btrfs_set_file_extent_type(leaf, fi, extent_type);
796 btrfs_set_file_extent_disk_bytenr(leaf, fi, bytenr);
797 btrfs_set_file_extent_disk_num_bytes(leaf, fi, num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400798 btrfs_set_file_extent_offset(leaf, fi, key.offset - orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400799 btrfs_set_file_extent_num_bytes(leaf, fi, extent_end - key.offset);
800 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
801 btrfs_set_file_extent_compression(leaf, fi, 0);
802 btrfs_set_file_extent_encryption(leaf, fi, 0);
803 btrfs_set_file_extent_other_encoding(leaf, fi, 0);
Yan Zhengd899e052008-10-30 14:25:28 -0400804done:
805 btrfs_mark_buffer_dirty(leaf);
Chris Mason546888d2009-04-21 11:53:38 -0400806
807release:
Yan Zhengd899e052008-10-30 14:25:28 -0400808 btrfs_release_path(root, path);
809 if (split_end && split == start) {
810 split = end;
811 goto again;
812 }
813 if (locked_end > end) {
814 unlock_extent(&BTRFS_I(inode)->io_tree, end, locked_end - 1,
815 GFP_NOFS);
816 }
817 btrfs_free_path(path);
818 return 0;
819}
820
Chris Mason39279cc2007-06-12 06:35:45 -0400821/*
Chris Masond352ac62008-09-29 15:18:18 -0400822 * this gets pages into the page cache and locks them down, it also properly
823 * waits for data=ordered extents to finish before allowing the pages to be
824 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -0400825 */
Chris Masond3977122009-01-05 21:25:51 -0500826static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -0500827 struct page **pages, size_t num_pages,
828 loff_t pos, unsigned long first_index,
829 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400830{
831 int i;
832 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500833 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400834 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400835 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400836 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400837
Chris Mason5f39d392007-10-15 16:14:19 -0400838 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400839 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400840
Yan Zheng9036c102008-10-30 14:19:41 -0400841 if (start_pos > inode->i_size) {
842 err = btrfs_cont_expand(inode, start_pos);
843 if (err)
844 return err;
845 }
846
Chris Mason39279cc2007-06-12 06:35:45 -0400847 memset(pages, 0, num_pages * sizeof(struct page *));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400848again:
Chris Mason39279cc2007-06-12 06:35:45 -0400849 for (i = 0; i < num_pages; i++) {
850 pages[i] = grab_cache_page(inode->i_mapping, index + i);
851 if (!pages[i]) {
852 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400853 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400854 }
Chris Masonccd467d2007-06-28 15:57:36 -0400855 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400856 }
Chris Mason07627042008-02-19 11:29:24 -0500857 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400858 struct btrfs_ordered_extent *ordered;
Chris Masond99cb302008-02-19 12:55:05 -0500859 lock_extent(&BTRFS_I(inode)->io_tree,
860 start_pos, last_pos - 1, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500861 ordered = btrfs_lookup_first_ordered_extent(inode,
862 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400863 if (ordered &&
864 ordered->file_offset + ordered->len > start_pos &&
865 ordered->file_offset < last_pos) {
866 btrfs_put_ordered_extent(ordered);
867 unlock_extent(&BTRFS_I(inode)->io_tree,
868 start_pos, last_pos - 1, GFP_NOFS);
869 for (i = 0; i < num_pages; i++) {
870 unlock_page(pages[i]);
871 page_cache_release(pages[i]);
872 }
873 btrfs_wait_ordered_range(inode, start_pos,
874 last_pos - start_pos);
875 goto again;
876 }
877 if (ordered)
878 btrfs_put_ordered_extent(ordered);
879
Chris Mason07627042008-02-19 11:29:24 -0500880 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos,
881 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC,
882 GFP_NOFS);
Chris Masond99cb302008-02-19 12:55:05 -0500883 unlock_extent(&BTRFS_I(inode)->io_tree,
884 start_pos, last_pos - 1, GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500885 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400886 for (i = 0; i < num_pages; i++) {
Chris Masonf87f0572008-08-01 11:27:23 -0400887 clear_page_dirty_for_io(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400888 set_page_extent_mapped(pages[i]);
889 WARN_ON(!PageLocked(pages[i]));
890 }
Chris Mason39279cc2007-06-12 06:35:45 -0400891 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400892}
893
894static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
895 size_t count, loff_t *ppos)
896{
897 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400898 loff_t start_pos;
899 ssize_t num_written = 0;
900 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400901 int ret = 0;
Chris Mason6da6aba2007-12-18 16:15:09 -0500902 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400903 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -0400904 struct page **pages = NULL;
905 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -0400906 struct page *pinned[2];
907 unsigned long first_index;
908 unsigned long last_index;
Chris Masoncb843a62008-10-03 12:30:02 -0400909 int will_write;
910
911 will_write = ((file->f_flags & O_SYNC) || IS_SYNC(inode) ||
912 (file->f_flags & O_DIRECT));
Chris Mason8c2383c2007-06-18 09:57:58 -0400913
914 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
915 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -0400916 pinned[0] = NULL;
917 pinned[1] = NULL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400918
Chris Mason39279cc2007-06-12 06:35:45 -0400919 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400920 start_pos = pos;
921
Chris Mason39279cc2007-06-12 06:35:45 -0400922 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
Chris Mason2b1f55b2008-09-24 11:48:04 -0400923
Chris Masonab93dbe2009-10-01 12:29:10 -0400924 /* do the reserve before the mutex lock in case we have to do some
925 * flushing. We wouldn't deadlock, but this is more polite.
926 */
Josef Bacik9ed74f22009-09-11 16:12:44 -0400927 err = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
928 if (err)
929 goto out_nolock;
930
Chris Masonab93dbe2009-10-01 12:29:10 -0400931 mutex_lock(&inode->i_mutex);
932
Chris Mason1832a6d2007-12-21 16:27:21 -0500933 current->backing_dev_info = inode->i_mapping->backing_dev_info;
Chris Mason39279cc2007-06-12 06:35:45 -0400934 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
Chris Mason1832a6d2007-12-21 16:27:21 -0500935 if (err)
Chris Masonab93dbe2009-10-01 12:29:10 -0400936 goto out;
937
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -0400938 if (count == 0)
Chris Masonab93dbe2009-10-01 12:29:10 -0400939 goto out;
Sven Wegener0ee0fda2008-07-30 16:54:26 -0400940
941 err = file_remove_suid(file);
Chris Mason39279cc2007-06-12 06:35:45 -0400942 if (err)
Chris Masonab93dbe2009-10-01 12:29:10 -0400943 goto out;
944
Chris Mason39279cc2007-06-12 06:35:45 -0400945 file_update_time(file);
946
Chris Mason8c2383c2007-06-18 09:57:58 -0400947 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400948
Chris Masonab93dbe2009-10-01 12:29:10 -0400949 /* generic_write_checks can change our pos */
950 start_pos = pos;
951
Chris Masonc3027eb2008-12-08 16:40:21 -0500952 BTRFS_I(inode)->sequence++;
Chris Mason39279cc2007-06-12 06:35:45 -0400953 first_index = pos >> PAGE_CACHE_SHIFT;
954 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
955
956 /*
957 * there are lots of better ways to do this, but this code
958 * makes sure the first and last page in the file range are
959 * up to date and ready for cow
960 */
961 if ((pos & (PAGE_CACHE_SIZE - 1))) {
962 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
963 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400964 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400965 BUG_ON(ret);
966 wait_on_page_locked(pinned[0]);
967 } else {
968 unlock_page(pinned[0]);
969 }
970 }
971 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
972 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
973 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400974 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400975 BUG_ON(ret);
976 wait_on_page_locked(pinned[1]);
977 } else {
978 unlock_page(pinned[1]);
979 }
980 }
981
Chris Masond3977122009-01-05 21:25:51 -0500982 while (count > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400983 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400984 size_t write_bytes = min(count, nrptrs *
985 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400986 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400987 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
988 PAGE_CACHE_SHIFT;
989
Chris Mason8c2383c2007-06-18 09:57:58 -0400990 WARN_ON(num_pages > nrptrs);
yanhai zhu9aead432009-01-05 15:49:11 -0500991 memset(pages, 0, sizeof(struct page *) * nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -0500992
Josef Bacik6a632092009-02-20 11:00:09 -0500993 ret = btrfs_check_data_free_space(root, inode, write_bytes);
Chris Mason1832a6d2007-12-21 16:27:21 -0500994 if (ret)
995 goto out;
996
Chris Mason39279cc2007-06-12 06:35:45 -0400997 ret = prepare_pages(root, file, pages, num_pages,
998 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400999 write_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001000 if (ret) {
1001 btrfs_free_reserved_data_space(root, inode,
1002 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001003 goto out;
Josef Bacik6a632092009-02-20 11:00:09 -05001004 }
Chris Mason39279cc2007-06-12 06:35:45 -04001005
Chris Mason39279cc2007-06-12 06:35:45 -04001006 ret = btrfs_copy_from_user(pos, num_pages,
1007 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -04001008 if (ret) {
Josef Bacik6a632092009-02-20 11:00:09 -05001009 btrfs_free_reserved_data_space(root, inode,
1010 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001011 btrfs_drop_pages(pages, num_pages);
1012 goto out;
1013 }
Chris Mason39279cc2007-06-12 06:35:45 -04001014
1015 ret = dirty_and_release_pages(NULL, root, file, pages,
1016 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04001017 btrfs_drop_pages(pages, num_pages);
Josef Bacik6a632092009-02-20 11:00:09 -05001018 if (ret) {
1019 btrfs_free_reserved_data_space(root, inode,
1020 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -04001021 goto out;
Josef Bacik6a632092009-02-20 11:00:09 -05001022 }
Chris Mason39279cc2007-06-12 06:35:45 -04001023
Chris Masoncb843a62008-10-03 12:30:02 -04001024 if (will_write) {
Christoph Hellwig8aa38c32009-10-01 12:58:30 -04001025 filemap_fdatawrite_range(inode->i_mapping, pos,
1026 pos + write_bytes - 1);
Chris Masoncb843a62008-10-03 12:30:02 -04001027 } else {
1028 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1029 num_pages);
1030 if (num_pages <
1031 (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1032 btrfs_btree_balance_dirty(root, 1);
1033 btrfs_throttle(root);
1034 }
1035
Chris Mason39279cc2007-06-12 06:35:45 -04001036 buf += write_bytes;
1037 count -= write_bytes;
1038 pos += write_bytes;
1039 num_written += write_bytes;
1040
Chris Mason39279cc2007-06-12 06:35:45 -04001041 cond_resched();
1042 }
Chris Mason39279cc2007-06-12 06:35:45 -04001043out:
Chris Mason1832a6d2007-12-21 16:27:21 -05001044 mutex_unlock(&inode->i_mutex);
Josef Bacik6a632092009-02-20 11:00:09 -05001045 if (ret)
1046 err = ret;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001047 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason5b92ee72008-01-03 13:46:11 -05001048
Chris Mason1832a6d2007-12-21 16:27:21 -05001049out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -04001050 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -04001051 if (pinned[0])
1052 page_cache_release(pinned[0]);
1053 if (pinned[1])
1054 page_cache_release(pinned[1]);
1055 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001056
Chris Mason5a3f23d2009-03-31 13:27:11 -04001057 /*
1058 * we want to make sure fsync finds this change
1059 * but we haven't joined a transaction running right now.
1060 *
1061 * Later on, someone is sure to update the inode and get the
1062 * real transid recorded.
1063 *
1064 * We set last_trans now to the fs_info generation + 1,
1065 * this will either be one more than the running transaction
1066 * or the generation used for the next transaction if there isn't
1067 * one running right now.
1068 */
1069 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
1070
Chris Masoncb843a62008-10-03 12:30:02 -04001071 if (num_written > 0 && will_write) {
Chris Masone02119d2008-09-05 16:13:11 -04001072 struct btrfs_trans_handle *trans;
1073
Chris Masoncb843a62008-10-03 12:30:02 -04001074 err = btrfs_wait_ordered_range(inode, start_pos, num_written);
1075 if (err)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001076 num_written = err;
Chris Masone02119d2008-09-05 16:13:11 -04001077
Chris Masoncb843a62008-10-03 12:30:02 -04001078 if ((file->f_flags & O_SYNC) || IS_SYNC(inode)) {
1079 trans = btrfs_start_transaction(root, 1);
1080 ret = btrfs_log_dentry_safe(trans, root,
1081 file->f_dentry);
1082 if (ret == 0) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001083 ret = btrfs_sync_log(trans, root);
1084 if (ret == 0)
1085 btrfs_end_transaction(trans, root);
1086 else
1087 btrfs_commit_transaction(trans, root);
Chris Masoncb843a62008-10-03 12:30:02 -04001088 } else {
1089 btrfs_commit_transaction(trans, root);
1090 }
Chris Masone02119d2008-09-05 16:13:11 -04001091 }
Chris Masoncb843a62008-10-03 12:30:02 -04001092 if (file->f_flags & O_DIRECT) {
1093 invalidate_mapping_pages(inode->i_mapping,
1094 start_pos >> PAGE_CACHE_SHIFT,
1095 (start_pos + num_written - 1) >> PAGE_CACHE_SHIFT);
1096 }
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001097 }
Chris Mason39279cc2007-06-12 06:35:45 -04001098 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001099 return num_written ? num_written : err;
1100}
1101
Chris Masond3977122009-01-05 21:25:51 -05001102int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001103{
Chris Mason5a3f23d2009-03-31 13:27:11 -04001104 /*
1105 * ordered_data_close is set by settattr when we are about to truncate
1106 * a file from a non-zero size to a zero size. This tries to
1107 * flush down new bytes that may have been written if the
1108 * application were using truncate to replace a file in place.
1109 */
1110 if (BTRFS_I(inode)->ordered_data_close) {
1111 BTRFS_I(inode)->ordered_data_close = 0;
1112 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1113 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1114 filemap_flush(inode->i_mapping);
1115 }
Sage Weil6bf13c02008-06-10 10:07:39 -04001116 if (filp->private_data)
1117 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001118 return 0;
1119}
1120
Chris Masond352ac62008-09-29 15:18:18 -04001121/*
1122 * fsync call for both files and directories. This logs the inode into
1123 * the tree log instead of forcing full commits whenever possible.
1124 *
1125 * It needs to call filemap_fdatawait so that all ordered extent updates are
1126 * in the metadata btree are up to date for copying to the log.
1127 *
1128 * It drops the inode mutex before doing the tree log commit. This is an
1129 * important optimization for directories because holding the mutex prevents
1130 * new operations on the dir while we write to disk.
1131 */
Chris Masone02119d2008-09-05 16:13:11 -04001132int btrfs_sync_file(struct file *file, struct dentry *dentry, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001133{
1134 struct inode *inode = dentry->d_inode;
1135 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001136 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001137 struct btrfs_trans_handle *trans;
1138
1139 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001140 * check the transaction that last modified this inode
1141 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001142 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001143 if (!BTRFS_I(inode)->last_trans)
1144 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001145
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001146 mutex_lock(&root->fs_info->trans_mutex);
1147 if (BTRFS_I(inode)->last_trans <=
1148 root->fs_info->last_trans_committed) {
1149 BTRFS_I(inode)->last_trans = 0;
1150 mutex_unlock(&root->fs_info->trans_mutex);
1151 goto out;
1152 }
1153 mutex_unlock(&root->fs_info->trans_mutex);
1154
Yan Zheng7237f182009-01-21 12:54:03 -05001155 root->log_batch++;
Chris Mason580afd72008-12-08 19:15:39 -05001156 filemap_fdatawrite(inode->i_mapping);
1157 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Yan Zheng7237f182009-01-21 12:54:03 -05001158 root->log_batch++;
Chris Masone02119d2008-09-05 16:13:11 -04001159
Hisashi Hifumi524724e2009-06-10 11:13:17 -04001160 if (datasync && !(inode->i_state & I_DIRTY_PAGES))
1161 goto out;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001162 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001163 * ok we haven't committed the transaction yet, lets do a commit
1164 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001165 if (file && file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001166 btrfs_ioctl_trans_end(file);
1167
Chris Mason39279cc2007-06-12 06:35:45 -04001168 trans = btrfs_start_transaction(root, 1);
1169 if (!trans) {
1170 ret = -ENOMEM;
1171 goto out;
1172 }
Chris Masone02119d2008-09-05 16:13:11 -04001173
Chris Mason2cfbd502009-02-20 10:55:10 -05001174 ret = btrfs_log_dentry_safe(trans, root, dentry);
Chris Masond3977122009-01-05 21:25:51 -05001175 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04001176 goto out;
Chris Mason49eb7e42008-09-11 15:53:12 -04001177
1178 /* we've logged all the items and now have a consistent
1179 * version of the file in the log. It is possible that
1180 * someone will come in and modify the file, but that's
1181 * fine because the log is consistent on disk, and we
1182 * have references to all of the file's extents
1183 *
1184 * It is possible that someone will come in and log the
1185 * file again, but that will end up using the synchronization
1186 * inside btrfs_sync_log to keep things safe.
1187 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001188 mutex_unlock(&dentry->d_inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001189
Chris Masone02119d2008-09-05 16:13:11 -04001190 if (ret > 0) {
1191 ret = btrfs_commit_transaction(trans, root);
1192 } else {
Chris Mason12fcfd22009-03-24 10:24:20 -04001193 ret = btrfs_sync_log(trans, root);
1194 if (ret == 0)
1195 ret = btrfs_end_transaction(trans, root);
1196 else
1197 ret = btrfs_commit_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001198 }
Chris Mason2cfbd502009-02-20 10:55:10 -05001199 mutex_lock(&dentry->d_inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001200out:
1201 return ret > 0 ? EIO : ret;
1202}
1203
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001204static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001205 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001206 .page_mkwrite = btrfs_page_mkwrite,
1207};
1208
1209static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1210{
1211 vma->vm_ops = &btrfs_file_vm_ops;
1212 file_accessed(filp);
1213 return 0;
1214}
1215
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001216const struct file_operations btrfs_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04001217 .llseek = generic_file_llseek,
1218 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -04001219 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001220 .splice_read = generic_file_splice_read,
Chris Mason39279cc2007-06-12 06:35:45 -04001221 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001222 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001223 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001224 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001225 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001226 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001227#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001228 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001229#endif
1230};