blob: 40ad1b2958cb2047ec951a2da9569ba5066bcc98 [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;
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);
Chris Mason90692182008-02-08 13:49:28 -0500178 inode->i_blocks += (offset + size - found_end) >> 9;
Chris Mason3326d1b2007-10-15 16:18:25 -0400179 }
Yan18f16f72007-10-25 15:42:57 -0400180 if (found_end < offset) {
181 ptr = btrfs_file_extent_inline_start(ei) + found_size;
182 memset_extent_buffer(leaf, 0, ptr, offset - found_end);
183 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400184 } else {
185insert:
186 btrfs_release_path(root, path);
Yan18f16f72007-10-25 15:42:57 -0400187 datasize = offset + size - key.offset;
Chris Mason90692182008-02-08 13:49:28 -0500188 inode->i_blocks += datasize >> 9;
Yan18f16f72007-10-25 15:42:57 -0400189 datasize = btrfs_file_extent_calc_inline_size(datasize);
Chris Mason3326d1b2007-10-15 16:18:25 -0400190 ret = btrfs_insert_empty_item(trans, root, path, &key,
191 datasize);
192 if (ret) {
193 err = ret;
194 printk("got bad ret %d\n", ret);
195 goto fail;
196 }
197 leaf = path->nodes[0];
198 ei = btrfs_item_ptr(leaf, path->slots[0],
199 struct btrfs_file_extent_item);
200 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
201 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
202 }
Yan18f16f72007-10-25 15:42:57 -0400203 ptr = btrfs_file_extent_inline_start(ei) + offset - key.offset;
Chris Mason3326d1b2007-10-15 16:18:25 -0400204
205 cur_size = size;
206 i = 0;
207 while (size > 0) {
208 page = pages[i];
209 kaddr = kmap_atomic(page, KM_USER0);
Jens Axboeae2f5412007-10-19 09:22:59 -0400210 cur_size = min_t(size_t, PAGE_CACHE_SIZE - page_offset, size);
Chris Mason3326d1b2007-10-15 16:18:25 -0400211 write_extent_buffer(leaf, kaddr + page_offset, ptr, cur_size);
212 kunmap_atomic(kaddr, KM_USER0);
213 page_offset = 0;
214 ptr += cur_size;
215 size -= cur_size;
216 if (i >= num_pages) {
217 printk("i %d num_pages %d\n", i, num_pages);
218 }
219 i++;
220 }
Chris Mason5f39d392007-10-15 16:14:19 -0400221 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400222fail:
223 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400224 return err;
225}
226
Chris Mason98ed5172008-01-03 10:01:48 -0500227static int noinline dirty_and_release_pages(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400228 struct btrfs_root *root,
229 struct file *file,
230 struct page **pages,
231 size_t num_pages,
232 loff_t pos,
233 size_t write_bytes)
234{
Chris Mason39279cc2007-06-12 06:35:45 -0400235 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400236 int i;
Chris Mason6da6aba2007-12-18 16:15:09 -0500237 struct inode *inode = fdentry(file)->d_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500238 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masondb945352007-10-15 16:15:53 -0400239 u64 hint_byte;
240 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400241 u64 start_pos;
242 u64 end_of_last_block;
243 u64 end_pos = pos + write_bytes;
Yandcfec0d2007-11-06 10:26:26 -0500244 u64 inline_size;
Chris Masonee6e6502008-07-17 12:54:40 -0400245 int did_inline = 0;
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 Masonba1da2f2008-07-17 12:54:15 -0400255 trans = btrfs_start_transaction(root, 1);
Chris Masona52d9a82007-08-27 16:49:44 -0400256 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;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400276 if (hole_size > 0) {
277 btrfs_wait_ordered_range(inode, last_pos_in_file,
278 last_pos_in_file + hole_size);
Chris Masonee6e6502008-07-17 12:54:40 -0400279 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -0400280 err = btrfs_drop_extents(trans, root, inode,
281 last_pos_in_file,
282 last_pos_in_file + hole_size,
Chris Mason3326d1b2007-10-15 16:18:25 -0400283 last_pos_in_file,
Chris Masondb945352007-10-15 16:15:53 -0400284 &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400285 if (err)
286 goto failed;
287
Chris Masona52d9a82007-08-27 16:49:44 -0400288 err = btrfs_insert_file_extent(trans, root,
289 inode->i_ino,
290 last_pos_in_file,
Sage Weilf2eb0a22008-05-02 14:43:14 -0400291 0, 0, hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -0500292 btrfs_drop_extent_cache(inode, last_pos_in_file,
293 last_pos_in_file + hole_size -1);
Chris Masonee6e6502008-07-17 12:54:40 -0400294 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason5f564062008-01-22 16:47:59 -0500295 btrfs_check_file(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400296 }
Chris Masona52d9a82007-08-27 16:49:44 -0400297 if (err)
298 goto failed;
299 }
300
301 /*
302 * either allocate an extent for the new bytes or setup the key
303 * to show we are doing inline data in the extent
304 */
Chris Mason3326d1b2007-10-15 16:18:25 -0400305 inline_size = end_pos;
306 if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
Chris Mason6f568d32008-01-29 16:03:38 -0500307 inline_size > root->fs_info->max_inline ||
308 (inline_size & (root->sectorsize -1)) == 0 ||
Chris Mason3326d1b2007-10-15 16:18:25 -0400309 inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400310 /* check for reserved extents on each page, we don't want
311 * to reset the delalloc bit on things that already have
312 * extents reserved.
313 */
314 set_extent_delalloc(io_tree, start_pos,
315 end_of_last_block, GFP_NOFS);
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);
340 did_inline = 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400341 }
342 if (end_pos > isize) {
343 i_size_write(inode, end_pos);
Chris Masonee6e6502008-07-17 12:54:40 -0400344 if (did_inline)
345 BTRFS_I(inode)->disk_i_size = end_pos;
Chris Masona52d9a82007-08-27 16:49:44 -0400346 btrfs_update_inode(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400347 }
348failed:
Chris Masondbe674a2008-07-17 12:54:05 -0400349 err = btrfs_end_transaction_throttle(trans, root);
Chris Masona52d9a82007-08-27 16:49:44 -0400350out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500351 unlock_extent(io_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400352 return err;
353}
354
Chris Masona52d9a82007-08-27 16:49:44 -0400355int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
356{
357 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400358 struct extent_map *split = NULL;
359 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400360 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400361 struct extent_map *tmp;
Yan39b56372008-02-15 10:40:50 -0500362 u64 len = end - start + 1;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400363 u64 next_start;
Chris Mason3b951512008-04-17 11:29:12 -0400364 int ret;
365 int testend = 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400366
Chris Masone6dcd2d2008-07-17 12:53:50 -0400367 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400368 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500369 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400370 testend = 0;
371 }
Chris Masona52d9a82007-08-27 16:49:44 -0400372 while(1) {
Chris Mason3b951512008-04-17 11:29:12 -0400373 if (!split)
374 split = alloc_extent_map(GFP_NOFS);
375 if (!split2)
376 split2 = alloc_extent_map(GFP_NOFS);
377
Chris Masond1310b22008-01-24 16:13:08 -0500378 spin_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500379 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500380 if (!em) {
381 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400382 break;
Chris Masond1310b22008-01-24 16:13:08 -0500383 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400384 tmp = rb_entry(&em->rb_node, struct extent_map, rb_node);
385 next_start = tmp->start;
Chris Masona52d9a82007-08-27 16:49:44 -0400386 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400387
388 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
389 em->start < start) {
390 split->start = em->start;
391 split->len = start - em->start;
392 split->block_start = em->block_start;
393 split->bdev = em->bdev;
394 split->flags = em->flags;
395 ret = add_extent_mapping(em_tree, split);
396 BUG_ON(ret);
397 free_extent_map(split);
398 split = split2;
399 split2 = NULL;
400 }
401 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
402 testend && em->start + em->len > start + len) {
403 u64 diff = start + len - em->start;
404
405 split->start = start + len;
406 split->len = em->start + em->len - (start + len);
407 split->bdev = em->bdev;
408 split->flags = em->flags;
409
410 split->block_start = em->block_start + diff;
411
412 ret = add_extent_mapping(em_tree, split);
413 BUG_ON(ret);
414 free_extent_map(split);
415 split = NULL;
416 }
Chris Masond1310b22008-01-24 16:13:08 -0500417 spin_unlock(&em_tree->lock);
418
Chris Masona52d9a82007-08-27 16:49:44 -0400419 /* once for us */
420 free_extent_map(em);
421 /* once for the tree*/
422 free_extent_map(em);
423 }
Chris Mason3b951512008-04-17 11:29:12 -0400424 if (split)
425 free_extent_map(split);
426 if (split2)
427 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400428 return 0;
429}
430
Chris Mason5f564062008-01-22 16:47:59 -0500431int btrfs_check_file(struct btrfs_root *root, struct inode *inode)
432{
433 return 0;
434#if 0
435 struct btrfs_path *path;
436 struct btrfs_key found_key;
437 struct extent_buffer *leaf;
438 struct btrfs_file_extent_item *extent;
439 u64 last_offset = 0;
440 int nritems;
441 int slot;
442 int found_type;
443 int ret;
444 int err = 0;
445 u64 extent_end = 0;
446
447 path = btrfs_alloc_path();
448 ret = btrfs_lookup_file_extent(NULL, root, path, inode->i_ino,
449 last_offset, 0);
450 while(1) {
451 nritems = btrfs_header_nritems(path->nodes[0]);
452 if (path->slots[0] >= nritems) {
453 ret = btrfs_next_leaf(root, path);
454 if (ret)
455 goto out;
456 nritems = btrfs_header_nritems(path->nodes[0]);
457 }
458 slot = path->slots[0];
459 leaf = path->nodes[0];
460 btrfs_item_key_to_cpu(leaf, &found_key, slot);
461 if (found_key.objectid != inode->i_ino)
462 break;
463 if (found_key.type != BTRFS_EXTENT_DATA_KEY)
464 goto out;
465
Chris Mason90692182008-02-08 13:49:28 -0500466 if (found_key.offset < last_offset) {
Chris Mason5f564062008-01-22 16:47:59 -0500467 WARN_ON(1);
468 btrfs_print_leaf(root, leaf);
469 printk("inode %lu found offset %Lu expected %Lu\n",
470 inode->i_ino, found_key.offset, last_offset);
471 err = 1;
472 goto out;
473 }
474 extent = btrfs_item_ptr(leaf, slot,
475 struct btrfs_file_extent_item);
476 found_type = btrfs_file_extent_type(leaf, extent);
477 if (found_type == BTRFS_FILE_EXTENT_REG) {
478 extent_end = found_key.offset +
479 btrfs_file_extent_num_bytes(leaf, extent);
480 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
481 struct btrfs_item *item;
482 item = btrfs_item_nr(leaf, slot);
483 extent_end = found_key.offset +
484 btrfs_file_extent_inline_len(leaf, item);
485 extent_end = (extent_end + root->sectorsize - 1) &
486 ~((u64)root->sectorsize -1 );
487 }
488 last_offset = extent_end;
489 path->slots[0]++;
490 }
Chris Mason90692182008-02-08 13:49:28 -0500491 if (0 && last_offset < inode->i_size) {
Chris Mason5f564062008-01-22 16:47:59 -0500492 WARN_ON(1);
493 btrfs_print_leaf(root, leaf);
494 printk("inode %lu found offset %Lu size %Lu\n", inode->i_ino,
495 last_offset, inode->i_size);
496 err = 1;
497
498 }
499out:
500 btrfs_free_path(path);
501 return err;
502#endif
503}
504
Chris Mason39279cc2007-06-12 06:35:45 -0400505/*
506 * this is very complex, but the basic idea is to drop all extents
507 * in the range start - end. hint_block is filled in with a block number
508 * that would be a good hint to the block allocator for this file.
509 *
510 * If an extent intersects the range but is not entirely inside the range
511 * it is either truncated or split. Anything entirely inside the range
512 * is deleted from the tree.
513 */
514int btrfs_drop_extents(struct btrfs_trans_handle *trans,
515 struct btrfs_root *root, struct inode *inode,
Chris Mason00f5c792007-11-30 10:09:33 -0500516 u64 start, u64 end, u64 inline_limit, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400517{
Chris Mason39279cc2007-06-12 06:35:45 -0400518 u64 extent_end = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400519 u64 search_start = start;
Chris Mason00f5c792007-11-30 10:09:33 -0500520 struct extent_buffer *leaf;
521 struct btrfs_file_extent_item *extent;
522 struct btrfs_path *path;
523 struct btrfs_key key;
524 struct btrfs_file_extent_item old;
525 int keep;
526 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400527 int bookend;
528 int found_type;
529 int found_extent;
530 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400531 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500532 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400533
Chris Masona52d9a82007-08-27 16:49:44 -0400534 btrfs_drop_extent_cache(inode, start, end - 1);
535
Chris Mason39279cc2007-06-12 06:35:45 -0400536 path = btrfs_alloc_path();
537 if (!path)
538 return -ENOMEM;
539 while(1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400540 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400541 btrfs_release_path(root, path);
542 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
543 search_start, -1);
544 if (ret < 0)
545 goto out;
546 if (ret > 0) {
547 if (path->slots[0] == 0) {
548 ret = 0;
549 goto out;
550 }
551 path->slots[0]--;
552 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400553next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400554 keep = 0;
555 bookend = 0;
556 found_extent = 0;
557 found_inline = 0;
558 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400559 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400560 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400561 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400562 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan72610092008-02-05 15:40:36 -0500563 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY &&
564 key.offset >= end) {
Chris Mason39279cc2007-06-12 06:35:45 -0400565 goto out;
566 }
Yan72610092008-02-05 15:40:36 -0500567 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
568 key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400569 goto out;
570 }
Chris Masonccd467d2007-06-28 15:57:36 -0400571 if (recow) {
572 search_start = key.offset;
573 continue;
574 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400575 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
576 extent = btrfs_item_ptr(leaf, slot,
577 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400578 found_type = btrfs_file_extent_type(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400579 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500580 extent_end =
581 btrfs_file_extent_disk_bytenr(leaf,
582 extent);
583 if (extent_end)
584 *hint_byte = extent_end;
585
Chris Mason8c2383c2007-06-18 09:57:58 -0400586 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400587 btrfs_file_extent_num_bytes(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400588 found_extent = 1;
589 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400590 struct btrfs_item *item;
591 item = btrfs_item_nr(leaf, slot);
Chris Mason8c2383c2007-06-18 09:57:58 -0400592 found_inline = 1;
593 extent_end = key.offset +
Chris Mason5f39d392007-10-15 16:14:19 -0400594 btrfs_file_extent_inline_len(leaf, item);
Chris Mason8c2383c2007-06-18 09:57:58 -0400595 }
596 } else {
597 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400598 }
599
600 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400601 if ((!found_extent && !found_inline) ||
602 search_start >= extent_end) {
603 int nextret;
604 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400605 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400606 if (slot >= nritems - 1) {
607 nextret = btrfs_next_leaf(root, path);
608 if (nextret)
609 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400610 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400611 } else {
612 path->slots[0]++;
613 }
614 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400615 }
616
Chris Mason39279cc2007-06-12 06:35:45 -0400617 if (found_inline) {
Chris Mason5f39d392007-10-15 16:14:19 -0400618 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400619 search_start = (extent_end + mask) & ~mask;
620 } else
621 search_start = extent_end;
Yan6e3b9662007-12-14 11:14:42 -0500622 if (end <= extent_end && start >= key.offset && found_inline) {
Chris Mason179e29e2007-11-01 11:28:41 -0400623 *hint_byte = EXTENT_MAP_INLINE;
Yan6e3b9662007-12-14 11:14:42 -0500624 continue;
Chris Mason179e29e2007-11-01 11:28:41 -0400625 }
Chris Mason39279cc2007-06-12 06:35:45 -0400626 if (end < extent_end && end >= key.offset) {
627 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400628 u64 disk_bytenr =
629 btrfs_file_extent_disk_bytenr(leaf, extent);
630 u64 disk_num_bytes =
631 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400632 extent);
633 read_extent_buffer(leaf, &old,
634 (unsigned long)extent,
635 sizeof(old));
Chris Masondb945352007-10-15 16:15:53 -0400636 if (disk_bytenr != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400637 ret = btrfs_inc_extent_ref(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500638 disk_bytenr, disk_num_bytes,
639 root->root_key.objectid,
640 trans->transid,
641 key.objectid, end);
Chris Mason39279cc2007-06-12 06:35:45 -0400642 BUG_ON(ret);
643 }
644 }
Chris Mason179e29e2007-11-01 11:28:41 -0400645 bookend = 1;
Yan0181e582008-01-30 14:39:54 -0500646 if (found_inline && start <= key.offset)
Chris Mason179e29e2007-11-01 11:28:41 -0400647 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400648 }
Chris Mason39279cc2007-06-12 06:35:45 -0400649 /* truncate existing extent */
650 if (start > key.offset) {
651 u64 new_num;
652 u64 old_num;
653 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400654 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400655 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400656 new_num = start - key.offset;
657 old_num = btrfs_file_extent_num_bytes(leaf,
658 extent);
659 *hint_byte =
660 btrfs_file_extent_disk_bytenr(leaf,
661 extent);
662 if (btrfs_file_extent_disk_bytenr(leaf,
663 extent)) {
Chris Mason90692182008-02-08 13:49:28 -0500664 dec_i_blocks(inode, old_num - new_num);
Chris Mason39279cc2007-06-12 06:35:45 -0400665 }
Chris Masondb945352007-10-15 16:15:53 -0400666 btrfs_set_file_extent_num_bytes(leaf, extent,
667 new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400668 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500669 } else if (key.offset < inline_limit &&
670 (end > extent_end) &&
671 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400672 u32 new_size;
673 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500674 inline_limit - key.offset);
Chris Mason90692182008-02-08 13:49:28 -0500675 dec_i_blocks(inode, (extent_end - key.offset) -
676 (inline_limit - key.offset));
Chris Mason3326d1b2007-10-15 16:18:25 -0400677 btrfs_truncate_item(trans, root, path,
Chris Mason179e29e2007-11-01 11:28:41 -0400678 new_size, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400679 }
680 }
681 /* delete the entire extent */
682 if (!keep) {
Chris Masondb945352007-10-15 16:15:53 -0400683 u64 disk_bytenr = 0;
684 u64 disk_num_bytes = 0;
685 u64 extent_num_bytes = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500686 u64 root_gen;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500687 u64 root_owner;
Chris Mason7bb86312007-12-11 09:25:06 -0500688
Chris Masond8d5f3e2007-12-11 12:42:00 -0500689 root_gen = btrfs_header_generation(leaf);
690 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400691 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400692 disk_bytenr =
693 btrfs_file_extent_disk_bytenr(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400694 extent);
Chris Masondb945352007-10-15 16:15:53 -0400695 disk_num_bytes =
696 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400697 extent);
Chris Masondb945352007-10-15 16:15:53 -0400698 extent_num_bytes =
699 btrfs_file_extent_num_bytes(leaf, extent);
700 *hint_byte =
701 btrfs_file_extent_disk_bytenr(leaf,
702 extent);
Chris Mason39279cc2007-06-12 06:35:45 -0400703 }
704 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400705 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400706 BUG_ON(ret);
707 btrfs_release_path(root, path);
708 extent = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400709 if (found_extent && disk_bytenr != 0) {
Chris Mason90692182008-02-08 13:49:28 -0500710 dec_i_blocks(inode, extent_num_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400711 ret = btrfs_free_extent(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500712 disk_bytenr,
713 disk_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500714 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500715 root_gen, inode->i_ino,
716 key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400717 }
718
719 BUG_ON(ret);
720 if (!bookend && search_start >= end) {
721 ret = 0;
722 goto out;
723 }
724 if (!bookend)
725 continue;
726 }
Yan0181e582008-01-30 14:39:54 -0500727 if (bookend && found_inline && start <= key.offset) {
Chris Mason179e29e2007-11-01 11:28:41 -0400728 u32 new_size;
729 new_size = btrfs_file_extent_calc_inline_size(
Yan0181e582008-01-30 14:39:54 -0500730 extent_end - end);
Chris Mason90692182008-02-08 13:49:28 -0500731 dec_i_blocks(inode, (extent_end - key.offset) -
732 (extent_end - end));
Chris Mason179e29e2007-11-01 11:28:41 -0400733 btrfs_truncate_item(trans, root, path, new_size, 0);
734 }
Chris Mason39279cc2007-06-12 06:35:45 -0400735 /* create bookend, splitting the extent in two */
736 if (bookend && found_extent) {
737 struct btrfs_key ins;
738 ins.objectid = inode->i_ino;
739 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400740 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -0400741 btrfs_release_path(root, path);
742 ret = btrfs_insert_empty_item(trans, root, path, &ins,
743 sizeof(*extent));
Chris Mason8c2383c2007-06-18 09:57:58 -0400744
Chris Mason5f39d392007-10-15 16:14:19 -0400745 leaf = path->nodes[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400746 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400747 btrfs_print_leaf(root, leaf);
748 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 -0400749 }
Chris Mason39279cc2007-06-12 06:35:45 -0400750 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400751 extent = btrfs_item_ptr(leaf, path->slots[0],
752 struct btrfs_file_extent_item);
753 write_extent_buffer(leaf, &old,
754 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400755
Chris Mason5f39d392007-10-15 16:14:19 -0400756 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400757 le64_to_cpu(old.offset) + end - key.offset);
758 WARN_ON(le64_to_cpu(old.num_bytes) <
759 (extent_end - end));
760 btrfs_set_file_extent_num_bytes(leaf, extent,
761 extent_end - end);
Chris Mason5f39d392007-10-15 16:14:19 -0400762 btrfs_set_file_extent_type(leaf, extent,
Chris Mason39279cc2007-06-12 06:35:45 -0400763 BTRFS_FILE_EXTENT_REG);
Chris Masondb945352007-10-15 16:15:53 -0400764
Chris Mason39279cc2007-06-12 06:35:45 -0400765 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400766 if (le64_to_cpu(old.disk_bytenr) != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400767 inode->i_blocks +=
Chris Masondb945352007-10-15 16:15:53 -0400768 btrfs_file_extent_num_bytes(leaf,
769 extent) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400770 }
771 ret = 0;
772 goto out;
773 }
774 }
775out:
776 btrfs_free_path(path);
Chris Mason90692182008-02-08 13:49:28 -0500777 btrfs_check_file(root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400778 return ret;
779}
780
781/*
782 * this gets pages into the page cache and locks them down
783 */
Chris Mason98ed5172008-01-03 10:01:48 -0500784static int prepare_pages(struct btrfs_root *root, struct file *file,
785 struct page **pages, size_t num_pages,
786 loff_t pos, unsigned long first_index,
787 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400788{
789 int i;
790 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500791 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400792 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400793 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400794 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400795
Chris Mason5f39d392007-10-15 16:14:19 -0400796 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400797 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -0400798
799 memset(pages, 0, num_pages * sizeof(struct page *));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400800again:
Chris Mason39279cc2007-06-12 06:35:45 -0400801 for (i = 0; i < num_pages; i++) {
802 pages[i] = grab_cache_page(inode->i_mapping, index + i);
803 if (!pages[i]) {
804 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400805 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400806 }
Chris Masonccd467d2007-06-28 15:57:36 -0400807 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400808 }
Chris Mason07627042008-02-19 11:29:24 -0500809 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400810 struct btrfs_ordered_extent *ordered;
Chris Masond99cb302008-02-19 12:55:05 -0500811 lock_extent(&BTRFS_I(inode)->io_tree,
812 start_pos, last_pos - 1, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400813 ordered = btrfs_lookup_first_ordered_extent(inode, last_pos -1);
814 if (ordered &&
815 ordered->file_offset + ordered->len > start_pos &&
816 ordered->file_offset < last_pos) {
817 btrfs_put_ordered_extent(ordered);
818 unlock_extent(&BTRFS_I(inode)->io_tree,
819 start_pos, last_pos - 1, GFP_NOFS);
820 for (i = 0; i < num_pages; i++) {
821 unlock_page(pages[i]);
822 page_cache_release(pages[i]);
823 }
824 btrfs_wait_ordered_range(inode, start_pos,
825 last_pos - start_pos);
826 goto again;
827 }
828 if (ordered)
829 btrfs_put_ordered_extent(ordered);
830
Chris Mason07627042008-02-19 11:29:24 -0500831 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos,
832 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC,
833 GFP_NOFS);
Chris Masond99cb302008-02-19 12:55:05 -0500834 unlock_extent(&BTRFS_I(inode)->io_tree,
835 start_pos, last_pos - 1, GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -0500836 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400837 for (i = 0; i < num_pages; i++) {
838#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
839 ClearPageDirty(pages[i]);
840#else
841 cancel_dirty_page(pages[i], PAGE_CACHE_SIZE);
842#endif
843 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
Chris Mason6da6aba2007-12-18 16:15:09 -0500883 err = remove_suid(fdentry(file));
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -0400884#endif
Chris Mason39279cc2007-06-12 06:35:45 -0400885 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500886 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400887 file_update_time(file);
888
Chris Mason8c2383c2007-06-18 09:57:58 -0400889 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400890
891 mutex_lock(&inode->i_mutex);
892 first_index = pos >> PAGE_CACHE_SHIFT;
893 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
894
895 /*
Chris Mason409c6112008-04-22 09:24:20 -0400896 * if this is a nodatasum mount, force summing off for the inode
897 * all the time. That way a later mount with summing on won't
898 * get confused
899 */
900 if (btrfs_test_opt(root, NODATASUM))
901 btrfs_set_flag(inode, NODATASUM);
902
903 /*
Chris Mason39279cc2007-06-12 06:35:45 -0400904 * there are lots of better ways to do this, but this code
905 * makes sure the first and last page in the file range are
906 * up to date and ready for cow
907 */
908 if ((pos & (PAGE_CACHE_SIZE - 1))) {
909 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
910 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400911 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400912 BUG_ON(ret);
913 wait_on_page_locked(pinned[0]);
914 } else {
915 unlock_page(pinned[0]);
916 }
917 }
918 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
919 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
920 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400921 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400922 BUG_ON(ret);
923 wait_on_page_locked(pinned[1]);
924 } else {
925 unlock_page(pinned[1]);
926 }
927 }
928
Chris Mason39279cc2007-06-12 06:35:45 -0400929 while(count > 0) {
930 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400931 size_t write_bytes = min(count, nrptrs *
932 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400933 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400934 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
935 PAGE_CACHE_SHIFT;
936
Chris Mason8c2383c2007-06-18 09:57:58 -0400937 WARN_ON(num_pages > nrptrs);
Chris Mason39279cc2007-06-12 06:35:45 -0400938 memset(pages, 0, sizeof(pages));
Chris Mason1832a6d2007-12-21 16:27:21 -0500939
Chris Mason1832a6d2007-12-21 16:27:21 -0500940 ret = btrfs_check_free_space(root, write_bytes, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -0500941 if (ret)
942 goto out;
943
Chris Mason39279cc2007-06-12 06:35:45 -0400944 ret = prepare_pages(root, file, pages, num_pages,
945 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400946 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -0400947 if (ret)
948 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400949
Chris Mason39279cc2007-06-12 06:35:45 -0400950 ret = btrfs_copy_from_user(pos, num_pages,
951 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400952 if (ret) {
953 btrfs_drop_pages(pages, num_pages);
954 goto out;
955 }
Chris Mason39279cc2007-06-12 06:35:45 -0400956
957 ret = dirty_and_release_pages(NULL, root, file, pages,
958 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400959 btrfs_drop_pages(pages, num_pages);
Chris Mason54aa1f42007-06-22 14:16:25 -0400960 if (ret)
961 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400962
963 buf += write_bytes;
964 count -= write_bytes;
965 pos += write_bytes;
966 num_written += write_bytes;
967
Chris Mason8c2383c2007-06-18 09:57:58 -0400968 balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
Chris Mason448d6402007-11-27 07:52:01 -0800969 if (num_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
970 btrfs_btree_balance_dirty(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400971 cond_resched();
972 }
Chris Mason39279cc2007-06-12 06:35:45 -0400973out:
Chris Mason1832a6d2007-12-21 16:27:21 -0500974 mutex_unlock(&inode->i_mutex);
Chris Mason5b92ee72008-01-03 13:46:11 -0500975
Chris Mason1832a6d2007-12-21 16:27:21 -0500976out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -0400977 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -0400978 if (pinned[0])
979 page_cache_release(pinned[0]);
980 if (pinned[1])
981 page_cache_release(pinned[1]);
982 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400983
984 if (num_written > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
985 err = sync_page_range(inode, inode->i_mapping,
986 start_pos, num_written);
987 if (err < 0)
988 num_written = err;
Chris Mason16432982008-04-10 10:23:21 -0400989 } else if (num_written > 0 && (file->f_flags & O_DIRECT)) {
Chris Masonbb8885c2008-05-02 14:49:33 -0400990#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
Chris Masonb248a412008-04-14 09:48:18 -0400991 do_sync_file_range(file, start_pos,
992 start_pos + num_written - 1,
993 SYNC_FILE_RANGE_WRITE |
994 SYNC_FILE_RANGE_WAIT_AFTER);
995#else
Chris Mason16432982008-04-10 10:23:21 -0400996 do_sync_mapping_range(inode->i_mapping, start_pos,
997 start_pos + num_written - 1,
998 SYNC_FILE_RANGE_WRITE |
999 SYNC_FILE_RANGE_WAIT_AFTER);
Chris Masonb248a412008-04-14 09:48:18 -04001000#endif
Chris Mason16432982008-04-10 10:23:21 -04001001 invalidate_mapping_pages(inode->i_mapping,
1002 start_pos >> PAGE_CACHE_SHIFT,
1003 (start_pos + num_written - 1) >> PAGE_CACHE_SHIFT);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001004 }
Chris Mason39279cc2007-06-12 06:35:45 -04001005 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001006 return num_written ? num_written : err;
1007}
1008
Sage Weil6bf13c02008-06-10 10:07:39 -04001009int btrfs_release_file(struct inode * inode, struct file * filp)
Mingminge1b81e62008-05-27 10:55:43 -04001010{
Sage Weil6bf13c02008-06-10 10:07:39 -04001011 if (filp->private_data)
1012 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001013 return 0;
1014}
1015
Chris Mason39279cc2007-06-12 06:35:45 -04001016static int btrfs_sync_file(struct file *file,
1017 struct dentry *dentry, int datasync)
1018{
1019 struct inode *inode = dentry->d_inode;
1020 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001021 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001022 struct btrfs_trans_handle *trans;
1023
1024 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001025 * check the transaction that last modified this inode
1026 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001027 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001028 if (!BTRFS_I(inode)->last_trans)
1029 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001030
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001031 mutex_lock(&root->fs_info->trans_mutex);
1032 if (BTRFS_I(inode)->last_trans <=
1033 root->fs_info->last_trans_committed) {
1034 BTRFS_I(inode)->last_trans = 0;
1035 mutex_unlock(&root->fs_info->trans_mutex);
1036 goto out;
1037 }
1038 mutex_unlock(&root->fs_info->trans_mutex);
1039
1040 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001041 * ok we haven't committed the transaction yet, lets do a commit
1042 */
Sage Weil6bf13c02008-06-10 10:07:39 -04001043 if (file->private_data)
1044 btrfs_ioctl_trans_end(file);
1045
Chris Mason39279cc2007-06-12 06:35:45 -04001046 trans = btrfs_start_transaction(root, 1);
1047 if (!trans) {
1048 ret = -ENOMEM;
1049 goto out;
1050 }
1051 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04001052out:
1053 return ret > 0 ? EIO : ret;
1054}
1055
Chris Mason9ebefb182007-06-15 13:50:00 -04001056static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001057#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
1058 .nopage = filemap_nopage,
1059 .populate = filemap_populate,
1060#else
1061 .fault = filemap_fault,
1062#endif
Chris Mason9ebefb182007-06-15 13:50:00 -04001063 .page_mkwrite = btrfs_page_mkwrite,
1064};
1065
1066static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1067{
1068 vma->vm_ops = &btrfs_file_vm_ops;
1069 file_accessed(filp);
1070 return 0;
1071}
1072
Chris Mason39279cc2007-06-12 06:35:45 -04001073struct file_operations btrfs_file_operations = {
1074 .llseek = generic_file_llseek,
1075 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -04001076 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001077 .splice_read = generic_file_splice_read,
Chris Mason6da6aba2007-12-18 16:15:09 -05001078#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1079 .sendfile = generic_file_sendfile,
1080#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001081 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001082 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001083 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001084 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001085 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001086 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001087#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001088 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001089#endif
1090};
1091