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