Add O_SYNC support to btrfs_file_write
[linux-2.6-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"
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
a52d9a80
CM
83static int insert_inline_extent(struct btrfs_trans_handle *trans,
84 struct btrfs_root *root, struct inode *inode,
3326d1b0
CM
85 u64 offset, size_t size,
86 struct page **pages, size_t page_offset,
87 int num_pages)
54aa1f4d
CM
88{
89 struct btrfs_key key;
90 struct btrfs_path *path;
5f39d397
CM
91 struct extent_buffer *leaf;
92 char *kaddr;
93 unsigned long ptr;
54aa1f4d 94 struct btrfs_file_extent_item *ei;
3326d1b0 95 struct page *page;
54aa1f4d
CM
96 u32 datasize;
97 int err = 0;
98 int ret;
3326d1b0
CM
99 int i;
100 ssize_t cur_size;
54aa1f4d
CM
101
102 path = btrfs_alloc_path();
103 if (!path)
104 return -ENOMEM;
105
54aa1f4d
CM
106 btrfs_set_trans_block_group(trans, inode);
107
108 key.objectid = inode->i_ino;
109 key.offset = offset;
54aa1f4d 110 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
54aa1f4d 111
3326d1b0
CM
112 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
113 if (ret < 0) {
54aa1f4d
CM
114 err = ret;
115 goto fail;
116 }
3326d1b0
CM
117 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);
122
123 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;
18f16f7b 132 u64 found_end;
3326d1b0
CM
133
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 }
3326d1b0
CM
146 found_size = btrfs_file_extent_inline_len(leaf,
147 btrfs_item_nr(leaf, path->slots[0]));
18f16f7b 148 found_end = key.offset + found_size;
3326d1b0 149
18f16f7b 150 if (found_end < offset + size) {
3326d1b0
CM
151 btrfs_release_path(root, path);
152 ret = btrfs_search_slot(trans, root, &key, path,
18f16f7b 153 offset + size - found_end, 1);
3326d1b0
CM
154 BUG_ON(ret != 0);
155 ret = btrfs_extend_item(trans, root, path,
18f16f7b 156 offset + size - found_end);
3326d1b0
CM
157 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 }
18f16f7b
Y
165 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 }
3326d1b0
CM
169 } else {
170insert:
171 btrfs_release_path(root, path);
18f16f7b
Y
172 datasize = offset + size - key.offset;
173 datasize = btrfs_file_extent_calc_inline_size(datasize);
3326d1b0
CM
174 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 }
18f16f7b 187 ptr = btrfs_file_extent_inline_start(ei) + offset - key.offset;
3326d1b0
CM
188
189 cur_size = size;
190 i = 0;
191 while (size > 0) {
192 page = pages[i];
193 kaddr = kmap_atomic(page, KM_USER0);
ae2f5411 194 cur_size = min_t(size_t, PAGE_CACHE_SIZE - page_offset, size);
3326d1b0
CM
195 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 }
5f39d397 205 btrfs_mark_buffer_dirty(leaf);
54aa1f4d
CM
206fail:
207 btrfs_free_path(path);
54aa1f4d
CM
208 return err;
209}
210
39279cc3
CM
211static 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{
39279cc3 219 int err = 0;
a52d9a80 220 int i;
39279cc3 221 struct inode *inode = file->f_path.dentry->d_inode;
a52d9a80
CM
222 struct extent_map *em;
223 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
db94535d
CM
224 u64 hint_byte;
225 u64 num_bytes;
a52d9a80
CM
226 u64 start_pos;
227 u64 end_of_last_block;
228 u64 end_pos = pos + write_bytes;
db94535d 229 u32 inline_size;
a52d9a80 230 loff_t isize = i_size_read(inode);
39279cc3 231
a52d9a80
CM
232 em = alloc_extent_map(GFP_NOFS);
233 if (!em)
234 return -ENOMEM;
39279cc3 235
a52d9a80 236 em->bdev = inode->i_sb->s_bdev;
39279cc3 237
5f39d397 238 start_pos = pos & ~((u64)root->sectorsize - 1);
db94535d
CM
239 num_bytes = (write_bytes + pos - start_pos +
240 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
39279cc3 241
011410bd 242 down_read(&BTRFS_I(inode)->root->snap_sem);
db94535d
CM
243 end_of_last_block = start_pos + num_bytes - 1;
244
b888db2b 245 lock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
a52d9a80
CM
246 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);
db94535d
CM
253 inode->i_blocks += num_bytes >> 9;
254 hint_byte = 0;
a52d9a80
CM
255
256 if ((end_of_last_block & 4095) == 0) {
9433063b 257 printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block);
a52d9a80
CM
258 }
259 set_extent_uptodate(em_tree, start_pos, end_of_last_block, GFP_NOFS);
260
261 /* FIXME...EIEIO, ENOSPC and more */
262
a52d9a80
CM
263 /* insert any holes we need to create */
264 if (inode->i_size < start_pos) {
265 u64 last_pos_in_file;
266 u64 hole_size;
5f39d397 267 u64 mask = root->sectorsize - 1;
a52d9a80
CM
268 last_pos_in_file = (isize + mask) & ~mask;
269 hole_size = (start_pos - last_pos_in_file + mask) & ~mask;
2bf5a725 270
a52d9a80 271 if (last_pos_in_file < start_pos) {
2bf5a725
CM
272 err = btrfs_drop_extents(trans, root, inode,
273 last_pos_in_file,
274 last_pos_in_file + hole_size,
3326d1b0 275 last_pos_in_file,
db94535d 276 &hint_byte);
2bf5a725
CM
277 if (err)
278 goto failed;
279
a52d9a80
CM
280 err = btrfs_insert_file_extent(trans, root,
281 inode->i_ino,
282 last_pos_in_file,
283 0, 0, hole_size);
284 }
285 if (err)
39279cc3 286 goto failed;
a52d9a80
CM
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 */
3326d1b0
CM
293 inline_size = end_pos;
294 if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
7936ca38 295 inline_size > 8192 ||
3326d1b0 296 inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
b888db2b 297 u64 last_end;
3326d1b0 298
a52d9a80
CM
299 for (i = 0; i < num_pages; i++) {
300 struct page *p = pages[i];
301 SetPageUptodate(p);
b888db2b 302 set_page_dirty(p);
39279cc3 303 }
b888db2b
CM
304 last_end = pages[num_pages -1]->index << PAGE_CACHE_SHIFT;
305 last_end += PAGE_CACHE_SIZE - 1;
306 set_extent_delalloc(em_tree, start_pos, end_of_last_block,
307 GFP_NOFS);
a52d9a80 308 } else {
3326d1b0 309 u64 aligned_end;
b888db2b 310 /* step one, delete the existing extents in this range */
3326d1b0
CM
311 aligned_end = (pos + write_bytes + root->sectorsize - 1) &
312 ~((u64)root->sectorsize - 1);
2bf5a725 313 err = btrfs_drop_extents(trans, root, inode, start_pos,
3326d1b0 314 aligned_end, end_pos, &hint_byte);
2bf5a725
CM
315 if (err)
316 goto failed;
a52d9a80 317 err = insert_inline_extent(trans, root, inode, start_pos,
3326d1b0
CM
318 end_pos - start_pos, pages, 0,
319 num_pages);
a52d9a80 320 BUG_ON(err);
a52d9a80
CM
321 }
322 if (end_pos > isize) {
323 i_size_write(inode, end_pos);
324 btrfs_update_inode(trans, root, inode);
39279cc3
CM
325 }
326failed:
a52d9a80
CM
327 err = btrfs_end_transaction(trans, root);
328out_unlock:
329 mutex_unlock(&root->fs_info->fs_mutex);
b888db2b 330 unlock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
a52d9a80 331 free_extent_map(em);
011410bd 332 up_read(&BTRFS_I(inode)->root->snap_sem);
39279cc3
CM
333 return err;
334}
335
a52d9a80
CM
336int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
337{
338 struct extent_map *em;
339 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
340
341 while(1) {
342 em = lookup_extent_mapping(em_tree, start, end);
343 if (!em)
344 break;
345 remove_extent_mapping(em_tree, em);
346 /* once for us */
347 free_extent_map(em);
348 /* once for the tree*/
349 free_extent_map(em);
350 }
351 return 0;
352}
353
39279cc3
CM
354/*
355 * this is very complex, but the basic idea is to drop all extents
356 * in the range start - end. hint_block is filled in with a block number
357 * that would be a good hint to the block allocator for this file.
358 *
359 * If an extent intersects the range but is not entirely inside the range
360 * it is either truncated or split. Anything entirely inside the range
361 * is deleted from the tree.
362 */
363int btrfs_drop_extents(struct btrfs_trans_handle *trans,
364 struct btrfs_root *root, struct inode *inode,
3326d1b0 365 u64 start, u64 end, u64 inline_end, u64 *hint_byte)
39279cc3
CM
366{
367 int ret;
368 struct btrfs_key key;
5f39d397 369 struct extent_buffer *leaf;
39279cc3
CM
370 int slot;
371 struct btrfs_file_extent_item *extent;
372 u64 extent_end = 0;
373 int keep;
374 struct btrfs_file_extent_item old;
375 struct btrfs_path *path;
376 u64 search_start = start;
377 int bookend;
378 int found_type;
379 int found_extent;
380 int found_inline;
ccd467d6 381 int recow;
39279cc3 382
a52d9a80
CM
383 btrfs_drop_extent_cache(inode, start, end - 1);
384
39279cc3
CM
385 path = btrfs_alloc_path();
386 if (!path)
387 return -ENOMEM;
388 while(1) {
ccd467d6 389 recow = 0;
39279cc3
CM
390 btrfs_release_path(root, path);
391 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
392 search_start, -1);
393 if (ret < 0)
394 goto out;
395 if (ret > 0) {
396 if (path->slots[0] == 0) {
397 ret = 0;
398 goto out;
399 }
400 path->slots[0]--;
401 }
8c2383c3 402next_slot:
39279cc3
CM
403 keep = 0;
404 bookend = 0;
405 found_extent = 0;
406 found_inline = 0;
407 extent = NULL;
5f39d397 408 leaf = path->nodes[0];
39279cc3 409 slot = path->slots[0];
8c2383c3 410 ret = 0;
5f39d397 411 btrfs_item_key_to_cpu(leaf, &key, slot);
39279cc3 412 if (key.offset >= end || key.objectid != inode->i_ino) {
39279cc3
CM
413 goto out;
414 }
8c2383c3 415 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY) {
39279cc3
CM
416 goto out;
417 }
ccd467d6
CM
418 if (recow) {
419 search_start = key.offset;
420 continue;
421 }
8c2383c3
CM
422 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
423 extent = btrfs_item_ptr(leaf, slot,
424 struct btrfs_file_extent_item);
5f39d397 425 found_type = btrfs_file_extent_type(leaf, extent);
8c2383c3
CM
426 if (found_type == BTRFS_FILE_EXTENT_REG) {
427 extent_end = key.offset +
db94535d 428 btrfs_file_extent_num_bytes(leaf, extent);
8c2383c3
CM
429 found_extent = 1;
430 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5f39d397
CM
431 struct btrfs_item *item;
432 item = btrfs_item_nr(leaf, slot);
8c2383c3
CM
433 found_inline = 1;
434 extent_end = key.offset +
5f39d397 435 btrfs_file_extent_inline_len(leaf, item);
8c2383c3
CM
436 }
437 } else {
438 extent_end = search_start;
39279cc3
CM
439 }
440
441 /* we found nothing we can drop */
8c2383c3
CM
442 if ((!found_extent && !found_inline) ||
443 search_start >= extent_end) {
444 int nextret;
445 u32 nritems;
5f39d397 446 nritems = btrfs_header_nritems(leaf);
8c2383c3
CM
447 if (slot >= nritems - 1) {
448 nextret = btrfs_next_leaf(root, path);
449 if (nextret)
450 goto out;
ccd467d6 451 recow = 1;
8c2383c3
CM
452 } else {
453 path->slots[0]++;
454 }
455 goto next_slot;
39279cc3
CM
456 }
457
458 /* FIXME, there's only one inline extent allowed right now */
459 if (found_inline) {
5f39d397 460 u64 mask = root->sectorsize - 1;
39279cc3
CM
461 search_start = (extent_end + mask) & ~mask;
462 } else
463 search_start = extent_end;
464
465 if (end < extent_end && end >= key.offset) {
466 if (found_extent) {
db94535d
CM
467 u64 disk_bytenr =
468 btrfs_file_extent_disk_bytenr(leaf, extent);
469 u64 disk_num_bytes =
470 btrfs_file_extent_disk_num_bytes(leaf,
5f39d397
CM
471 extent);
472 read_extent_buffer(leaf, &old,
473 (unsigned long)extent,
474 sizeof(old));
db94535d 475 if (disk_bytenr != 0) {
39279cc3 476 ret = btrfs_inc_extent_ref(trans, root,
db94535d 477 disk_bytenr, disk_num_bytes);
39279cc3
CM
478 BUG_ON(ret);
479 }
480 }
3326d1b0
CM
481 if (!found_inline)
482 bookend = 1;
39279cc3 483 }
39279cc3
CM
484 /* truncate existing extent */
485 if (start > key.offset) {
486 u64 new_num;
487 u64 old_num;
488 keep = 1;
5f39d397 489 WARN_ON(start & (root->sectorsize - 1));
39279cc3 490 if (found_extent) {
db94535d
CM
491 new_num = start - key.offset;
492 old_num = btrfs_file_extent_num_bytes(leaf,
493 extent);
494 *hint_byte =
495 btrfs_file_extent_disk_bytenr(leaf,
496 extent);
497 if (btrfs_file_extent_disk_bytenr(leaf,
498 extent)) {
39279cc3 499 inode->i_blocks -=
db94535d 500 (old_num - new_num) >> 9;
39279cc3 501 }
db94535d
CM
502 btrfs_set_file_extent_num_bytes(leaf, extent,
503 new_num);
5f39d397 504 btrfs_mark_buffer_dirty(leaf);
3326d1b0
CM
505 } else if (end > extent_end &&
506 key.offset < inline_end &&
507 inline_end < extent_end) {
508 u32 new_size;
509 new_size = btrfs_file_extent_calc_inline_size(
510 inline_end - key.offset);
511 btrfs_truncate_item(trans, root, path,
512 new_size);
39279cc3
CM
513 }
514 }
515 /* delete the entire extent */
516 if (!keep) {
db94535d
CM
517 u64 disk_bytenr = 0;
518 u64 disk_num_bytes = 0;
519 u64 extent_num_bytes = 0;
39279cc3 520 if (found_extent) {
db94535d
CM
521 disk_bytenr =
522 btrfs_file_extent_disk_bytenr(leaf,
5f39d397 523 extent);
db94535d
CM
524 disk_num_bytes =
525 btrfs_file_extent_disk_num_bytes(leaf,
5f39d397 526 extent);
db94535d
CM
527 extent_num_bytes =
528 btrfs_file_extent_num_bytes(leaf, extent);
529 *hint_byte =
530 btrfs_file_extent_disk_bytenr(leaf,
531 extent);
39279cc3
CM
532 }
533 ret = btrfs_del_item(trans, root, path);
54aa1f4d 534 /* TODO update progress marker and return */
39279cc3
CM
535 BUG_ON(ret);
536 btrfs_release_path(root, path);
537 extent = NULL;
db94535d
CM
538 if (found_extent && disk_bytenr != 0) {
539 inode->i_blocks -= extent_num_bytes >> 9;
39279cc3 540 ret = btrfs_free_extent(trans, root,
db94535d
CM
541 disk_bytenr,
542 disk_num_bytes, 0);
39279cc3
CM
543 }
544
545 BUG_ON(ret);
546 if (!bookend && search_start >= end) {
547 ret = 0;
548 goto out;
549 }
550 if (!bookend)
551 continue;
552 }
553 /* create bookend, splitting the extent in two */
554 if (bookend && found_extent) {
555 struct btrfs_key ins;
556 ins.objectid = inode->i_ino;
557 ins.offset = end;
39279cc3 558 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
39279cc3
CM
559 btrfs_release_path(root, path);
560 ret = btrfs_insert_empty_item(trans, root, path, &ins,
561 sizeof(*extent));
8c2383c3 562
5f39d397 563 leaf = path->nodes[0];
8c2383c3 564 if (ret) {
5f39d397
CM
565 btrfs_print_leaf(root, leaf);
566 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 567 }
39279cc3 568 BUG_ON(ret);
5f39d397
CM
569 extent = btrfs_item_ptr(leaf, path->slots[0],
570 struct btrfs_file_extent_item);
571 write_extent_buffer(leaf, &old,
572 (unsigned long)extent, sizeof(old));
573
574 btrfs_set_file_extent_offset(leaf, extent,
db94535d
CM
575 le64_to_cpu(old.offset) + end - key.offset);
576 WARN_ON(le64_to_cpu(old.num_bytes) <
577 (extent_end - end));
578 btrfs_set_file_extent_num_bytes(leaf, extent,
579 extent_end - end);
5f39d397 580 btrfs_set_file_extent_type(leaf, extent,
39279cc3 581 BTRFS_FILE_EXTENT_REG);
db94535d 582
39279cc3 583 btrfs_mark_buffer_dirty(path->nodes[0]);
db94535d 584 if (le64_to_cpu(old.disk_bytenr) != 0) {
39279cc3 585 inode->i_blocks +=
db94535d
CM
586 btrfs_file_extent_num_bytes(leaf,
587 extent) >> 9;
39279cc3
CM
588 }
589 ret = 0;
590 goto out;
591 }
592 }
593out:
594 btrfs_free_path(path);
595 return ret;
596}
597
598/*
599 * this gets pages into the page cache and locks them down
600 */
601static int prepare_pages(struct btrfs_root *root,
602 struct file *file,
603 struct page **pages,
604 size_t num_pages,
605 loff_t pos,
606 unsigned long first_index,
607 unsigned long last_index,
8c2383c3 608 size_t write_bytes)
39279cc3
CM
609{
610 int i;
611 unsigned long index = pos >> PAGE_CACHE_SHIFT;
612 struct inode *inode = file->f_path.dentry->d_inode;
39279cc3 613 int err = 0;
8c2383c3 614 u64 start_pos;
8c2383c3 615
5f39d397 616 start_pos = pos & ~((u64)root->sectorsize - 1);
39279cc3
CM
617
618 memset(pages, 0, num_pages * sizeof(struct page *));
619
620 for (i = 0; i < num_pages; i++) {
621 pages[i] = grab_cache_page(inode->i_mapping, index + i);
622 if (!pages[i]) {
623 err = -ENOMEM;
a52d9a80 624 BUG_ON(1);
39279cc3 625 }
ccd467d6
CM
626 cancel_dirty_page(pages[i], PAGE_CACHE_SIZE);
627 wait_on_page_writeback(pages[i]);
b3cfa35a 628 set_page_extent_mapped(pages[i]);
b888db2b 629 WARN_ON(!PageLocked(pages[i]));
39279cc3
CM
630 }
631 return 0;
39279cc3
CM
632}
633
634static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
635 size_t count, loff_t *ppos)
636{
637 loff_t pos;
2ff3e9b6
CM
638 loff_t start_pos;
639 ssize_t num_written = 0;
640 ssize_t err = 0;
39279cc3
CM
641 int ret = 0;
642 struct inode *inode = file->f_path.dentry->d_inode;
643 struct btrfs_root *root = BTRFS_I(inode)->root;
8c2383c3
CM
644 struct page **pages = NULL;
645 int nrptrs;
39279cc3
CM
646 struct page *pinned[2];
647 unsigned long first_index;
648 unsigned long last_index;
8c2383c3
CM
649
650 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
651 PAGE_CACHE_SIZE / (sizeof(struct page *)));
39279cc3
CM
652 pinned[0] = NULL;
653 pinned[1] = NULL;
654 if (file->f_flags & O_DIRECT)
655 return -EINVAL;
2ff3e9b6 656
39279cc3 657 pos = *ppos;
2ff3e9b6
CM
658 start_pos = pos;
659
39279cc3
CM
660 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
661 current->backing_dev_info = inode->i_mapping->backing_dev_info;
662 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
663 if (err)
664 goto out;
665 if (count == 0)
666 goto out;
667 err = remove_suid(file->f_path.dentry);
668 if (err)
669 goto out;
670 file_update_time(file);
671
8c2383c3 672 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
39279cc3
CM
673
674 mutex_lock(&inode->i_mutex);
675 first_index = pos >> PAGE_CACHE_SHIFT;
676 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
677
678 /*
679 * there are lots of better ways to do this, but this code
680 * makes sure the first and last page in the file range are
681 * up to date and ready for cow
682 */
683 if ((pos & (PAGE_CACHE_SIZE - 1))) {
684 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
685 if (!PageUptodate(pinned[0])) {
9ebefb18 686 ret = btrfs_readpage(NULL, pinned[0]);
39279cc3
CM
687 BUG_ON(ret);
688 wait_on_page_locked(pinned[0]);
689 } else {
690 unlock_page(pinned[0]);
691 }
692 }
693 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
694 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
695 if (!PageUptodate(pinned[1])) {
9ebefb18 696 ret = btrfs_readpage(NULL, pinned[1]);
39279cc3
CM
697 BUG_ON(ret);
698 wait_on_page_locked(pinned[1]);
699 } else {
700 unlock_page(pinned[1]);
701 }
702 }
703
39279cc3
CM
704 while(count > 0) {
705 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
11bd143f
CM
706 size_t write_bytes = min(count, nrptrs *
707 (size_t)PAGE_CACHE_SIZE -
8c2383c3 708 offset);
39279cc3
CM
709 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
710 PAGE_CACHE_SHIFT;
711
8c2383c3 712 WARN_ON(num_pages > nrptrs);
39279cc3
CM
713 memset(pages, 0, sizeof(pages));
714 ret = prepare_pages(root, file, pages, num_pages,
715 pos, first_index, last_index,
8c2383c3 716 write_bytes);
54aa1f4d
CM
717 if (ret)
718 goto out;
39279cc3 719
39279cc3
CM
720 ret = btrfs_copy_from_user(pos, num_pages,
721 write_bytes, pages, buf);
54aa1f4d
CM
722 if (ret) {
723 btrfs_drop_pages(pages, num_pages);
724 goto out;
725 }
39279cc3
CM
726
727 ret = dirty_and_release_pages(NULL, root, file, pages,
728 num_pages, pos, write_bytes);
39279cc3 729 btrfs_drop_pages(pages, num_pages);
54aa1f4d
CM
730 if (ret)
731 goto out;
39279cc3
CM
732
733 buf += write_bytes;
734 count -= write_bytes;
735 pos += write_bytes;
736 num_written += write_bytes;
737
8c2383c3 738 balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
d3c2fdcf 739 btrfs_btree_balance_dirty(root, 1);
39279cc3
CM
740 cond_resched();
741 }
39279cc3
CM
742 mutex_unlock(&inode->i_mutex);
743out:
8c2383c3 744 kfree(pages);
39279cc3
CM
745 if (pinned[0])
746 page_cache_release(pinned[0]);
747 if (pinned[1])
748 page_cache_release(pinned[1]);
749 *ppos = pos;
2ff3e9b6
CM
750
751 if (num_written > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
752 err = sync_page_range(inode, inode->i_mapping,
753 start_pos, num_written);
754 if (err < 0)
755 num_written = err;
756 }
39279cc3 757 current->backing_dev_info = NULL;
39279cc3
CM
758 return num_written ? num_written : err;
759}
760
39279cc3
CM
761static int btrfs_sync_file(struct file *file,
762 struct dentry *dentry, int datasync)
763{
764 struct inode *inode = dentry->d_inode;
765 struct btrfs_root *root = BTRFS_I(inode)->root;
15ee9bc7 766 int ret = 0;
39279cc3
CM
767 struct btrfs_trans_handle *trans;
768
769 /*
15ee9bc7
JB
770 * check the transaction that last modified this inode
771 * and see if its already been committed
39279cc3
CM
772 */
773 mutex_lock(&root->fs_info->fs_mutex);
15ee9bc7
JB
774 if (!BTRFS_I(inode)->last_trans)
775 goto out;
776 mutex_lock(&root->fs_info->trans_mutex);
777 if (BTRFS_I(inode)->last_trans <=
778 root->fs_info->last_trans_committed) {
779 BTRFS_I(inode)->last_trans = 0;
780 mutex_unlock(&root->fs_info->trans_mutex);
781 goto out;
782 }
783 mutex_unlock(&root->fs_info->trans_mutex);
784
785 /*
a52d9a80
CM
786 * ok we haven't committed the transaction yet, lets do a commit
787 */
39279cc3
CM
788 trans = btrfs_start_transaction(root, 1);
789 if (!trans) {
790 ret = -ENOMEM;
791 goto out;
792 }
793 ret = btrfs_commit_transaction(trans, root);
39279cc3 794out:
15ee9bc7 795 mutex_unlock(&root->fs_info->fs_mutex);
39279cc3
CM
796 return ret > 0 ? EIO : ret;
797}
798
9ebefb18 799static struct vm_operations_struct btrfs_file_vm_ops = {
92fee66d
CM
800#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
801 .nopage = filemap_nopage,
802 .populate = filemap_populate,
803#else
804 .fault = filemap_fault,
805#endif
9ebefb18
CM
806 .page_mkwrite = btrfs_page_mkwrite,
807};
808
809static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
810{
811 vma->vm_ops = &btrfs_file_vm_ops;
812 file_accessed(filp);
813 return 0;
814}
815
39279cc3
CM
816struct file_operations btrfs_file_operations = {
817 .llseek = generic_file_llseek,
818 .read = do_sync_read,
9ebefb18 819 .aio_read = generic_file_aio_read,
39279cc3 820 .write = btrfs_file_write,
9ebefb18 821 .mmap = btrfs_file_mmap,
39279cc3 822 .open = generic_file_open,
39279cc3 823 .fsync = btrfs_sync_file,
34287aa3 824 .unlocked_ioctl = btrfs_ioctl,
39279cc3 825#ifdef CONFIG_COMPAT
34287aa3 826 .compat_ioctl = btrfs_ioctl,
39279cc3
CM
827#endif
828};
829