blob: 1af2b6534dadd190db5585ad67e9afacadf93401 [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 Mason3326d1b2007-10-15 16:18:25 -0400111 datasize = btrfs_file_extent_calc_inline_size(offset + size);
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) {
119 path->slots[0]--;
120 leaf = path->nodes[0];
121 ei = btrfs_item_ptr(leaf, path->slots[0],
122 struct btrfs_file_extent_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400123
Chris Mason3326d1b2007-10-15 16:18:25 -0400124 if (btrfs_file_extent_type(leaf, ei) !=
125 BTRFS_FILE_EXTENT_INLINE) {
126 goto insert;
127 }
128 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
129 ret = 0;
130 }
131 if (ret == 0) {
132 u32 found_size;
133 u64 found_start;
134
135 leaf = path->nodes[0];
136 ei = btrfs_item_ptr(leaf, path->slots[0],
137 struct btrfs_file_extent_item);
138
139 if (btrfs_file_extent_type(leaf, ei) !=
140 BTRFS_FILE_EXTENT_INLINE) {
141 err = ret;
142 btrfs_print_leaf(root, leaf);
143 printk("found wasn't inline offset %Lu inode %lu\n",
144 offset, inode->i_ino);
145 goto fail;
146 }
147 found_start = key.offset;
148 found_size = btrfs_file_extent_inline_len(leaf,
149 btrfs_item_nr(leaf, path->slots[0]));
150
151 if (found_size < offset + size) {
152 btrfs_release_path(root, path);
153 ret = btrfs_search_slot(trans, root, &key, path,
154 offset + size - found_size -
155 found_start, 1);
156 BUG_ON(ret != 0);
157 ret = btrfs_extend_item(trans, root, path,
158 offset + size - found_size -
159 found_start);
160 if (ret) {
161 err = ret;
162 goto fail;
163 }
164 leaf = path->nodes[0];
165 ei = btrfs_item_ptr(leaf, path->slots[0],
166 struct btrfs_file_extent_item);
167 }
168 } else {
169insert:
170 btrfs_release_path(root, path);
171 ret = btrfs_insert_empty_item(trans, root, path, &key,
172 datasize);
173 if (ret) {
174 err = ret;
175 printk("got bad ret %d\n", ret);
176 goto fail;
177 }
178 leaf = path->nodes[0];
179 ei = btrfs_item_ptr(leaf, path->slots[0],
180 struct btrfs_file_extent_item);
181 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
182 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
183 }
184 ptr = btrfs_file_extent_inline_start(ei) + offset;
185
186 cur_size = size;
187 i = 0;
188 while (size > 0) {
189 page = pages[i];
190 kaddr = kmap_atomic(page, KM_USER0);
191 cur_size = min(PAGE_CACHE_SIZE - page_offset, size);
192 write_extent_buffer(leaf, kaddr + page_offset, ptr, cur_size);
193 kunmap_atomic(kaddr, KM_USER0);
194 page_offset = 0;
195 ptr += cur_size;
196 size -= cur_size;
197 if (i >= num_pages) {
198 printk("i %d num_pages %d\n", i, num_pages);
199 }
200 i++;
201 }
Chris Mason5f39d392007-10-15 16:14:19 -0400202 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400203fail:
204 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400205 return err;
206}
207
Chris Mason39279cc2007-06-12 06:35:45 -0400208static int dirty_and_release_pages(struct btrfs_trans_handle *trans,
209 struct btrfs_root *root,
210 struct file *file,
211 struct page **pages,
212 size_t num_pages,
213 loff_t pos,
214 size_t write_bytes)
215{
Chris Mason39279cc2007-06-12 06:35:45 -0400216 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400217 int i;
Chris Mason39279cc2007-06-12 06:35:45 -0400218 struct inode *inode = file->f_path.dentry->d_inode;
Chris Masona52d9a82007-08-27 16:49:44 -0400219 struct extent_map *em;
220 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masondb945352007-10-15 16:15:53 -0400221 u64 hint_byte;
222 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400223 u64 start_pos;
224 u64 end_of_last_block;
225 u64 end_pos = pos + write_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400226 u32 inline_size;
Chris Masona52d9a82007-08-27 16:49:44 -0400227 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400228
Chris Masona52d9a82007-08-27 16:49:44 -0400229 em = alloc_extent_map(GFP_NOFS);
230 if (!em)
231 return -ENOMEM;
Chris Mason39279cc2007-06-12 06:35:45 -0400232
Chris Masona52d9a82007-08-27 16:49:44 -0400233 em->bdev = inode->i_sb->s_bdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400234
Chris Mason5f39d392007-10-15 16:14:19 -0400235 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400236 num_bytes = (write_bytes + pos - start_pos +
237 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400238
Chris Mason011410b2007-09-10 19:58:36 -0400239 down_read(&BTRFS_I(inode)->root->snap_sem);
Chris Masondb945352007-10-15 16:15:53 -0400240 end_of_last_block = start_pos + num_bytes - 1;
241
Chris Masonb888db22007-08-27 16:49:44 -0400242 lock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400243 mutex_lock(&root->fs_info->fs_mutex);
244 trans = btrfs_start_transaction(root, 1);
245 if (!trans) {
246 err = -ENOMEM;
247 goto out_unlock;
248 }
249 btrfs_set_trans_block_group(trans, inode);
Chris Masondb945352007-10-15 16:15:53 -0400250 inode->i_blocks += num_bytes >> 9;
251 hint_byte = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400252
253 if ((end_of_last_block & 4095) == 0) {
Christoph Hellwig94330632007-09-10 20:02:22 -0400254 printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block);
Chris Masona52d9a82007-08-27 16:49:44 -0400255 }
256 set_extent_uptodate(em_tree, start_pos, end_of_last_block, GFP_NOFS);
257
258 /* FIXME...EIEIO, ENOSPC and more */
259
Chris Masona52d9a82007-08-27 16:49:44 -0400260 /* insert any holes we need to create */
261 if (inode->i_size < start_pos) {
262 u64 last_pos_in_file;
263 u64 hole_size;
Chris Mason5f39d392007-10-15 16:14:19 -0400264 u64 mask = root->sectorsize - 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400265 last_pos_in_file = (isize + mask) & ~mask;
266 hole_size = (start_pos - last_pos_in_file + mask) & ~mask;
Chris Mason2bf5a722007-08-30 11:54:02 -0400267
Chris Masona52d9a82007-08-27 16:49:44 -0400268 if (last_pos_in_file < start_pos) {
Chris Mason2bf5a722007-08-30 11:54:02 -0400269 err = btrfs_drop_extents(trans, root, inode,
270 last_pos_in_file,
271 last_pos_in_file + hole_size,
Chris Mason3326d1b2007-10-15 16:18:25 -0400272 last_pos_in_file,
Chris Masondb945352007-10-15 16:15:53 -0400273 &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400274 if (err)
275 goto failed;
276
Chris Masona52d9a82007-08-27 16:49:44 -0400277 err = btrfs_insert_file_extent(trans, root,
278 inode->i_ino,
279 last_pos_in_file,
280 0, 0, hole_size);
Chris Mason39279cc2007-06-12 06:35:45 -0400281 }
Chris Masona52d9a82007-08-27 16:49:44 -0400282 if (err)
283 goto failed;
284 }
285
286 /*
287 * either allocate an extent for the new bytes or setup the key
288 * to show we are doing inline data in the extent
289 */
Chris Mason3326d1b2007-10-15 16:18:25 -0400290 inline_size = end_pos;
291 if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
292 inline_size > 16384 ||
293 inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
Chris Masonb888db22007-08-27 16:49:44 -0400294 u64 last_end;
Chris Mason3326d1b2007-10-15 16:18:25 -0400295
Chris Masona52d9a82007-08-27 16:49:44 -0400296 for (i = 0; i < num_pages; i++) {
297 struct page *p = pages[i];
298 SetPageUptodate(p);
Chris Masonb888db22007-08-27 16:49:44 -0400299 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400300 }
Chris Masonb888db22007-08-27 16:49:44 -0400301 last_end = pages[num_pages -1]->index << PAGE_CACHE_SHIFT;
302 last_end += PAGE_CACHE_SIZE - 1;
303 set_extent_delalloc(em_tree, start_pos, end_of_last_block,
304 GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400305 } else {
Chris Mason3326d1b2007-10-15 16:18:25 -0400306 u64 aligned_end;
Chris Masonb888db22007-08-27 16:49:44 -0400307 /* step one, delete the existing extents in this range */
Chris Mason3326d1b2007-10-15 16:18:25 -0400308 aligned_end = (pos + write_bytes + root->sectorsize - 1) &
309 ~((u64)root->sectorsize - 1);
Chris Mason2bf5a722007-08-30 11:54:02 -0400310 err = btrfs_drop_extents(trans, root, inode, start_pos,
Chris Mason3326d1b2007-10-15 16:18:25 -0400311 aligned_end, end_pos, &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400312 if (err)
313 goto failed;
Chris Masona52d9a82007-08-27 16:49:44 -0400314 err = insert_inline_extent(trans, root, inode, start_pos,
Chris Mason3326d1b2007-10-15 16:18:25 -0400315 end_pos - start_pos, pages, 0,
316 num_pages);
Chris Masona52d9a82007-08-27 16:49:44 -0400317 BUG_ON(err);
Chris Masona52d9a82007-08-27 16:49:44 -0400318 }
319 if (end_pos > isize) {
320 i_size_write(inode, end_pos);
321 btrfs_update_inode(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400322 }
323failed:
Chris Masona52d9a82007-08-27 16:49:44 -0400324 err = btrfs_end_transaction(trans, root);
325out_unlock:
326 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masonb888db22007-08-27 16:49:44 -0400327 unlock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400328 free_extent_map(em);
Chris Mason011410b2007-09-10 19:58:36 -0400329 up_read(&BTRFS_I(inode)->root->snap_sem);
Chris Mason39279cc2007-06-12 06:35:45 -0400330 return err;
331}
332
Chris Masona52d9a82007-08-27 16:49:44 -0400333int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
334{
335 struct extent_map *em;
336 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
337
338 while(1) {
339 em = lookup_extent_mapping(em_tree, start, end);
340 if (!em)
341 break;
342 remove_extent_mapping(em_tree, em);
343 /* once for us */
344 free_extent_map(em);
345 /* once for the tree*/
346 free_extent_map(em);
347 }
348 return 0;
349}
350
Chris Mason39279cc2007-06-12 06:35:45 -0400351/*
352 * this is very complex, but the basic idea is to drop all extents
353 * in the range start - end. hint_block is filled in with a block number
354 * that would be a good hint to the block allocator for this file.
355 *
356 * If an extent intersects the range but is not entirely inside the range
357 * it is either truncated or split. Anything entirely inside the range
358 * is deleted from the tree.
359 */
360int btrfs_drop_extents(struct btrfs_trans_handle *trans,
361 struct btrfs_root *root, struct inode *inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400362 u64 start, u64 end, u64 inline_end, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400363{
364 int ret;
365 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400366 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400367 int slot;
368 struct btrfs_file_extent_item *extent;
369 u64 extent_end = 0;
370 int keep;
371 struct btrfs_file_extent_item old;
372 struct btrfs_path *path;
373 u64 search_start = start;
374 int bookend;
375 int found_type;
376 int found_extent;
377 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400378 int recow;
Chris Mason39279cc2007-06-12 06:35:45 -0400379
Chris Masona52d9a82007-08-27 16:49:44 -0400380 btrfs_drop_extent_cache(inode, start, end - 1);
381
Chris Mason39279cc2007-06-12 06:35:45 -0400382 path = btrfs_alloc_path();
383 if (!path)
384 return -ENOMEM;
385 while(1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400386 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400387 btrfs_release_path(root, path);
388 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
389 search_start, -1);
390 if (ret < 0)
391 goto out;
392 if (ret > 0) {
393 if (path->slots[0] == 0) {
394 ret = 0;
395 goto out;
396 }
397 path->slots[0]--;
398 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400399next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400400 keep = 0;
401 bookend = 0;
402 found_extent = 0;
403 found_inline = 0;
404 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400405 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400406 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400407 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400408 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Mason39279cc2007-06-12 06:35:45 -0400409 if (key.offset >= end || key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400410 goto out;
411 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400412 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY) {
Chris Mason39279cc2007-06-12 06:35:45 -0400413 goto out;
414 }
Chris Masonccd467d2007-06-28 15:57:36 -0400415 if (recow) {
416 search_start = key.offset;
417 continue;
418 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400419 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
420 extent = btrfs_item_ptr(leaf, slot,
421 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400422 found_type = btrfs_file_extent_type(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400423 if (found_type == BTRFS_FILE_EXTENT_REG) {
424 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400425 btrfs_file_extent_num_bytes(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400426 found_extent = 1;
427 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400428 struct btrfs_item *item;
429 item = btrfs_item_nr(leaf, slot);
Chris Mason8c2383c2007-06-18 09:57:58 -0400430 found_inline = 1;
431 extent_end = key.offset +
Chris Mason5f39d392007-10-15 16:14:19 -0400432 btrfs_file_extent_inline_len(leaf, item);
Chris Mason8c2383c2007-06-18 09:57:58 -0400433 }
434 } else {
435 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400436 }
437
438 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400439 if ((!found_extent && !found_inline) ||
440 search_start >= extent_end) {
441 int nextret;
442 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400443 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400444 if (slot >= nritems - 1) {
445 nextret = btrfs_next_leaf(root, path);
446 if (nextret)
447 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400448 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400449 } else {
450 path->slots[0]++;
451 }
452 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400453 }
454
455 /* FIXME, there's only one inline extent allowed right now */
456 if (found_inline) {
Chris Mason5f39d392007-10-15 16:14:19 -0400457 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400458 search_start = (extent_end + mask) & ~mask;
459 } else
460 search_start = extent_end;
461
462 if (end < extent_end && end >= key.offset) {
463 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400464 u64 disk_bytenr =
465 btrfs_file_extent_disk_bytenr(leaf, extent);
466 u64 disk_num_bytes =
467 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400468 extent);
469 read_extent_buffer(leaf, &old,
470 (unsigned long)extent,
471 sizeof(old));
Chris Masondb945352007-10-15 16:15:53 -0400472 if (disk_bytenr != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400473 ret = btrfs_inc_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -0400474 disk_bytenr, disk_num_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400475 BUG_ON(ret);
476 }
477 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400478 if (!found_inline)
479 bookend = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400480 }
Chris Mason39279cc2007-06-12 06:35:45 -0400481 /* truncate existing extent */
482 if (start > key.offset) {
483 u64 new_num;
484 u64 old_num;
485 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400486 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400487 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400488 new_num = start - key.offset;
489 old_num = btrfs_file_extent_num_bytes(leaf,
490 extent);
491 *hint_byte =
492 btrfs_file_extent_disk_bytenr(leaf,
493 extent);
494 if (btrfs_file_extent_disk_bytenr(leaf,
495 extent)) {
Chris Mason39279cc2007-06-12 06:35:45 -0400496 inode->i_blocks -=
Chris Masondb945352007-10-15 16:15:53 -0400497 (old_num - new_num) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400498 }
Chris Masondb945352007-10-15 16:15:53 -0400499 btrfs_set_file_extent_num_bytes(leaf, extent,
500 new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400501 btrfs_mark_buffer_dirty(leaf);
Chris Mason3326d1b2007-10-15 16:18:25 -0400502 } else if (end > extent_end &&
503 key.offset < inline_end &&
504 inline_end < extent_end) {
505 u32 new_size;
506 new_size = btrfs_file_extent_calc_inline_size(
507 inline_end - key.offset);
508 btrfs_truncate_item(trans, root, path,
509 new_size);
Chris Mason39279cc2007-06-12 06:35:45 -0400510 }
511 }
512 /* delete the entire extent */
513 if (!keep) {
Chris Masondb945352007-10-15 16:15:53 -0400514 u64 disk_bytenr = 0;
515 u64 disk_num_bytes = 0;
516 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400517 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400518 disk_bytenr =
519 btrfs_file_extent_disk_bytenr(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400520 extent);
Chris Masondb945352007-10-15 16:15:53 -0400521 disk_num_bytes =
522 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400523 extent);
Chris Masondb945352007-10-15 16:15:53 -0400524 extent_num_bytes =
525 btrfs_file_extent_num_bytes(leaf, extent);
526 *hint_byte =
527 btrfs_file_extent_disk_bytenr(leaf,
528 extent);
Chris Mason39279cc2007-06-12 06:35:45 -0400529 }
530 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400531 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400532 BUG_ON(ret);
533 btrfs_release_path(root, path);
534 extent = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400535 if (found_extent && disk_bytenr != 0) {
536 inode->i_blocks -= extent_num_bytes >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400537 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -0400538 disk_bytenr,
539 disk_num_bytes, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400540 }
541
542 BUG_ON(ret);
543 if (!bookend && search_start >= end) {
544 ret = 0;
545 goto out;
546 }
547 if (!bookend)
548 continue;
549 }
550 /* create bookend, splitting the extent in two */
551 if (bookend && found_extent) {
552 struct btrfs_key ins;
553 ins.objectid = inode->i_ino;
554 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400555 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -0400556 btrfs_release_path(root, path);
557 ret = btrfs_insert_empty_item(trans, root, path, &ins,
558 sizeof(*extent));
Chris Mason8c2383c2007-06-18 09:57:58 -0400559
Chris Mason5f39d392007-10-15 16:14:19 -0400560 leaf = path->nodes[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400561 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400562 btrfs_print_leaf(root, leaf);
563 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 -0400564 }
Chris Mason39279cc2007-06-12 06:35:45 -0400565 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400566 extent = btrfs_item_ptr(leaf, path->slots[0],
567 struct btrfs_file_extent_item);
568 write_extent_buffer(leaf, &old,
569 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400570
Chris Mason5f39d392007-10-15 16:14:19 -0400571 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400572 le64_to_cpu(old.offset) + end - key.offset);
573 WARN_ON(le64_to_cpu(old.num_bytes) <
574 (extent_end - end));
575 btrfs_set_file_extent_num_bytes(leaf, extent,
576 extent_end - end);
Chris Mason5f39d392007-10-15 16:14:19 -0400577 btrfs_set_file_extent_type(leaf, extent,
Chris Mason39279cc2007-06-12 06:35:45 -0400578 BTRFS_FILE_EXTENT_REG);
Chris Masondb945352007-10-15 16:15:53 -0400579
Chris Mason39279cc2007-06-12 06:35:45 -0400580 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400581 if (le64_to_cpu(old.disk_bytenr) != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400582 inode->i_blocks +=
Chris Masondb945352007-10-15 16:15:53 -0400583 btrfs_file_extent_num_bytes(leaf,
584 extent) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400585 }
586 ret = 0;
587 goto out;
588 }
589 }
590out:
591 btrfs_free_path(path);
592 return ret;
593}
594
595/*
596 * this gets pages into the page cache and locks them down
597 */
598static int prepare_pages(struct btrfs_root *root,
599 struct file *file,
600 struct page **pages,
601 size_t num_pages,
602 loff_t pos,
603 unsigned long first_index,
604 unsigned long last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400605 size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400606{
607 int i;
608 unsigned long index = pos >> PAGE_CACHE_SHIFT;
609 struct inode *inode = file->f_path.dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400610 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400611 u64 start_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400612
Chris Mason5f39d392007-10-15 16:14:19 -0400613 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400614
615 memset(pages, 0, num_pages * sizeof(struct page *));
616
617 for (i = 0; i < num_pages; i++) {
618 pages[i] = grab_cache_page(inode->i_mapping, index + i);
619 if (!pages[i]) {
620 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400621 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400622 }
Chris Masonccd467d2007-06-28 15:57:36 -0400623 cancel_dirty_page(pages[i], PAGE_CACHE_SIZE);
624 wait_on_page_writeback(pages[i]);
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400625 set_page_extent_mapped(pages[i]);
Chris Masonb888db22007-08-27 16:49:44 -0400626 WARN_ON(!PageLocked(pages[i]));
Chris Mason39279cc2007-06-12 06:35:45 -0400627 }
628 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400629}
630
631static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
632 size_t count, loff_t *ppos)
633{
634 loff_t pos;
635 size_t num_written = 0;
636 int err = 0;
637 int ret = 0;
638 struct inode *inode = file->f_path.dentry->d_inode;
639 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -0400640 struct page **pages = NULL;
641 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -0400642 struct page *pinned[2];
643 unsigned long first_index;
644 unsigned long last_index;
Chris Mason8c2383c2007-06-18 09:57:58 -0400645
646 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
647 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -0400648 pinned[0] = NULL;
649 pinned[1] = NULL;
650 if (file->f_flags & O_DIRECT)
651 return -EINVAL;
652 pos = *ppos;
653 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
654 current->backing_dev_info = inode->i_mapping->backing_dev_info;
655 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
656 if (err)
657 goto out;
658 if (count == 0)
659 goto out;
660 err = remove_suid(file->f_path.dentry);
661 if (err)
662 goto out;
663 file_update_time(file);
664
Chris Mason8c2383c2007-06-18 09:57:58 -0400665 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400666
667 mutex_lock(&inode->i_mutex);
668 first_index = pos >> PAGE_CACHE_SHIFT;
669 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
670
671 /*
672 * there are lots of better ways to do this, but this code
673 * makes sure the first and last page in the file range are
674 * up to date and ready for cow
675 */
676 if ((pos & (PAGE_CACHE_SIZE - 1))) {
677 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
678 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400679 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400680 BUG_ON(ret);
681 wait_on_page_locked(pinned[0]);
682 } else {
683 unlock_page(pinned[0]);
684 }
685 }
686 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
687 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
688 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400689 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400690 BUG_ON(ret);
691 wait_on_page_locked(pinned[1]);
692 } else {
693 unlock_page(pinned[1]);
694 }
695 }
696
Chris Mason39279cc2007-06-12 06:35:45 -0400697 while(count > 0) {
698 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400699 size_t write_bytes = min(count, nrptrs *
700 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400701 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400702 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
703 PAGE_CACHE_SHIFT;
704
Chris Mason8c2383c2007-06-18 09:57:58 -0400705 WARN_ON(num_pages > nrptrs);
Chris Mason39279cc2007-06-12 06:35:45 -0400706 memset(pages, 0, sizeof(pages));
707 ret = prepare_pages(root, file, pages, num_pages,
708 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400709 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -0400710 if (ret)
711 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400712
Chris Mason39279cc2007-06-12 06:35:45 -0400713 ret = btrfs_copy_from_user(pos, num_pages,
714 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400715 if (ret) {
716 btrfs_drop_pages(pages, num_pages);
717 goto out;
718 }
Chris Mason39279cc2007-06-12 06:35:45 -0400719
720 ret = dirty_and_release_pages(NULL, root, file, pages,
721 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400722 btrfs_drop_pages(pages, num_pages);
Chris Mason54aa1f42007-06-22 14:16:25 -0400723 if (ret)
724 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400725
726 buf += write_bytes;
727 count -= write_bytes;
728 pos += write_bytes;
729 num_written += write_bytes;
730
Chris Mason8c2383c2007-06-18 09:57:58 -0400731 balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400732 btrfs_btree_balance_dirty(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400733 cond_resched();
734 }
Chris Mason39279cc2007-06-12 06:35:45 -0400735 mutex_unlock(&inode->i_mutex);
736out:
Chris Mason8c2383c2007-06-18 09:57:58 -0400737 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -0400738 if (pinned[0])
739 page_cache_release(pinned[0]);
740 if (pinned[1])
741 page_cache_release(pinned[1]);
742 *ppos = pos;
743 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -0400744 return num_written ? num_written : err;
745}
746
Chris Mason39279cc2007-06-12 06:35:45 -0400747static int btrfs_sync_file(struct file *file,
748 struct dentry *dentry, int datasync)
749{
750 struct inode *inode = dentry->d_inode;
751 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400752 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400753 struct btrfs_trans_handle *trans;
754
755 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400756 * check the transaction that last modified this inode
757 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -0400758 */
759 mutex_lock(&root->fs_info->fs_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400760 if (!BTRFS_I(inode)->last_trans)
761 goto out;
762 mutex_lock(&root->fs_info->trans_mutex);
763 if (BTRFS_I(inode)->last_trans <=
764 root->fs_info->last_trans_committed) {
765 BTRFS_I(inode)->last_trans = 0;
766 mutex_unlock(&root->fs_info->trans_mutex);
767 goto out;
768 }
769 mutex_unlock(&root->fs_info->trans_mutex);
770
771 /*
Chris Masona52d9a82007-08-27 16:49:44 -0400772 * ok we haven't committed the transaction yet, lets do a commit
773 */
Chris Mason39279cc2007-06-12 06:35:45 -0400774 trans = btrfs_start_transaction(root, 1);
775 if (!trans) {
776 ret = -ENOMEM;
777 goto out;
778 }
779 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -0400780out:
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400781 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400782 return ret > 0 ? EIO : ret;
783}
784
Chris Mason9ebefb182007-06-15 13:50:00 -0400785static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -0400786#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
787 .nopage = filemap_nopage,
788 .populate = filemap_populate,
789#else
790 .fault = filemap_fault,
791#endif
Chris Mason9ebefb182007-06-15 13:50:00 -0400792 .page_mkwrite = btrfs_page_mkwrite,
793};
794
795static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
796{
797 vma->vm_ops = &btrfs_file_vm_ops;
798 file_accessed(filp);
799 return 0;
800}
801
Chris Mason39279cc2007-06-12 06:35:45 -0400802struct file_operations btrfs_file_operations = {
803 .llseek = generic_file_llseek,
804 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -0400805 .aio_read = generic_file_aio_read,
Chris Mason39279cc2007-06-12 06:35:45 -0400806 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -0400807 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -0400808 .open = generic_file_open,
Chris Mason39279cc2007-06-12 06:35:45 -0400809 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -0400810 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -0400811#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -0400812 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -0400813#endif
814};
815