blob: abdd9caad94ec57f745061ff9116911c25ee835f [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"
39
40
41static int btrfs_copy_from_user(loff_t pos, int num_pages, int write_bytes,
42 struct page **prepared_pages,
43 const char __user * buf)
44{
45 long page_fault = 0;
46 int i;
47 int offset = pos & (PAGE_CACHE_SIZE - 1);
48
49 for (i = 0; i < num_pages && write_bytes > 0; i++, offset = 0) {
50 size_t count = min_t(size_t,
51 PAGE_CACHE_SIZE - offset, write_bytes);
52 struct page *page = prepared_pages[i];
53 fault_in_pages_readable(buf, count);
54
55 /* Copy data from userspace to the current page */
56 kmap(page);
57 page_fault = __copy_from_user(page_address(page) + offset,
58 buf, count);
59 /* Flush processor's dcache for this page */
60 flush_dcache_page(page);
61 kunmap(page);
62 buf += count;
63 write_bytes -= count;
64
65 if (page_fault)
66 break;
67 }
68 return page_fault ? -EFAULT : 0;
69}
70
71static void btrfs_drop_pages(struct page **pages, size_t num_pages)
72{
73 size_t i;
74 for (i = 0; i < num_pages; i++) {
75 if (!pages[i])
76 break;
77 unlock_page(pages[i]);
78 mark_page_accessed(pages[i]);
79 page_cache_release(pages[i]);
80 }
81}
82
Chris Masona52d9a82007-08-27 16:49:44 -040083static int insert_inline_extent(struct btrfs_trans_handle *trans,
84 struct btrfs_root *root, struct inode *inode,
Chris Mason3326d1b2007-10-15 16:18:25 -040085 u64 offset, size_t size,
86 struct page **pages, size_t page_offset,
87 int num_pages)
Chris Mason54aa1f42007-06-22 14:16:25 -040088{
89 struct btrfs_key key;
90 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040091 struct extent_buffer *leaf;
92 char *kaddr;
93 unsigned long ptr;
Chris Mason54aa1f42007-06-22 14:16:25 -040094 struct btrfs_file_extent_item *ei;
Chris Mason3326d1b2007-10-15 16:18:25 -040095 struct page *page;
Chris Mason54aa1f42007-06-22 14:16:25 -040096 u32 datasize;
97 int err = 0;
98 int ret;
Chris Mason3326d1b2007-10-15 16:18:25 -040099 int i;
100 ssize_t cur_size;
Chris Mason54aa1f42007-06-22 14:16:25 -0400101
102 path = btrfs_alloc_path();
103 if (!path)
104 return -ENOMEM;
105
Chris Mason54aa1f42007-06-22 14:16:25 -0400106 btrfs_set_trans_block_group(trans, inode);
107
108 key.objectid = inode->i_ino;
109 key.offset = offset;
Chris Mason54aa1f42007-06-22 14:16:25 -0400110 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Mason54aa1f42007-06-22 14:16:25 -0400111
Chris Mason3326d1b2007-10-15 16:18:25 -0400112 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
113 if (ret < 0) {
Chris Mason54aa1f42007-06-22 14:16:25 -0400114 err = ret;
115 goto fail;
116 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400117 if (ret == 1) {
118 path->slots[0]--;
119 leaf = path->nodes[0];
120 ei = btrfs_item_ptr(leaf, path->slots[0],
121 struct btrfs_file_extent_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400122
Chris Mason3326d1b2007-10-15 16:18:25 -0400123 if (btrfs_file_extent_type(leaf, ei) !=
124 BTRFS_FILE_EXTENT_INLINE) {
125 goto insert;
126 }
127 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
128 ret = 0;
129 }
130 if (ret == 0) {
131 u32 found_size;
Yan18f16f72007-10-25 15:42:57 -0400132 u64 found_end;
Chris Mason3326d1b2007-10-15 16:18:25 -0400133
134 leaf = path->nodes[0];
135 ei = btrfs_item_ptr(leaf, path->slots[0],
136 struct btrfs_file_extent_item);
137
138 if (btrfs_file_extent_type(leaf, ei) !=
139 BTRFS_FILE_EXTENT_INLINE) {
140 err = ret;
141 btrfs_print_leaf(root, leaf);
142 printk("found wasn't inline offset %Lu inode %lu\n",
143 offset, inode->i_ino);
144 goto fail;
145 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400146 found_size = btrfs_file_extent_inline_len(leaf,
147 btrfs_item_nr(leaf, path->slots[0]));
Yan18f16f72007-10-25 15:42:57 -0400148 found_end = key.offset + found_size;
Chris Mason3326d1b2007-10-15 16:18:25 -0400149
Yan18f16f72007-10-25 15:42:57 -0400150 if (found_end < offset + size) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400151 btrfs_release_path(root, path);
152 ret = btrfs_search_slot(trans, root, &key, path,
Yan18f16f72007-10-25 15:42:57 -0400153 offset + size - found_end, 1);
Chris Mason3326d1b2007-10-15 16:18:25 -0400154 BUG_ON(ret != 0);
155 ret = btrfs_extend_item(trans, root, path,
Yan18f16f72007-10-25 15:42:57 -0400156 offset + size - found_end);
Chris Mason3326d1b2007-10-15 16:18:25 -0400157 if (ret) {
158 err = ret;
159 goto fail;
160 }
161 leaf = path->nodes[0];
162 ei = btrfs_item_ptr(leaf, path->slots[0],
163 struct btrfs_file_extent_item);
164 }
Yan18f16f72007-10-25 15:42:57 -0400165 if (found_end < offset) {
166 ptr = btrfs_file_extent_inline_start(ei) + found_size;
167 memset_extent_buffer(leaf, 0, ptr, offset - found_end);
168 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400169 } else {
170insert:
171 btrfs_release_path(root, path);
Yan18f16f72007-10-25 15:42:57 -0400172 datasize = offset + size - key.offset;
173 datasize = btrfs_file_extent_calc_inline_size(datasize);
Chris Mason3326d1b2007-10-15 16:18:25 -0400174 ret = btrfs_insert_empty_item(trans, root, path, &key,
175 datasize);
176 if (ret) {
177 err = ret;
178 printk("got bad ret %d\n", ret);
179 goto fail;
180 }
181 leaf = path->nodes[0];
182 ei = btrfs_item_ptr(leaf, path->slots[0],
183 struct btrfs_file_extent_item);
184 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
185 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
186 }
Yan18f16f72007-10-25 15:42:57 -0400187 ptr = btrfs_file_extent_inline_start(ei) + offset - key.offset;
Chris Mason3326d1b2007-10-15 16:18:25 -0400188
189 cur_size = size;
190 i = 0;
191 while (size > 0) {
192 page = pages[i];
193 kaddr = kmap_atomic(page, KM_USER0);
Jens Axboeae2f5412007-10-19 09:22:59 -0400194 cur_size = min_t(size_t, PAGE_CACHE_SIZE - page_offset, size);
Chris Mason3326d1b2007-10-15 16:18:25 -0400195 write_extent_buffer(leaf, kaddr + page_offset, ptr, cur_size);
196 kunmap_atomic(kaddr, KM_USER0);
197 page_offset = 0;
198 ptr += cur_size;
199 size -= cur_size;
200 if (i >= num_pages) {
201 printk("i %d num_pages %d\n", i, num_pages);
202 }
203 i++;
204 }
Chris Mason5f39d392007-10-15 16:14:19 -0400205 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400206fail:
207 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400208 return err;
209}
210
Chris Mason39279cc2007-06-12 06:35:45 -0400211static int dirty_and_release_pages(struct btrfs_trans_handle *trans,
212 struct btrfs_root *root,
213 struct file *file,
214 struct page **pages,
215 size_t num_pages,
216 loff_t pos,
217 size_t write_bytes)
218{
Chris Mason39279cc2007-06-12 06:35:45 -0400219 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400220 int i;
Chris Mason39279cc2007-06-12 06:35:45 -0400221 struct inode *inode = file->f_path.dentry->d_inode;
Chris Masona52d9a82007-08-27 16:49:44 -0400222 struct extent_map *em;
223 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masondb945352007-10-15 16:15:53 -0400224 u64 hint_byte;
225 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400226 u64 start_pos;
227 u64 end_of_last_block;
228 u64 end_pos = pos + write_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400229 u32 inline_size;
Chris Masona52d9a82007-08-27 16:49:44 -0400230 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400231
Chris Masona52d9a82007-08-27 16:49:44 -0400232 em = alloc_extent_map(GFP_NOFS);
233 if (!em)
234 return -ENOMEM;
Chris Mason39279cc2007-06-12 06:35:45 -0400235
Chris Masona52d9a82007-08-27 16:49:44 -0400236 em->bdev = inode->i_sb->s_bdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400237
Chris Mason5f39d392007-10-15 16:14:19 -0400238 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400239 num_bytes = (write_bytes + pos - start_pos +
240 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400241
Chris Mason011410b2007-09-10 19:58:36 -0400242 down_read(&BTRFS_I(inode)->root->snap_sem);
Chris Masondb945352007-10-15 16:15:53 -0400243 end_of_last_block = start_pos + num_bytes - 1;
244
Chris Masonb888db22007-08-27 16:49:44 -0400245 lock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400246 mutex_lock(&root->fs_info->fs_mutex);
247 trans = btrfs_start_transaction(root, 1);
248 if (!trans) {
249 err = -ENOMEM;
250 goto out_unlock;
251 }
252 btrfs_set_trans_block_group(trans, inode);
Chris Masondb945352007-10-15 16:15:53 -0400253 inode->i_blocks += num_bytes >> 9;
254 hint_byte = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400255
256 if ((end_of_last_block & 4095) == 0) {
Christoph Hellwig94330632007-09-10 20:02:22 -0400257 printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block);
Chris Masona52d9a82007-08-27 16:49:44 -0400258 }
259 set_extent_uptodate(em_tree, start_pos, end_of_last_block, GFP_NOFS);
260
261 /* FIXME...EIEIO, ENOSPC and more */
262
Chris Masona52d9a82007-08-27 16:49:44 -0400263 /* insert any holes we need to create */
264 if (inode->i_size < start_pos) {
265 u64 last_pos_in_file;
266 u64 hole_size;
Chris Mason5f39d392007-10-15 16:14:19 -0400267 u64 mask = root->sectorsize - 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400268 last_pos_in_file = (isize + mask) & ~mask;
269 hole_size = (start_pos - last_pos_in_file + mask) & ~mask;
Chris Mason2bf5a722007-08-30 11:54:02 -0400270
Chris Masona52d9a82007-08-27 16:49:44 -0400271 if (last_pos_in_file < start_pos) {
Chris Mason2bf5a722007-08-30 11:54:02 -0400272 err = btrfs_drop_extents(trans, root, inode,
273 last_pos_in_file,
274 last_pos_in_file + hole_size,
Chris Mason3326d1b2007-10-15 16:18:25 -0400275 last_pos_in_file,
Chris Masondb945352007-10-15 16:15:53 -0400276 &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400277 if (err)
278 goto failed;
279
Chris Masona52d9a82007-08-27 16:49:44 -0400280 err = btrfs_insert_file_extent(trans, root,
281 inode->i_ino,
282 last_pos_in_file,
283 0, 0, hole_size);
Chris Mason39279cc2007-06-12 06:35:45 -0400284 }
Chris Masona52d9a82007-08-27 16:49:44 -0400285 if (err)
286 goto failed;
287 }
288
289 /*
290 * either allocate an extent for the new bytes or setup the key
291 * to show we are doing inline data in the extent
292 */
Chris Mason3326d1b2007-10-15 16:18:25 -0400293 inline_size = end_pos;
294 if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
Chris Mason7936ca32007-10-19 09:22:41 -0400295 inline_size > 8192 ||
Chris Mason3326d1b2007-10-15 16:18:25 -0400296 inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
Chris Masonb888db22007-08-27 16:49:44 -0400297 u64 last_end;
Chris Mason3326d1b2007-10-15 16:18:25 -0400298
Chris Masona52d9a82007-08-27 16:49:44 -0400299 for (i = 0; i < num_pages; i++) {
300 struct page *p = pages[i];
301 SetPageUptodate(p);
Chris Masonb888db22007-08-27 16:49:44 -0400302 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400303 }
Chris Mason35ebb932007-10-30 16:56:53 -0400304 last_end = (u64)(pages[num_pages -1]->index) <<
305 PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -0400306 last_end += PAGE_CACHE_SIZE - 1;
307 set_extent_delalloc(em_tree, start_pos, end_of_last_block,
308 GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400309 } else {
Chris Mason3326d1b2007-10-15 16:18:25 -0400310 u64 aligned_end;
Chris Masonb888db22007-08-27 16:49:44 -0400311 /* step one, delete the existing extents in this range */
Chris Mason3326d1b2007-10-15 16:18:25 -0400312 aligned_end = (pos + write_bytes + root->sectorsize - 1) &
313 ~((u64)root->sectorsize - 1);
Chris Mason2bf5a722007-08-30 11:54:02 -0400314 err = btrfs_drop_extents(trans, root, inode, start_pos,
Chris Mason3326d1b2007-10-15 16:18:25 -0400315 aligned_end, end_pos, &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400316 if (err)
317 goto failed;
Chris Masona52d9a82007-08-27 16:49:44 -0400318 err = insert_inline_extent(trans, root, inode, start_pos,
Chris Mason3326d1b2007-10-15 16:18:25 -0400319 end_pos - start_pos, pages, 0,
320 num_pages);
Chris Masona52d9a82007-08-27 16:49:44 -0400321 BUG_ON(err);
Chris Masona52d9a82007-08-27 16:49:44 -0400322 }
323 if (end_pos > isize) {
324 i_size_write(inode, end_pos);
325 btrfs_update_inode(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400326 }
327failed:
Chris Masona52d9a82007-08-27 16:49:44 -0400328 err = btrfs_end_transaction(trans, root);
329out_unlock:
330 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masonb888db22007-08-27 16:49:44 -0400331 unlock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400332 free_extent_map(em);
Chris Mason011410b2007-09-10 19:58:36 -0400333 up_read(&BTRFS_I(inode)->root->snap_sem);
Chris Mason39279cc2007-06-12 06:35:45 -0400334 return err;
335}
336
Chris Masona52d9a82007-08-27 16:49:44 -0400337int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
338{
339 struct extent_map *em;
340 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
341
342 while(1) {
343 em = lookup_extent_mapping(em_tree, start, end);
344 if (!em)
345 break;
346 remove_extent_mapping(em_tree, em);
347 /* once for us */
348 free_extent_map(em);
349 /* once for the tree*/
350 free_extent_map(em);
351 }
352 return 0;
353}
354
Chris Mason39279cc2007-06-12 06:35:45 -0400355/*
356 * this is very complex, but the basic idea is to drop all extents
357 * in the range start - end. hint_block is filled in with a block number
358 * that would be a good hint to the block allocator for this file.
359 *
360 * If an extent intersects the range but is not entirely inside the range
361 * it is either truncated or split. Anything entirely inside the range
362 * is deleted from the tree.
363 */
364int btrfs_drop_extents(struct btrfs_trans_handle *trans,
365 struct btrfs_root *root, struct inode *inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400366 u64 start, u64 end, u64 inline_end, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400367{
368 int ret;
369 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400370 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400371 int slot;
372 struct btrfs_file_extent_item *extent;
373 u64 extent_end = 0;
374 int keep;
375 struct btrfs_file_extent_item old;
376 struct btrfs_path *path;
377 u64 search_start = start;
378 int bookend;
379 int found_type;
380 int found_extent;
381 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400382 int recow;
Chris Mason39279cc2007-06-12 06:35:45 -0400383
Chris Masona52d9a82007-08-27 16:49:44 -0400384 btrfs_drop_extent_cache(inode, start, end - 1);
385
Chris Mason39279cc2007-06-12 06:35:45 -0400386 path = btrfs_alloc_path();
387 if (!path)
388 return -ENOMEM;
389 while(1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400390 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400391 btrfs_release_path(root, path);
392 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
393 search_start, -1);
394 if (ret < 0)
395 goto out;
396 if (ret > 0) {
397 if (path->slots[0] == 0) {
398 ret = 0;
399 goto out;
400 }
401 path->slots[0]--;
402 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400403next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400404 keep = 0;
405 bookend = 0;
406 found_extent = 0;
407 found_inline = 0;
408 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400409 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400410 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400411 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400412 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Mason39279cc2007-06-12 06:35:45 -0400413 if (key.offset >= end || key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400414 goto out;
415 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400416 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY) {
Chris Mason39279cc2007-06-12 06:35:45 -0400417 goto out;
418 }
Chris Masonccd467d2007-06-28 15:57:36 -0400419 if (recow) {
420 search_start = key.offset;
421 continue;
422 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400423 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
424 extent = btrfs_item_ptr(leaf, slot,
425 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400426 found_type = btrfs_file_extent_type(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400427 if (found_type == BTRFS_FILE_EXTENT_REG) {
428 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400429 btrfs_file_extent_num_bytes(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400430 found_extent = 1;
431 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400432 struct btrfs_item *item;
433 item = btrfs_item_nr(leaf, slot);
Chris Mason8c2383c2007-06-18 09:57:58 -0400434 found_inline = 1;
435 extent_end = key.offset +
Chris Mason5f39d392007-10-15 16:14:19 -0400436 btrfs_file_extent_inline_len(leaf, item);
Chris Mason8c2383c2007-06-18 09:57:58 -0400437 }
438 } else {
439 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400440 }
441
442 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400443 if ((!found_extent && !found_inline) ||
444 search_start >= extent_end) {
445 int nextret;
446 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400447 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400448 if (slot >= nritems - 1) {
449 nextret = btrfs_next_leaf(root, path);
450 if (nextret)
451 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400452 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400453 } else {
454 path->slots[0]++;
455 }
456 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400457 }
458
459 /* FIXME, there's only one inline extent allowed right now */
460 if (found_inline) {
Chris Mason5f39d392007-10-15 16:14:19 -0400461 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400462 search_start = (extent_end + mask) & ~mask;
463 } else
464 search_start = extent_end;
465
466 if (end < extent_end && end >= key.offset) {
467 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400468 u64 disk_bytenr =
469 btrfs_file_extent_disk_bytenr(leaf, extent);
470 u64 disk_num_bytes =
471 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400472 extent);
473 read_extent_buffer(leaf, &old,
474 (unsigned long)extent,
475 sizeof(old));
Chris Masondb945352007-10-15 16:15:53 -0400476 if (disk_bytenr != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400477 ret = btrfs_inc_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -0400478 disk_bytenr, disk_num_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400479 BUG_ON(ret);
480 }
481 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400482 if (!found_inline)
483 bookend = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400484 }
Chris Mason39279cc2007-06-12 06:35:45 -0400485 /* truncate existing extent */
486 if (start > key.offset) {
487 u64 new_num;
488 u64 old_num;
489 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400490 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400491 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400492 new_num = start - key.offset;
493 old_num = btrfs_file_extent_num_bytes(leaf,
494 extent);
495 *hint_byte =
496 btrfs_file_extent_disk_bytenr(leaf,
497 extent);
498 if (btrfs_file_extent_disk_bytenr(leaf,
499 extent)) {
Chris Mason39279cc2007-06-12 06:35:45 -0400500 inode->i_blocks -=
Chris Masondb945352007-10-15 16:15:53 -0400501 (old_num - new_num) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400502 }
Chris Masondb945352007-10-15 16:15:53 -0400503 btrfs_set_file_extent_num_bytes(leaf, extent,
504 new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400505 btrfs_mark_buffer_dirty(leaf);
Chris Mason3326d1b2007-10-15 16:18:25 -0400506 } else if (end > extent_end &&
507 key.offset < inline_end &&
508 inline_end < extent_end) {
509 u32 new_size;
510 new_size = btrfs_file_extent_calc_inline_size(
511 inline_end - key.offset);
512 btrfs_truncate_item(trans, root, path,
513 new_size);
Chris Mason39279cc2007-06-12 06:35:45 -0400514 }
515 }
516 /* delete the entire extent */
517 if (!keep) {
Chris Masondb945352007-10-15 16:15:53 -0400518 u64 disk_bytenr = 0;
519 u64 disk_num_bytes = 0;
520 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400521 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400522 disk_bytenr =
523 btrfs_file_extent_disk_bytenr(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400524 extent);
Chris Masondb945352007-10-15 16:15:53 -0400525 disk_num_bytes =
526 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400527 extent);
Chris Masondb945352007-10-15 16:15:53 -0400528 extent_num_bytes =
529 btrfs_file_extent_num_bytes(leaf, extent);
530 *hint_byte =
531 btrfs_file_extent_disk_bytenr(leaf,
532 extent);
Chris Mason39279cc2007-06-12 06:35:45 -0400533 }
534 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400535 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400536 BUG_ON(ret);
537 btrfs_release_path(root, path);
538 extent = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400539 if (found_extent && disk_bytenr != 0) {
540 inode->i_blocks -= extent_num_bytes >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400541 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -0400542 disk_bytenr,
543 disk_num_bytes, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400544 }
545
546 BUG_ON(ret);
547 if (!bookend && search_start >= end) {
548 ret = 0;
549 goto out;
550 }
551 if (!bookend)
552 continue;
553 }
554 /* create bookend, splitting the extent in two */
555 if (bookend && found_extent) {
556 struct btrfs_key ins;
557 ins.objectid = inode->i_ino;
558 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400559 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -0400560 btrfs_release_path(root, path);
561 ret = btrfs_insert_empty_item(trans, root, path, &ins,
562 sizeof(*extent));
Chris Mason8c2383c2007-06-18 09:57:58 -0400563
Chris Mason5f39d392007-10-15 16:14:19 -0400564 leaf = path->nodes[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400565 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400566 btrfs_print_leaf(root, leaf);
567 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 -0400568 }
Chris Mason39279cc2007-06-12 06:35:45 -0400569 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400570 extent = btrfs_item_ptr(leaf, path->slots[0],
571 struct btrfs_file_extent_item);
572 write_extent_buffer(leaf, &old,
573 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400574
Chris Mason5f39d392007-10-15 16:14:19 -0400575 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400576 le64_to_cpu(old.offset) + end - key.offset);
577 WARN_ON(le64_to_cpu(old.num_bytes) <
578 (extent_end - end));
579 btrfs_set_file_extent_num_bytes(leaf, extent,
580 extent_end - end);
Chris Mason5f39d392007-10-15 16:14:19 -0400581 btrfs_set_file_extent_type(leaf, extent,
Chris Mason39279cc2007-06-12 06:35:45 -0400582 BTRFS_FILE_EXTENT_REG);
Chris Masondb945352007-10-15 16:15:53 -0400583
Chris Mason39279cc2007-06-12 06:35:45 -0400584 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400585 if (le64_to_cpu(old.disk_bytenr) != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400586 inode->i_blocks +=
Chris Masondb945352007-10-15 16:15:53 -0400587 btrfs_file_extent_num_bytes(leaf,
588 extent) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400589 }
590 ret = 0;
591 goto out;
592 }
593 }
594out:
595 btrfs_free_path(path);
596 return ret;
597}
598
599/*
600 * this gets pages into the page cache and locks them down
601 */
602static int prepare_pages(struct btrfs_root *root,
603 struct file *file,
604 struct page **pages,
605 size_t num_pages,
606 loff_t pos,
607 unsigned long first_index,
608 unsigned long last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400609 size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400610{
611 int i;
612 unsigned long index = pos >> PAGE_CACHE_SHIFT;
613 struct inode *inode = file->f_path.dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400614 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400615 u64 start_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400616
Chris Mason5f39d392007-10-15 16:14:19 -0400617 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400618
619 memset(pages, 0, num_pages * sizeof(struct page *));
620
621 for (i = 0; i < num_pages; i++) {
622 pages[i] = grab_cache_page(inode->i_mapping, index + i);
623 if (!pages[i]) {
624 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400625 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400626 }
Chris Masonccd467d2007-06-28 15:57:36 -0400627 cancel_dirty_page(pages[i], PAGE_CACHE_SIZE);
628 wait_on_page_writeback(pages[i]);
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400629 set_page_extent_mapped(pages[i]);
Chris Masonb888db22007-08-27 16:49:44 -0400630 WARN_ON(!PageLocked(pages[i]));
Chris Mason39279cc2007-06-12 06:35:45 -0400631 }
632 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400633}
634
635static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
636 size_t count, loff_t *ppos)
637{
638 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400639 loff_t start_pos;
640 ssize_t num_written = 0;
641 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400642 int ret = 0;
643 struct inode *inode = file->f_path.dentry->d_inode;
644 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -0400645 struct page **pages = NULL;
646 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -0400647 struct page *pinned[2];
648 unsigned long first_index;
649 unsigned long last_index;
Chris Mason8c2383c2007-06-18 09:57:58 -0400650
651 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
652 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -0400653 pinned[0] = NULL;
654 pinned[1] = NULL;
655 if (file->f_flags & O_DIRECT)
656 return -EINVAL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400657
Chris Mason39279cc2007-06-12 06:35:45 -0400658 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400659 start_pos = pos;
660
Chris Mason39279cc2007-06-12 06:35:45 -0400661 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
662 current->backing_dev_info = inode->i_mapping->backing_dev_info;
663 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
664 if (err)
665 goto out;
666 if (count == 0)
667 goto out;
668 err = remove_suid(file->f_path.dentry);
669 if (err)
670 goto out;
671 file_update_time(file);
672
Chris Mason8c2383c2007-06-18 09:57:58 -0400673 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400674
675 mutex_lock(&inode->i_mutex);
676 first_index = pos >> PAGE_CACHE_SHIFT;
677 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
678
679 /*
680 * there are lots of better ways to do this, but this code
681 * makes sure the first and last page in the file range are
682 * up to date and ready for cow
683 */
684 if ((pos & (PAGE_CACHE_SIZE - 1))) {
685 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
686 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400687 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400688 BUG_ON(ret);
689 wait_on_page_locked(pinned[0]);
690 } else {
691 unlock_page(pinned[0]);
692 }
693 }
694 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
695 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
696 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400697 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400698 BUG_ON(ret);
699 wait_on_page_locked(pinned[1]);
700 } else {
701 unlock_page(pinned[1]);
702 }
703 }
704
Chris Mason39279cc2007-06-12 06:35:45 -0400705 while(count > 0) {
706 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400707 size_t write_bytes = min(count, nrptrs *
708 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400709 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400710 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
711 PAGE_CACHE_SHIFT;
712
Chris Mason8c2383c2007-06-18 09:57:58 -0400713 WARN_ON(num_pages > nrptrs);
Chris Mason39279cc2007-06-12 06:35:45 -0400714 memset(pages, 0, sizeof(pages));
715 ret = prepare_pages(root, file, pages, num_pages,
716 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400717 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -0400718 if (ret)
719 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400720
Chris Mason39279cc2007-06-12 06:35:45 -0400721 ret = btrfs_copy_from_user(pos, num_pages,
722 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400723 if (ret) {
724 btrfs_drop_pages(pages, num_pages);
725 goto out;
726 }
Chris Mason39279cc2007-06-12 06:35:45 -0400727
728 ret = dirty_and_release_pages(NULL, root, file, pages,
729 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400730 btrfs_drop_pages(pages, num_pages);
Chris Mason54aa1f42007-06-22 14:16:25 -0400731 if (ret)
732 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400733
734 buf += write_bytes;
735 count -= write_bytes;
736 pos += write_bytes;
737 num_written += write_bytes;
738
Chris Mason8c2383c2007-06-18 09:57:58 -0400739 balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400740 btrfs_btree_balance_dirty(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400741 cond_resched();
742 }
Chris Mason39279cc2007-06-12 06:35:45 -0400743 mutex_unlock(&inode->i_mutex);
744out:
Chris Mason8c2383c2007-06-18 09:57:58 -0400745 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -0400746 if (pinned[0])
747 page_cache_release(pinned[0]);
748 if (pinned[1])
749 page_cache_release(pinned[1]);
750 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400751
752 if (num_written > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
753 err = sync_page_range(inode, inode->i_mapping,
754 start_pos, num_written);
755 if (err < 0)
756 num_written = err;
757 }
Chris Mason39279cc2007-06-12 06:35:45 -0400758 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -0400759 return num_written ? num_written : err;
760}
761
Chris Mason39279cc2007-06-12 06:35:45 -0400762static int btrfs_sync_file(struct file *file,
763 struct dentry *dentry, int datasync)
764{
765 struct inode *inode = dentry->d_inode;
766 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400767 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400768 struct btrfs_trans_handle *trans;
769
770 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400771 * check the transaction that last modified this inode
772 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -0400773 */
774 mutex_lock(&root->fs_info->fs_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400775 if (!BTRFS_I(inode)->last_trans)
776 goto out;
777 mutex_lock(&root->fs_info->trans_mutex);
778 if (BTRFS_I(inode)->last_trans <=
779 root->fs_info->last_trans_committed) {
780 BTRFS_I(inode)->last_trans = 0;
781 mutex_unlock(&root->fs_info->trans_mutex);
782 goto out;
783 }
784 mutex_unlock(&root->fs_info->trans_mutex);
785
786 /*
Chris Masona52d9a82007-08-27 16:49:44 -0400787 * ok we haven't committed the transaction yet, lets do a commit
788 */
Chris Mason39279cc2007-06-12 06:35:45 -0400789 trans = btrfs_start_transaction(root, 1);
790 if (!trans) {
791 ret = -ENOMEM;
792 goto out;
793 }
794 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -0400795out:
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400796 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400797 return ret > 0 ? EIO : ret;
798}
799
Chris Mason9ebefb182007-06-15 13:50:00 -0400800static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -0400801#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
802 .nopage = filemap_nopage,
803 .populate = filemap_populate,
804#else
805 .fault = filemap_fault,
806#endif
Chris Mason9ebefb182007-06-15 13:50:00 -0400807 .page_mkwrite = btrfs_page_mkwrite,
808};
809
810static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
811{
812 vma->vm_ops = &btrfs_file_vm_ops;
813 file_accessed(filp);
814 return 0;
815}
816
Chris Mason39279cc2007-06-12 06:35:45 -0400817struct file_operations btrfs_file_operations = {
818 .llseek = generic_file_llseek,
819 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -0400820 .aio_read = generic_file_aio_read,
Chris Mason39279cc2007-06-12 06:35:45 -0400821 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -0400822 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -0400823 .open = generic_file_open,
Chris Mason39279cc2007-06-12 06:35:45 -0400824 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -0400825 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -0400826#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -0400827 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -0400828#endif
829};
830