Btrfs: Include sched.h in the acl code for current (fixes compile on 2.6.23)
[linux-block.git] / fs / btrfs / file.c
CommitLineData
6cbd5570
CM
1/*
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
39279cc3
CM
19#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>
92fee66d 32#include <linux/version.h>
39279cc3
CM
33#include "ctree.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "btrfs_inode.h"
dc17ff8f 37#include "ordered-data.h"
39279cc3
CM
38#include "ioctl.h"
39#include "print-tree.h"
40
41
42static int btrfs_copy_from_user(loff_t pos, int num_pages, int write_bytes,
43 struct page **prepared_pages,
44 const char __user * buf)
45{
46 long page_fault = 0;
47 int i;
48 int offset = pos & (PAGE_CACHE_SIZE - 1);
49
50 for (i = 0; i < num_pages && write_bytes > 0; i++, offset = 0) {
51 size_t count = min_t(size_t,
52 PAGE_CACHE_SIZE - offset, write_bytes);
53 struct page *page = prepared_pages[i];
54 fault_in_pages_readable(buf, count);
55
56 /* Copy data from userspace to the current page */
57 kmap(page);
58 page_fault = __copy_from_user(page_address(page) + offset,
59 buf, count);
60 /* Flush processor's dcache for this page */
61 flush_dcache_page(page);
62 kunmap(page);
63 buf += count;
64 write_bytes -= count;
65
66 if (page_fault)
67 break;
68 }
69 return page_fault ? -EFAULT : 0;
70}
71
72static void btrfs_drop_pages(struct page **pages, size_t num_pages)
73{
74 size_t i;
75 for (i = 0; i < num_pages; i++) {
76 if (!pages[i])
77 break;
78 unlock_page(pages[i]);
79 mark_page_accessed(pages[i]);
80 page_cache_release(pages[i]);
81 }
82}
83
98ed5174 84static int noinline insert_inline_extent(struct btrfs_trans_handle *trans,
a52d9a80 85 struct btrfs_root *root, struct inode *inode,
3326d1b0
CM
86 u64 offset, size_t size,
87 struct page **pages, size_t page_offset,
88 int num_pages)
54aa1f4d
CM
89{
90 struct btrfs_key key;
91 struct btrfs_path *path;
5f39d397
CM
92 struct extent_buffer *leaf;
93 char *kaddr;
94 unsigned long ptr;
54aa1f4d 95 struct btrfs_file_extent_item *ei;
3326d1b0 96 struct page *page;
54aa1f4d
CM
97 u32 datasize;
98 int err = 0;
99 int ret;
3326d1b0
CM
100 int i;
101 ssize_t cur_size;
54aa1f4d
CM
102
103 path = btrfs_alloc_path();
104 if (!path)
105 return -ENOMEM;
106
54aa1f4d
CM
107 btrfs_set_trans_block_group(trans, inode);
108
109 key.objectid = inode->i_ino;
110 key.offset = offset;
54aa1f4d 111 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
54aa1f4d 112
3326d1b0
CM
113 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
114 if (ret < 0) {
54aa1f4d
CM
115 err = ret;
116 goto fail;
117 }
3326d1b0 118 if (ret == 1) {
179e29e4
CM
119 struct btrfs_key found_key;
120
121 if (path->slots[0] == 0)
122 goto insert;
123
3326d1b0
CM
124 path->slots[0]--;
125 leaf = path->nodes[0];
179e29e4
CM
126 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;
3326d1b0
CM
133 ei = btrfs_item_ptr(leaf, path->slots[0],
134 struct btrfs_file_extent_item);
135
136 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;
18f16f7b 145 u64 found_end;
3326d1b0
CM
146
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 }
3326d1b0
CM
159 found_size = btrfs_file_extent_inline_len(leaf,
160 btrfs_item_nr(leaf, path->slots[0]));
18f16f7b 161 found_end = key.offset + found_size;
3326d1b0 162
18f16f7b 163 if (found_end < offset + size) {
3326d1b0
CM
164 btrfs_release_path(root, path);
165 ret = btrfs_search_slot(trans, root, &key, path,
18f16f7b 166 offset + size - found_end, 1);
3326d1b0 167 BUG_ON(ret != 0);
179e29e4 168
3326d1b0 169 ret = btrfs_extend_item(trans, root, path,
18f16f7b 170 offset + size - found_end);
3326d1b0
CM
171 if (ret) {
172 err = ret;
173 goto fail;
174 }
175 leaf = path->nodes[0];
176 ei = btrfs_item_ptr(leaf, path->slots[0],
177 struct btrfs_file_extent_item);
178 }
18f16f7b
Y
179 if (found_end < offset) {
180 ptr = btrfs_file_extent_inline_start(ei) + found_size;
181 memset_extent_buffer(leaf, 0, ptr, offset - found_end);
182 }
3326d1b0
CM
183 } else {
184insert:
185 btrfs_release_path(root, path);
18f16f7b
Y
186 datasize = offset + size - key.offset;
187 datasize = btrfs_file_extent_calc_inline_size(datasize);
3326d1b0
CM
188 ret = btrfs_insert_empty_item(trans, root, path, &key,
189 datasize);
190 if (ret) {
191 err = ret;
192 printk("got bad ret %d\n", ret);
193 goto fail;
194 }
195 leaf = path->nodes[0];
196 ei = btrfs_item_ptr(leaf, path->slots[0],
197 struct btrfs_file_extent_item);
198 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
199 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
200 }
18f16f7b 201 ptr = btrfs_file_extent_inline_start(ei) + offset - key.offset;
3326d1b0
CM
202
203 cur_size = size;
204 i = 0;
205 while (size > 0) {
206 page = pages[i];
207 kaddr = kmap_atomic(page, KM_USER0);
ae2f5411 208 cur_size = min_t(size_t, PAGE_CACHE_SIZE - page_offset, size);
3326d1b0
CM
209 write_extent_buffer(leaf, kaddr + page_offset, ptr, cur_size);
210 kunmap_atomic(kaddr, KM_USER0);
211 page_offset = 0;
212 ptr += cur_size;
213 size -= cur_size;
214 if (i >= num_pages) {
215 printk("i %d num_pages %d\n", i, num_pages);
216 }
217 i++;
218 }
5f39d397 219 btrfs_mark_buffer_dirty(leaf);
54aa1f4d
CM
220fail:
221 btrfs_free_path(path);
54aa1f4d
CM
222 return err;
223}
224
98ed5174 225static int noinline dirty_and_release_pages(struct btrfs_trans_handle *trans,
39279cc3
CM
226 struct btrfs_root *root,
227 struct file *file,
228 struct page **pages,
229 size_t num_pages,
230 loff_t pos,
231 size_t write_bytes)
232{
39279cc3 233 int err = 0;
a52d9a80 234 int i;
6da6abae 235 struct inode *inode = fdentry(file)->d_inode;
a52d9a80
CM
236 struct extent_map *em;
237 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
db94535d
CM
238 u64 hint_byte;
239 u64 num_bytes;
a52d9a80
CM
240 u64 start_pos;
241 u64 end_of_last_block;
242 u64 end_pos = pos + write_bytes;
dcfec0dc 243 u64 inline_size;
a52d9a80 244 loff_t isize = i_size_read(inode);
a52d9a80
CM
245 em = alloc_extent_map(GFP_NOFS);
246 if (!em)
247 return -ENOMEM;
39279cc3 248
a52d9a80 249 em->bdev = inode->i_sb->s_bdev;
39279cc3 250
5f39d397 251 start_pos = pos & ~((u64)root->sectorsize - 1);
db94535d
CM
252 num_bytes = (write_bytes + pos - start_pos +
253 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
39279cc3 254
db94535d
CM
255 end_of_last_block = start_pos + num_bytes - 1;
256
b888db2b 257 lock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
a52d9a80
CM
258 mutex_lock(&root->fs_info->fs_mutex);
259 trans = btrfs_start_transaction(root, 1);
260 if (!trans) {
261 err = -ENOMEM;
262 goto out_unlock;
263 }
264 btrfs_set_trans_block_group(trans, inode);
db94535d
CM
265 inode->i_blocks += num_bytes >> 9;
266 hint_byte = 0;
a52d9a80
CM
267
268 if ((end_of_last_block & 4095) == 0) {
9433063b 269 printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block);
a52d9a80
CM
270 }
271 set_extent_uptodate(em_tree, start_pos, end_of_last_block, GFP_NOFS);
272
273 /* FIXME...EIEIO, ENOSPC and more */
274
a52d9a80
CM
275 /* insert any holes we need to create */
276 if (inode->i_size < start_pos) {
277 u64 last_pos_in_file;
278 u64 hole_size;
5f39d397 279 u64 mask = root->sectorsize - 1;
a52d9a80
CM
280 last_pos_in_file = (isize + mask) & ~mask;
281 hole_size = (start_pos - last_pos_in_file + mask) & ~mask;
2bf5a725 282
a52d9a80 283 if (last_pos_in_file < start_pos) {
2bf5a725
CM
284 err = btrfs_drop_extents(trans, root, inode,
285 last_pos_in_file,
286 last_pos_in_file + hole_size,
3326d1b0 287 last_pos_in_file,
db94535d 288 &hint_byte);
2bf5a725
CM
289 if (err)
290 goto failed;
291
a52d9a80
CM
292 err = btrfs_insert_file_extent(trans, root,
293 inode->i_ino,
294 last_pos_in_file,
295 0, 0, hole_size);
296 }
297 if (err)
39279cc3 298 goto failed;
a52d9a80
CM
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 */
3326d1b0
CM
305 inline_size = end_pos;
306 if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
25524883 307 inline_size > 8192 ||
3326d1b0 308 inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
b888db2b 309 u64 last_end;
1832a6d5 310 u64 existing_delalloc = 0;
3326d1b0 311
a52d9a80
CM
312 for (i = 0; i < num_pages; i++) {
313 struct page *p = pages[i];
314 SetPageUptodate(p);
b888db2b 315 set_page_dirty(p);
39279cc3 316 }
35ebb934
CM
317 last_end = (u64)(pages[num_pages -1]->index) <<
318 PAGE_CACHE_SHIFT;
b888db2b 319 last_end += PAGE_CACHE_SIZE - 1;
1832a6d5
CM
320 if (start_pos < isize) {
321 u64 delalloc_start = start_pos;
322 existing_delalloc = count_range_bits(em_tree,
323 &delalloc_start,
324 end_of_last_block, (u64)-1,
325 EXTENT_DELALLOC);
326 }
b888db2b
CM
327 set_extent_delalloc(em_tree, start_pos, end_of_last_block,
328 GFP_NOFS);
1832a6d5
CM
329 spin_lock(&root->fs_info->delalloc_lock);
330 root->fs_info->delalloc_bytes += (end_of_last_block + 1 -
331 start_pos) - existing_delalloc;
332 spin_unlock(&root->fs_info->delalloc_lock);
dc17ff8f 333 btrfs_add_ordered_inode(inode);
a52d9a80 334 } else {
3326d1b0 335 u64 aligned_end;
b888db2b 336 /* step one, delete the existing extents in this range */
3326d1b0
CM
337 aligned_end = (pos + write_bytes + root->sectorsize - 1) &
338 ~((u64)root->sectorsize - 1);
2bf5a725 339 err = btrfs_drop_extents(trans, root, inode, start_pos,
179e29e4 340 aligned_end, aligned_end, &hint_byte);
2bf5a725
CM
341 if (err)
342 goto failed;
dcfec0dc
Y
343 if (isize > inline_size)
344 inline_size = min_t(u64, isize, aligned_end);
345 inline_size -= start_pos;
a52d9a80 346 err = insert_inline_extent(trans, root, inode, start_pos,
dcfec0dc 347 inline_size, pages, 0, num_pages);
a52d9a80 348 BUG_ON(err);
a52d9a80
CM
349 }
350 if (end_pos > isize) {
351 i_size_write(inode, end_pos);
352 btrfs_update_inode(trans, root, inode);
39279cc3
CM
353 }
354failed:
a52d9a80
CM
355 err = btrfs_end_transaction(trans, root);
356out_unlock:
357 mutex_unlock(&root->fs_info->fs_mutex);
b888db2b 358 unlock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
a52d9a80 359 free_extent_map(em);
39279cc3
CM
360 return err;
361}
362
a52d9a80
CM
363int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
364{
365 struct extent_map *em;
366 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
367
368 while(1) {
369 em = lookup_extent_mapping(em_tree, start, end);
370 if (!em)
371 break;
372 remove_extent_mapping(em_tree, em);
373 /* once for us */
374 free_extent_map(em);
375 /* once for the tree*/
376 free_extent_map(em);
377 }
378 return 0;
379}
380
39279cc3
CM
381/*
382 * this is very complex, but the basic idea is to drop all extents
383 * in the range start - end. hint_block is filled in with a block number
384 * that would be a good hint to the block allocator for this file.
385 *
386 * If an extent intersects the range but is not entirely inside the range
387 * it is either truncated or split. Anything entirely inside the range
388 * is deleted from the tree.
389 */
390int btrfs_drop_extents(struct btrfs_trans_handle *trans,
391 struct btrfs_root *root, struct inode *inode,
00f5c795 392 u64 start, u64 end, u64 inline_limit, u64 *hint_byte)
39279cc3 393{
00f5c795
CM
394 u64 extent_end = 0;
395 u64 search_start = start;
5f39d397 396 struct extent_buffer *leaf;
39279cc3 397 struct btrfs_file_extent_item *extent;
39279cc3 398 struct btrfs_path *path;
00f5c795
CM
399 struct btrfs_key key;
400 struct btrfs_file_extent_item old;
401 int keep;
402 int slot;
39279cc3
CM
403 int bookend;
404 int found_type;
405 int found_extent;
406 int found_inline;
ccd467d6 407 int recow;
00f5c795 408 int ret;
39279cc3 409
a52d9a80
CM
410 btrfs_drop_extent_cache(inode, start, end - 1);
411
39279cc3
CM
412 path = btrfs_alloc_path();
413 if (!path)
414 return -ENOMEM;
415 while(1) {
ccd467d6 416 recow = 0;
39279cc3
CM
417 btrfs_release_path(root, path);
418 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
419 search_start, -1);
420 if (ret < 0)
421 goto out;
422 if (ret > 0) {
423 if (path->slots[0] == 0) {
424 ret = 0;
425 goto out;
426 }
427 path->slots[0]--;
428 }
8c2383c3 429next_slot:
39279cc3
CM
430 keep = 0;
431 bookend = 0;
432 found_extent = 0;
433 found_inline = 0;
434 extent = NULL;
5f39d397 435 leaf = path->nodes[0];
39279cc3 436 slot = path->slots[0];
8c2383c3 437 ret = 0;
5f39d397 438 btrfs_item_key_to_cpu(leaf, &key, slot);
39279cc3 439 if (key.offset >= end || key.objectid != inode->i_ino) {
39279cc3
CM
440 goto out;
441 }
8c2383c3 442 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY) {
39279cc3
CM
443 goto out;
444 }
ccd467d6
CM
445 if (recow) {
446 search_start = key.offset;
447 continue;
448 }
8c2383c3
CM
449 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
450 extent = btrfs_item_ptr(leaf, slot,
451 struct btrfs_file_extent_item);
5f39d397 452 found_type = btrfs_file_extent_type(leaf, extent);
8c2383c3 453 if (found_type == BTRFS_FILE_EXTENT_REG) {
257d0ce3
CM
454 extent_end =
455 btrfs_file_extent_disk_bytenr(leaf,
456 extent);
457 if (extent_end)
458 *hint_byte = extent_end;
459
8c2383c3 460 extent_end = key.offset +
db94535d 461 btrfs_file_extent_num_bytes(leaf, extent);
8c2383c3
CM
462 found_extent = 1;
463 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5f39d397
CM
464 struct btrfs_item *item;
465 item = btrfs_item_nr(leaf, slot);
8c2383c3
CM
466 found_inline = 1;
467 extent_end = key.offset +
5f39d397 468 btrfs_file_extent_inline_len(leaf, item);
8c2383c3
CM
469 }
470 } else {
471 extent_end = search_start;
39279cc3
CM
472 }
473
474 /* we found nothing we can drop */
8c2383c3
CM
475 if ((!found_extent && !found_inline) ||
476 search_start >= extent_end) {
477 int nextret;
478 u32 nritems;
5f39d397 479 nritems = btrfs_header_nritems(leaf);
8c2383c3
CM
480 if (slot >= nritems - 1) {
481 nextret = btrfs_next_leaf(root, path);
482 if (nextret)
483 goto out;
ccd467d6 484 recow = 1;
8c2383c3
CM
485 } else {
486 path->slots[0]++;
487 }
488 goto next_slot;
39279cc3
CM
489 }
490
39279cc3 491 if (found_inline) {
5f39d397 492 u64 mask = root->sectorsize - 1;
39279cc3
CM
493 search_start = (extent_end + mask) & ~mask;
494 } else
495 search_start = extent_end;
6e3b9666 496 if (end <= extent_end && start >= key.offset && found_inline) {
179e29e4 497 *hint_byte = EXTENT_MAP_INLINE;
6e3b9666 498 continue;
179e29e4 499 }
39279cc3
CM
500 if (end < extent_end && end >= key.offset) {
501 if (found_extent) {
db94535d
CM
502 u64 disk_bytenr =
503 btrfs_file_extent_disk_bytenr(leaf, extent);
504 u64 disk_num_bytes =
505 btrfs_file_extent_disk_num_bytes(leaf,
5f39d397
CM
506 extent);
507 read_extent_buffer(leaf, &old,
508 (unsigned long)extent,
509 sizeof(old));
db94535d 510 if (disk_bytenr != 0) {
39279cc3 511 ret = btrfs_inc_extent_ref(trans, root,
7bb86316
CM
512 disk_bytenr, disk_num_bytes,
513 root->root_key.objectid,
514 trans->transid,
515 key.objectid, end);
39279cc3
CM
516 BUG_ON(ret);
517 }
518 }
179e29e4
CM
519 bookend = 1;
520 if (found_inline && start <= key.offset &&
00f5c795 521 inline_limit < extent_end)
179e29e4 522 keep = 1;
39279cc3 523 }
39279cc3
CM
524 /* truncate existing extent */
525 if (start > key.offset) {
526 u64 new_num;
527 u64 old_num;
528 keep = 1;
5f39d397 529 WARN_ON(start & (root->sectorsize - 1));
39279cc3 530 if (found_extent) {
db94535d
CM
531 new_num = start - key.offset;
532 old_num = btrfs_file_extent_num_bytes(leaf,
533 extent);
534 *hint_byte =
535 btrfs_file_extent_disk_bytenr(leaf,
536 extent);
537 if (btrfs_file_extent_disk_bytenr(leaf,
538 extent)) {
39279cc3 539 inode->i_blocks -=
db94535d 540 (old_num - new_num) >> 9;
39279cc3 541 }
db94535d
CM
542 btrfs_set_file_extent_num_bytes(leaf, extent,
543 new_num);
5f39d397 544 btrfs_mark_buffer_dirty(leaf);
00f5c795
CM
545 } else if (key.offset < inline_limit &&
546 (end > extent_end) &&
547 (inline_limit < extent_end)) {
3326d1b0
CM
548 u32 new_size;
549 new_size = btrfs_file_extent_calc_inline_size(
00f5c795 550 inline_limit - key.offset);
3326d1b0 551 btrfs_truncate_item(trans, root, path,
179e29e4 552 new_size, 1);
39279cc3
CM
553 }
554 }
555 /* delete the entire extent */
556 if (!keep) {
db94535d
CM
557 u64 disk_bytenr = 0;
558 u64 disk_num_bytes = 0;
559 u64 extent_num_bytes = 0;
7bb86316 560 u64 root_gen;
d8d5f3e1 561 u64 root_owner;
7bb86316 562
d8d5f3e1
CM
563 root_gen = btrfs_header_generation(leaf);
564 root_owner = btrfs_header_owner(leaf);
39279cc3 565 if (found_extent) {
db94535d
CM
566 disk_bytenr =
567 btrfs_file_extent_disk_bytenr(leaf,
5f39d397 568 extent);
db94535d
CM
569 disk_num_bytes =
570 btrfs_file_extent_disk_num_bytes(leaf,
5f39d397 571 extent);
db94535d
CM
572 extent_num_bytes =
573 btrfs_file_extent_num_bytes(leaf, extent);
574 *hint_byte =
575 btrfs_file_extent_disk_bytenr(leaf,
576 extent);
39279cc3
CM
577 }
578 ret = btrfs_del_item(trans, root, path);
54aa1f4d 579 /* TODO update progress marker and return */
39279cc3
CM
580 BUG_ON(ret);
581 btrfs_release_path(root, path);
582 extent = NULL;
db94535d
CM
583 if (found_extent && disk_bytenr != 0) {
584 inode->i_blocks -= extent_num_bytes >> 9;
39279cc3 585 ret = btrfs_free_extent(trans, root,
7bb86316
CM
586 disk_bytenr,
587 disk_num_bytes,
d8d5f3e1 588 root_owner,
7bb86316
CM
589 root_gen, inode->i_ino,
590 key.offset, 0);
39279cc3
CM
591 }
592
593 BUG_ON(ret);
594 if (!bookend && search_start >= end) {
595 ret = 0;
596 goto out;
597 }
598 if (!bookend)
599 continue;
600 }
179e29e4 601 if (bookend && found_inline && start <= key.offset &&
00f5c795 602 inline_limit < extent_end && key.offset <= inline_limit) {
179e29e4
CM
603 u32 new_size;
604 new_size = btrfs_file_extent_calc_inline_size(
00f5c795 605 extent_end - inline_limit);
179e29e4
CM
606 btrfs_truncate_item(trans, root, path, new_size, 0);
607 }
39279cc3
CM
608 /* create bookend, splitting the extent in two */
609 if (bookend && found_extent) {
610 struct btrfs_key ins;
611 ins.objectid = inode->i_ino;
612 ins.offset = end;
39279cc3 613 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
39279cc3
CM
614 btrfs_release_path(root, path);
615 ret = btrfs_insert_empty_item(trans, root, path, &ins,
616 sizeof(*extent));
8c2383c3 617
5f39d397 618 leaf = path->nodes[0];
8c2383c3 619 if (ret) {
5f39d397
CM
620 btrfs_print_leaf(root, leaf);
621 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);
8c2383c3 622 }
39279cc3 623 BUG_ON(ret);
5f39d397
CM
624 extent = btrfs_item_ptr(leaf, path->slots[0],
625 struct btrfs_file_extent_item);
626 write_extent_buffer(leaf, &old,
627 (unsigned long)extent, sizeof(old));
628
629 btrfs_set_file_extent_offset(leaf, extent,
db94535d
CM
630 le64_to_cpu(old.offset) + end - key.offset);
631 WARN_ON(le64_to_cpu(old.num_bytes) <
632 (extent_end - end));
633 btrfs_set_file_extent_num_bytes(leaf, extent,
634 extent_end - end);
5f39d397 635 btrfs_set_file_extent_type(leaf, extent,
39279cc3 636 BTRFS_FILE_EXTENT_REG);
db94535d 637
39279cc3 638 btrfs_mark_buffer_dirty(path->nodes[0]);
db94535d 639 if (le64_to_cpu(old.disk_bytenr) != 0) {
39279cc3 640 inode->i_blocks +=
db94535d
CM
641 btrfs_file_extent_num_bytes(leaf,
642 extent) >> 9;
39279cc3
CM
643 }
644 ret = 0;
645 goto out;
646 }
647 }
648out:
649 btrfs_free_path(path);
650 return ret;
651}
652
653/*
654 * this gets pages into the page cache and locks them down
655 */
98ed5174
CM
656static int prepare_pages(struct btrfs_root *root, struct file *file,
657 struct page **pages, size_t num_pages,
658 loff_t pos, unsigned long first_index,
659 unsigned long last_index, size_t write_bytes)
39279cc3
CM
660{
661 int i;
662 unsigned long index = pos >> PAGE_CACHE_SHIFT;
6da6abae 663 struct inode *inode = fdentry(file)->d_inode;
39279cc3 664 int err = 0;
8c2383c3 665 u64 start_pos;
8c2383c3 666
5f39d397 667 start_pos = pos & ~((u64)root->sectorsize - 1);
39279cc3
CM
668
669 memset(pages, 0, num_pages * sizeof(struct page *));
670
671 for (i = 0; i < num_pages; i++) {
672 pages[i] = grab_cache_page(inode->i_mapping, index + i);
673 if (!pages[i]) {
674 err = -ENOMEM;
a52d9a80 675 BUG_ON(1);
39279cc3 676 }
6da6abae
CM
677#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
678 ClearPageDirty(pages[i]);
679#else
ccd467d6 680 cancel_dirty_page(pages[i], PAGE_CACHE_SIZE);
6da6abae 681#endif
ccd467d6 682 wait_on_page_writeback(pages[i]);
b3cfa35a 683 set_page_extent_mapped(pages[i]);
b888db2b 684 WARN_ON(!PageLocked(pages[i]));
39279cc3
CM
685 }
686 return 0;
39279cc3
CM
687}
688
689static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
690 size_t count, loff_t *ppos)
691{
692 loff_t pos;
2ff3e9b6
CM
693 loff_t start_pos;
694 ssize_t num_written = 0;
695 ssize_t err = 0;
39279cc3 696 int ret = 0;
6da6abae 697 struct inode *inode = fdentry(file)->d_inode;
39279cc3 698 struct btrfs_root *root = BTRFS_I(inode)->root;
8c2383c3
CM
699 struct page **pages = NULL;
700 int nrptrs;
39279cc3
CM
701 struct page *pinned[2];
702 unsigned long first_index;
703 unsigned long last_index;
8c2383c3
CM
704
705 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
706 PAGE_CACHE_SIZE / (sizeof(struct page *)));
39279cc3
CM
707 pinned[0] = NULL;
708 pinned[1] = NULL;
709 if (file->f_flags & O_DIRECT)
710 return -EINVAL;
2ff3e9b6 711
39279cc3 712 pos = *ppos;
2ff3e9b6
CM
713 start_pos = pos;
714
39279cc3
CM
715 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
716 current->backing_dev_info = inode->i_mapping->backing_dev_info;
717 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
718 if (err)
1832a6d5 719 goto out_nolock;
39279cc3 720 if (count == 0)
1832a6d5 721 goto out_nolock;
6da6abae 722 err = remove_suid(fdentry(file));
39279cc3 723 if (err)
1832a6d5 724 goto out_nolock;
39279cc3
CM
725 file_update_time(file);
726
8c2383c3 727 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
39279cc3
CM
728
729 mutex_lock(&inode->i_mutex);
730 first_index = pos >> PAGE_CACHE_SHIFT;
731 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
732
733 /*
734 * there are lots of better ways to do this, but this code
735 * makes sure the first and last page in the file range are
736 * up to date and ready for cow
737 */
738 if ((pos & (PAGE_CACHE_SIZE - 1))) {
739 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
740 if (!PageUptodate(pinned[0])) {
9ebefb18 741 ret = btrfs_readpage(NULL, pinned[0]);
39279cc3
CM
742 BUG_ON(ret);
743 wait_on_page_locked(pinned[0]);
744 } else {
745 unlock_page(pinned[0]);
746 }
747 }
748 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
749 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
750 if (!PageUptodate(pinned[1])) {
9ebefb18 751 ret = btrfs_readpage(NULL, pinned[1]);
39279cc3
CM
752 BUG_ON(ret);
753 wait_on_page_locked(pinned[1]);
754 } else {
755 unlock_page(pinned[1]);
756 }
757 }
758
39279cc3
CM
759 while(count > 0) {
760 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
11bd143f
CM
761 size_t write_bytes = min(count, nrptrs *
762 (size_t)PAGE_CACHE_SIZE -
8c2383c3 763 offset);
39279cc3
CM
764 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
765 PAGE_CACHE_SHIFT;
766
8c2383c3 767 WARN_ON(num_pages > nrptrs);
39279cc3 768 memset(pages, 0, sizeof(pages));
1832a6d5
CM
769
770 mutex_lock(&root->fs_info->fs_mutex);
771 ret = btrfs_check_free_space(root, write_bytes, 0);
772 mutex_unlock(&root->fs_info->fs_mutex);
773 if (ret)
774 goto out;
775
39279cc3
CM
776 ret = prepare_pages(root, file, pages, num_pages,
777 pos, first_index, last_index,
8c2383c3 778 write_bytes);
54aa1f4d
CM
779 if (ret)
780 goto out;
39279cc3 781
39279cc3
CM
782 ret = btrfs_copy_from_user(pos, num_pages,
783 write_bytes, pages, buf);
54aa1f4d
CM
784 if (ret) {
785 btrfs_drop_pages(pages, num_pages);
786 goto out;
787 }
39279cc3
CM
788
789 ret = dirty_and_release_pages(NULL, root, file, pages,
790 num_pages, pos, write_bytes);
39279cc3 791 btrfs_drop_pages(pages, num_pages);
54aa1f4d
CM
792 if (ret)
793 goto out;
39279cc3
CM
794
795 buf += write_bytes;
796 count -= write_bytes;
797 pos += write_bytes;
798 num_written += write_bytes;
799
8c2383c3 800 balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
448d640b
CM
801 if (num_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
802 btrfs_btree_balance_dirty(root, 1);
e2008b61 803 btrfs_throttle(root);
39279cc3
CM
804 cond_resched();
805 }
39279cc3 806out:
1832a6d5 807 mutex_unlock(&inode->i_mutex);
5b92ee72 808
1832a6d5 809out_nolock:
8c2383c3 810 kfree(pages);
39279cc3
CM
811 if (pinned[0])
812 page_cache_release(pinned[0]);
813 if (pinned[1])
814 page_cache_release(pinned[1]);
815 *ppos = pos;
2ff3e9b6
CM
816
817 if (num_written > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
818 err = sync_page_range(inode, inode->i_mapping,
819 start_pos, num_written);
820 if (err < 0)
821 num_written = err;
822 }
39279cc3 823 current->backing_dev_info = NULL;
39279cc3
CM
824 return num_written ? num_written : err;
825}
826
39279cc3
CM
827static int btrfs_sync_file(struct file *file,
828 struct dentry *dentry, int datasync)
829{
830 struct inode *inode = dentry->d_inode;
831 struct btrfs_root *root = BTRFS_I(inode)->root;
15ee9bc7 832 int ret = 0;
39279cc3
CM
833 struct btrfs_trans_handle *trans;
834
835 /*
15ee9bc7
JB
836 * check the transaction that last modified this inode
837 * and see if its already been committed
39279cc3
CM
838 */
839 mutex_lock(&root->fs_info->fs_mutex);
15ee9bc7
JB
840 if (!BTRFS_I(inode)->last_trans)
841 goto out;
842 mutex_lock(&root->fs_info->trans_mutex);
843 if (BTRFS_I(inode)->last_trans <=
844 root->fs_info->last_trans_committed) {
845 BTRFS_I(inode)->last_trans = 0;
846 mutex_unlock(&root->fs_info->trans_mutex);
847 goto out;
848 }
849 mutex_unlock(&root->fs_info->trans_mutex);
850
851 /*
a52d9a80
CM
852 * ok we haven't committed the transaction yet, lets do a commit
853 */
39279cc3
CM
854 trans = btrfs_start_transaction(root, 1);
855 if (!trans) {
856 ret = -ENOMEM;
857 goto out;
858 }
859 ret = btrfs_commit_transaction(trans, root);
39279cc3 860out:
15ee9bc7 861 mutex_unlock(&root->fs_info->fs_mutex);
39279cc3
CM
862 return ret > 0 ? EIO : ret;
863}
864
9ebefb18 865static struct vm_operations_struct btrfs_file_vm_ops = {
92fee66d
CM
866#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
867 .nopage = filemap_nopage,
868 .populate = filemap_populate,
869#else
870 .fault = filemap_fault,
871#endif
9ebefb18
CM
872 .page_mkwrite = btrfs_page_mkwrite,
873};
874
875static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
876{
877 vma->vm_ops = &btrfs_file_vm_ops;
878 file_accessed(filp);
879 return 0;
880}
881
39279cc3
CM
882struct file_operations btrfs_file_operations = {
883 .llseek = generic_file_llseek,
884 .read = do_sync_read,
9ebefb18 885 .aio_read = generic_file_aio_read,
e9906a98 886 .splice_read = generic_file_splice_read,
6da6abae
CM
887#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
888 .sendfile = generic_file_sendfile,
889#endif
39279cc3 890 .write = btrfs_file_write,
9ebefb18 891 .mmap = btrfs_file_mmap,
39279cc3 892 .open = generic_file_open,
39279cc3 893 .fsync = btrfs_sync_file,
34287aa3 894 .unlocked_ioctl = btrfs_ioctl,
39279cc3 895#ifdef CONFIG_COMPAT
34287aa3 896 .compat_ioctl = btrfs_ioctl,
39279cc3
CM
897#endif
898};
899