blob: c5bb00f92396a7a892b8bde0511d5ea48e558fca [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"
Chris Masondc17ff82008-01-08 15:46:30 -050037#include "ordered-data.h"
Chris Mason39279cc2007-06-12 06:35:45 -040038#include "ioctl.h"
39#include "print-tree.h"
40
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;
78 unlock_page(pages[i]);
79 mark_page_accessed(pages[i]);
80 page_cache_release(pages[i]);
81 }
82}
83
Chris Mason98ed5172008-01-03 10:01:48 -050084static int noinline insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masona52d9a82007-08-27 16:49:44 -040085 struct btrfs_root *root, struct inode *inode,
Chris Mason3326d1b2007-10-15 16:18:25 -040086 u64 offset, size_t size,
87 struct page **pages, size_t page_offset,
88 int num_pages)
Chris Mason54aa1f42007-06-22 14:16:25 -040089{
90 struct btrfs_key key;
91 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040092 struct extent_buffer *leaf;
93 char *kaddr;
94 unsigned long ptr;
Chris Mason54aa1f42007-06-22 14:16:25 -040095 struct btrfs_file_extent_item *ei;
Chris Mason3326d1b2007-10-15 16:18:25 -040096 struct page *page;
Chris Mason54aa1f42007-06-22 14:16:25 -040097 u32 datasize;
98 int err = 0;
99 int ret;
Chris Mason3326d1b2007-10-15 16:18:25 -0400100 int i;
101 ssize_t cur_size;
Chris Mason54aa1f42007-06-22 14:16:25 -0400102
103 path = btrfs_alloc_path();
104 if (!path)
105 return -ENOMEM;
106
Chris Mason54aa1f42007-06-22 14:16:25 -0400107 btrfs_set_trans_block_group(trans, inode);
108
109 key.objectid = inode->i_ino;
110 key.offset = offset;
Chris Mason54aa1f42007-06-22 14:16:25 -0400111 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Mason54aa1f42007-06-22 14:16:25 -0400112
Chris Mason3326d1b2007-10-15 16:18:25 -0400113 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
114 if (ret < 0) {
Chris Mason54aa1f42007-06-22 14:16:25 -0400115 err = ret;
116 goto fail;
117 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400118 if (ret == 1) {
Chris Mason179e29e2007-11-01 11:28:41 -0400119 struct btrfs_key found_key;
120
121 if (path->slots[0] == 0)
122 goto insert;
123
Chris Mason3326d1b2007-10-15 16:18:25 -0400124 path->slots[0]--;
125 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -0400126 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
127
128 if (found_key.objectid != inode->i_ino)
129 goto insert;
130
131 if (found_key.type != BTRFS_EXTENT_DATA_KEY)
132 goto insert;
Chris Mason3326d1b2007-10-15 16:18:25 -0400133 ei = btrfs_item_ptr(leaf, path->slots[0],
134 struct btrfs_file_extent_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400135
Chris Mason3326d1b2007-10-15 16:18:25 -0400136 if (btrfs_file_extent_type(leaf, ei) !=
137 BTRFS_FILE_EXTENT_INLINE) {
138 goto insert;
139 }
140 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
141 ret = 0;
142 }
143 if (ret == 0) {
144 u32 found_size;
Yan18f16f72007-10-25 15:42:57 -0400145 u64 found_end;
Chris Mason3326d1b2007-10-15 16:18:25 -0400146
147 leaf = path->nodes[0];
148 ei = btrfs_item_ptr(leaf, path->slots[0],
149 struct btrfs_file_extent_item);
150
151 if (btrfs_file_extent_type(leaf, ei) !=
152 BTRFS_FILE_EXTENT_INLINE) {
153 err = ret;
154 btrfs_print_leaf(root, leaf);
155 printk("found wasn't inline offset %Lu inode %lu\n",
156 offset, inode->i_ino);
157 goto fail;
158 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400159 found_size = btrfs_file_extent_inline_len(leaf,
160 btrfs_item_nr(leaf, path->slots[0]));
Yan18f16f72007-10-25 15:42:57 -0400161 found_end = key.offset + found_size;
Chris Mason3326d1b2007-10-15 16:18:25 -0400162
Yan18f16f72007-10-25 15:42:57 -0400163 if (found_end < offset + size) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400164 btrfs_release_path(root, path);
165 ret = btrfs_search_slot(trans, root, &key, path,
Yan18f16f72007-10-25 15:42:57 -0400166 offset + size - found_end, 1);
Chris Mason3326d1b2007-10-15 16:18:25 -0400167 BUG_ON(ret != 0);
Chris Mason179e29e2007-11-01 11:28:41 -0400168
Chris Mason3326d1b2007-10-15 16:18:25 -0400169 ret = btrfs_extend_item(trans, root, path,
Yan18f16f72007-10-25 15:42:57 -0400170 offset + size - found_end);
Chris Mason3326d1b2007-10-15 16:18:25 -0400171 if (ret) {
172 err = ret;
173 goto fail;
174 }
175 leaf = path->nodes[0];
176 ei = btrfs_item_ptr(leaf, path->slots[0],
177 struct btrfs_file_extent_item);
178 }
Yan18f16f72007-10-25 15:42:57 -0400179 if (found_end < offset) {
180 ptr = btrfs_file_extent_inline_start(ei) + found_size;
181 memset_extent_buffer(leaf, 0, ptr, offset - found_end);
182 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400183 } else {
184insert:
185 btrfs_release_path(root, path);
Yan18f16f72007-10-25 15:42:57 -0400186 datasize = offset + size - key.offset;
187 datasize = btrfs_file_extent_calc_inline_size(datasize);
Chris Mason3326d1b2007-10-15 16:18:25 -0400188 ret = btrfs_insert_empty_item(trans, root, path, &key,
189 datasize);
190 if (ret) {
191 err = ret;
192 printk("got bad ret %d\n", ret);
193 goto fail;
194 }
195 leaf = path->nodes[0];
196 ei = btrfs_item_ptr(leaf, path->slots[0],
197 struct btrfs_file_extent_item);
198 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
199 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
200 }
Yan18f16f72007-10-25 15:42:57 -0400201 ptr = btrfs_file_extent_inline_start(ei) + offset - key.offset;
Chris Mason3326d1b2007-10-15 16:18:25 -0400202
203 cur_size = size;
204 i = 0;
205 while (size > 0) {
206 page = pages[i];
207 kaddr = kmap_atomic(page, KM_USER0);
Jens Axboeae2f5412007-10-19 09:22:59 -0400208 cur_size = min_t(size_t, PAGE_CACHE_SIZE - page_offset, size);
Chris Mason3326d1b2007-10-15 16:18:25 -0400209 write_extent_buffer(leaf, kaddr + page_offset, ptr, cur_size);
210 kunmap_atomic(kaddr, KM_USER0);
211 page_offset = 0;
212 ptr += cur_size;
213 size -= cur_size;
214 if (i >= num_pages) {
215 printk("i %d num_pages %d\n", i, num_pages);
216 }
217 i++;
218 }
Chris Mason5f39d392007-10-15 16:14:19 -0400219 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400220fail:
221 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400222 return err;
223}
224
Chris Mason98ed5172008-01-03 10:01:48 -0500225static int noinline dirty_and_release_pages(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400226 struct btrfs_root *root,
227 struct file *file,
228 struct page **pages,
229 size_t num_pages,
230 loff_t pos,
231 size_t write_bytes)
232{
Chris Mason39279cc2007-06-12 06:35:45 -0400233 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400234 int i;
Chris Mason6da6aba2007-12-18 16:15:09 -0500235 struct inode *inode = fdentry(file)->d_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500236 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masondb945352007-10-15 16:15:53 -0400237 u64 hint_byte;
238 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400239 u64 start_pos;
240 u64 end_of_last_block;
241 u64 end_pos = pos + write_bytes;
Yandcfec0d2007-11-06 10:26:26 -0500242 u64 inline_size;
Chris Masona52d9a82007-08-27 16:49:44 -0400243 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400244
Chris Mason5f39d392007-10-15 16:14:19 -0400245 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400246 num_bytes = (write_bytes + pos - start_pos +
247 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400248
Chris Masondb945352007-10-15 16:15:53 -0400249 end_of_last_block = start_pos + num_bytes - 1;
250
Chris Masond1310b22008-01-24 16:13:08 -0500251 lock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400252 mutex_lock(&root->fs_info->fs_mutex);
253 trans = btrfs_start_transaction(root, 1);
254 if (!trans) {
255 err = -ENOMEM;
256 goto out_unlock;
257 }
258 btrfs_set_trans_block_group(trans, inode);
Chris Masondb945352007-10-15 16:15:53 -0400259 inode->i_blocks += num_bytes >> 9;
260 hint_byte = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400261
262 if ((end_of_last_block & 4095) == 0) {
Christoph Hellwig94330632007-09-10 20:02:22 -0400263 printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block);
Chris Masona52d9a82007-08-27 16:49:44 -0400264 }
Chris Masond1310b22008-01-24 16:13:08 -0500265 set_extent_uptodate(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400266
267 /* FIXME...EIEIO, ENOSPC and more */
268
Chris Masona52d9a82007-08-27 16:49:44 -0400269 /* insert any holes we need to create */
270 if (inode->i_size < start_pos) {
271 u64 last_pos_in_file;
272 u64 hole_size;
Chris Mason5f39d392007-10-15 16:14:19 -0400273 u64 mask = root->sectorsize - 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400274 last_pos_in_file = (isize + mask) & ~mask;
Chris Mason5f564062008-01-22 16:47:59 -0500275 hole_size = (end_pos - last_pos_in_file + mask) & ~mask;
Chris Mason2bf5a722007-08-30 11:54:02 -0400276
Chris Masona52d9a82007-08-27 16:49:44 -0400277 if (last_pos_in_file < start_pos) {
Chris Mason2bf5a722007-08-30 11:54:02 -0400278 err = btrfs_drop_extents(trans, root, inode,
279 last_pos_in_file,
280 last_pos_in_file + hole_size,
Chris Mason3326d1b2007-10-15 16:18:25 -0400281 last_pos_in_file,
Chris Masondb945352007-10-15 16:15:53 -0400282 &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400283 if (err)
284 goto failed;
285
Chris Masona52d9a82007-08-27 16:49:44 -0400286 err = btrfs_insert_file_extent(trans, root,
287 inode->i_ino,
288 last_pos_in_file,
289 0, 0, hole_size);
Chris Masond1310b22008-01-24 16:13:08 -0500290 btrfs_drop_extent_cache(inode, last_pos_in_file,
291 last_pos_in_file + hole_size -1);
Chris Mason5f564062008-01-22 16:47:59 -0500292 btrfs_check_file(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400293 }
Chris Masona52d9a82007-08-27 16:49:44 -0400294 if (err)
295 goto failed;
296 }
297
298 /*
299 * either allocate an extent for the new bytes or setup the key
300 * to show we are doing inline data in the extent
301 */
Chris Mason3326d1b2007-10-15 16:18:25 -0400302 inline_size = end_pos;
303 if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
Chris Mason25524882008-01-03 15:44:57 -0500304 inline_size > 8192 ||
Chris Mason3326d1b2007-10-15 16:18:25 -0400305 inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
Chris Masonb888db22007-08-27 16:49:44 -0400306 u64 last_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500307 u64 existing_delalloc = 0;
Chris Mason3326d1b2007-10-15 16:18:25 -0400308
Chris Masona52d9a82007-08-27 16:49:44 -0400309 for (i = 0; i < num_pages; i++) {
310 struct page *p = pages[i];
311 SetPageUptodate(p);
Chris Masonb888db22007-08-27 16:49:44 -0400312 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400313 }
Chris Mason35ebb932007-10-30 16:56:53 -0400314 last_end = (u64)(pages[num_pages -1]->index) <<
315 PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -0400316 last_end += PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -0500317 if (start_pos < isize) {
318 u64 delalloc_start = start_pos;
Chris Masond1310b22008-01-24 16:13:08 -0500319 existing_delalloc = count_range_bits(io_tree,
Chris Mason1832a6d2007-12-21 16:27:21 -0500320 &delalloc_start,
321 end_of_last_block, (u64)-1,
322 EXTENT_DELALLOC);
323 }
Chris Masond1310b22008-01-24 16:13:08 -0500324 set_extent_delalloc(io_tree, start_pos, end_of_last_block,
Chris Masonb888db22007-08-27 16:49:44 -0400325 GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -0500326 spin_lock(&root->fs_info->delalloc_lock);
327 root->fs_info->delalloc_bytes += (end_of_last_block + 1 -
328 start_pos) - existing_delalloc;
329 spin_unlock(&root->fs_info->delalloc_lock);
Chris Masondc17ff82008-01-08 15:46:30 -0500330 btrfs_add_ordered_inode(inode);
Chris Masona52d9a82007-08-27 16:49:44 -0400331 } else {
Chris Mason3326d1b2007-10-15 16:18:25 -0400332 u64 aligned_end;
Chris Masonb888db22007-08-27 16:49:44 -0400333 /* step one, delete the existing extents in this range */
Chris Mason3326d1b2007-10-15 16:18:25 -0400334 aligned_end = (pos + write_bytes + root->sectorsize - 1) &
335 ~((u64)root->sectorsize - 1);
Chris Mason2bf5a722007-08-30 11:54:02 -0400336 err = btrfs_drop_extents(trans, root, inode, start_pos,
Chris Mason179e29e2007-11-01 11:28:41 -0400337 aligned_end, aligned_end, &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400338 if (err)
339 goto failed;
Yandcfec0d2007-11-06 10:26:26 -0500340 if (isize > inline_size)
341 inline_size = min_t(u64, isize, aligned_end);
342 inline_size -= start_pos;
Chris Masona52d9a82007-08-27 16:49:44 -0400343 err = insert_inline_extent(trans, root, inode, start_pos,
Yandcfec0d2007-11-06 10:26:26 -0500344 inline_size, pages, 0, num_pages);
Chris Masond1310b22008-01-24 16:13:08 -0500345 btrfs_drop_extent_cache(inode, start_pos, aligned_end - 1);
Chris Masona52d9a82007-08-27 16:49:44 -0400346 BUG_ON(err);
Chris Masona52d9a82007-08-27 16:49:44 -0400347 }
348 if (end_pos > isize) {
349 i_size_write(inode, end_pos);
350 btrfs_update_inode(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400351 }
352failed:
Chris Masona52d9a82007-08-27 16:49:44 -0400353 err = btrfs_end_transaction(trans, root);
354out_unlock:
355 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond1310b22008-01-24 16:13:08 -0500356 unlock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400357 return err;
358}
359
Chris Masona52d9a82007-08-27 16:49:44 -0400360int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
361{
362 struct extent_map *em;
363 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
364
365 while(1) {
Chris Masond1310b22008-01-24 16:13:08 -0500366 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400367 em = lookup_extent_mapping(em_tree, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500368 if (!em) {
369 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400370 break;
Chris Masond1310b22008-01-24 16:13:08 -0500371 }
Chris Masona52d9a82007-08-27 16:49:44 -0400372 remove_extent_mapping(em_tree, em);
Chris Masond1310b22008-01-24 16:13:08 -0500373 spin_unlock(&em_tree->lock);
374
Chris Masona52d9a82007-08-27 16:49:44 -0400375 /* once for us */
376 free_extent_map(em);
377 /* once for the tree*/
378 free_extent_map(em);
379 }
380 return 0;
381}
382
Chris Mason5f564062008-01-22 16:47:59 -0500383int btrfs_check_file(struct btrfs_root *root, struct inode *inode)
384{
385 return 0;
386#if 0
387 struct btrfs_path *path;
388 struct btrfs_key found_key;
389 struct extent_buffer *leaf;
390 struct btrfs_file_extent_item *extent;
391 u64 last_offset = 0;
392 int nritems;
393 int slot;
394 int found_type;
395 int ret;
396 int err = 0;
397 u64 extent_end = 0;
398
399 path = btrfs_alloc_path();
400 ret = btrfs_lookup_file_extent(NULL, root, path, inode->i_ino,
401 last_offset, 0);
402 while(1) {
403 nritems = btrfs_header_nritems(path->nodes[0]);
404 if (path->slots[0] >= nritems) {
405 ret = btrfs_next_leaf(root, path);
406 if (ret)
407 goto out;
408 nritems = btrfs_header_nritems(path->nodes[0]);
409 }
410 slot = path->slots[0];
411 leaf = path->nodes[0];
412 btrfs_item_key_to_cpu(leaf, &found_key, slot);
413 if (found_key.objectid != inode->i_ino)
414 break;
415 if (found_key.type != BTRFS_EXTENT_DATA_KEY)
416 goto out;
417
418 if (found_key.offset != last_offset) {
419 WARN_ON(1);
420 btrfs_print_leaf(root, leaf);
421 printk("inode %lu found offset %Lu expected %Lu\n",
422 inode->i_ino, found_key.offset, last_offset);
423 err = 1;
424 goto out;
425 }
426 extent = btrfs_item_ptr(leaf, slot,
427 struct btrfs_file_extent_item);
428 found_type = btrfs_file_extent_type(leaf, extent);
429 if (found_type == BTRFS_FILE_EXTENT_REG) {
430 extent_end = found_key.offset +
431 btrfs_file_extent_num_bytes(leaf, extent);
432 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
433 struct btrfs_item *item;
434 item = btrfs_item_nr(leaf, slot);
435 extent_end = found_key.offset +
436 btrfs_file_extent_inline_len(leaf, item);
437 extent_end = (extent_end + root->sectorsize - 1) &
438 ~((u64)root->sectorsize -1 );
439 }
440 last_offset = extent_end;
441 path->slots[0]++;
442 }
443 if (last_offset < inode->i_size) {
444 WARN_ON(1);
445 btrfs_print_leaf(root, leaf);
446 printk("inode %lu found offset %Lu size %Lu\n", inode->i_ino,
447 last_offset, inode->i_size);
448 err = 1;
449
450 }
451out:
452 btrfs_free_path(path);
453 return err;
454#endif
455}
456
Chris Mason39279cc2007-06-12 06:35:45 -0400457/*
458 * this is very complex, but the basic idea is to drop all extents
459 * in the range start - end. hint_block is filled in with a block number
460 * that would be a good hint to the block allocator for this file.
461 *
462 * If an extent intersects the range but is not entirely inside the range
463 * it is either truncated or split. Anything entirely inside the range
464 * is deleted from the tree.
465 */
466int btrfs_drop_extents(struct btrfs_trans_handle *trans,
467 struct btrfs_root *root, struct inode *inode,
Chris Mason00f5c792007-11-30 10:09:33 -0500468 u64 start, u64 end, u64 inline_limit, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400469{
Chris Mason39279cc2007-06-12 06:35:45 -0400470 u64 extent_end = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400471 u64 search_start = start;
Chris Mason00f5c792007-11-30 10:09:33 -0500472 struct extent_buffer *leaf;
473 struct btrfs_file_extent_item *extent;
474 struct btrfs_path *path;
475 struct btrfs_key key;
476 struct btrfs_file_extent_item old;
477 int keep;
478 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400479 int bookend;
480 int found_type;
481 int found_extent;
482 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400483 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500484 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400485
Chris Masona52d9a82007-08-27 16:49:44 -0400486 btrfs_drop_extent_cache(inode, start, end - 1);
487
Chris Mason39279cc2007-06-12 06:35:45 -0400488 path = btrfs_alloc_path();
489 if (!path)
490 return -ENOMEM;
491 while(1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400492 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400493 btrfs_release_path(root, path);
494 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
495 search_start, -1);
496 if (ret < 0)
497 goto out;
498 if (ret > 0) {
499 if (path->slots[0] == 0) {
500 ret = 0;
501 goto out;
502 }
503 path->slots[0]--;
504 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400505next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400506 keep = 0;
507 bookend = 0;
508 found_extent = 0;
509 found_inline = 0;
510 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400511 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400512 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400513 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400514 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Mason5f564062008-01-22 16:47:59 -0500515
Chris Mason39279cc2007-06-12 06:35:45 -0400516 if (key.offset >= end || key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400517 goto out;
518 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400519 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY) {
Chris Mason39279cc2007-06-12 06:35:45 -0400520 goto out;
521 }
Chris Masonccd467d2007-06-28 15:57:36 -0400522 if (recow) {
523 search_start = key.offset;
524 continue;
525 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400526 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
527 extent = btrfs_item_ptr(leaf, slot,
528 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400529 found_type = btrfs_file_extent_type(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400530 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500531 extent_end =
532 btrfs_file_extent_disk_bytenr(leaf,
533 extent);
534 if (extent_end)
535 *hint_byte = extent_end;
536
Chris Mason8c2383c2007-06-18 09:57:58 -0400537 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400538 btrfs_file_extent_num_bytes(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400539 found_extent = 1;
540 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400541 struct btrfs_item *item;
542 item = btrfs_item_nr(leaf, slot);
Chris Mason8c2383c2007-06-18 09:57:58 -0400543 found_inline = 1;
544 extent_end = key.offset +
Chris Mason5f39d392007-10-15 16:14:19 -0400545 btrfs_file_extent_inline_len(leaf, item);
Chris Mason8c2383c2007-06-18 09:57:58 -0400546 }
547 } else {
548 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400549 }
550
551 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400552 if ((!found_extent && !found_inline) ||
553 search_start >= extent_end) {
554 int nextret;
555 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400556 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400557 if (slot >= nritems - 1) {
558 nextret = btrfs_next_leaf(root, path);
559 if (nextret)
560 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400561 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400562 } else {
563 path->slots[0]++;
564 }
565 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400566 }
567
Chris Mason39279cc2007-06-12 06:35:45 -0400568 if (found_inline) {
Chris Mason5f39d392007-10-15 16:14:19 -0400569 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400570 search_start = (extent_end + mask) & ~mask;
571 } else
572 search_start = extent_end;
Yan6e3b9662007-12-14 11:14:42 -0500573 if (end <= extent_end && start >= key.offset && found_inline) {
Chris Mason179e29e2007-11-01 11:28:41 -0400574 *hint_byte = EXTENT_MAP_INLINE;
Yan6e3b9662007-12-14 11:14:42 -0500575 continue;
Chris Mason179e29e2007-11-01 11:28:41 -0400576 }
Chris Mason39279cc2007-06-12 06:35:45 -0400577 if (end < extent_end && end >= key.offset) {
578 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400579 u64 disk_bytenr =
580 btrfs_file_extent_disk_bytenr(leaf, extent);
581 u64 disk_num_bytes =
582 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400583 extent);
584 read_extent_buffer(leaf, &old,
585 (unsigned long)extent,
586 sizeof(old));
Chris Masondb945352007-10-15 16:15:53 -0400587 if (disk_bytenr != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400588 ret = btrfs_inc_extent_ref(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500589 disk_bytenr, disk_num_bytes,
590 root->root_key.objectid,
591 trans->transid,
592 key.objectid, end);
Chris Mason39279cc2007-06-12 06:35:45 -0400593 BUG_ON(ret);
594 }
595 }
Chris Mason179e29e2007-11-01 11:28:41 -0400596 bookend = 1;
597 if (found_inline && start <= key.offset &&
Chris Mason00f5c792007-11-30 10:09:33 -0500598 inline_limit < extent_end)
Chris Mason179e29e2007-11-01 11:28:41 -0400599 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400600 }
Chris Mason39279cc2007-06-12 06:35:45 -0400601 /* truncate existing extent */
602 if (start > key.offset) {
603 u64 new_num;
604 u64 old_num;
605 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400606 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400607 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400608 new_num = start - key.offset;
609 old_num = btrfs_file_extent_num_bytes(leaf,
610 extent);
611 *hint_byte =
612 btrfs_file_extent_disk_bytenr(leaf,
613 extent);
614 if (btrfs_file_extent_disk_bytenr(leaf,
615 extent)) {
Chris Mason39279cc2007-06-12 06:35:45 -0400616 inode->i_blocks -=
Chris Masondb945352007-10-15 16:15:53 -0400617 (old_num - new_num) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400618 }
Chris Masondb945352007-10-15 16:15:53 -0400619 btrfs_set_file_extent_num_bytes(leaf, extent,
620 new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400621 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500622 } else if (key.offset < inline_limit &&
623 (end > extent_end) &&
624 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400625 u32 new_size;
626 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500627 inline_limit - key.offset);
Chris Mason3326d1b2007-10-15 16:18:25 -0400628 btrfs_truncate_item(trans, root, path,
Chris Mason179e29e2007-11-01 11:28:41 -0400629 new_size, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400630 }
631 }
632 /* delete the entire extent */
633 if (!keep) {
Chris Masondb945352007-10-15 16:15:53 -0400634 u64 disk_bytenr = 0;
635 u64 disk_num_bytes = 0;
636 u64 extent_num_bytes = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500637 u64 root_gen;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500638 u64 root_owner;
Chris Mason7bb86312007-12-11 09:25:06 -0500639
Chris Masond8d5f3e2007-12-11 12:42:00 -0500640 root_gen = btrfs_header_generation(leaf);
641 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400642 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400643 disk_bytenr =
644 btrfs_file_extent_disk_bytenr(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400645 extent);
Chris Masondb945352007-10-15 16:15:53 -0400646 disk_num_bytes =
647 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400648 extent);
Chris Masondb945352007-10-15 16:15:53 -0400649 extent_num_bytes =
650 btrfs_file_extent_num_bytes(leaf, extent);
651 *hint_byte =
652 btrfs_file_extent_disk_bytenr(leaf,
653 extent);
Chris Mason39279cc2007-06-12 06:35:45 -0400654 }
655 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400656 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400657 BUG_ON(ret);
658 btrfs_release_path(root, path);
659 extent = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400660 if (found_extent && disk_bytenr != 0) {
661 inode->i_blocks -= extent_num_bytes >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400662 ret = btrfs_free_extent(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500663 disk_bytenr,
664 disk_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500665 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500666 root_gen, inode->i_ino,
667 key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400668 }
669
670 BUG_ON(ret);
671 if (!bookend && search_start >= end) {
672 ret = 0;
673 goto out;
674 }
675 if (!bookend)
676 continue;
677 }
Chris Mason179e29e2007-11-01 11:28:41 -0400678 if (bookend && found_inline && start <= key.offset &&
Chris Mason00f5c792007-11-30 10:09:33 -0500679 inline_limit < extent_end && key.offset <= inline_limit) {
Chris Mason179e29e2007-11-01 11:28:41 -0400680 u32 new_size;
681 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500682 extent_end - inline_limit);
Chris Mason179e29e2007-11-01 11:28:41 -0400683 btrfs_truncate_item(trans, root, path, new_size, 0);
684 }
Chris Mason39279cc2007-06-12 06:35:45 -0400685 /* create bookend, splitting the extent in two */
686 if (bookend && found_extent) {
687 struct btrfs_key ins;
688 ins.objectid = inode->i_ino;
689 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400690 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -0400691 btrfs_release_path(root, path);
692 ret = btrfs_insert_empty_item(trans, root, path, &ins,
693 sizeof(*extent));
Chris Mason8c2383c2007-06-18 09:57:58 -0400694
Chris Mason5f39d392007-10-15 16:14:19 -0400695 leaf = path->nodes[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400696 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400697 btrfs_print_leaf(root, leaf);
698 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 -0400699 }
Chris Mason39279cc2007-06-12 06:35:45 -0400700 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400701 extent = btrfs_item_ptr(leaf, path->slots[0],
702 struct btrfs_file_extent_item);
703 write_extent_buffer(leaf, &old,
704 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400705
Chris Mason5f39d392007-10-15 16:14:19 -0400706 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400707 le64_to_cpu(old.offset) + end - key.offset);
708 WARN_ON(le64_to_cpu(old.num_bytes) <
709 (extent_end - end));
710 btrfs_set_file_extent_num_bytes(leaf, extent,
711 extent_end - end);
Chris Mason5f39d392007-10-15 16:14:19 -0400712 btrfs_set_file_extent_type(leaf, extent,
Chris Mason39279cc2007-06-12 06:35:45 -0400713 BTRFS_FILE_EXTENT_REG);
Chris Masondb945352007-10-15 16:15:53 -0400714
Chris Mason39279cc2007-06-12 06:35:45 -0400715 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400716 if (le64_to_cpu(old.disk_bytenr) != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400717 inode->i_blocks +=
Chris Masondb945352007-10-15 16:15:53 -0400718 btrfs_file_extent_num_bytes(leaf,
719 extent) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400720 }
721 ret = 0;
722 goto out;
723 }
724 }
725out:
726 btrfs_free_path(path);
727 return ret;
728}
729
730/*
731 * this gets pages into the page cache and locks them down
732 */
Chris Mason98ed5172008-01-03 10:01:48 -0500733static int prepare_pages(struct btrfs_root *root, struct file *file,
734 struct page **pages, size_t num_pages,
735 loff_t pos, unsigned long first_index,
736 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400737{
738 int i;
739 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500740 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400741 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400742 u64 start_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400743
Chris Mason5f39d392007-10-15 16:14:19 -0400744 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400745
746 memset(pages, 0, num_pages * sizeof(struct page *));
747
748 for (i = 0; i < num_pages; i++) {
749 pages[i] = grab_cache_page(inode->i_mapping, index + i);
750 if (!pages[i]) {
751 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400752 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400753 }
Chris Mason6da6aba2007-12-18 16:15:09 -0500754#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
755 ClearPageDirty(pages[i]);
756#else
Chris Masonccd467d2007-06-28 15:57:36 -0400757 cancel_dirty_page(pages[i], PAGE_CACHE_SIZE);
Chris Mason6da6aba2007-12-18 16:15:09 -0500758#endif
Chris Masonccd467d2007-06-28 15:57:36 -0400759 wait_on_page_writeback(pages[i]);
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400760 set_page_extent_mapped(pages[i]);
Chris Masonb888db22007-08-27 16:49:44 -0400761 WARN_ON(!PageLocked(pages[i]));
Chris Mason39279cc2007-06-12 06:35:45 -0400762 }
763 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400764}
765
766static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
767 size_t count, loff_t *ppos)
768{
769 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400770 loff_t start_pos;
771 ssize_t num_written = 0;
772 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400773 int ret = 0;
Chris Mason6da6aba2007-12-18 16:15:09 -0500774 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400775 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -0400776 struct page **pages = NULL;
777 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -0400778 struct page *pinned[2];
779 unsigned long first_index;
780 unsigned long last_index;
Chris Mason8c2383c2007-06-18 09:57:58 -0400781
782 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
783 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -0400784 pinned[0] = NULL;
785 pinned[1] = NULL;
786 if (file->f_flags & O_DIRECT)
787 return -EINVAL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400788
Chris Mason39279cc2007-06-12 06:35:45 -0400789 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400790 start_pos = pos;
791
Chris Mason39279cc2007-06-12 06:35:45 -0400792 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
793 current->backing_dev_info = inode->i_mapping->backing_dev_info;
794 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
795 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500796 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400797 if (count == 0)
Chris Mason1832a6d2007-12-21 16:27:21 -0500798 goto out_nolock;
Chris Mason6da6aba2007-12-18 16:15:09 -0500799 err = remove_suid(fdentry(file));
Chris Mason39279cc2007-06-12 06:35:45 -0400800 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500801 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400802 file_update_time(file);
803
Chris Mason8c2383c2007-06-18 09:57:58 -0400804 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400805
806 mutex_lock(&inode->i_mutex);
807 first_index = pos >> PAGE_CACHE_SHIFT;
808 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
809
810 /*
811 * there are lots of better ways to do this, but this code
812 * makes sure the first and last page in the file range are
813 * up to date and ready for cow
814 */
815 if ((pos & (PAGE_CACHE_SIZE - 1))) {
816 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
817 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400818 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400819 BUG_ON(ret);
820 wait_on_page_locked(pinned[0]);
821 } else {
822 unlock_page(pinned[0]);
823 }
824 }
825 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
826 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
827 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400828 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400829 BUG_ON(ret);
830 wait_on_page_locked(pinned[1]);
831 } else {
832 unlock_page(pinned[1]);
833 }
834 }
835
Chris Mason39279cc2007-06-12 06:35:45 -0400836 while(count > 0) {
837 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400838 size_t write_bytes = min(count, nrptrs *
839 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400840 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400841 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
842 PAGE_CACHE_SHIFT;
843
Chris Mason8c2383c2007-06-18 09:57:58 -0400844 WARN_ON(num_pages > nrptrs);
Chris Mason39279cc2007-06-12 06:35:45 -0400845 memset(pages, 0, sizeof(pages));
Chris Mason1832a6d2007-12-21 16:27:21 -0500846
847 mutex_lock(&root->fs_info->fs_mutex);
848 ret = btrfs_check_free_space(root, write_bytes, 0);
849 mutex_unlock(&root->fs_info->fs_mutex);
850 if (ret)
851 goto out;
852
Chris Mason39279cc2007-06-12 06:35:45 -0400853 ret = prepare_pages(root, file, pages, num_pages,
854 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400855 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -0400856 if (ret)
857 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400858
Chris Mason39279cc2007-06-12 06:35:45 -0400859 ret = btrfs_copy_from_user(pos, num_pages,
860 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400861 if (ret) {
862 btrfs_drop_pages(pages, num_pages);
863 goto out;
864 }
Chris Mason39279cc2007-06-12 06:35:45 -0400865
866 ret = dirty_and_release_pages(NULL, root, file, pages,
867 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400868 btrfs_drop_pages(pages, num_pages);
Chris Mason54aa1f42007-06-22 14:16:25 -0400869 if (ret)
870 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400871
872 buf += write_bytes;
873 count -= write_bytes;
874 pos += write_bytes;
875 num_written += write_bytes;
876
Chris Mason8c2383c2007-06-18 09:57:58 -0400877 balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
Chris Mason448d6402007-11-27 07:52:01 -0800878 if (num_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
879 btrfs_btree_balance_dirty(root, 1);
Chris Masone2008b62008-01-08 15:46:30 -0500880 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400881 cond_resched();
882 }
Chris Mason39279cc2007-06-12 06:35:45 -0400883out:
Chris Mason1832a6d2007-12-21 16:27:21 -0500884 mutex_unlock(&inode->i_mutex);
Chris Mason5b92ee72008-01-03 13:46:11 -0500885
Chris Mason1832a6d2007-12-21 16:27:21 -0500886out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -0400887 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -0400888 if (pinned[0])
889 page_cache_release(pinned[0]);
890 if (pinned[1])
891 page_cache_release(pinned[1]);
892 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400893
894 if (num_written > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
895 err = sync_page_range(inode, inode->i_mapping,
896 start_pos, num_written);
897 if (err < 0)
898 num_written = err;
899 }
Chris Mason39279cc2007-06-12 06:35:45 -0400900 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -0400901 return num_written ? num_written : err;
902}
903
Chris Mason39279cc2007-06-12 06:35:45 -0400904static int btrfs_sync_file(struct file *file,
905 struct dentry *dentry, int datasync)
906{
907 struct inode *inode = dentry->d_inode;
908 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400909 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400910 struct btrfs_trans_handle *trans;
911
912 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400913 * check the transaction that last modified this inode
914 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -0400915 */
916 mutex_lock(&root->fs_info->fs_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400917 if (!BTRFS_I(inode)->last_trans)
918 goto out;
919 mutex_lock(&root->fs_info->trans_mutex);
920 if (BTRFS_I(inode)->last_trans <=
921 root->fs_info->last_trans_committed) {
922 BTRFS_I(inode)->last_trans = 0;
923 mutex_unlock(&root->fs_info->trans_mutex);
924 goto out;
925 }
926 mutex_unlock(&root->fs_info->trans_mutex);
927
928 /*
Chris Masona52d9a82007-08-27 16:49:44 -0400929 * ok we haven't committed the transaction yet, lets do a commit
930 */
Chris Mason39279cc2007-06-12 06:35:45 -0400931 trans = btrfs_start_transaction(root, 1);
932 if (!trans) {
933 ret = -ENOMEM;
934 goto out;
935 }
936 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -0400937out:
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400938 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400939 return ret > 0 ? EIO : ret;
940}
941
Chris Mason9ebefb182007-06-15 13:50:00 -0400942static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -0400943#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
944 .nopage = filemap_nopage,
945 .populate = filemap_populate,
946#else
947 .fault = filemap_fault,
948#endif
Chris Mason9ebefb182007-06-15 13:50:00 -0400949 .page_mkwrite = btrfs_page_mkwrite,
950};
951
952static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
953{
954 vma->vm_ops = &btrfs_file_vm_ops;
955 file_accessed(filp);
956 return 0;
957}
958
Chris Mason39279cc2007-06-12 06:35:45 -0400959struct file_operations btrfs_file_operations = {
960 .llseek = generic_file_llseek,
961 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -0400962 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -0500963 .splice_read = generic_file_splice_read,
Chris Mason6da6aba2007-12-18 16:15:09 -0500964#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
965 .sendfile = generic_file_sendfile,
966#endif
Chris Mason39279cc2007-06-12 06:35:45 -0400967 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -0400968 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -0400969 .open = generic_file_open,
Chris Mason39279cc2007-06-12 06:35:45 -0400970 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -0400971 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -0400972#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -0400973 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -0400974#endif
975};
976