blob: 8037792f8789f717ecd6aea6db542a7610a43a93 [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"
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -040040#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040041
42
43static int btrfs_copy_from_user(loff_t pos, int num_pages, int write_bytes,
44 struct page **prepared_pages,
45 const char __user * buf)
46{
47 long page_fault = 0;
48 int i;
49 int offset = pos & (PAGE_CACHE_SIZE - 1);
50
51 for (i = 0; i < num_pages && write_bytes > 0; i++, offset = 0) {
52 size_t count = min_t(size_t,
53 PAGE_CACHE_SIZE - offset, write_bytes);
54 struct page *page = prepared_pages[i];
55 fault_in_pages_readable(buf, count);
56
57 /* Copy data from userspace to the current page */
58 kmap(page);
59 page_fault = __copy_from_user(page_address(page) + offset,
60 buf, count);
61 /* Flush processor's dcache for this page */
62 flush_dcache_page(page);
63 kunmap(page);
64 buf += count;
65 write_bytes -= count;
66
67 if (page_fault)
68 break;
69 }
70 return page_fault ? -EFAULT : 0;
71}
72
73static void btrfs_drop_pages(struct page **pages, size_t num_pages)
74{
75 size_t i;
76 for (i = 0; i < num_pages; i++) {
77 if (!pages[i])
78 break;
79 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 Masona52d9a82007-08-27 16:49:44 -0400246 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400247
Chris Mason5f39d392007-10-15 16:14:19 -0400248 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400249 num_bytes = (write_bytes + pos - start_pos +
250 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400251
Chris Masondb945352007-10-15 16:15:53 -0400252 end_of_last_block = start_pos + num_bytes - 1;
253
Chris Masond1310b22008-01-24 16:13:08 -0500254 lock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400255 trans = btrfs_start_transaction(root, 1);
256 if (!trans) {
257 err = -ENOMEM;
258 goto out_unlock;
259 }
260 btrfs_set_trans_block_group(trans, inode);
Chris Masondb945352007-10-15 16:15:53 -0400261 hint_byte = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400262
263 if ((end_of_last_block & 4095) == 0) {
Christoph Hellwig94330632007-09-10 20:02:22 -0400264 printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block);
Chris Masona52d9a82007-08-27 16:49:44 -0400265 }
Chris Masond1310b22008-01-24 16:13:08 -0500266 set_extent_uptodate(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400267
268 /* FIXME...EIEIO, ENOSPC and more */
Chris Masona52d9a82007-08-27 16:49:44 -0400269 /* insert any holes we need to create */
Chris Mason1b1e2132008-06-25 16:01:31 -0400270 if (isize < start_pos) {
Chris Masona52d9a82007-08-27 16:49:44 -0400271 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 Mason1b1e2132008-06-25 16:01:31 -0400275 hole_size = (start_pos - last_pos_in_file + mask) & ~mask;
276 if (last_pos_in_file < start_pos) {
Chris Mason2bf5a722007-08-30 11:54:02 -0400277 err = btrfs_drop_extents(trans, root, inode,
278 last_pos_in_file,
279 last_pos_in_file + hole_size,
Chris Mason3326d1b2007-10-15 16:18:25 -0400280 last_pos_in_file,
Chris Masondb945352007-10-15 16:15:53 -0400281 &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400282 if (err)
283 goto failed;
284
Chris Masona52d9a82007-08-27 16:49:44 -0400285 err = btrfs_insert_file_extent(trans, root,
286 inode->i_ino,
287 last_pos_in_file,
Sage Weilf2eb0a22008-05-02 14:43:14 -0400288 0, 0, hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -0500289 btrfs_drop_extent_cache(inode, last_pos_in_file,
290 last_pos_in_file + hole_size -1);
Chris Mason5f564062008-01-22 16:47:59 -0500291 btrfs_check_file(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400292 }
Chris Masona52d9a82007-08-27 16:49:44 -0400293 if (err)
294 goto failed;
295 }
296
297 /*
298 * either allocate an extent for the new bytes or setup the key
299 * to show we are doing inline data in the extent
300 */
Chris Mason3326d1b2007-10-15 16:18:25 -0400301 inline_size = end_pos;
302 if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
Chris Mason6f568d32008-01-29 16:03:38 -0500303 inline_size > root->fs_info->max_inline ||
304 (inline_size & (root->sectorsize -1)) == 0 ||
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 Mason3326d1b2007-10-15 16:18:25 -0400307
Chris Masona52d9a82007-08-27 16:49:44 -0400308 for (i = 0; i < num_pages; i++) {
309 struct page *p = pages[i];
310 SetPageUptodate(p);
Chris Masonb888db22007-08-27 16:49:44 -0400311 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400312 }
Chris Mason35ebb932007-10-30 16:56:53 -0400313 last_end = (u64)(pages[num_pages -1]->index) <<
314 PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -0400315 last_end += PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -0500316 set_extent_delalloc(io_tree, start_pos, end_of_last_block,
Chris Masonb888db22007-08-27 16:49:44 -0400317 GFP_NOFS);
Chris Masondc17ff82008-01-08 15:46:30 -0500318 btrfs_add_ordered_inode(inode);
Chris Masona52d9a82007-08-27 16:49:44 -0400319 } else {
Chris Mason3326d1b2007-10-15 16:18:25 -0400320 u64 aligned_end;
Chris Masonb888db22007-08-27 16:49:44 -0400321 /* step one, delete the existing extents in this range */
Chris Mason3326d1b2007-10-15 16:18:25 -0400322 aligned_end = (pos + write_bytes + root->sectorsize - 1) &
323 ~((u64)root->sectorsize - 1);
Chris Mason2bf5a722007-08-30 11:54:02 -0400324 err = btrfs_drop_extents(trans, root, inode, start_pos,
Chris Mason179e29e2007-11-01 11:28:41 -0400325 aligned_end, aligned_end, &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400326 if (err)
327 goto failed;
Yandcfec0d2007-11-06 10:26:26 -0500328 if (isize > inline_size)
329 inline_size = min_t(u64, isize, aligned_end);
330 inline_size -= start_pos;
Chris Masona52d9a82007-08-27 16:49:44 -0400331 err = insert_inline_extent(trans, root, inode, start_pos,
Yandcfec0d2007-11-06 10:26:26 -0500332 inline_size, pages, 0, num_pages);
Chris Masond1310b22008-01-24 16:13:08 -0500333 btrfs_drop_extent_cache(inode, start_pos, aligned_end - 1);
Chris Masona52d9a82007-08-27 16:49:44 -0400334 BUG_ON(err);
Chris Masona52d9a82007-08-27 16:49:44 -0400335 }
336 if (end_pos > isize) {
337 i_size_write(inode, end_pos);
338 btrfs_update_inode(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400339 }
340failed:
Chris Masona52d9a82007-08-27 16:49:44 -0400341 err = btrfs_end_transaction(trans, root);
342out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500343 unlock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400344 return err;
345}
346
Chris Masona52d9a82007-08-27 16:49:44 -0400347int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
348{
349 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400350 struct extent_map *split = NULL;
351 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400352 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500353 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400354 int ret;
355 int testend = 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400356
Chris Mason3b951512008-04-17 11:29:12 -0400357 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500358 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400359 testend = 0;
360 }
Chris Masona52d9a82007-08-27 16:49:44 -0400361 while(1) {
Chris Mason3b951512008-04-17 11:29:12 -0400362 if (!split)
363 split = alloc_extent_map(GFP_NOFS);
364 if (!split2)
365 split2 = alloc_extent_map(GFP_NOFS);
366
Chris Masond1310b22008-01-24 16:13:08 -0500367 spin_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500368 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500369 if (!em) {
370 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400371 break;
Chris Masond1310b22008-01-24 16:13:08 -0500372 }
Chris Masona52d9a82007-08-27 16:49:44 -0400373 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400374
375 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
376 em->start < start) {
377 split->start = em->start;
378 split->len = start - em->start;
379 split->block_start = em->block_start;
380 split->bdev = em->bdev;
381 split->flags = em->flags;
382 ret = add_extent_mapping(em_tree, split);
383 BUG_ON(ret);
384 free_extent_map(split);
385 split = split2;
386 split2 = NULL;
387 }
388 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
389 testend && em->start + em->len > start + len) {
390 u64 diff = start + len - em->start;
391
392 split->start = start + len;
393 split->len = em->start + em->len - (start + len);
394 split->bdev = em->bdev;
395 split->flags = em->flags;
396
397 split->block_start = em->block_start + diff;
398
399 ret = add_extent_mapping(em_tree, split);
400 BUG_ON(ret);
401 free_extent_map(split);
402 split = NULL;
403 }
Chris Masond1310b22008-01-24 16:13:08 -0500404 spin_unlock(&em_tree->lock);
405
Chris Masona52d9a82007-08-27 16:49:44 -0400406 /* once for us */
407 free_extent_map(em);
408 /* once for the tree*/
409 free_extent_map(em);
410 }
Chris Mason3b951512008-04-17 11:29:12 -0400411 if (split)
412 free_extent_map(split);
413 if (split2)
414 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400415 return 0;
416}
417
Chris Mason5f564062008-01-22 16:47:59 -0500418int btrfs_check_file(struct btrfs_root *root, struct inode *inode)
419{
420 return 0;
421#if 0
422 struct btrfs_path *path;
423 struct btrfs_key found_key;
424 struct extent_buffer *leaf;
425 struct btrfs_file_extent_item *extent;
426 u64 last_offset = 0;
427 int nritems;
428 int slot;
429 int found_type;
430 int ret;
431 int err = 0;
432 u64 extent_end = 0;
433
434 path = btrfs_alloc_path();
435 ret = btrfs_lookup_file_extent(NULL, root, path, inode->i_ino,
436 last_offset, 0);
437 while(1) {
438 nritems = btrfs_header_nritems(path->nodes[0]);
439 if (path->slots[0] >= nritems) {
440 ret = btrfs_next_leaf(root, path);
441 if (ret)
442 goto out;
443 nritems = btrfs_header_nritems(path->nodes[0]);
444 }
445 slot = path->slots[0];
446 leaf = path->nodes[0];
447 btrfs_item_key_to_cpu(leaf, &found_key, slot);
448 if (found_key.objectid != inode->i_ino)
449 break;
450 if (found_key.type != BTRFS_EXTENT_DATA_KEY)
451 goto out;
452
Chris Mason90692182008-02-08 13:49:28 -0500453 if (found_key.offset < last_offset) {
Chris Mason5f564062008-01-22 16:47:59 -0500454 WARN_ON(1);
455 btrfs_print_leaf(root, leaf);
456 printk("inode %lu found offset %Lu expected %Lu\n",
457 inode->i_ino, found_key.offset, last_offset);
458 err = 1;
459 goto out;
460 }
461 extent = btrfs_item_ptr(leaf, slot,
462 struct btrfs_file_extent_item);
463 found_type = btrfs_file_extent_type(leaf, extent);
464 if (found_type == BTRFS_FILE_EXTENT_REG) {
465 extent_end = found_key.offset +
466 btrfs_file_extent_num_bytes(leaf, extent);
467 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
468 struct btrfs_item *item;
469 item = btrfs_item_nr(leaf, slot);
470 extent_end = found_key.offset +
471 btrfs_file_extent_inline_len(leaf, item);
472 extent_end = (extent_end + root->sectorsize - 1) &
473 ~((u64)root->sectorsize -1 );
474 }
475 last_offset = extent_end;
476 path->slots[0]++;
477 }
Chris Mason90692182008-02-08 13:49:28 -0500478 if (0 && last_offset < inode->i_size) {
Chris Mason5f564062008-01-22 16:47:59 -0500479 WARN_ON(1);
480 btrfs_print_leaf(root, leaf);
481 printk("inode %lu found offset %Lu size %Lu\n", inode->i_ino,
482 last_offset, inode->i_size);
483 err = 1;
484
485 }
486out:
487 btrfs_free_path(path);
488 return err;
489#endif
490}
491
Chris Mason39279cc2007-06-12 06:35:45 -0400492/*
493 * this is very complex, but the basic idea is to drop all extents
494 * in the range start - end. hint_block is filled in with a block number
495 * that would be a good hint to the block allocator for this file.
496 *
497 * If an extent intersects the range but is not entirely inside the range
498 * it is either truncated or split. Anything entirely inside the range
499 * is deleted from the tree.
500 */
501int btrfs_drop_extents(struct btrfs_trans_handle *trans,
502 struct btrfs_root *root, struct inode *inode,
Chris Mason00f5c792007-11-30 10:09:33 -0500503 u64 start, u64 end, u64 inline_limit, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400504{
Chris Mason39279cc2007-06-12 06:35:45 -0400505 u64 extent_end = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400506 u64 search_start = start;
Chris Mason00f5c792007-11-30 10:09:33 -0500507 struct extent_buffer *leaf;
508 struct btrfs_file_extent_item *extent;
509 struct btrfs_path *path;
510 struct btrfs_key key;
511 struct btrfs_file_extent_item old;
512 int keep;
513 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400514 int bookend;
515 int found_type;
516 int found_extent;
517 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400518 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500519 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400520
Chris Masona52d9a82007-08-27 16:49:44 -0400521 btrfs_drop_extent_cache(inode, start, end - 1);
522
Chris Mason39279cc2007-06-12 06:35:45 -0400523 path = btrfs_alloc_path();
524 if (!path)
525 return -ENOMEM;
526 while(1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400527 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400528 btrfs_release_path(root, path);
529 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
530 search_start, -1);
531 if (ret < 0)
532 goto out;
533 if (ret > 0) {
534 if (path->slots[0] == 0) {
535 ret = 0;
536 goto out;
537 }
538 path->slots[0]--;
539 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400540next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400541 keep = 0;
542 bookend = 0;
543 found_extent = 0;
544 found_inline = 0;
545 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400546 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400547 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400548 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400549 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan72610092008-02-05 15:40:36 -0500550 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY &&
551 key.offset >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400552 goto out;
553 }
Yan72610092008-02-05 15:40:36 -0500554 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
555 key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400556 goto out;
557 }
Chris Masonccd467d2007-06-28 15:57:36 -0400558 if (recow) {
559 search_start = key.offset;
560 continue;
561 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400562 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
563 extent = btrfs_item_ptr(leaf, slot,
564 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400565 found_type = btrfs_file_extent_type(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400566 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500567 extent_end =
568 btrfs_file_extent_disk_bytenr(leaf,
569 extent);
570 if (extent_end)
571 *hint_byte = extent_end;
572
Chris Mason8c2383c2007-06-18 09:57:58 -0400573 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400574 btrfs_file_extent_num_bytes(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400575 found_extent = 1;
576 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400577 struct btrfs_item *item;
578 item = btrfs_item_nr(leaf, slot);
Chris Mason8c2383c2007-06-18 09:57:58 -0400579 found_inline = 1;
580 extent_end = key.offset +
Chris Mason5f39d392007-10-15 16:14:19 -0400581 btrfs_file_extent_inline_len(leaf, item);
Chris Mason8c2383c2007-06-18 09:57:58 -0400582 }
583 } else {
584 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400585 }
586
587 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400588 if ((!found_extent && !found_inline) ||
589 search_start >= extent_end) {
590 int nextret;
591 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400592 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400593 if (slot >= nritems - 1) {
594 nextret = btrfs_next_leaf(root, path);
595 if (nextret)
596 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400597 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400598 } else {
599 path->slots[0]++;
600 }
601 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400602 }
603
Chris Mason39279cc2007-06-12 06:35:45 -0400604 if (found_inline) {
Chris Mason5f39d392007-10-15 16:14:19 -0400605 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400606 search_start = (extent_end + mask) & ~mask;
607 } else
608 search_start = extent_end;
Yan6e3b9662007-12-14 11:14:42 -0500609 if (end <= extent_end && start >= key.offset && found_inline) {
Chris Mason179e29e2007-11-01 11:28:41 -0400610 *hint_byte = EXTENT_MAP_INLINE;
Yan6e3b9662007-12-14 11:14:42 -0500611 continue;
Chris Mason179e29e2007-11-01 11:28:41 -0400612 }
Chris Mason39279cc2007-06-12 06:35:45 -0400613 if (end < extent_end && end >= key.offset) {
614 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400615 u64 disk_bytenr =
616 btrfs_file_extent_disk_bytenr(leaf, extent);
617 u64 disk_num_bytes =
618 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400619 extent);
620 read_extent_buffer(leaf, &old,
621 (unsigned long)extent,
622 sizeof(old));
Chris Masondb945352007-10-15 16:15:53 -0400623 if (disk_bytenr != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400624 ret = btrfs_inc_extent_ref(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500625 disk_bytenr, disk_num_bytes,
626 root->root_key.objectid,
627 trans->transid,
628 key.objectid, end);
Chris Mason39279cc2007-06-12 06:35:45 -0400629 BUG_ON(ret);
630 }
631 }
Chris Mason179e29e2007-11-01 11:28:41 -0400632 bookend = 1;
Yan0181e582008-01-30 14:39:54 -0500633 if (found_inline && start <= key.offset)
Chris Mason179e29e2007-11-01 11:28:41 -0400634 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400635 }
Chris Mason39279cc2007-06-12 06:35:45 -0400636 /* truncate existing extent */
637 if (start > key.offset) {
638 u64 new_num;
639 u64 old_num;
640 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400641 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400642 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400643 new_num = start - key.offset;
644 old_num = btrfs_file_extent_num_bytes(leaf,
645 extent);
646 *hint_byte =
647 btrfs_file_extent_disk_bytenr(leaf,
648 extent);
649 if (btrfs_file_extent_disk_bytenr(leaf,
650 extent)) {
Chris Mason90692182008-02-08 13:49:28 -0500651 dec_i_blocks(inode, old_num - new_num);
Chris Mason39279cc2007-06-12 06:35:45 -0400652 }
Chris Masondb945352007-10-15 16:15:53 -0400653 btrfs_set_file_extent_num_bytes(leaf, extent,
654 new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400655 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500656 } else if (key.offset < inline_limit &&
657 (end > extent_end) &&
658 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400659 u32 new_size;
660 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500661 inline_limit - key.offset);
Chris Mason90692182008-02-08 13:49:28 -0500662 dec_i_blocks(inode, (extent_end - key.offset) -
663 (inline_limit - key.offset));
Chris Mason3326d1b2007-10-15 16:18:25 -0400664 btrfs_truncate_item(trans, root, path,
Chris Mason179e29e2007-11-01 11:28:41 -0400665 new_size, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400666 }
667 }
668 /* delete the entire extent */
669 if (!keep) {
Chris Masondb945352007-10-15 16:15:53 -0400670 u64 disk_bytenr = 0;
671 u64 disk_num_bytes = 0;
672 u64 extent_num_bytes = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500673 u64 root_gen;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500674 u64 root_owner;
Chris Mason7bb86312007-12-11 09:25:06 -0500675
Chris Masond8d5f3e2007-12-11 12:42:00 -0500676 root_gen = btrfs_header_generation(leaf);
677 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400678 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400679 disk_bytenr =
680 btrfs_file_extent_disk_bytenr(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400681 extent);
Chris Masondb945352007-10-15 16:15:53 -0400682 disk_num_bytes =
683 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400684 extent);
Chris Masondb945352007-10-15 16:15:53 -0400685 extent_num_bytes =
686 btrfs_file_extent_num_bytes(leaf, extent);
687 *hint_byte =
688 btrfs_file_extent_disk_bytenr(leaf,
689 extent);
Chris Mason39279cc2007-06-12 06:35:45 -0400690 }
691 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400692 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400693 BUG_ON(ret);
694 btrfs_release_path(root, path);
695 extent = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400696 if (found_extent && disk_bytenr != 0) {
Chris Mason90692182008-02-08 13:49:28 -0500697 dec_i_blocks(inode, extent_num_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400698 ret = btrfs_free_extent(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500699 disk_bytenr,
700 disk_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500701 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500702 root_gen, inode->i_ino,
703 key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400704 }
705
706 BUG_ON(ret);
707 if (!bookend && search_start >= end) {
708 ret = 0;
709 goto out;
710 }
711 if (!bookend)
712 continue;
713 }
Yan0181e582008-01-30 14:39:54 -0500714 if (bookend && found_inline && start <= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400715 u32 new_size;
716 new_size = btrfs_file_extent_calc_inline_size(
Yan0181e582008-01-30 14:39:54 -0500717 extent_end - end);
Chris Mason90692182008-02-08 13:49:28 -0500718 dec_i_blocks(inode, (extent_end - key.offset) -
719 (extent_end - end));
Chris Mason179e29e2007-11-01 11:28:41 -0400720 btrfs_truncate_item(trans, root, path, new_size, 0);
721 }
Chris Mason39279cc2007-06-12 06:35:45 -0400722 /* create bookend, splitting the extent in two */
723 if (bookend && found_extent) {
724 struct btrfs_key ins;
725 ins.objectid = inode->i_ino;
726 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400727 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -0400728 btrfs_release_path(root, path);
729 ret = btrfs_insert_empty_item(trans, root, path, &ins,
730 sizeof(*extent));
Chris Mason8c2383c2007-06-18 09:57:58 -0400731
Chris Mason5f39d392007-10-15 16:14:19 -0400732 leaf = path->nodes[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400733 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400734 btrfs_print_leaf(root, leaf);
735 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 -0400736 }
Chris Mason39279cc2007-06-12 06:35:45 -0400737 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400738 extent = btrfs_item_ptr(leaf, path->slots[0],
739 struct btrfs_file_extent_item);
740 write_extent_buffer(leaf, &old,
741 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400742
Chris Mason5f39d392007-10-15 16:14:19 -0400743 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400744 le64_to_cpu(old.offset) + end - key.offset);
745 WARN_ON(le64_to_cpu(old.num_bytes) <
746 (extent_end - end));
747 btrfs_set_file_extent_num_bytes(leaf, extent,
748 extent_end - end);
Chris Mason5f39d392007-10-15 16:14:19 -0400749 btrfs_set_file_extent_type(leaf, extent,
Chris Mason39279cc2007-06-12 06:35:45 -0400750 BTRFS_FILE_EXTENT_REG);
Chris Masondb945352007-10-15 16:15:53 -0400751
Chris Mason39279cc2007-06-12 06:35:45 -0400752 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400753 if (le64_to_cpu(old.disk_bytenr) != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400754 inode->i_blocks +=
Chris Masondb945352007-10-15 16:15:53 -0400755 btrfs_file_extent_num_bytes(leaf,
756 extent) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400757 }
758 ret = 0;
759 goto out;
760 }
761 }
762out:
763 btrfs_free_path(path);
Chris Mason90692182008-02-08 13:49:28 -0500764 btrfs_check_file(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400765 return ret;
766}
767
768/*
769 * this gets pages into the page cache and locks them down
770 */
Chris Mason98ed5172008-01-03 10:01:48 -0500771static int prepare_pages(struct btrfs_root *root, struct file *file,
772 struct page **pages, size_t num_pages,
773 loff_t pos, unsigned long first_index,
774 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400775{
776 int i;
777 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500778 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400779 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400780 u64 start_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400781
Chris Mason5f39d392007-10-15 16:14:19 -0400782 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400783
784 memset(pages, 0, num_pages * sizeof(struct page *));
785
786 for (i = 0; i < num_pages; i++) {
787 pages[i] = grab_cache_page(inode->i_mapping, index + i);
788 if (!pages[i]) {
789 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400790 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400791 }
Chris Mason6da6aba2007-12-18 16:15:09 -0500792#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
793 ClearPageDirty(pages[i]);
794#else
Chris Masonccd467d2007-06-28 15:57:36 -0400795 cancel_dirty_page(pages[i], PAGE_CACHE_SIZE);
Chris Mason6da6aba2007-12-18 16:15:09 -0500796#endif
Chris Masonccd467d2007-06-28 15:57:36 -0400797 wait_on_page_writeback(pages[i]);
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400798 set_page_extent_mapped(pages[i]);
Chris Masonb888db22007-08-27 16:49:44 -0400799 WARN_ON(!PageLocked(pages[i]));
Chris Mason39279cc2007-06-12 06:35:45 -0400800 }
Chris Mason07627042008-02-19 11:29:24 -0500801 if (start_pos < inode->i_size) {
802 u64 last_pos;
Chris Mason0740c822008-02-19 16:24:18 -0500803 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Masond99cb302008-02-19 12:55:05 -0500804 lock_extent(&BTRFS_I(inode)->io_tree,
805 start_pos, last_pos - 1, GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500806 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos,
807 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC,
808 GFP_NOFS);
Chris Masond99cb302008-02-19 12:55:05 -0500809 unlock_extent(&BTRFS_I(inode)->io_tree,
810 start_pos, last_pos - 1, GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500811 }
Chris Mason39279cc2007-06-12 06:35:45 -0400812 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400813}
814
815static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
816 size_t count, loff_t *ppos)
817{
818 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400819 loff_t start_pos;
820 ssize_t num_written = 0;
821 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400822 int ret = 0;
Chris Mason6da6aba2007-12-18 16:15:09 -0500823 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400824 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -0400825 struct page **pages = NULL;
826 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -0400827 struct page *pinned[2];
828 unsigned long first_index;
829 unsigned long last_index;
Chris Mason8c2383c2007-06-18 09:57:58 -0400830
831 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
832 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -0400833 pinned[0] = NULL;
834 pinned[1] = NULL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400835
Chris Mason39279cc2007-06-12 06:35:45 -0400836 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400837 start_pos = pos;
838
Chris Mason39279cc2007-06-12 06:35:45 -0400839 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
840 current->backing_dev_info = inode->i_mapping->backing_dev_info;
841 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
842 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500843 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400844 if (count == 0)
Chris Mason1832a6d2007-12-21 16:27:21 -0500845 goto out_nolock;
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -0400846#ifdef REMOVE_SUID_PATH
847 err = remove_suid(&file->f_path);
848#else
Chris Mason6da6aba2007-12-18 16:15:09 -0500849 err = remove_suid(fdentry(file));
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -0400850#endif
Chris Mason39279cc2007-06-12 06:35:45 -0400851 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500852 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400853 file_update_time(file);
854
Chris Mason8c2383c2007-06-18 09:57:58 -0400855 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400856
857 mutex_lock(&inode->i_mutex);
858 first_index = pos >> PAGE_CACHE_SHIFT;
859 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
860
861 /*
Chris Mason409c6112008-04-22 09:24:20 -0400862 * if this is a nodatasum mount, force summing off for the inode
863 * all the time. That way a later mount with summing on won't
864 * get confused
865 */
866 if (btrfs_test_opt(root, NODATASUM))
867 btrfs_set_flag(inode, NODATASUM);
868
869 /*
Chris Mason39279cc2007-06-12 06:35:45 -0400870 * there are lots of better ways to do this, but this code
871 * makes sure the first and last page in the file range are
872 * up to date and ready for cow
873 */
874 if ((pos & (PAGE_CACHE_SIZE - 1))) {
875 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
876 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400877 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400878 BUG_ON(ret);
879 wait_on_page_locked(pinned[0]);
880 } else {
881 unlock_page(pinned[0]);
882 }
883 }
884 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
885 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
886 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400887 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400888 BUG_ON(ret);
889 wait_on_page_locked(pinned[1]);
890 } else {
891 unlock_page(pinned[1]);
892 }
893 }
894
Chris Mason39279cc2007-06-12 06:35:45 -0400895 while(count > 0) {
896 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400897 size_t write_bytes = min(count, nrptrs *
898 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400899 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400900 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
901 PAGE_CACHE_SHIFT;
902
Chris Mason8c2383c2007-06-18 09:57:58 -0400903 WARN_ON(num_pages > nrptrs);
Chris Mason39279cc2007-06-12 06:35:45 -0400904 memset(pages, 0, sizeof(pages));
Chris Mason1832a6d2007-12-21 16:27:21 -0500905
Chris Mason1832a6d2007-12-21 16:27:21 -0500906 ret = btrfs_check_free_space(root, write_bytes, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -0500907 if (ret)
908 goto out;
909
Chris Mason39279cc2007-06-12 06:35:45 -0400910 ret = prepare_pages(root, file, pages, num_pages,
911 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400912 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -0400913 if (ret)
914 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400915
Chris Mason39279cc2007-06-12 06:35:45 -0400916 ret = btrfs_copy_from_user(pos, num_pages,
917 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400918 if (ret) {
919 btrfs_drop_pages(pages, num_pages);
920 goto out;
921 }
Chris Mason39279cc2007-06-12 06:35:45 -0400922
923 ret = dirty_and_release_pages(NULL, root, file, pages,
924 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400925 btrfs_drop_pages(pages, num_pages);
Chris Mason54aa1f42007-06-22 14:16:25 -0400926 if (ret)
927 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400928
929 buf += write_bytes;
930 count -= write_bytes;
931 pos += write_bytes;
932 num_written += write_bytes;
933
Chris Mason8c2383c2007-06-18 09:57:58 -0400934 balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
Chris Mason448d6402007-11-27 07:52:01 -0800935 if (num_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
936 btrfs_btree_balance_dirty(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400937 cond_resched();
938 }
Chris Mason39279cc2007-06-12 06:35:45 -0400939out:
Chris Mason1832a6d2007-12-21 16:27:21 -0500940 mutex_unlock(&inode->i_mutex);
Chris Mason5b92ee72008-01-03 13:46:11 -0500941
Chris Mason1832a6d2007-12-21 16:27:21 -0500942out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -0400943 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -0400944 if (pinned[0])
945 page_cache_release(pinned[0]);
946 if (pinned[1])
947 page_cache_release(pinned[1]);
948 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400949
950 if (num_written > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
951 err = sync_page_range(inode, inode->i_mapping,
952 start_pos, num_written);
953 if (err < 0)
954 num_written = err;
Chris Mason16432982008-04-10 10:23:21 -0400955 } else if (num_written > 0 && (file->f_flags & O_DIRECT)) {
Chris Masonbb8885c2008-05-02 14:49:33 -0400956#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
Chris Masonb248a412008-04-14 09:48:18 -0400957 do_sync_file_range(file, start_pos,
958 start_pos + num_written - 1,
959 SYNC_FILE_RANGE_WRITE |
960 SYNC_FILE_RANGE_WAIT_AFTER);
961#else
Chris Mason16432982008-04-10 10:23:21 -0400962 do_sync_mapping_range(inode->i_mapping, start_pos,
963 start_pos + num_written - 1,
964 SYNC_FILE_RANGE_WRITE |
965 SYNC_FILE_RANGE_WAIT_AFTER);
Chris Masonb248a412008-04-14 09:48:18 -0400966#endif
Chris Mason16432982008-04-10 10:23:21 -0400967 invalidate_mapping_pages(inode->i_mapping,
968 start_pos >> PAGE_CACHE_SHIFT,
969 (start_pos + num_written - 1) >> PAGE_CACHE_SHIFT);
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400970 }
Chris Mason39279cc2007-06-12 06:35:45 -0400971 current->backing_dev_info = NULL;
Chris Mason81d7ed22008-04-25 08:51:48 -0400972 btrfs_ordered_throttle(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400973 return num_written ? num_written : err;
974}
975
Sage Weil6bf13c02008-06-10 10:07:39 -0400976int btrfs_release_file(struct inode * inode, struct file * filp)
Mingminge1b81e62008-05-27 10:55:43 -0400977{
Chris Mason594a24e2008-06-25 16:01:30 -0400978 btrfs_del_ordered_inode(inode, 0);
Sage Weil6bf13c02008-06-10 10:07:39 -0400979 if (filp->private_data)
980 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -0400981 return 0;
982}
983
Chris Mason39279cc2007-06-12 06:35:45 -0400984static int btrfs_sync_file(struct file *file,
985 struct dentry *dentry, int datasync)
986{
987 struct inode *inode = dentry->d_inode;
988 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400989 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400990 struct btrfs_trans_handle *trans;
991
992 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400993 * check the transaction that last modified this inode
994 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -0400995 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400996 if (!BTRFS_I(inode)->last_trans)
997 goto out;
Chris Masona2135012008-06-25 16:01:30 -0400998
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400999 mutex_lock(&root->fs_info->trans_mutex);
1000 if (BTRFS_I(inode)->last_trans <=
1001 root->fs_info->last_trans_committed) {
1002 BTRFS_I(inode)->last_trans = 0;
1003 mutex_unlock(&root->fs_info->trans_mutex);
1004 goto out;
1005 }
1006 mutex_unlock(&root->fs_info->trans_mutex);
1007
1008 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001009 * ok we haven't committed the transaction yet, lets do a commit
1010 */
Sage Weil6bf13c02008-06-10 10:07:39 -04001011 if (file->private_data)
1012 btrfs_ioctl_trans_end(file);
1013
Chris Mason39279cc2007-06-12 06:35:45 -04001014 trans = btrfs_start_transaction(root, 1);
1015 if (!trans) {
1016 ret = -ENOMEM;
1017 goto out;
1018 }
1019 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04001020out:
1021 return ret > 0 ? EIO : ret;
1022}
1023
Chris Mason9ebefb182007-06-15 13:50:00 -04001024static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001025#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
1026 .nopage = filemap_nopage,
1027 .populate = filemap_populate,
1028#else
1029 .fault = filemap_fault,
1030#endif
Chris Mason9ebefb182007-06-15 13:50:00 -04001031 .page_mkwrite = btrfs_page_mkwrite,
1032};
1033
1034static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1035{
1036 vma->vm_ops = &btrfs_file_vm_ops;
1037 file_accessed(filp);
1038 return 0;
1039}
1040
Chris Mason39279cc2007-06-12 06:35:45 -04001041struct file_operations btrfs_file_operations = {
1042 .llseek = generic_file_llseek,
1043 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -04001044 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001045 .splice_read = generic_file_splice_read,
Chris Mason6da6aba2007-12-18 16:15:09 -05001046#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1047 .sendfile = generic_file_sendfile,
1048#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001049 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001050 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001051 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001052 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001053 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001054 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001055#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001056 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001057#endif
1058};
1059