blob: eb8e4556fa71c86eb6770492084cd76985bdee9e [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason39279cc2007-06-12 06:35:45 -040019#include <linux/fs.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/time.h>
23#include <linux/init.h>
24#include <linux/string.h>
25#include <linux/smp_lock.h>
26#include <linux/backing-dev.h>
27#include <linux/mpage.h>
28#include <linux/swap.h>
29#include <linux/writeback.h>
30#include <linux/statfs.h>
31#include <linux/compat.h>
Chris Mason92fee662007-07-25 12:31:35 -040032#include <linux/version.h>
Chris Mason39279cc2007-06-12 06:35:45 -040033#include "ctree.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "btrfs_inode.h"
37#include "ioctl.h"
38#include "print-tree.h"
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -040039#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040040
41
42static int btrfs_copy_from_user(loff_t pos, int num_pages, int write_bytes,
43 struct page **prepared_pages,
44 const char __user * buf)
45{
46 long page_fault = 0;
47 int i;
48 int offset = pos & (PAGE_CACHE_SIZE - 1);
49
50 for (i = 0; i < num_pages && write_bytes > 0; i++, offset = 0) {
51 size_t count = min_t(size_t,
52 PAGE_CACHE_SIZE - offset, write_bytes);
53 struct page *page = prepared_pages[i];
54 fault_in_pages_readable(buf, count);
55
56 /* Copy data from userspace to the current page */
57 kmap(page);
58 page_fault = __copy_from_user(page_address(page) + offset,
59 buf, count);
60 /* Flush processor's dcache for this page */
61 flush_dcache_page(page);
62 kunmap(page);
63 buf += count;
64 write_bytes -= count;
65
66 if (page_fault)
67 break;
68 }
69 return page_fault ? -EFAULT : 0;
70}
71
72static void btrfs_drop_pages(struct page **pages, size_t num_pages)
73{
74 size_t i;
75 for (i = 0; i < num_pages; i++) {
76 if (!pages[i])
77 break;
Chris Mason4a096752008-07-21 10:29:44 -040078 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -040079 unlock_page(pages[i]);
80 mark_page_accessed(pages[i]);
81 page_cache_release(pages[i]);
82 }
83}
84
Chris Mason98ed5172008-01-03 10:01:48 -050085static int noinline insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masona52d9a82007-08-27 16:49:44 -040086 struct btrfs_root *root, struct inode *inode,
Chris Mason3326d1b2007-10-15 16:18:25 -040087 u64 offset, size_t size,
88 struct page **pages, size_t page_offset,
89 int num_pages)
Chris Mason54aa1f42007-06-22 14:16:25 -040090{
91 struct btrfs_key key;
92 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040093 struct extent_buffer *leaf;
94 char *kaddr;
95 unsigned long ptr;
Chris Mason54aa1f42007-06-22 14:16:25 -040096 struct btrfs_file_extent_item *ei;
Chris Mason3326d1b2007-10-15 16:18:25 -040097 struct page *page;
Chris Mason54aa1f42007-06-22 14:16:25 -040098 u32 datasize;
99 int err = 0;
100 int ret;
Chris Mason3326d1b2007-10-15 16:18:25 -0400101 int i;
102 ssize_t cur_size;
Chris Mason54aa1f42007-06-22 14:16:25 -0400103
104 path = btrfs_alloc_path();
105 if (!path)
106 return -ENOMEM;
107
Chris Mason54aa1f42007-06-22 14:16:25 -0400108 btrfs_set_trans_block_group(trans, inode);
109
110 key.objectid = inode->i_ino;
111 key.offset = offset;
Chris Mason54aa1f42007-06-22 14:16:25 -0400112 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Mason54aa1f42007-06-22 14:16:25 -0400113
Chris Mason3326d1b2007-10-15 16:18:25 -0400114 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
115 if (ret < 0) {
Chris Mason54aa1f42007-06-22 14:16:25 -0400116 err = ret;
117 goto fail;
118 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400119 if (ret == 1) {
Chris Mason179e29e2007-11-01 11:28:41 -0400120 struct btrfs_key found_key;
121
122 if (path->slots[0] == 0)
123 goto insert;
124
Chris Mason3326d1b2007-10-15 16:18:25 -0400125 path->slots[0]--;
126 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -0400127 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
128
129 if (found_key.objectid != inode->i_ino)
130 goto insert;
131
132 if (found_key.type != BTRFS_EXTENT_DATA_KEY)
133 goto insert;
Chris Mason3326d1b2007-10-15 16:18:25 -0400134 ei = btrfs_item_ptr(leaf, path->slots[0],
135 struct btrfs_file_extent_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400136
Chris Mason3326d1b2007-10-15 16:18:25 -0400137 if (btrfs_file_extent_type(leaf, ei) !=
138 BTRFS_FILE_EXTENT_INLINE) {
139 goto insert;
140 }
141 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
142 ret = 0;
143 }
144 if (ret == 0) {
145 u32 found_size;
Yan18f16f72007-10-25 15:42:57 -0400146 u64 found_end;
Chris Mason3326d1b2007-10-15 16:18:25 -0400147
148 leaf = path->nodes[0];
149 ei = btrfs_item_ptr(leaf, path->slots[0],
150 struct btrfs_file_extent_item);
151
152 if (btrfs_file_extent_type(leaf, ei) !=
153 BTRFS_FILE_EXTENT_INLINE) {
154 err = ret;
155 btrfs_print_leaf(root, leaf);
156 printk("found wasn't inline offset %Lu inode %lu\n",
157 offset, inode->i_ino);
158 goto fail;
159 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400160 found_size = btrfs_file_extent_inline_len(leaf,
161 btrfs_item_nr(leaf, path->slots[0]));
Yan18f16f72007-10-25 15:42:57 -0400162 found_end = key.offset + found_size;
Chris Mason3326d1b2007-10-15 16:18:25 -0400163
Yan18f16f72007-10-25 15:42:57 -0400164 if (found_end < offset + size) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400165 btrfs_release_path(root, path);
166 ret = btrfs_search_slot(trans, root, &key, path,
Yan18f16f72007-10-25 15:42:57 -0400167 offset + size - found_end, 1);
Chris Mason3326d1b2007-10-15 16:18:25 -0400168 BUG_ON(ret != 0);
Chris Mason179e29e2007-11-01 11:28:41 -0400169
Chris Mason3326d1b2007-10-15 16:18:25 -0400170 ret = btrfs_extend_item(trans, root, path,
Yan18f16f72007-10-25 15:42:57 -0400171 offset + size - found_end);
Chris Mason3326d1b2007-10-15 16:18:25 -0400172 if (ret) {
173 err = ret;
174 goto fail;
175 }
176 leaf = path->nodes[0];
177 ei = btrfs_item_ptr(leaf, path->slots[0],
178 struct btrfs_file_extent_item);
Chris Mason90692182008-02-08 13:49:28 -0500179 inode->i_blocks += (offset + size - found_end) >> 9;
Chris Mason3326d1b2007-10-15 16:18:25 -0400180 }
Yan18f16f72007-10-25 15:42:57 -0400181 if (found_end < offset) {
182 ptr = btrfs_file_extent_inline_start(ei) + found_size;
183 memset_extent_buffer(leaf, 0, ptr, offset - found_end);
184 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400185 } else {
186insert:
187 btrfs_release_path(root, path);
Yan18f16f72007-10-25 15:42:57 -0400188 datasize = offset + size - key.offset;
Chris Mason90692182008-02-08 13:49:28 -0500189 inode->i_blocks += datasize >> 9;
Yan18f16f72007-10-25 15:42:57 -0400190 datasize = btrfs_file_extent_calc_inline_size(datasize);
Chris Mason3326d1b2007-10-15 16:18:25 -0400191 ret = btrfs_insert_empty_item(trans, root, path, &key,
192 datasize);
193 if (ret) {
194 err = ret;
195 printk("got bad ret %d\n", ret);
196 goto fail;
197 }
198 leaf = path->nodes[0];
199 ei = btrfs_item_ptr(leaf, path->slots[0],
200 struct btrfs_file_extent_item);
201 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
202 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
203 }
Yan18f16f72007-10-25 15:42:57 -0400204 ptr = btrfs_file_extent_inline_start(ei) + offset - key.offset;
Chris Mason3326d1b2007-10-15 16:18:25 -0400205
206 cur_size = size;
207 i = 0;
208 while (size > 0) {
209 page = pages[i];
210 kaddr = kmap_atomic(page, KM_USER0);
Jens Axboeae2f5412007-10-19 09:22:59 -0400211 cur_size = min_t(size_t, PAGE_CACHE_SIZE - page_offset, size);
Chris Mason3326d1b2007-10-15 16:18:25 -0400212 write_extent_buffer(leaf, kaddr + page_offset, ptr, cur_size);
213 kunmap_atomic(kaddr, KM_USER0);
214 page_offset = 0;
215 ptr += cur_size;
216 size -= cur_size;
217 if (i >= num_pages) {
218 printk("i %d num_pages %d\n", i, num_pages);
219 }
220 i++;
221 }
Chris Mason5f39d392007-10-15 16:14:19 -0400222 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400223fail:
224 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400225 return err;
226}
227
Chris Mason98ed5172008-01-03 10:01:48 -0500228static int noinline dirty_and_release_pages(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400229 struct btrfs_root *root,
230 struct file *file,
231 struct page **pages,
232 size_t num_pages,
233 loff_t pos,
234 size_t write_bytes)
235{
Chris Mason39279cc2007-06-12 06:35:45 -0400236 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400237 int i;
Chris Mason6da6aba2007-12-18 16:15:09 -0500238 struct inode *inode = fdentry(file)->d_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500239 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masondb945352007-10-15 16:15:53 -0400240 u64 hint_byte;
241 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400242 u64 start_pos;
243 u64 end_of_last_block;
244 u64 end_pos = pos + write_bytes;
Yandcfec0d2007-11-06 10:26:26 -0500245 u64 inline_size;
Chris Masonee6e6502008-07-17 12:54:40 -0400246 int did_inline = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400247 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400248
Chris Mason5f39d392007-10-15 16:14:19 -0400249 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400250 num_bytes = (write_bytes + pos - start_pos +
251 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400252
Chris Masondb945352007-10-15 16:15:53 -0400253 end_of_last_block = start_pos + num_bytes - 1;
254
Chris Masond1310b22008-01-24 16:13:08 -0500255 lock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason37d1aee2008-07-31 10:48:37 -0400256 trans = btrfs_join_transaction(root, 1);
Chris Masona52d9a82007-08-27 16:49:44 -0400257 if (!trans) {
258 err = -ENOMEM;
259 goto out_unlock;
260 }
261 btrfs_set_trans_block_group(trans, inode);
Chris Masondb945352007-10-15 16:15:53 -0400262 hint_byte = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400263
264 if ((end_of_last_block & 4095) == 0) {
Christoph Hellwig94330632007-09-10 20:02:22 -0400265 printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block);
Chris Masona52d9a82007-08-27 16:49:44 -0400266 }
Chris Masond1310b22008-01-24 16:13:08 -0500267 set_extent_uptodate(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400268
269 /* FIXME...EIEIO, ENOSPC and more */
Chris Masona52d9a82007-08-27 16:49:44 -0400270 /* insert any holes we need to create */
Chris Mason1b1e2132008-06-25 16:01:31 -0400271 if (isize < start_pos) {
Chris Masona52d9a82007-08-27 16:49:44 -0400272 u64 last_pos_in_file;
273 u64 hole_size;
Chris Mason5f39d392007-10-15 16:14:19 -0400274 u64 mask = root->sectorsize - 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400275 last_pos_in_file = (isize + mask) & ~mask;
Chris Mason1b1e2132008-06-25 16:01:31 -0400276 hole_size = (start_pos - last_pos_in_file + mask) & ~mask;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400277 if (hole_size > 0) {
278 btrfs_wait_ordered_range(inode, last_pos_in_file,
279 last_pos_in_file + hole_size);
Chris Masonee6e6502008-07-17 12:54:40 -0400280 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -0400281 err = btrfs_drop_extents(trans, root, inode,
282 last_pos_in_file,
283 last_pos_in_file + hole_size,
Chris Mason3326d1b2007-10-15 16:18:25 -0400284 last_pos_in_file,
Chris Masondb945352007-10-15 16:15:53 -0400285 &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400286 if (err)
287 goto failed;
288
Chris Masona52d9a82007-08-27 16:49:44 -0400289 err = btrfs_insert_file_extent(trans, root,
290 inode->i_ino,
291 last_pos_in_file,
Sage Weilf2eb0a22008-05-02 14:43:14 -0400292 0, 0, hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -0500293 btrfs_drop_extent_cache(inode, last_pos_in_file,
294 last_pos_in_file + hole_size -1);
Chris Masonee6e6502008-07-17 12:54:40 -0400295 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason5f564062008-01-22 16:47:59 -0500296 btrfs_check_file(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400297 }
Chris Masona52d9a82007-08-27 16:49:44 -0400298 if (err)
299 goto failed;
300 }
301
302 /*
303 * either allocate an extent for the new bytes or setup the key
304 * to show we are doing inline data in the extent
305 */
Chris Mason3326d1b2007-10-15 16:18:25 -0400306 inline_size = end_pos;
307 if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
Chris Mason6f568d32008-01-29 16:03:38 -0500308 inline_size > root->fs_info->max_inline ||
309 (inline_size & (root->sectorsize -1)) == 0 ||
Chris Mason3326d1b2007-10-15 16:18:25 -0400310 inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400311 /* check for reserved extents on each page, we don't want
312 * to reset the delalloc bit on things that already have
313 * extents reserved.
314 */
Chris Masonea8c2812008-08-04 23:17:27 -0400315 btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block);
Chris Masona52d9a82007-08-27 16:49:44 -0400316 for (i = 0; i < num_pages; i++) {
317 struct page *p = pages[i];
318 SetPageUptodate(p);
Chris Mason247e7432008-07-17 12:53:51 -0400319 ClearPageChecked(p);
Chris Masonb888db22007-08-27 16:49:44 -0400320 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400321 }
322 } else {
Chris Mason3326d1b2007-10-15 16:18:25 -0400323 u64 aligned_end;
Chris Masonb888db22007-08-27 16:49:44 -0400324 /* step one, delete the existing extents in this range */
Chris Mason3326d1b2007-10-15 16:18:25 -0400325 aligned_end = (pos + write_bytes + root->sectorsize - 1) &
326 ~((u64)root->sectorsize - 1);
Chris Masonee6e6502008-07-17 12:54:40 -0400327 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -0400328 err = btrfs_drop_extents(trans, root, inode, start_pos,
Chris Mason179e29e2007-11-01 11:28:41 -0400329 aligned_end, aligned_end, &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400330 if (err)
331 goto failed;
Yandcfec0d2007-11-06 10:26:26 -0500332 if (isize > inline_size)
333 inline_size = min_t(u64, isize, aligned_end);
334 inline_size -= start_pos;
Chris Masona52d9a82007-08-27 16:49:44 -0400335 err = insert_inline_extent(trans, root, inode, start_pos,
Yandcfec0d2007-11-06 10:26:26 -0500336 inline_size, pages, 0, num_pages);
Chris Masond1310b22008-01-24 16:13:08 -0500337 btrfs_drop_extent_cache(inode, start_pos, aligned_end - 1);
Chris Masona52d9a82007-08-27 16:49:44 -0400338 BUG_ON(err);
Chris Masonee6e6502008-07-17 12:54:40 -0400339 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Masonf87f0572008-08-01 11:27:23 -0400340
341 /*
342 * an ugly way to do all the prop accounting around
343 * the page bits and mapping tags
344 */
345 set_page_writeback(pages[0]);
346 end_page_writeback(pages[0]);
Chris Masonee6e6502008-07-17 12:54:40 -0400347 did_inline = 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400348 }
349 if (end_pos > isize) {
350 i_size_write(inode, end_pos);
Chris Masonee6e6502008-07-17 12:54:40 -0400351 if (did_inline)
352 BTRFS_I(inode)->disk_i_size = end_pos;
Chris Masona52d9a82007-08-27 16:49:44 -0400353 btrfs_update_inode(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400354 }
355failed:
Chris Mason017e5362008-07-28 15:32:51 -0400356 err = btrfs_end_transaction(trans, root);
Chris Masona52d9a82007-08-27 16:49:44 -0400357out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500358 unlock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400359 return err;
360}
361
Chris Masona52d9a82007-08-27 16:49:44 -0400362int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
363{
364 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400365 struct extent_map *split = NULL;
366 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400367 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500368 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400369 int ret;
370 int testend = 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400371
Chris Masone6dcd2d2008-07-17 12:53:50 -0400372 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400373 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500374 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400375 testend = 0;
376 }
Chris Masona52d9a82007-08-27 16:49:44 -0400377 while(1) {
Chris Mason3b951512008-04-17 11:29:12 -0400378 if (!split)
379 split = alloc_extent_map(GFP_NOFS);
380 if (!split2)
381 split2 = alloc_extent_map(GFP_NOFS);
382
Chris Masond1310b22008-01-24 16:13:08 -0500383 spin_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500384 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500385 if (!em) {
386 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400387 break;
Chris Masond1310b22008-01-24 16:13:08 -0500388 }
Chris Mason3ce7e672008-07-31 15:42:54 -0400389 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400390 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400391
392 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
393 em->start < start) {
394 split->start = em->start;
395 split->len = start - em->start;
396 split->block_start = em->block_start;
397 split->bdev = em->bdev;
398 split->flags = em->flags;
399 ret = add_extent_mapping(em_tree, split);
400 BUG_ON(ret);
401 free_extent_map(split);
402 split = split2;
403 split2 = NULL;
404 }
405 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
406 testend && em->start + em->len > start + len) {
407 u64 diff = start + len - em->start;
408
409 split->start = start + len;
410 split->len = em->start + em->len - (start + len);
411 split->bdev = em->bdev;
412 split->flags = em->flags;
413
414 split->block_start = em->block_start + diff;
415
416 ret = add_extent_mapping(em_tree, split);
417 BUG_ON(ret);
418 free_extent_map(split);
419 split = NULL;
420 }
Chris Masond1310b22008-01-24 16:13:08 -0500421 spin_unlock(&em_tree->lock);
422
Chris Masona52d9a82007-08-27 16:49:44 -0400423 /* once for us */
424 free_extent_map(em);
425 /* once for the tree*/
426 free_extent_map(em);
427 }
Chris Mason3b951512008-04-17 11:29:12 -0400428 if (split)
429 free_extent_map(split);
430 if (split2)
431 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400432 return 0;
433}
434
Chris Mason5f564062008-01-22 16:47:59 -0500435int btrfs_check_file(struct btrfs_root *root, struct inode *inode)
436{
437 return 0;
438#if 0
439 struct btrfs_path *path;
440 struct btrfs_key found_key;
441 struct extent_buffer *leaf;
442 struct btrfs_file_extent_item *extent;
443 u64 last_offset = 0;
444 int nritems;
445 int slot;
446 int found_type;
447 int ret;
448 int err = 0;
449 u64 extent_end = 0;
450
451 path = btrfs_alloc_path();
452 ret = btrfs_lookup_file_extent(NULL, root, path, inode->i_ino,
453 last_offset, 0);
454 while(1) {
455 nritems = btrfs_header_nritems(path->nodes[0]);
456 if (path->slots[0] >= nritems) {
457 ret = btrfs_next_leaf(root, path);
458 if (ret)
459 goto out;
460 nritems = btrfs_header_nritems(path->nodes[0]);
461 }
462 slot = path->slots[0];
463 leaf = path->nodes[0];
464 btrfs_item_key_to_cpu(leaf, &found_key, slot);
465 if (found_key.objectid != inode->i_ino)
466 break;
467 if (found_key.type != BTRFS_EXTENT_DATA_KEY)
468 goto out;
469
Chris Mason90692182008-02-08 13:49:28 -0500470 if (found_key.offset < last_offset) {
Chris Mason5f564062008-01-22 16:47:59 -0500471 WARN_ON(1);
472 btrfs_print_leaf(root, leaf);
473 printk("inode %lu found offset %Lu expected %Lu\n",
474 inode->i_ino, found_key.offset, last_offset);
475 err = 1;
476 goto out;
477 }
478 extent = btrfs_item_ptr(leaf, slot,
479 struct btrfs_file_extent_item);
480 found_type = btrfs_file_extent_type(leaf, extent);
481 if (found_type == BTRFS_FILE_EXTENT_REG) {
482 extent_end = found_key.offset +
483 btrfs_file_extent_num_bytes(leaf, extent);
484 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
485 struct btrfs_item *item;
486 item = btrfs_item_nr(leaf, slot);
487 extent_end = found_key.offset +
488 btrfs_file_extent_inline_len(leaf, item);
489 extent_end = (extent_end + root->sectorsize - 1) &
490 ~((u64)root->sectorsize -1 );
491 }
492 last_offset = extent_end;
493 path->slots[0]++;
494 }
Chris Mason90692182008-02-08 13:49:28 -0500495 if (0 && last_offset < inode->i_size) {
Chris Mason5f564062008-01-22 16:47:59 -0500496 WARN_ON(1);
497 btrfs_print_leaf(root, leaf);
498 printk("inode %lu found offset %Lu size %Lu\n", inode->i_ino,
499 last_offset, inode->i_size);
500 err = 1;
501
502 }
503out:
504 btrfs_free_path(path);
505 return err;
506#endif
507}
508
Chris Mason39279cc2007-06-12 06:35:45 -0400509/*
510 * this is very complex, but the basic idea is to drop all extents
511 * in the range start - end. hint_block is filled in with a block number
512 * that would be a good hint to the block allocator for this file.
513 *
514 * If an extent intersects the range but is not entirely inside the range
515 * it is either truncated or split. Anything entirely inside the range
516 * is deleted from the tree.
517 */
518int btrfs_drop_extents(struct btrfs_trans_handle *trans,
519 struct btrfs_root *root, struct inode *inode,
Chris Mason00f5c792007-11-30 10:09:33 -0500520 u64 start, u64 end, u64 inline_limit, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400521{
Chris Mason39279cc2007-06-12 06:35:45 -0400522 u64 extent_end = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400523 u64 search_start = start;
Chris Mason00f5c792007-11-30 10:09:33 -0500524 struct extent_buffer *leaf;
525 struct btrfs_file_extent_item *extent;
526 struct btrfs_path *path;
527 struct btrfs_key key;
528 struct btrfs_file_extent_item old;
529 int keep;
530 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400531 int bookend;
532 int found_type;
533 int found_extent;
534 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400535 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500536 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400537
Chris Masona52d9a82007-08-27 16:49:44 -0400538 btrfs_drop_extent_cache(inode, start, end - 1);
539
Chris Mason39279cc2007-06-12 06:35:45 -0400540 path = btrfs_alloc_path();
541 if (!path)
542 return -ENOMEM;
543 while(1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400544 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400545 btrfs_release_path(root, path);
546 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
547 search_start, -1);
548 if (ret < 0)
549 goto out;
550 if (ret > 0) {
551 if (path->slots[0] == 0) {
552 ret = 0;
553 goto out;
554 }
555 path->slots[0]--;
556 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400557next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400558 keep = 0;
559 bookend = 0;
560 found_extent = 0;
561 found_inline = 0;
562 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400563 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400564 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400565 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400566 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan72610092008-02-05 15:40:36 -0500567 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY &&
568 key.offset >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400569 goto out;
570 }
Yan72610092008-02-05 15:40:36 -0500571 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
572 key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400573 goto out;
574 }
Chris Masonccd467d2007-06-28 15:57:36 -0400575 if (recow) {
576 search_start = key.offset;
577 continue;
578 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400579 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
580 extent = btrfs_item_ptr(leaf, slot,
581 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400582 found_type = btrfs_file_extent_type(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400583 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500584 extent_end =
585 btrfs_file_extent_disk_bytenr(leaf,
586 extent);
587 if (extent_end)
588 *hint_byte = extent_end;
589
Chris Mason8c2383c2007-06-18 09:57:58 -0400590 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400591 btrfs_file_extent_num_bytes(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400592 found_extent = 1;
593 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400594 struct btrfs_item *item;
595 item = btrfs_item_nr(leaf, slot);
Chris Mason8c2383c2007-06-18 09:57:58 -0400596 found_inline = 1;
597 extent_end = key.offset +
Chris Mason5f39d392007-10-15 16:14:19 -0400598 btrfs_file_extent_inline_len(leaf, item);
Chris Mason8c2383c2007-06-18 09:57:58 -0400599 }
600 } else {
601 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400602 }
603
604 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400605 if ((!found_extent && !found_inline) ||
606 search_start >= extent_end) {
607 int nextret;
608 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400609 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400610 if (slot >= nritems - 1) {
611 nextret = btrfs_next_leaf(root, path);
612 if (nextret)
613 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400614 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400615 } else {
616 path->slots[0]++;
617 }
618 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400619 }
620
Chris Mason39279cc2007-06-12 06:35:45 -0400621 if (found_inline) {
Chris Mason5f39d392007-10-15 16:14:19 -0400622 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400623 search_start = (extent_end + mask) & ~mask;
624 } else
625 search_start = extent_end;
Yan6e3b9662007-12-14 11:14:42 -0500626 if (end <= extent_end && start >= key.offset && found_inline) {
Chris Mason179e29e2007-11-01 11:28:41 -0400627 *hint_byte = EXTENT_MAP_INLINE;
Yan6e3b9662007-12-14 11:14:42 -0500628 continue;
Chris Mason179e29e2007-11-01 11:28:41 -0400629 }
Chris Mason39279cc2007-06-12 06:35:45 -0400630 if (end < extent_end && end >= key.offset) {
631 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400632 u64 disk_bytenr =
633 btrfs_file_extent_disk_bytenr(leaf, extent);
634 u64 disk_num_bytes =
635 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400636 extent);
637 read_extent_buffer(leaf, &old,
638 (unsigned long)extent,
639 sizeof(old));
Chris Masondb945352007-10-15 16:15:53 -0400640 if (disk_bytenr != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400641 ret = btrfs_inc_extent_ref(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500642 disk_bytenr, disk_num_bytes,
643 root->root_key.objectid,
644 trans->transid,
645 key.objectid, end);
Chris Mason39279cc2007-06-12 06:35:45 -0400646 BUG_ON(ret);
647 }
648 }
Chris Mason179e29e2007-11-01 11:28:41 -0400649 bookend = 1;
Yan0181e582008-01-30 14:39:54 -0500650 if (found_inline && start <= key.offset)
Chris Mason179e29e2007-11-01 11:28:41 -0400651 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400652 }
Chris Mason39279cc2007-06-12 06:35:45 -0400653 /* truncate existing extent */
654 if (start > key.offset) {
655 u64 new_num;
656 u64 old_num;
657 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400658 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400659 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400660 new_num = start - key.offset;
661 old_num = btrfs_file_extent_num_bytes(leaf,
662 extent);
663 *hint_byte =
664 btrfs_file_extent_disk_bytenr(leaf,
665 extent);
666 if (btrfs_file_extent_disk_bytenr(leaf,
667 extent)) {
Chris Mason90692182008-02-08 13:49:28 -0500668 dec_i_blocks(inode, old_num - new_num);
Chris Mason39279cc2007-06-12 06:35:45 -0400669 }
Chris Masondb945352007-10-15 16:15:53 -0400670 btrfs_set_file_extent_num_bytes(leaf, extent,
671 new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400672 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500673 } else if (key.offset < inline_limit &&
674 (end > extent_end) &&
675 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400676 u32 new_size;
677 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500678 inline_limit - key.offset);
Chris Mason90692182008-02-08 13:49:28 -0500679 dec_i_blocks(inode, (extent_end - key.offset) -
680 (inline_limit - key.offset));
Chris Mason3326d1b2007-10-15 16:18:25 -0400681 btrfs_truncate_item(trans, root, path,
Chris Mason179e29e2007-11-01 11:28:41 -0400682 new_size, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400683 }
684 }
685 /* delete the entire extent */
686 if (!keep) {
Chris Masondb945352007-10-15 16:15:53 -0400687 u64 disk_bytenr = 0;
688 u64 disk_num_bytes = 0;
689 u64 extent_num_bytes = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500690 u64 root_gen;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500691 u64 root_owner;
Chris Mason7bb86312007-12-11 09:25:06 -0500692
Chris Masond8d5f3e2007-12-11 12:42:00 -0500693 root_gen = btrfs_header_generation(leaf);
694 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400695 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400696 disk_bytenr =
697 btrfs_file_extent_disk_bytenr(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400698 extent);
Chris Masondb945352007-10-15 16:15:53 -0400699 disk_num_bytes =
700 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400701 extent);
Chris Masondb945352007-10-15 16:15:53 -0400702 extent_num_bytes =
703 btrfs_file_extent_num_bytes(leaf, extent);
704 *hint_byte =
705 btrfs_file_extent_disk_bytenr(leaf,
706 extent);
Chris Mason39279cc2007-06-12 06:35:45 -0400707 }
708 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400709 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400710 BUG_ON(ret);
711 btrfs_release_path(root, path);
712 extent = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400713 if (found_extent && disk_bytenr != 0) {
Chris Mason90692182008-02-08 13:49:28 -0500714 dec_i_blocks(inode, extent_num_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400715 ret = btrfs_free_extent(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500716 disk_bytenr,
717 disk_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500718 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500719 root_gen, inode->i_ino,
720 key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400721 }
722
723 BUG_ON(ret);
724 if (!bookend && search_start >= end) {
725 ret = 0;
726 goto out;
727 }
728 if (!bookend)
729 continue;
730 }
Yan0181e582008-01-30 14:39:54 -0500731 if (bookend && found_inline && start <= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400732 u32 new_size;
733 new_size = btrfs_file_extent_calc_inline_size(
Yan0181e582008-01-30 14:39:54 -0500734 extent_end - end);
Chris Mason90692182008-02-08 13:49:28 -0500735 dec_i_blocks(inode, (extent_end - key.offset) -
736 (extent_end - end));
Chris Mason179e29e2007-11-01 11:28:41 -0400737 btrfs_truncate_item(trans, root, path, new_size, 0);
738 }
Chris Mason39279cc2007-06-12 06:35:45 -0400739 /* create bookend, splitting the extent in two */
740 if (bookend && found_extent) {
741 struct btrfs_key ins;
742 ins.objectid = inode->i_ino;
743 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400744 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -0400745 btrfs_release_path(root, path);
746 ret = btrfs_insert_empty_item(trans, root, path, &ins,
747 sizeof(*extent));
Chris Mason8c2383c2007-06-18 09:57:58 -0400748
Chris Mason5f39d392007-10-15 16:14:19 -0400749 leaf = path->nodes[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400750 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400751 btrfs_print_leaf(root, leaf);
752 printk("got %d on inserting %Lu %u %Lu start %Lu end %Lu found %Lu %Lu keep was %d\n", ret , ins.objectid, ins.type, ins.offset, start, end, key.offset, extent_end, keep);
Chris Mason8c2383c2007-06-18 09:57:58 -0400753 }
Chris Mason39279cc2007-06-12 06:35:45 -0400754 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400755 extent = btrfs_item_ptr(leaf, path->slots[0],
756 struct btrfs_file_extent_item);
757 write_extent_buffer(leaf, &old,
758 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400759
Chris Mason5f39d392007-10-15 16:14:19 -0400760 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400761 le64_to_cpu(old.offset) + end - key.offset);
762 WARN_ON(le64_to_cpu(old.num_bytes) <
763 (extent_end - end));
764 btrfs_set_file_extent_num_bytes(leaf, extent,
765 extent_end - end);
Chris Mason5f39d392007-10-15 16:14:19 -0400766 btrfs_set_file_extent_type(leaf, extent,
Chris Mason39279cc2007-06-12 06:35:45 -0400767 BTRFS_FILE_EXTENT_REG);
Chris Masondb945352007-10-15 16:15:53 -0400768
Chris Mason39279cc2007-06-12 06:35:45 -0400769 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400770 if (le64_to_cpu(old.disk_bytenr) != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400771 inode->i_blocks +=
Chris Masondb945352007-10-15 16:15:53 -0400772 btrfs_file_extent_num_bytes(leaf,
773 extent) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400774 }
775 ret = 0;
776 goto out;
777 }
778 }
779out:
780 btrfs_free_path(path);
Chris Mason90692182008-02-08 13:49:28 -0500781 btrfs_check_file(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400782 return ret;
783}
784
785/*
786 * this gets pages into the page cache and locks them down
787 */
Chris Mason98ed5172008-01-03 10:01:48 -0500788static int prepare_pages(struct btrfs_root *root, struct file *file,
789 struct page **pages, size_t num_pages,
790 loff_t pos, unsigned long first_index,
791 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400792{
793 int i;
794 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500795 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400796 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400797 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400798 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400799
Chris Mason5f39d392007-10-15 16:14:19 -0400800 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400801 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400802
803 memset(pages, 0, num_pages * sizeof(struct page *));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400804again:
Chris Mason39279cc2007-06-12 06:35:45 -0400805 for (i = 0; i < num_pages; i++) {
806 pages[i] = grab_cache_page(inode->i_mapping, index + i);
807 if (!pages[i]) {
808 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400809 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400810 }
Chris Masonccd467d2007-06-28 15:57:36 -0400811 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400812 }
Chris Mason07627042008-02-19 11:29:24 -0500813 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400814 struct btrfs_ordered_extent *ordered;
Chris Masond99cb302008-02-19 12:55:05 -0500815 lock_extent(&BTRFS_I(inode)->io_tree,
816 start_pos, last_pos - 1, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400817 ordered = btrfs_lookup_first_ordered_extent(inode, last_pos -1);
818 if (ordered &&
819 ordered->file_offset + ordered->len > start_pos &&
820 ordered->file_offset < last_pos) {
821 btrfs_put_ordered_extent(ordered);
822 unlock_extent(&BTRFS_I(inode)->io_tree,
823 start_pos, last_pos - 1, GFP_NOFS);
824 for (i = 0; i < num_pages; i++) {
825 unlock_page(pages[i]);
826 page_cache_release(pages[i]);
827 }
828 btrfs_wait_ordered_range(inode, start_pos,
829 last_pos - start_pos);
830 goto again;
831 }
832 if (ordered)
833 btrfs_put_ordered_extent(ordered);
834
Chris Mason07627042008-02-19 11:29:24 -0500835 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos,
836 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC,
837 GFP_NOFS);
Chris Masond99cb302008-02-19 12:55:05 -0500838 unlock_extent(&BTRFS_I(inode)->io_tree,
839 start_pos, last_pos - 1, GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500840 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400841 for (i = 0; i < num_pages; i++) {
Chris Masonf87f0572008-08-01 11:27:23 -0400842 clear_page_dirty_for_io(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400843 set_page_extent_mapped(pages[i]);
844 WARN_ON(!PageLocked(pages[i]));
845 }
Chris Mason39279cc2007-06-12 06:35:45 -0400846 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400847}
848
849static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
850 size_t count, loff_t *ppos)
851{
852 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400853 loff_t start_pos;
854 ssize_t num_written = 0;
855 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400856 int ret = 0;
Chris Mason6da6aba2007-12-18 16:15:09 -0500857 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400858 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -0400859 struct page **pages = NULL;
860 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -0400861 struct page *pinned[2];
862 unsigned long first_index;
863 unsigned long last_index;
Chris Mason8c2383c2007-06-18 09:57:58 -0400864
865 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
866 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -0400867 pinned[0] = NULL;
868 pinned[1] = NULL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400869
Chris Mason39279cc2007-06-12 06:35:45 -0400870 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400871 start_pos = pos;
872
Chris Mason39279cc2007-06-12 06:35:45 -0400873 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
874 current->backing_dev_info = inode->i_mapping->backing_dev_info;
875 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
876 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500877 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400878 if (count == 0)
Chris Mason1832a6d2007-12-21 16:27:21 -0500879 goto out_nolock;
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -0400880#ifdef REMOVE_SUID_PATH
881 err = remove_suid(&file->f_path);
882#else
Sven Wegener0ee0fda2008-07-30 16:54:26 -0400883# if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
884 err = file_remove_suid(file);
885# else
Chris Mason6da6aba2007-12-18 16:15:09 -0500886 err = remove_suid(fdentry(file));
Sven Wegener0ee0fda2008-07-30 16:54:26 -0400887# endif
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -0400888#endif
Chris Mason39279cc2007-06-12 06:35:45 -0400889 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500890 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400891 file_update_time(file);
892
Chris Mason8c2383c2007-06-18 09:57:58 -0400893 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400894
895 mutex_lock(&inode->i_mutex);
896 first_index = pos >> PAGE_CACHE_SHIFT;
897 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
898
899 /*
Chris Mason409c6112008-04-22 09:24:20 -0400900 * if this is a nodatasum mount, force summing off for the inode
901 * all the time. That way a later mount with summing on won't
902 * get confused
903 */
904 if (btrfs_test_opt(root, NODATASUM))
905 btrfs_set_flag(inode, NODATASUM);
906
907 /*
Chris Mason39279cc2007-06-12 06:35:45 -0400908 * there are lots of better ways to do this, but this code
909 * makes sure the first and last page in the file range are
910 * up to date and ready for cow
911 */
912 if ((pos & (PAGE_CACHE_SIZE - 1))) {
913 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
914 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400915 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400916 BUG_ON(ret);
917 wait_on_page_locked(pinned[0]);
918 } else {
919 unlock_page(pinned[0]);
920 }
921 }
922 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
923 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
924 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400925 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400926 BUG_ON(ret);
927 wait_on_page_locked(pinned[1]);
928 } else {
929 unlock_page(pinned[1]);
930 }
931 }
932
Chris Mason39279cc2007-06-12 06:35:45 -0400933 while(count > 0) {
934 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400935 size_t write_bytes = min(count, nrptrs *
936 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400937 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400938 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
939 PAGE_CACHE_SHIFT;
940
Chris Mason8c2383c2007-06-18 09:57:58 -0400941 WARN_ON(num_pages > nrptrs);
Chris Mason39279cc2007-06-12 06:35:45 -0400942 memset(pages, 0, sizeof(pages));
Chris Mason1832a6d2007-12-21 16:27:21 -0500943
Chris Mason1832a6d2007-12-21 16:27:21 -0500944 ret = btrfs_check_free_space(root, write_bytes, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -0500945 if (ret)
946 goto out;
947
Chris Mason39279cc2007-06-12 06:35:45 -0400948 ret = prepare_pages(root, file, pages, num_pages,
949 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400950 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -0400951 if (ret)
952 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400953
Chris Mason39279cc2007-06-12 06:35:45 -0400954 ret = btrfs_copy_from_user(pos, num_pages,
955 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400956 if (ret) {
957 btrfs_drop_pages(pages, num_pages);
958 goto out;
959 }
Chris Mason39279cc2007-06-12 06:35:45 -0400960
961 ret = dirty_and_release_pages(NULL, root, file, pages,
962 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400963 btrfs_drop_pages(pages, num_pages);
Chris Mason54aa1f42007-06-22 14:16:25 -0400964 if (ret)
965 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400966
967 buf += write_bytes;
968 count -= write_bytes;
969 pos += write_bytes;
970 num_written += write_bytes;
971
Chris Mason8c2383c2007-06-18 09:57:58 -0400972 balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
Chris Mason448d6402007-11-27 07:52:01 -0800973 if (num_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
974 btrfs_btree_balance_dirty(root, 1);
Chris Masonab78c842008-07-29 16:15:18 -0400975 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400976 cond_resched();
977 }
Chris Mason39279cc2007-06-12 06:35:45 -0400978out:
Chris Mason1832a6d2007-12-21 16:27:21 -0500979 mutex_unlock(&inode->i_mutex);
Chris Mason5b92ee72008-01-03 13:46:11 -0500980
Chris Mason1832a6d2007-12-21 16:27:21 -0500981out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -0400982 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -0400983 if (pinned[0])
984 page_cache_release(pinned[0]);
985 if (pinned[1])
986 page_cache_release(pinned[1]);
987 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400988
989 if (num_written > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
990 err = sync_page_range(inode, inode->i_mapping,
991 start_pos, num_written);
992 if (err < 0)
993 num_written = err;
Chris Mason16432982008-04-10 10:23:21 -0400994 } else if (num_written > 0 && (file->f_flags & O_DIRECT)) {
Chris Masonbb8885c2008-05-02 14:49:33 -0400995#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
Chris Masonb248a412008-04-14 09:48:18 -0400996 do_sync_file_range(file, start_pos,
997 start_pos + num_written - 1,
998 SYNC_FILE_RANGE_WRITE |
999 SYNC_FILE_RANGE_WAIT_AFTER);
1000#else
Chris Mason16432982008-04-10 10:23:21 -04001001 do_sync_mapping_range(inode->i_mapping, start_pos,
1002 start_pos + num_written - 1,
1003 SYNC_FILE_RANGE_WRITE |
1004 SYNC_FILE_RANGE_WAIT_AFTER);
Chris Masonb248a412008-04-14 09:48:18 -04001005#endif
Chris Mason16432982008-04-10 10:23:21 -04001006 invalidate_mapping_pages(inode->i_mapping,
1007 start_pos >> PAGE_CACHE_SHIFT,
1008 (start_pos + num_written - 1) >> PAGE_CACHE_SHIFT);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001009 }
Chris Mason39279cc2007-06-12 06:35:45 -04001010 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001011 return num_written ? num_written : err;
1012}
1013
Sage Weil6bf13c02008-06-10 10:07:39 -04001014int btrfs_release_file(struct inode * inode, struct file * filp)
Mingminge1b81e62008-05-27 10:55:43 -04001015{
Sage Weil6bf13c02008-06-10 10:07:39 -04001016 if (filp->private_data)
1017 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001018 return 0;
1019}
1020
Chris Mason39279cc2007-06-12 06:35:45 -04001021static int btrfs_sync_file(struct file *file,
1022 struct dentry *dentry, int datasync)
1023{
1024 struct inode *inode = dentry->d_inode;
1025 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001026 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001027 struct btrfs_trans_handle *trans;
1028
1029 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001030 * check the transaction that last modified this inode
1031 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001032 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001033 if (!BTRFS_I(inode)->last_trans)
1034 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001035
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001036 mutex_lock(&root->fs_info->trans_mutex);
1037 if (BTRFS_I(inode)->last_trans <=
1038 root->fs_info->last_trans_committed) {
1039 BTRFS_I(inode)->last_trans = 0;
1040 mutex_unlock(&root->fs_info->trans_mutex);
1041 goto out;
1042 }
1043 mutex_unlock(&root->fs_info->trans_mutex);
1044
1045 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001046 * ok we haven't committed the transaction yet, lets do a commit
1047 */
Sage Weil6bf13c02008-06-10 10:07:39 -04001048 if (file->private_data)
1049 btrfs_ioctl_trans_end(file);
1050
Chris Mason39279cc2007-06-12 06:35:45 -04001051 trans = btrfs_start_transaction(root, 1);
1052 if (!trans) {
1053 ret = -ENOMEM;
1054 goto out;
1055 }
1056 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04001057out:
1058 return ret > 0 ? EIO : ret;
1059}
1060
Chris Mason9ebefb182007-06-15 13:50:00 -04001061static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001062#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
1063 .nopage = filemap_nopage,
1064 .populate = filemap_populate,
1065#else
1066 .fault = filemap_fault,
1067#endif
Chris Mason9ebefb182007-06-15 13:50:00 -04001068 .page_mkwrite = btrfs_page_mkwrite,
1069};
1070
1071static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1072{
1073 vma->vm_ops = &btrfs_file_vm_ops;
1074 file_accessed(filp);
1075 return 0;
1076}
1077
Chris Mason39279cc2007-06-12 06:35:45 -04001078struct file_operations btrfs_file_operations = {
1079 .llseek = generic_file_llseek,
1080 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -04001081 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001082 .splice_read = generic_file_splice_read,
Chris Mason6da6aba2007-12-18 16:15:09 -05001083#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1084 .sendfile = generic_file_sendfile,
1085#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001086 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001087 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001088 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001089 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001090 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001091 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001092#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001093 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001094#endif
1095};