Btrfs: add dirty_inode call
[deliverable/linux.git] / fs / btrfs / super.c
CommitLineData
2e635a27 1#include <linux/module.h>
e20d96d6 2#include <linux/buffer_head.h>
2e635a27
CM
3#include <linux/fs.h>
4#include <linux/pagemap.h>
5#include <linux/highmem.h>
6#include <linux/time.h>
7#include <linux/init.h>
8#include <linux/string.h>
9#include <linux/smp_lock.h>
10#include <linux/backing-dev.h>
dee26a9f 11#include <linux/mpage.h>
75dfe396
CM
12#include <linux/swap.h>
13#include <linux/writeback.h>
8fd17795 14#include <linux/statfs.h>
2e635a27 15#include "ctree.h"
e20d96d6 16#include "disk-io.h"
d5719762 17#include "transaction.h"
2c90e5d6 18#include "btrfs_inode.h"
c5739bba 19#include "ioctl.h"
2e635a27 20
d6e4a428
CM
21void btrfs_fsinfo_release(struct kobject *obj)
22{
23 struct btrfs_fs_info *fsinfo = container_of(obj,
24 struct btrfs_fs_info, kobj);
25 kfree(fsinfo);
26}
27
28struct kobj_type btrfs_fsinfo_ktype = {
29 .release = btrfs_fsinfo_release,
30};
31
c5739bba
CM
32struct btrfs_iget_args {
33 u64 ino;
34 struct btrfs_root *root;
35};
36
d6e4a428
CM
37decl_subsys(btrfs, &btrfs_fsinfo_ktype, NULL);
38
2e635a27 39#define BTRFS_SUPER_MAGIC 0x9123682E
e20d96d6
CM
40
41static struct inode_operations btrfs_dir_inode_operations;
d6e4a428 42static struct inode_operations btrfs_dir_ro_inode_operations;
e20d96d6
CM
43static struct super_operations btrfs_super_ops;
44static struct file_operations btrfs_dir_file_operations;
dee26a9f
CM
45static struct inode_operations btrfs_file_inode_operations;
46static struct address_space_operations btrfs_aops;
47static struct file_operations btrfs_file_operations;
e20d96d6 48
e20d96d6 49static void btrfs_read_locked_inode(struct inode *inode)
2e635a27 50{
5caf2a00 51 struct btrfs_path *path;
e20d96d6 52 struct btrfs_inode_item *inode_item;
d6e4a428
CM
53 struct btrfs_root *root = BTRFS_I(inode)->root;
54 struct btrfs_key location;
e20d96d6 55 int ret;
f4b9aa8d 56
5caf2a00
CM
57 path = btrfs_alloc_path();
58 BUG_ON(!path);
59 btrfs_init_path(path);
f4b9aa8d
CM
60 mutex_lock(&root->fs_info->fs_mutex);
61
d6e4a428
CM
62 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
63 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
e20d96d6 64 if (ret) {
7cfcc17e 65 btrfs_free_path(path);
d6e4a428 66 goto make_bad;
e20d96d6 67 }
5caf2a00
CM
68 inode_item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
69 path->slots[0],
e20d96d6 70 struct btrfs_inode_item);
2e635a27 71
e20d96d6
CM
72 inode->i_mode = btrfs_inode_mode(inode_item);
73 inode->i_nlink = btrfs_inode_nlink(inode_item);
74 inode->i_uid = btrfs_inode_uid(inode_item);
75 inode->i_gid = btrfs_inode_gid(inode_item);
76 inode->i_size = btrfs_inode_size(inode_item);
77 inode->i_atime.tv_sec = btrfs_timespec_sec(&inode_item->atime);
78 inode->i_atime.tv_nsec = btrfs_timespec_nsec(&inode_item->atime);
79 inode->i_mtime.tv_sec = btrfs_timespec_sec(&inode_item->mtime);
80 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(&inode_item->mtime);
81 inode->i_ctime.tv_sec = btrfs_timespec_sec(&inode_item->ctime);
82 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(&inode_item->ctime);
83 inode->i_blocks = btrfs_inode_nblocks(inode_item);
84 inode->i_generation = btrfs_inode_generation(inode_item);
5caf2a00 85
5caf2a00
CM
86 btrfs_free_path(path);
87 inode_item = NULL;
88
f4b9aa8d 89 mutex_unlock(&root->fs_info->fs_mutex);
1b05da2e 90
e20d96d6
CM
91 switch (inode->i_mode & S_IFMT) {
92#if 0
93 default:
94 init_special_inode(inode, inode->i_mode,
95 btrfs_inode_rdev(inode_item));
96 break;
97#endif
98 case S_IFREG:
dee26a9f
CM
99 inode->i_mapping->a_ops = &btrfs_aops;
100 inode->i_fop = &btrfs_file_operations;
101 inode->i_op = &btrfs_file_inode_operations;
e20d96d6
CM
102 break;
103 case S_IFDIR:
e20d96d6 104 inode->i_fop = &btrfs_dir_file_operations;
d6e4a428
CM
105 if (root == root->fs_info->tree_root)
106 inode->i_op = &btrfs_dir_ro_inode_operations;
107 else
108 inode->i_op = &btrfs_dir_inode_operations;
e20d96d6
CM
109 break;
110 case S_IFLNK:
e20d96d6
CM
111 // inode->i_op = &page_symlink_inode_operations;
112 break;
2e635a27 113 }
e20d96d6 114 return;
d6e4a428
CM
115
116make_bad:
117 btrfs_release_path(root, path);
118 btrfs_free_path(path);
119 mutex_unlock(&root->fs_info->fs_mutex);
120 make_bad_inode(inode);
2e635a27
CM
121}
122
5f443fd2
CM
123static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
124 struct btrfs_root *root,
125 struct inode *dir,
126 struct dentry *dentry)
134e9731 127{
5caf2a00 128 struct btrfs_path *path;
134e9731
CM
129 const char *name = dentry->d_name.name;
130 int name_len = dentry->d_name.len;
7e38180e 131 int ret = 0;
134e9731
CM
132 u64 objectid;
133 struct btrfs_dir_item *di;
134
5caf2a00
CM
135 path = btrfs_alloc_path();
136 BUG_ON(!path);
137 btrfs_init_path(path);
7e38180e 138 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
134e9731 139 name, name_len, -1);
7e38180e
CM
140 if (IS_ERR(di)) {
141 ret = PTR_ERR(di);
134e9731 142 goto err;
7e38180e
CM
143 }
144 if (!di) {
134e9731
CM
145 ret = -ENOENT;
146 goto err;
147 }
d6e4a428 148 objectid = btrfs_disk_key_objectid(&di->location);
7e38180e
CM
149 ret = btrfs_delete_one_dir_name(trans, root, path, di);
150 BUG_ON(ret);
151 btrfs_release_path(root, path);
134e9731 152
7e38180e
CM
153 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
154 objectid, name, name_len, -1);
155 if (IS_ERR(di)) {
156 ret = PTR_ERR(di);
157 goto err;
158 }
159 if (!di) {
160 ret = -ENOENT;
161 goto err;
162 }
163 ret = btrfs_delete_one_dir_name(trans, root, path, di);
5f26f772
CM
164 BUG_ON(ret);
165
134e9731
CM
166 dentry->d_inode->i_ctime = dir->i_ctime;
167err:
5caf2a00 168 btrfs_free_path(path);
d4dbff95 169 if (ret == 0) {
134e9731 170 inode_dec_link_count(dentry->d_inode);
5f26f772 171 dir->i_size -= name_len * 2;
d4dbff95
CM
172 mark_inode_dirty(dir);
173 }
134e9731
CM
174 return ret;
175}
176
5f443fd2
CM
177static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
178{
179 struct btrfs_root *root;
180 struct btrfs_trans_handle *trans;
181 int ret;
182
d6e4a428 183 root = BTRFS_I(dir)->root;
5f443fd2
CM
184 mutex_lock(&root->fs_info->fs_mutex);
185 trans = btrfs_start_transaction(root, 1);
186 ret = btrfs_unlink_trans(trans, root, dir, dentry);
187 btrfs_end_transaction(trans, root);
188 mutex_unlock(&root->fs_info->fs_mutex);
189 return ret;
190}
191
192static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
193{
194 struct inode *inode = dentry->d_inode;
195 int err;
196 int ret;
d6e4a428 197 struct btrfs_root *root = BTRFS_I(dir)->root;
5caf2a00 198 struct btrfs_path *path;
5f443fd2
CM
199 struct btrfs_key key;
200 struct btrfs_trans_handle *trans;
5f26f772
CM
201 struct btrfs_key found_key;
202 int found_type;
5f443fd2 203 struct btrfs_leaf *leaf;
5f26f772 204 char *goodnames = "..";
5f443fd2 205
5caf2a00
CM
206 path = btrfs_alloc_path();
207 BUG_ON(!path);
208 btrfs_init_path(path);
5f443fd2
CM
209 mutex_lock(&root->fs_info->fs_mutex);
210 trans = btrfs_start_transaction(root, 1);
211 key.objectid = inode->i_ino;
212 key.offset = (u64)-1;
5f26f772
CM
213 key.flags = (u32)-1;
214 while(1) {
215 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
216 if (ret < 0) {
217 err = ret;
218 goto out;
219 }
220 BUG_ON(ret == 0);
221 if (path->slots[0] == 0) {
222 err = -ENOENT;
223 goto out;
224 }
225 path->slots[0]--;
226 leaf = btrfs_buffer_leaf(path->nodes[0]);
227 btrfs_disk_key_to_cpu(&found_key,
228 &leaf->items[path->slots[0]].key);
229 found_type = btrfs_key_type(&found_key);
230 if (found_key.objectid != inode->i_ino) {
231 err = -ENOENT;
232 goto out;
233 }
234 if ((found_type != BTRFS_DIR_ITEM_KEY &&
235 found_type != BTRFS_DIR_INDEX_KEY) ||
236 (!btrfs_match_dir_item_name(root, path, goodnames, 2) &&
237 !btrfs_match_dir_item_name(root, path, goodnames, 1))) {
238 err = -ENOTEMPTY;
239 goto out;
240 }
241 ret = btrfs_del_item(trans, root, path);
242 BUG_ON(ret);
5f443fd2 243
5f26f772
CM
244 if (found_type == BTRFS_DIR_ITEM_KEY && found_key.offset == 1)
245 break;
246 btrfs_release_path(root, path);
5f443fd2 247 }
5f26f772 248 ret = 0;
5caf2a00 249 btrfs_release_path(root, path);
5f443fd2
CM
250
251 /* now the directory is empty */
252 err = btrfs_unlink_trans(trans, root, dir, dentry);
253 if (!err) {
254 inode->i_size = 0;
255 }
256out:
7cfcc17e
CM
257 btrfs_release_path(root, path);
258 btrfs_free_path(path);
5f443fd2
CM
259 mutex_unlock(&root->fs_info->fs_mutex);
260 ret = btrfs_end_transaction(trans, root);
261 if (ret && !err)
262 err = ret;
263 return err;
264}
265
134e9731
CM
266static int btrfs_free_inode(struct btrfs_trans_handle *trans,
267 struct btrfs_root *root,
268 struct inode *inode)
269{
5caf2a00 270 struct btrfs_path *path;
134e9731 271 int ret;
5caf2a00 272
134e9731 273 clear_inode(inode);
5caf2a00
CM
274
275 path = btrfs_alloc_path();
276 BUG_ON(!path);
277 btrfs_init_path(path);
d6e4a428
CM
278 ret = btrfs_lookup_inode(trans, root, path,
279 &BTRFS_I(inode)->location, -1);
134e9731 280 BUG_ON(ret);
5caf2a00 281 ret = btrfs_del_item(trans, root, path);
134e9731 282 BUG_ON(ret);
5caf2a00 283 btrfs_free_path(path);
134e9731
CM
284 return ret;
285}
286
f4b9aa8d
CM
287static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
288 struct btrfs_root *root,
289 struct inode *inode)
290{
291 int ret;
5caf2a00 292 struct btrfs_path *path;
f4b9aa8d
CM
293 struct btrfs_key key;
294 struct btrfs_disk_key *found_key;
295 struct btrfs_leaf *leaf;
f254e52c
CM
296 struct btrfs_file_extent_item *fi = NULL;
297 u64 extent_start = 0;
298 u64 extent_num_blocks = 0;
299 int found_extent;
f4b9aa8d 300
5caf2a00
CM
301 path = btrfs_alloc_path();
302 BUG_ON(!path);
f4b9aa8d
CM
303 /* FIXME, add redo link to tree so we don't leak on crash */
304 key.objectid = inode->i_ino;
305 key.offset = (u64)-1;
306 key.flags = 0;
d4dbff95
CM
307 /*
308 * use BTRFS_CSUM_ITEM_KEY because it is larger than inline keys
309 * or extent data
310 */
f254e52c 311 btrfs_set_key_type(&key, BTRFS_CSUM_ITEM_KEY);
f4b9aa8d 312 while(1) {
5caf2a00
CM
313 btrfs_init_path(path);
314 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
f4b9aa8d 315 if (ret < 0) {
f4b9aa8d
CM
316 goto error;
317 }
318 if (ret > 0) {
5caf2a00
CM
319 BUG_ON(path->slots[0] == 0);
320 path->slots[0]--;
f4b9aa8d 321 }
5caf2a00
CM
322 leaf = btrfs_buffer_leaf(path->nodes[0]);
323 found_key = &leaf->items[path->slots[0]].key;
f4b9aa8d
CM
324 if (btrfs_disk_key_objectid(found_key) != inode->i_ino)
325 break;
f254e52c 326 if (btrfs_disk_key_type(found_key) != BTRFS_CSUM_ITEM_KEY &&
d4dbff95 327 btrfs_disk_key_type(found_key) != BTRFS_INLINE_DATA_KEY &&
f254e52c 328 btrfs_disk_key_type(found_key) != BTRFS_EXTENT_DATA_KEY)
f4b9aa8d 329 break;
f4b9aa8d
CM
330 if (btrfs_disk_key_offset(found_key) < inode->i_size)
331 break;
236454df 332 found_extent = 0;
f254e52c 333 if (btrfs_disk_key_type(found_key) == BTRFS_EXTENT_DATA_KEY) {
5caf2a00
CM
334 fi = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
335 path->slots[0],
f254e52c 336 struct btrfs_file_extent_item);
236454df
CM
337 if (btrfs_file_extent_type(fi) !=
338 BTRFS_FILE_EXTENT_INLINE) {
339 extent_start =
340 btrfs_file_extent_disk_blocknr(fi);
341 extent_num_blocks =
342 btrfs_file_extent_disk_num_blocks(fi);
343 /* FIXME blocksize != 4096 */
344 inode->i_blocks -=
345 btrfs_file_extent_num_blocks(fi) << 3;
346 found_extent = 1;
347 }
f254e52c 348 }
5caf2a00 349 ret = btrfs_del_item(trans, root, path);
f4b9aa8d 350 BUG_ON(ret);
5caf2a00 351 btrfs_release_path(root, path);
f254e52c
CM
352 if (found_extent) {
353 ret = btrfs_free_extent(trans, root, extent_start,
354 extent_num_blocks, 0);
355 BUG_ON(ret);
356 }
f4b9aa8d 357 }
f4b9aa8d
CM
358 ret = 0;
359error:
5caf2a00
CM
360 btrfs_release_path(root, path);
361 btrfs_free_path(path);
f4b9aa8d
CM
362 return ret;
363}
364
134e9731
CM
365static void btrfs_delete_inode(struct inode *inode)
366{
367 struct btrfs_trans_handle *trans;
d6e4a428 368 struct btrfs_root *root = BTRFS_I(inode)->root;
f4b9aa8d
CM
369 int ret;
370
134e9731
CM
371 truncate_inode_pages(&inode->i_data, 0);
372 if (is_bad_inode(inode)) {
373 goto no_delete;
374 }
375 inode->i_size = 0;
134e9731
CM
376 mutex_lock(&root->fs_info->fs_mutex);
377 trans = btrfs_start_transaction(root, 1);
f4b9aa8d
CM
378 if (S_ISREG(inode->i_mode)) {
379 ret = btrfs_truncate_in_trans(trans, root, inode);
380 BUG_ON(ret);
381 }
134e9731
CM
382 btrfs_free_inode(trans, root, inode);
383 btrfs_end_transaction(trans, root);
384 mutex_unlock(&root->fs_info->fs_mutex);
385 return;
386no_delete:
387 clear_inode(inode);
388}
389
e20d96d6 390static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
d6e4a428 391 struct btrfs_key *location)
e20d96d6
CM
392{
393 const char *name = dentry->d_name.name;
394 int namelen = dentry->d_name.len;
395 struct btrfs_dir_item *di;
5caf2a00 396 struct btrfs_path *path;
d6e4a428 397 struct btrfs_root *root = BTRFS_I(dir)->root;
e20d96d6
CM
398 int ret;
399
5caf2a00
CM
400 path = btrfs_alloc_path();
401 BUG_ON(!path);
402 btrfs_init_path(path);
7e38180e 403 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
e20d96d6 404 namelen, 0);
7e38180e 405 if (!di || IS_ERR(di)) {
d6e4a428 406 location->objectid = 0;
2c90e5d6 407 ret = 0;
e20d96d6
CM
408 goto out;
409 }
d6e4a428 410 btrfs_disk_key_to_cpu(location, &di->location);
e20d96d6 411out:
5caf2a00
CM
412 btrfs_release_path(root, path);
413 btrfs_free_path(path);
e20d96d6
CM
414 return ret;
415}
416
d6e4a428
CM
417int fixup_tree_root_location(struct btrfs_root *root,
418 struct btrfs_key *location,
419 struct btrfs_root **sub_root)
420{
421 struct btrfs_path *path;
422 struct btrfs_root_item *ri;
d6e4a428
CM
423
424 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
425 return 0;
426 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
427 return 0;
428
429 path = btrfs_alloc_path();
430 BUG_ON(!path);
431 mutex_lock(&root->fs_info->fs_mutex);
432
0f7d52f4
CM
433 *sub_root = btrfs_read_fs_root(root->fs_info, location);
434 if (IS_ERR(*sub_root))
435 return PTR_ERR(*sub_root);
436
437 ri = &(*sub_root)->root_item;
d6e4a428
CM
438 location->objectid = btrfs_root_dirid(ri);
439 location->flags = 0;
440 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
441 location->offset = 0;
0f7d52f4 442
d6e4a428
CM
443 btrfs_free_path(path);
444 mutex_unlock(&root->fs_info->fs_mutex);
0f7d52f4 445 return 0;
d6e4a428
CM
446}
447
c5739bba
CM
448int btrfs_init_locked_inode(struct inode *inode, void *p)
449{
450 struct btrfs_iget_args *args = p;
451 inode->i_ino = args->ino;
452 BTRFS_I(inode)->root = args->root;
453 return 0;
454}
455
456int btrfs_find_actor(struct inode *inode, void *opaque)
457{
458 struct btrfs_iget_args *args = opaque;
459 return (args->ino == inode->i_ino &&
460 args->root == BTRFS_I(inode)->root);
461}
462
463struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
464 struct btrfs_root *root)
465{
466 struct inode *inode;
467 struct btrfs_iget_args args;
468 args.ino = objectid;
469 args.root = root;
470
471 inode = iget5_locked(s, objectid, btrfs_find_actor,
472 btrfs_init_locked_inode,
473 (void *)&args);
474 return inode;
475}
d6e4a428 476
e20d96d6
CM
477static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
478 struct nameidata *nd)
479{
480 struct inode * inode;
d6e4a428
CM
481 struct btrfs_inode *bi = BTRFS_I(dir);
482 struct btrfs_root *root = bi->root;
483 struct btrfs_root *sub_root = root;
484 struct btrfs_key location;
e20d96d6
CM
485 int ret;
486
487 if (dentry->d_name.len > BTRFS_NAME_LEN)
488 return ERR_PTR(-ENAMETOOLONG);
22b0ebda 489 mutex_lock(&root->fs_info->fs_mutex);
d6e4a428 490 ret = btrfs_inode_by_name(dir, dentry, &location);
22b0ebda 491 mutex_unlock(&root->fs_info->fs_mutex);
e20d96d6
CM
492 if (ret < 0)
493 return ERR_PTR(ret);
494 inode = NULL;
d6e4a428
CM
495 if (location.objectid) {
496 ret = fixup_tree_root_location(root, &location, &sub_root);
497 if (ret < 0)
498 return ERR_PTR(ret);
499 if (ret > 0)
500 return ERR_PTR(-ENOENT);
c5739bba
CM
501 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
502 sub_root);
e20d96d6
CM
503 if (!inode)
504 return ERR_PTR(-EACCES);
d6e4a428 505 if (inode->i_state & I_NEW) {
0f7d52f4 506 if (sub_root != root) {
c5739bba 507printk("adding new root for inode %lu root %p (found %p)\n", inode->i_ino, sub_root, BTRFS_I(inode)->root);
0f7d52f4
CM
508 igrab(inode);
509 sub_root->inode = inode;
510 }
d6e4a428
CM
511 BTRFS_I(inode)->root = sub_root;
512 memcpy(&BTRFS_I(inode)->location, &location,
513 sizeof(location));
514 btrfs_read_locked_inode(inode);
515 unlock_new_inode(inode);
516 }
e20d96d6
CM
517 }
518 return d_splice_alias(inode, dentry);
519}
520
521static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
522{
523 struct inode *inode = filp->f_path.dentry->d_inode;
d6e4a428 524 struct btrfs_root *root = BTRFS_I(inode)->root;
e20d96d6
CM
525 struct btrfs_item *item;
526 struct btrfs_dir_item *di;
527 struct btrfs_key key;
5caf2a00 528 struct btrfs_path *path;
e20d96d6
CM
529 int ret;
530 u32 nritems;
531 struct btrfs_leaf *leaf;
532 int slot;
533 int advance;
534 unsigned char d_type = DT_UNKNOWN;
7f5c1516 535 int over = 0;
7e38180e
CM
536 u32 di_cur;
537 u32 di_total;
538 u32 di_len;
539 int key_type = BTRFS_DIR_INDEX_KEY;
d6e4a428
CM
540
541 /* FIXME, use a real flag for deciding about the key type */
542 if (root->fs_info->tree_root == root)
543 key_type = BTRFS_DIR_ITEM_KEY;
22b0ebda 544 mutex_lock(&root->fs_info->fs_mutex);
e20d96d6 545 key.objectid = inode->i_ino;
e20d96d6 546 key.flags = 0;
d6e4a428 547 btrfs_set_key_type(&key, key_type);
e20d96d6 548 key.offset = filp->f_pos;
5caf2a00
CM
549 path = btrfs_alloc_path();
550 btrfs_init_path(path);
551 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1b05da2e 552 if (ret < 0)
e20d96d6 553 goto err;
7f5c1516 554 advance = 0;
e20d96d6 555 while(1) {
5caf2a00 556 leaf = btrfs_buffer_leaf(path->nodes[0]);
e20d96d6 557 nritems = btrfs_header_nritems(&leaf->header);
5caf2a00 558 slot = path->slots[0];
dee26a9f
CM
559 if (advance || slot >= nritems) {
560 if (slot >= nritems -1) {
5caf2a00 561 ret = btrfs_next_leaf(root, path);
e20d96d6
CM
562 if (ret)
563 break;
5caf2a00 564 leaf = btrfs_buffer_leaf(path->nodes[0]);
e20d96d6 565 nritems = btrfs_header_nritems(&leaf->header);
5caf2a00 566 slot = path->slots[0];
e20d96d6
CM
567 } else {
568 slot++;
5caf2a00 569 path->slots[0]++;
e20d96d6
CM
570 }
571 }
572 advance = 1;
573 item = leaf->items + slot;
e20d96d6
CM
574 if (btrfs_disk_key_objectid(&item->key) != key.objectid)
575 break;
d6e4a428 576 if (btrfs_disk_key_type(&item->key) != key_type)
a429e513 577 break;
7f5c1516
CM
578 if (btrfs_disk_key_offset(&item->key) < filp->f_pos)
579 continue;
7fcde0e3 580 filp->f_pos = btrfs_disk_key_offset(&item->key);
dee26a9f 581 advance = 1;
e20d96d6 582 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
7e38180e
CM
583 di_cur = 0;
584 di_total = btrfs_item_size(leaf->items + slot);
585 while(di_cur < di_total) {
586 over = filldir(dirent, (const char *)(di + 1),
587 btrfs_dir_name_len(di),
588 btrfs_disk_key_offset(&item->key),
589 btrfs_disk_key_objectid(&di->location),
590 d_type);
591 if (over)
592 goto nopos;
593 di_len = btrfs_dir_name_len(di) + sizeof(*di);
594 di_cur += di_len;
595 di = (struct btrfs_dir_item *)((char *)di + di_len);
596 }
e20d96d6 597 }
7fcde0e3
CM
598 filp->f_pos++;
599nopos:
e20d96d6
CM
600 ret = 0;
601err:
5caf2a00
CM
602 btrfs_release_path(root, path);
603 btrfs_free_path(path);
22b0ebda 604 mutex_unlock(&root->fs_info->fs_mutex);
e20d96d6
CM
605 return ret;
606}
607
608static void btrfs_put_super (struct super_block * sb)
609{
610 struct btrfs_root *root = btrfs_sb(sb);
611 int ret;
612
613 ret = close_ctree(root);
614 if (ret) {
615 printk("close ctree returns %d\n", ret);
616 }
617 sb->s_fs_info = NULL;
618}
2e635a27
CM
619
620static int btrfs_fill_super(struct super_block * sb, void * data, int silent)
621{
622 struct inode * inode;
e20d96d6
CM
623 struct dentry * root_dentry;
624 struct btrfs_super_block *disk_super;
0f7d52f4 625 struct btrfs_root *tree_root;
d6e4a428 626 struct btrfs_inode *bi;
2e635a27
CM
627
628 sb->s_maxbytes = MAX_LFS_FILESIZE;
2e635a27 629 sb->s_magic = BTRFS_SUPER_MAGIC;
e20d96d6 630 sb->s_op = &btrfs_super_ops;
2e635a27 631 sb->s_time_gran = 1;
e20d96d6 632
0f7d52f4 633 tree_root = open_ctree(sb);
d98237b3 634
0f7d52f4 635 if (!tree_root) {
e20d96d6
CM
636 printk("btrfs: open_ctree failed\n");
637 return -EIO;
638 }
0f7d52f4
CM
639 sb->s_fs_info = tree_root;
640 disk_super = tree_root->fs_info->disk_super;
e20d96d6
CM
641 printk("read in super total blocks %Lu root %Lu\n",
642 btrfs_super_total_blocks(disk_super),
643 btrfs_super_root_dir(disk_super));
644
c5739bba
CM
645 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
646 tree_root);
d6e4a428
CM
647 bi = BTRFS_I(inode);
648 bi->location.objectid = inode->i_ino;
649 bi->location.offset = 0;
650 bi->location.flags = 0;
0f7d52f4 651 bi->root = tree_root;
d6e4a428
CM
652 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
653
2e635a27
CM
654 if (!inode)
655 return -ENOMEM;
e20d96d6
CM
656 if (inode->i_state & I_NEW) {
657 btrfs_read_locked_inode(inode);
658 unlock_new_inode(inode);
659 }
2e635a27 660
e20d96d6
CM
661 root_dentry = d_alloc_root(inode);
662 if (!root_dentry) {
2e635a27
CM
663 iput(inode);
664 return -ENOMEM;
665 }
e20d96d6
CM
666 sb->s_root = root_dentry;
667
2e635a27
CM
668 return 0;
669}
670
d5719762
CM
671static void fill_inode_item(struct btrfs_inode_item *item,
672 struct inode *inode)
673{
674 btrfs_set_inode_uid(item, inode->i_uid);
675 btrfs_set_inode_gid(item, inode->i_gid);
676 btrfs_set_inode_size(item, inode->i_size);
677 btrfs_set_inode_mode(item, inode->i_mode);
678 btrfs_set_inode_nlink(item, inode->i_nlink);
679 btrfs_set_timespec_sec(&item->atime, inode->i_atime.tv_sec);
680 btrfs_set_timespec_nsec(&item->atime, inode->i_atime.tv_nsec);
681 btrfs_set_timespec_sec(&item->mtime, inode->i_mtime.tv_sec);
682 btrfs_set_timespec_nsec(&item->mtime, inode->i_mtime.tv_nsec);
683 btrfs_set_timespec_sec(&item->ctime, inode->i_ctime.tv_sec);
684 btrfs_set_timespec_nsec(&item->ctime, inode->i_ctime.tv_nsec);
685 btrfs_set_inode_nblocks(item, inode->i_blocks);
686 btrfs_set_inode_generation(item, inode->i_generation);
687}
688
4730a4bc
CM
689static int btrfs_update_inode(struct btrfs_trans_handle *trans,
690 struct btrfs_root *root,
691 struct inode *inode)
692{
693 struct btrfs_inode_item *inode_item;
5caf2a00 694 struct btrfs_path *path;
4730a4bc
CM
695 int ret;
696
5caf2a00
CM
697 path = btrfs_alloc_path();
698 BUG_ON(!path);
699 btrfs_init_path(path);
d6e4a428
CM
700 ret = btrfs_lookup_inode(trans, root, path,
701 &BTRFS_I(inode)->location, 1);
4730a4bc
CM
702 if (ret) {
703 if (ret > 0)
704 ret = -ENOENT;
705 goto failed;
706 }
707
5caf2a00
CM
708 inode_item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
709 path->slots[0],
4730a4bc
CM
710 struct btrfs_inode_item);
711
712 fill_inode_item(inode_item, inode);
5caf2a00 713 btrfs_mark_buffer_dirty(path->nodes[0]);
1b05da2e 714 ret = 0;
4730a4bc 715failed:
5caf2a00
CM
716 btrfs_release_path(root, path);
717 btrfs_free_path(path);
1b05da2e 718 return ret;
4730a4bc
CM
719}
720
721static int btrfs_write_inode(struct inode *inode, int wait)
722{
d6e4a428 723 struct btrfs_root *root = BTRFS_I(inode)->root;
4730a4bc 724 struct btrfs_trans_handle *trans;
b5133862
CM
725 int ret = 0;
726
727 if (wait) {
728 mutex_lock(&root->fs_info->fs_mutex);
729 trans = btrfs_start_transaction(root, 1);
730 ret = btrfs_commit_transaction(trans, root);
731 mutex_unlock(&root->fs_info->fs_mutex);
732 }
733 return ret;
734}
735
736static void btrfs_dirty_inode(struct inode *inode)
737{
738 struct btrfs_root *root = BTRFS_I(inode)->root;
739 struct btrfs_trans_handle *trans;
4730a4bc
CM
740
741 mutex_lock(&root->fs_info->fs_mutex);
742 trans = btrfs_start_transaction(root, 1);
b5133862
CM
743 btrfs_update_inode(trans, root, inode);
744 btrfs_end_transaction(trans, root);
4730a4bc 745 mutex_unlock(&root->fs_info->fs_mutex);
4730a4bc
CM
746}
747
d5719762 748static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
2619ba1f
CM
749 struct btrfs_root *root,
750 u64 objectid, int mode)
d5719762
CM
751{
752 struct inode *inode;
753 struct btrfs_inode_item inode_item;
1b05da2e 754 struct btrfs_key *location;
d5719762 755 int ret;
d5719762 756
2619ba1f 757 inode = new_inode(root->fs_info->sb);
d5719762
CM
758 if (!inode)
759 return ERR_PTR(-ENOMEM);
760
2619ba1f 761 BTRFS_I(inode)->root = root;
d5719762
CM
762
763 inode->i_uid = current->fsuid;
764 inode->i_gid = current->fsgid;
765 inode->i_mode = mode;
766 inode->i_ino = objectid;
767 inode->i_blocks = 0;
c5739bba 768 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
d5719762 769 fill_inode_item(&inode_item, inode);
1b05da2e
CM
770 location = &BTRFS_I(inode)->location;
771 location->objectid = objectid;
772 location->flags = 0;
773 location->offset = 0;
774 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
d5719762
CM
775
776 ret = btrfs_insert_inode(trans, root, objectid, &inode_item);
777 BUG_ON(ret);
778
779 insert_inode_hash(inode);
d5719762
CM
780 return inode;
781}
782
783static int btrfs_add_link(struct btrfs_trans_handle *trans,
784 struct dentry *dentry, struct inode *inode)
785{
786 int ret;
d6e4a428
CM
787 struct btrfs_key key;
788 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
789 key.objectid = inode->i_ino;
790 key.flags = 0;
791 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
792 key.offset = 0;
793
794 ret = btrfs_insert_dir_item(trans, root,
d5719762
CM
795 dentry->d_name.name, dentry->d_name.len,
796 dentry->d_parent->d_inode->i_ino,
d6e4a428 797 &key, 0);
4730a4bc 798 if (ret == 0) {
5f26f772 799 dentry->d_parent->d_inode->i_size += dentry->d_name.len * 2;
d6e4a428 800 ret = btrfs_update_inode(trans, root,
4730a4bc
CM
801 dentry->d_parent->d_inode);
802 }
d5719762
CM
803 return ret;
804}
805
806static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
807 struct dentry *dentry, struct inode *inode)
808{
809 int err = btrfs_add_link(trans, dentry, inode);
810 if (!err) {
811 d_instantiate(dentry, inode);
812 return 0;
813 }
2c90e5d6
CM
814 if (err > 0)
815 err = -EEXIST;
d5719762
CM
816 return err;
817}
818
819static int btrfs_create(struct inode *dir, struct dentry *dentry,
820 int mode, struct nameidata *nd)
821{
822 struct btrfs_trans_handle *trans;
d6e4a428 823 struct btrfs_root *root = BTRFS_I(dir)->root;
d5719762
CM
824 struct inode *inode;
825 int err;
134e9731 826 int drop_inode = 0;
2619ba1f 827 u64 objectid;
d5719762 828
d561c025 829 mutex_lock(&root->fs_info->fs_mutex);
d5719762 830 trans = btrfs_start_transaction(root, 1);
2619ba1f
CM
831
832 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
833 if (err) {
834 err = -ENOSPC;
835 goto out_unlock;
836 }
837
838 inode = btrfs_new_inode(trans, root, objectid, mode);
d5719762
CM
839 err = PTR_ERR(inode);
840 if (IS_ERR(inode))
d561c025 841 goto out_unlock;
d5719762
CM
842 // FIXME mark the inode dirty
843 err = btrfs_add_nondir(trans, dentry, inode);
134e9731
CM
844 if (err)
845 drop_inode = 1;
dee26a9f
CM
846 else {
847 inode->i_mapping->a_ops = &btrfs_aops;
848 inode->i_fop = &btrfs_file_operations;
849 inode->i_op = &btrfs_file_inode_operations;
850 }
d5719762 851 dir->i_sb->s_dirt = 1;
d561c025 852out_unlock:
22b0ebda 853 btrfs_end_transaction(trans, root);
d561c025 854 mutex_unlock(&root->fs_info->fs_mutex);
2c90e5d6 855
134e9731
CM
856 if (drop_inode) {
857 inode_dec_link_count(inode);
858 iput(inode);
859 }
d5719762
CM
860 return err;
861}
862
f7922033 863static int btrfs_make_empty_dir(struct btrfs_trans_handle *trans,
2619ba1f
CM
864 struct btrfs_root *root,
865 u64 objectid, u64 dirid)
f7922033 866{
f7922033
CM
867 int ret;
868 char buf[2];
d6e4a428
CM
869 struct btrfs_key key;
870
f7922033
CM
871 buf[0] = '.';
872 buf[1] = '.';
873
2619ba1f 874 key.objectid = objectid;
d6e4a428
CM
875 key.offset = 0;
876 key.flags = 0;
877 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
878
2619ba1f 879 ret = btrfs_insert_dir_item(trans, root, buf, 1, objectid,
d6e4a428 880 &key, 1);
f7922033
CM
881 if (ret)
882 goto error;
2619ba1f
CM
883 key.objectid = dirid;
884 ret = btrfs_insert_dir_item(trans, root, buf, 2, objectid,
d6e4a428 885 &key, 1);
4730a4bc
CM
886 if (ret)
887 goto error;
f7922033
CM
888error:
889 return ret;
890}
891
892static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
893{
894 struct inode *inode;
895 struct btrfs_trans_handle *trans;
d6e4a428 896 struct btrfs_root *root = BTRFS_I(dir)->root;
f7922033
CM
897 int err = 0;
898 int drop_on_err = 0;
2619ba1f 899 u64 objectid;
f7922033
CM
900
901 mutex_lock(&root->fs_info->fs_mutex);
902 trans = btrfs_start_transaction(root, 1);
903 if (IS_ERR(trans)) {
904 err = PTR_ERR(trans);
905 goto out_unlock;
906 }
2619ba1f
CM
907
908 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
909 if (err) {
910 err = -ENOSPC;
911 goto out_unlock;
912 }
913
914 inode = btrfs_new_inode(trans, root, objectid, S_IFDIR | mode);
f7922033
CM
915 if (IS_ERR(inode)) {
916 err = PTR_ERR(inode);
917 goto out_fail;
918 }
919 drop_on_err = 1;
920 inode->i_op = &btrfs_dir_inode_operations;
921 inode->i_fop = &btrfs_dir_file_operations;
922
2619ba1f
CM
923 err = btrfs_make_empty_dir(trans, root, inode->i_ino, dir->i_ino);
924 if (err)
925 goto out_fail;
926
927 inode->i_size = 6;
928 err = btrfs_update_inode(trans, root, inode);
f7922033
CM
929 if (err)
930 goto out_fail;
931 err = btrfs_add_link(trans, dentry, inode);
932 if (err)
933 goto out_fail;
934 d_instantiate(dentry, inode);
f7922033
CM
935 drop_on_err = 0;
936
937out_fail:
938 btrfs_end_transaction(trans, root);
939out_unlock:
940 mutex_unlock(&root->fs_info->fs_mutex);
941 if (drop_on_err)
942 iput(inode);
943 return err;
944}
945
8fd17795
CM
946static int btrfs_sync_file(struct file *file,
947 struct dentry *dentry, int datasync)
948{
949 struct inode *inode = dentry->d_inode;
950 struct btrfs_root *root = BTRFS_I(inode)->root;
951 int ret;
952 struct btrfs_trans_handle *trans;
953
954 mutex_lock(&root->fs_info->fs_mutex);
955 trans = btrfs_start_transaction(root, 1);
956 if (!trans) {
957 ret = -ENOMEM;
958 goto out;
959 }
960 ret = btrfs_commit_transaction(trans, root);
961 mutex_unlock(&root->fs_info->fs_mutex);
962out:
963 return ret > 0 ? EIO : ret;
964}
965
d5719762
CM
966static int btrfs_sync_fs(struct super_block *sb, int wait)
967{
968 struct btrfs_trans_handle *trans;
969 struct btrfs_root *root;
970 int ret;
d98237b3 971 root = btrfs_sb(sb);
df2ce34c 972
d5719762 973 sb->s_dirt = 0;
d561c025 974 if (!wait) {
7cfcc17e 975 filemap_flush(root->fs_info->btree_inode->i_mapping);
d561c025
CM
976 return 0;
977 }
7cfcc17e 978 filemap_write_and_wait(root->fs_info->btree_inode->i_mapping);
d561c025 979 mutex_lock(&root->fs_info->fs_mutex);
d5719762
CM
980 trans = btrfs_start_transaction(root, 1);
981 ret = btrfs_commit_transaction(trans, root);
982 sb->s_dirt = 0;
983 BUG_ON(ret);
984printk("btrfs sync_fs\n");
d561c025 985 mutex_unlock(&root->fs_info->fs_mutex);
d5719762
CM
986 return 0;
987}
988
75dfe396 989static int btrfs_get_block_lock(struct inode *inode, sector_t iblock,
dee26a9f
CM
990 struct buffer_head *result, int create)
991{
992 int ret;
993 int err = 0;
994 u64 blocknr;
995 u64 extent_start = 0;
996 u64 extent_end = 0;
997 u64 objectid = inode->i_ino;
236454df 998 u32 found_type;
5caf2a00 999 struct btrfs_path *path;
d6e4a428 1000 struct btrfs_root *root = BTRFS_I(inode)->root;
dee26a9f
CM
1001 struct btrfs_file_extent_item *item;
1002 struct btrfs_leaf *leaf;
1003 struct btrfs_disk_key *found_key;
1004
5caf2a00
CM
1005 path = btrfs_alloc_path();
1006 BUG_ON(!path);
1007 btrfs_init_path(path);
6567e837 1008 if (create) {
6567e837
CM
1009 WARN_ON(1);
1010 }
dee26a9f 1011
236454df 1012 ret = btrfs_lookup_file_extent(NULL, root, path,
9773a788 1013 inode->i_ino,
236454df 1014 iblock << inode->i_blkbits, 0);
dee26a9f 1015 if (ret < 0) {
dee26a9f
CM
1016 err = ret;
1017 goto out;
1018 }
1019
1020 if (ret != 0) {
5caf2a00
CM
1021 if (path->slots[0] == 0) {
1022 btrfs_release_path(root, path);
236454df 1023 goto out;
dee26a9f 1024 }
5caf2a00 1025 path->slots[0]--;
dee26a9f
CM
1026 }
1027
5caf2a00 1028 item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
dee26a9f 1029 struct btrfs_file_extent_item);
5caf2a00 1030 leaf = btrfs_buffer_leaf(path->nodes[0]);
dee26a9f
CM
1031 blocknr = btrfs_file_extent_disk_blocknr(item);
1032 blocknr += btrfs_file_extent_offset(item);
1033
dee26a9f 1034 /* are we inside the extent that was found? */
5caf2a00 1035 found_key = &leaf->items[path->slots[0]].key;
236454df 1036 found_type = btrfs_disk_key_type(found_key);
dee26a9f 1037 if (btrfs_disk_key_objectid(found_key) != objectid ||
236454df 1038 found_type != BTRFS_EXTENT_DATA_KEY) {
dee26a9f
CM
1039 extent_end = 0;
1040 extent_start = 0;
5caf2a00 1041 btrfs_release_path(root, path);
dee26a9f
CM
1042 goto out;
1043 }
236454df
CM
1044 found_type = btrfs_file_extent_type(item);
1045 extent_start = btrfs_disk_key_offset(&leaf->items[path->slots[0]].key);
1046 if (found_type == BTRFS_FILE_EXTENT_REG) {
1047 extent_start = extent_start >> inode->i_blkbits;
1048 extent_end = extent_start + btrfs_file_extent_num_blocks(item);
1049 if (iblock >= extent_start && iblock < extent_end) {
1050 err = 0;
1051 btrfs_map_bh_to_logical(root, result, blocknr +
1052 iblock - extent_start);
1053 goto out;
1054 }
1055 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
1056 char *ptr;
1057 char *map;
1058 u32 size;
1059 size = btrfs_file_extent_inline_len(leaf->items +
1060 path->slots[0]);
1061 extent_end = (extent_start + size) >> inode->i_blkbits;
1062 extent_start >>= inode->i_blkbits;
1063 if (iblock < extent_start || iblock > extent_end) {
1064 goto out;
1065 }
1066 ptr = btrfs_file_extent_inline_start(item);
1067 map = kmap(result->b_page);
1068 memcpy(map, ptr, size);
1069 memset(map + size, 0, PAGE_CACHE_SIZE - size);
1070 flush_dcache_page(result->b_page);
1071 kunmap(result->b_page);
1072 set_buffer_uptodate(result);
1073 SetPageChecked(result->b_page);
1074 btrfs_map_bh_to_logical(root, result, 0);
dee26a9f 1075 }
dee26a9f 1076out:
5caf2a00
CM
1077 btrfs_release_path(root, path);
1078 btrfs_free_path(path);
75dfe396
CM
1079 return err;
1080}
1081
1082static int btrfs_get_block(struct inode *inode, sector_t iblock,
1083 struct buffer_head *result, int create)
1084{
1085 int err;
d6e4a428 1086 struct btrfs_root *root = BTRFS_I(inode)->root;
75dfe396 1087 mutex_lock(&root->fs_info->fs_mutex);
e8f05c45 1088 err = btrfs_get_block_lock(inode, iblock, result, create);
dee26a9f
CM
1089 mutex_unlock(&root->fs_info->fs_mutex);
1090 return err;
1091}
1092
1093static int btrfs_prepare_write(struct file *file, struct page *page,
1094 unsigned from, unsigned to)
1095{
6407bf6d 1096 return nobh_prepare_write(page, from, to, btrfs_get_block);
dee26a9f
CM
1097}
1098
d561c025
CM
1099static void btrfs_write_super(struct super_block *sb)
1100{
1101 btrfs_sync_fs(sb, 1);
1102}
1103
dee26a9f
CM
1104static int btrfs_readpage(struct file *file, struct page *page)
1105{
1106 return mpage_readpage(page, btrfs_get_block);
1107}
1108
236454df
CM
1109/*
1110 * While block_write_full_page is writing back the dirty buffers under
1111 * the page lock, whoever dirtied the buffers may decide to clean them
1112 * again at any time. We handle that by only looking at the buffer
1113 * state inside lock_buffer().
1114 *
1115 * If block_write_full_page() is called for regular writeback
1116 * (wbc->sync_mode == WB_SYNC_NONE) then it will redirty a page which has a
1117 * locked buffer. This only can happen if someone has written the buffer
1118 * directly, with submit_bh(). At the address_space level PageWriteback
1119 * prevents this contention from occurring.
1120 */
1121static int __btrfs_write_full_page(struct inode *inode, struct page *page,
1122 struct writeback_control *wbc)
1123{
1124 int err;
1125 sector_t block;
1126 sector_t last_block;
1127 struct buffer_head *bh, *head;
1128 const unsigned blocksize = 1 << inode->i_blkbits;
1129 int nr_underway = 0;
1130
1131 BUG_ON(!PageLocked(page));
1132
1133 last_block = (i_size_read(inode) - 1) >> inode->i_blkbits;
1134
1135 if (!page_has_buffers(page)) {
1136 create_empty_buffers(page, blocksize,
1137 (1 << BH_Dirty)|(1 << BH_Uptodate));
1138 }
1139
1140 /*
1141 * Be very careful. We have no exclusion from __set_page_dirty_buffers
1142 * here, and the (potentially unmapped) buffers may become dirty at
1143 * any time. If a buffer becomes dirty here after we've inspected it
1144 * then we just miss that fact, and the page stays dirty.
1145 *
1146 * Buffers outside i_size may be dirtied by __set_page_dirty_buffers;
1147 * handle that here by just cleaning them.
1148 */
1149
1150 block = (sector_t)page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1151 head = page_buffers(page);
1152 bh = head;
1153
1154 /*
1155 * Get all the dirty buffers mapped to disk addresses and
1156 * handle any aliases from the underlying blockdev's mapping.
1157 */
1158 do {
1159 if (block > last_block) {
1160 /*
1161 * mapped buffers outside i_size will occur, because
1162 * this page can be outside i_size when there is a
1163 * truncate in progress.
1164 */
1165 /*
1166 * The buffer was zeroed by block_write_full_page()
1167 */
1168 clear_buffer_dirty(bh);
1169 set_buffer_uptodate(bh);
1170 } else if (!buffer_mapped(bh) && buffer_dirty(bh)) {
1171 WARN_ON(bh->b_size != blocksize);
1172 err = btrfs_get_block(inode, block, bh, 0);
1173 if (err)
1174 goto recover;
1175 if (buffer_new(bh)) {
1176 /* blockdev mappings never come here */
1177 clear_buffer_new(bh);
1178 unmap_underlying_metadata(bh->b_bdev,
1179 bh->b_blocknr);
1180 }
1181 }
1182 bh = bh->b_this_page;
1183 block++;
1184 } while (bh != head);
1185
1186 do {
1187 if (!buffer_mapped(bh))
1188 continue;
1189 /*
1190 * If it's a fully non-blocking write attempt and we cannot
1191 * lock the buffer then redirty the page. Note that this can
1192 * potentially cause a busy-wait loop from pdflush and kswapd
1193 * activity, but those code paths have their own higher-level
1194 * throttling.
1195 */
1196 if (wbc->sync_mode != WB_SYNC_NONE || !wbc->nonblocking) {
1197 lock_buffer(bh);
1198 } else if (test_set_buffer_locked(bh)) {
1199 redirty_page_for_writepage(wbc, page);
1200 continue;
1201 }
1202 if (test_clear_buffer_dirty(bh) && bh->b_blocknr != 0) {
1203 mark_buffer_async_write(bh);
1204 } else {
1205 unlock_buffer(bh);
1206 }
1207 } while ((bh = bh->b_this_page) != head);
1208
1209 /*
1210 * The page and its buffers are protected by PageWriteback(), so we can
1211 * drop the bh refcounts early.
1212 */
1213 BUG_ON(PageWriteback(page));
1214 set_page_writeback(page);
1215
1216 do {
1217 struct buffer_head *next = bh->b_this_page;
1218 if (buffer_async_write(bh)) {
1219 submit_bh(WRITE, bh);
1220 nr_underway++;
1221 }
1222 bh = next;
1223 } while (bh != head);
1224 unlock_page(page);
1225
1226 err = 0;
1227done:
1228 if (nr_underway == 0) {
1229 /*
1230 * The page was marked dirty, but the buffers were
1231 * clean. Someone wrote them back by hand with
1232 * ll_rw_block/submit_bh. A rare case.
1233 */
1234 int uptodate = 1;
1235 do {
1236 if (!buffer_uptodate(bh)) {
1237 uptodate = 0;
1238 break;
1239 }
1240 bh = bh->b_this_page;
1241 } while (bh != head);
1242 if (uptodate)
1243 SetPageUptodate(page);
1244 end_page_writeback(page);
1245 /*
1246 * The page and buffer_heads can be released at any time from
1247 * here on.
1248 */
1249 wbc->pages_skipped++; /* We didn't write this page */
1250 }
1251 return err;
1252
1253recover:
1254 /*
1255 * ENOSPC, or some other error. We may already have added some
1256 * blocks to the file, so we need to write these out to avoid
1257 * exposing stale data.
1258 * The page is currently locked and not marked for writeback
1259 */
1260 bh = head;
1261 /* Recovery: lock and submit the mapped buffers */
1262 do {
1263 if (buffer_mapped(bh) && buffer_dirty(bh)) {
1264 lock_buffer(bh);
1265 mark_buffer_async_write(bh);
1266 } else {
1267 /*
1268 * The buffer may have been set dirty during
1269 * attachment to a dirty page.
1270 */
1271 clear_buffer_dirty(bh);
1272 }
1273 } while ((bh = bh->b_this_page) != head);
1274 SetPageError(page);
1275 BUG_ON(PageWriteback(page));
1276 set_page_writeback(page);
1277 do {
1278 struct buffer_head *next = bh->b_this_page;
1279 if (buffer_async_write(bh)) {
1280 clear_buffer_dirty(bh);
1281 submit_bh(WRITE, bh);
1282 nr_underway++;
1283 }
1284 bh = next;
1285 } while (bh != head);
1286 unlock_page(page);
1287 goto done;
1288}
1289
1290/*
1291 * The generic ->writepage function for buffer-backed address_spaces
1292 */
dee26a9f
CM
1293static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
1294{
236454df
CM
1295 struct inode * const inode = page->mapping->host;
1296 loff_t i_size = i_size_read(inode);
1297 const pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
1298 unsigned offset;
1299 void *kaddr;
1300
1301 /* Is the page fully inside i_size? */
1302 if (page->index < end_index)
1303 return __btrfs_write_full_page(inode, page, wbc);
1304
1305 /* Is the page fully outside i_size? (truncate in progress) */
1306 offset = i_size & (PAGE_CACHE_SIZE-1);
1307 if (page->index >= end_index+1 || !offset) {
1308 /*
1309 * The page may have dirty, unmapped buffers. For example,
1310 * they may have been added in ext3_writepage(). Make them
1311 * freeable here, so the page does not leak.
1312 */
1313 block_invalidatepage(page, 0);
1314 unlock_page(page);
1315 return 0; /* don't care */
1316 }
1317
1318 /*
1319 * The page straddles i_size. It must be zeroed out on each and every
1320 * writepage invokation because it may be mmapped. "A file is mapped
1321 * in multiples of the page size. For a file that is not a multiple of
1322 * the page size, the remaining memory is zeroed when mapped, and
1323 * writes to that region are not written out to the file."
1324 */
1325 kaddr = kmap_atomic(page, KM_USER0);
1326 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1327 flush_dcache_page(page);
1328 kunmap_atomic(kaddr, KM_USER0);
1329 return __btrfs_write_full_page(inode, page, wbc);
dee26a9f 1330}
d561c025 1331
f4b9aa8d
CM
1332static void btrfs_truncate(struct inode *inode)
1333{
d6e4a428 1334 struct btrfs_root *root = BTRFS_I(inode)->root;
f4b9aa8d
CM
1335 int ret;
1336 struct btrfs_trans_handle *trans;
1337
1338 if (!S_ISREG(inode->i_mode))
1339 return;
1340 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1341 return;
1342
e8f05c45 1343 nobh_truncate_page(inode->i_mapping, inode->i_size);
f4b9aa8d
CM
1344
1345 /* FIXME, add redo link to tree so we don't leak on crash */
1346 mutex_lock(&root->fs_info->fs_mutex);
1347 trans = btrfs_start_transaction(root, 1);
1348 ret = btrfs_truncate_in_trans(trans, root, inode);
1349 BUG_ON(ret);
1350 ret = btrfs_end_transaction(trans, root);
1351 BUG_ON(ret);
1352 mutex_unlock(&root->fs_info->fs_mutex);
1353 mark_inode_dirty(inode);
1354}
1355
236454df
CM
1356/*
1357 * Make sure any changes to nobh_commit_write() are reflected in
1358 * nobh_truncate_page(), since it doesn't call commit_write().
1359 */
1360static int btrfs_commit_write(struct file *file, struct page *page,
1361 unsigned from, unsigned to)
1362{
1363 struct inode *inode = page->mapping->host;
1364 struct buffer_head *bh;
1365 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
1366
1367 SetPageUptodate(page);
1368 bh = page_buffers(page);
1369 if (buffer_mapped(bh) && bh->b_blocknr != 0) {
1370 set_page_dirty(page);
1371 }
1372 if (pos > inode->i_size) {
1373 i_size_write(inode, pos);
1374 mark_inode_dirty(inode);
1375 }
1376 return 0;
1377}
1378
75dfe396
CM
1379static int btrfs_copy_from_user(loff_t pos, int num_pages, int write_bytes,
1380 struct page **prepared_pages,
1381 const char __user * buf)
1382{
1383 long page_fault = 0;
1384 int i;
1385 int offset = pos & (PAGE_CACHE_SIZE - 1);
1386
1387 for (i = 0; i < num_pages && write_bytes > 0; i++, offset = 0) {
1388 size_t count = min_t(size_t,
1389 PAGE_CACHE_SIZE - offset, write_bytes);
1390 struct page *page = prepared_pages[i];
1391 fault_in_pages_readable(buf, count);
1392
1393 /* Copy data from userspace to the current page */
1394 kmap(page);
1395 page_fault = __copy_from_user(page_address(page) + offset,
1396 buf, count);
1397 /* Flush processor's dcache for this page */
1398 flush_dcache_page(page);
1399 kunmap(page);
1400 buf += count;
1401 write_bytes -= count;
1402
1403 if (page_fault)
1404 break;
1405 }
1406 return page_fault ? -EFAULT : 0;
1407}
1408
1409static void btrfs_drop_pages(struct page **pages, size_t num_pages)
1410{
1411 size_t i;
1412 for (i = 0; i < num_pages; i++) {
1413 if (!pages[i])
1414 break;
1415 unlock_page(pages[i]);
1416 mark_page_accessed(pages[i]);
1417 page_cache_release(pages[i]);
1418 }
1419}
1420static int dirty_and_release_pages(struct btrfs_trans_handle *trans,
1421 struct btrfs_root *root,
1422 struct file *file,
1423 struct page **pages,
1424 size_t num_pages,
1425 loff_t pos,
1426 size_t write_bytes)
1427{
1428 int i;
1429 int offset;
1430 int err = 0;
1431 int ret;
1432 int this_write;
f254e52c 1433 struct inode *inode = file->f_path.dentry->d_inode;
236454df
CM
1434 struct buffer_head *bh;
1435 struct btrfs_file_extent_item *ei;
75dfe396
CM
1436
1437 for (i = 0; i < num_pages; i++) {
1438 offset = pos & (PAGE_CACHE_SIZE -1);
1439 this_write = min(PAGE_CACHE_SIZE - offset, write_bytes);
f254e52c
CM
1440 /* FIXME, one block at a time */
1441
1442 mutex_lock(&root->fs_info->fs_mutex);
1443 trans = btrfs_start_transaction(root, 1);
236454df
CM
1444
1445 bh = page_buffers(pages[i]);
1446 if (buffer_mapped(bh) && bh->b_blocknr == 0) {
1447 struct btrfs_key key;
1448 struct btrfs_path *path;
1449 char *ptr;
1450 u32 datasize;
1451
1452 path = btrfs_alloc_path();
1453 BUG_ON(!path);
1454 key.objectid = inode->i_ino;
1455 key.offset = pages[i]->index << PAGE_CACHE_SHIFT;
1456 key.flags = 0;
1457 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
1458 BUG_ON(write_bytes >= PAGE_CACHE_SIZE);
1459 datasize = offset +
1460 btrfs_file_extent_calc_inline_size(write_bytes);
1461 ret = btrfs_insert_empty_item(trans, root, path, &key,
1462 datasize);
1463 BUG_ON(ret);
1464 ei = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
1465 path->slots[0], struct btrfs_file_extent_item);
1466 btrfs_set_file_extent_generation(ei, trans->transid);
1467 btrfs_set_file_extent_type(ei,
1468 BTRFS_FILE_EXTENT_INLINE);
1469 ptr = btrfs_file_extent_inline_start(ei);
1470 memcpy(ptr, bh->b_data, offset + write_bytes);
1471 mark_buffer_dirty(path->nodes[0]);
1472 btrfs_free_path(path);
1473 } else {
1474 btrfs_csum_file_block(trans, root, inode->i_ino,
f254e52c
CM
1475 pages[i]->index << PAGE_CACHE_SHIFT,
1476 kmap(pages[i]), PAGE_CACHE_SIZE);
236454df
CM
1477 kunmap(pages[i]);
1478 }
f254e52c
CM
1479 SetPageChecked(pages[i]);
1480 ret = btrfs_end_transaction(trans, root);
1481 BUG_ON(ret);
1482 mutex_unlock(&root->fs_info->fs_mutex);
1483
236454df 1484 ret = btrfs_commit_write(file, pages[i], offset,
75dfe396
CM
1485 offset + this_write);
1486 pos += this_write;
1487 if (ret) {
1488 err = ret;
1489 goto failed;
1490 }
1491 WARN_ON(this_write > write_bytes);
1492 write_bytes -= this_write;
1493 }
1494failed:
1495 return err;
1496}
1497
b18c6685
CM
1498static int drop_extents(struct btrfs_trans_handle *trans,
1499 struct btrfs_root *root,
1500 struct inode *inode,
1501 u64 start, u64 end)
1502{
1503 int ret;
1504 struct btrfs_key key;
1505 struct btrfs_leaf *leaf;
1506 int slot;
1507 struct btrfs_file_extent_item *extent;
236454df 1508 u64 extent_end = 0;
b18c6685
CM
1509 int keep;
1510 struct btrfs_file_extent_item old;
1511 struct btrfs_path *path;
1512 u64 search_start = start;
1513 int bookend;
236454df
CM
1514 int found_type;
1515 int found_extent;
1516 int found_inline;
1517
b18c6685
CM
1518 path = btrfs_alloc_path();
1519 if (!path)
1520 return -ENOMEM;
a429e513
CM
1521 while(1) {
1522 btrfs_release_path(root, path);
1523 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1524 search_start, -1);
1525 if (ret < 0)
70b2befd 1526 goto out;
a429e513
CM
1527 if (ret > 0) {
1528 if (path->slots[0] == 0) {
236454df 1529 ret = 0;
a429e513
CM
1530 goto out;
1531 }
1532 path->slots[0]--;
70b2befd 1533 }
b18c6685
CM
1534 keep = 0;
1535 bookend = 0;
236454df
CM
1536 found_extent = 0;
1537 found_inline = 0;
1538 extent = NULL;
b18c6685
CM
1539 leaf = btrfs_buffer_leaf(path->nodes[0]);
1540 slot = path->slots[0];
1541 btrfs_disk_key_to_cpu(&key, &leaf->items[slot].key);
b18c6685
CM
1542 if (key.offset >= end || key.objectid != inode->i_ino) {
1543 ret = 0;
1544 goto out;
1545 }
236454df
CM
1546 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY) {
1547 ret = 0;
1548 goto out;
1549 }
1550 extent = btrfs_item_ptr(leaf, slot,
1551 struct btrfs_file_extent_item);
1552 found_type = btrfs_file_extent_type(extent);
1553 if (found_type == BTRFS_FILE_EXTENT_REG) {
1554 extent_end = key.offset +
1555 (btrfs_file_extent_num_blocks(extent) <<
1556 inode->i_blkbits);
1557 found_extent = 1;
1558 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
1559 found_inline = 1;
1560 extent_end = key.offset +
1561 btrfs_file_extent_inline_len(leaf->items + slot);
1562 }
1563
1564 if (!found_extent && !found_inline) {
1565 ret = 0;
a429e513 1566 goto out;
236454df
CM
1567 }
1568
1569 if (search_start >= extent_end) {
1570 ret = 0;
a429e513 1571 goto out;
236454df
CM
1572 }
1573
a429e513 1574 search_start = extent_end;
b18c6685
CM
1575
1576 if (end < extent_end && end >= key.offset) {
236454df
CM
1577 if (found_extent) {
1578 memcpy(&old, extent, sizeof(old));
1579 ret = btrfs_inc_extent_ref(trans, root,
1580 btrfs_file_extent_disk_blocknr(&old),
1581 btrfs_file_extent_disk_num_blocks(&old));
1582 BUG_ON(ret);
1583 }
1584 WARN_ON(found_inline);
b18c6685
CM
1585 bookend = 1;
1586 }
1587
1588 if (start > key.offset) {
1589 u64 new_num;
a429e513 1590 u64 old_num;
b18c6685
CM
1591 /* truncate existing extent */
1592 keep = 1;
1593 WARN_ON(start & (root->blocksize - 1));
236454df
CM
1594 if (found_extent) {
1595 new_num = (start - key.offset) >>
1596 inode->i_blkbits;
1597 old_num = btrfs_file_extent_num_blocks(extent);
1598 inode->i_blocks -= (old_num - new_num) << 3;
1599 btrfs_set_file_extent_num_blocks(extent,
1600 new_num);
1601 mark_buffer_dirty(path->nodes[0]);
1602 } else {
1603 WARN_ON(1);
1604 /*
1605 ret = btrfs_truncate_item(trans, root, path,
1606 start - key.offset);
1607 BUG_ON(ret);
1608 */
1609 }
b18c6685
CM
1610 }
1611 if (!keep) {
236454df
CM
1612 u64 disk_blocknr = 0;
1613 u64 disk_num_blocks = 0;
1614 u64 extent_num_blocks = 0;
1615 if (found_extent) {
1616 disk_blocknr =
1617 btrfs_file_extent_disk_blocknr(extent);
1618 disk_num_blocks =
1619 btrfs_file_extent_disk_num_blocks(extent);
1620 extent_num_blocks =
1621 btrfs_file_extent_num_blocks(extent);
1622 }
b18c6685
CM
1623 ret = btrfs_del_item(trans, root, path);
1624 BUG_ON(ret);
1625 btrfs_release_path(root, path);
236454df
CM
1626 if (found_extent) {
1627 inode->i_blocks -=
1628 btrfs_file_extent_num_blocks(extent) << 3;
1629 ret = btrfs_free_extent(trans, root,
1630 disk_blocknr,
1631 disk_num_blocks, 0);
1632 }
b18c6685
CM
1633
1634 BUG_ON(ret);
1635 if (!bookend && search_start >= end) {
1636 ret = 0;
1637 goto out;
1638 }
1639 if (!bookend)
a429e513 1640 continue;
b18c6685 1641 }
236454df 1642 if (bookend && found_extent) {
b18c6685
CM
1643 /* create bookend */
1644 struct btrfs_key ins;
b18c6685
CM
1645 ins.objectid = inode->i_ino;
1646 ins.offset = end;
1647 ins.flags = 0;
1648 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
1649
1650 btrfs_release_path(root, path);
b18c6685
CM
1651 ret = btrfs_insert_empty_item(trans, root, path, &ins,
1652 sizeof(*extent));
1653 BUG_ON(ret);
1654 extent = btrfs_item_ptr(
1655 btrfs_buffer_leaf(path->nodes[0]),
1656 path->slots[0],
1657 struct btrfs_file_extent_item);
1658 btrfs_set_file_extent_disk_blocknr(extent,
1659 btrfs_file_extent_disk_blocknr(&old));
1660 btrfs_set_file_extent_disk_num_blocks(extent,
1661 btrfs_file_extent_disk_num_blocks(&old));
1662
1663 btrfs_set_file_extent_offset(extent,
1664 btrfs_file_extent_offset(&old) +
1665 ((end - key.offset) >> inode->i_blkbits));
1666 WARN_ON(btrfs_file_extent_num_blocks(&old) <
1667 (end - key.offset) >> inode->i_blkbits);
1668 btrfs_set_file_extent_num_blocks(extent,
1669 btrfs_file_extent_num_blocks(&old) -
1670 ((end - key.offset) >> inode->i_blkbits));
1671
236454df
CM
1672 btrfs_set_file_extent_type(extent,
1673 BTRFS_FILE_EXTENT_REG);
b18c6685
CM
1674 btrfs_set_file_extent_generation(extent,
1675 btrfs_file_extent_generation(&old));
b18c6685 1676 btrfs_mark_buffer_dirty(path->nodes[0]);
a429e513
CM
1677 inode->i_blocks +=
1678 btrfs_file_extent_num_blocks(extent) << 3;
b18c6685 1679 ret = 0;
70b2befd 1680 goto out;
b18c6685 1681 }
b18c6685 1682 }
b18c6685 1683out:
b18c6685
CM
1684 btrfs_free_path(path);
1685 return ret;
1686}
1687
1688static int prepare_pages(struct btrfs_root *root,
75dfe396
CM
1689 struct file *file,
1690 struct page **pages,
1691 size_t num_pages,
1692 loff_t pos,
2932f3ec
CM
1693 unsigned long first_index,
1694 unsigned long last_index,
6567e837
CM
1695 size_t write_bytes,
1696 u64 alloc_extent_start)
75dfe396
CM
1697{
1698 int i;
1699 unsigned long index = pos >> PAGE_CACHE_SHIFT;
1700 struct inode *inode = file->f_path.dentry->d_inode;
1701 int offset;
1702 int err = 0;
75dfe396 1703 int this_write;
6567e837
CM
1704 struct buffer_head *bh;
1705 struct buffer_head *head;
75dfe396
CM
1706 loff_t isize = i_size_read(inode);
1707
1708 memset(pages, 0, num_pages * sizeof(struct page *));
1709
1710 for (i = 0; i < num_pages; i++) {
1711 pages[i] = grab_cache_page(inode->i_mapping, index + i);
1712 if (!pages[i]) {
1713 err = -ENOMEM;
1714 goto failed_release;
1715 }
1716 offset = pos & (PAGE_CACHE_SIZE -1);
1717 this_write = min(PAGE_CACHE_SIZE - offset, write_bytes);
6567e837
CM
1718 create_empty_buffers(pages[i], root->fs_info->sb->s_blocksize,
1719 (1 << BH_Uptodate));
1720 head = page_buffers(pages[i]);
1721 bh = head;
1722 do {
1723 err = btrfs_map_bh_to_logical(root, bh,
1724 alloc_extent_start);
1725 BUG_ON(err);
1726 if (err)
1727 goto failed_truncate;
1728 bh = bh->b_this_page;
236454df
CM
1729 if (alloc_extent_start)
1730 alloc_extent_start++;
6567e837 1731 } while (bh != head);
75dfe396 1732 pos += this_write;
75dfe396
CM
1733 WARN_ON(this_write > write_bytes);
1734 write_bytes -= this_write;
1735 }
1736 return 0;
1737
1738failed_release:
1739 btrfs_drop_pages(pages, num_pages);
1740 return err;
1741
1742failed_truncate:
1743 btrfs_drop_pages(pages, num_pages);
1744 if (pos > isize)
1745 vmtruncate(inode, isize);
1746 return err;
1747}
1748
1749static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
1750 size_t count, loff_t *ppos)
1751{
1752 loff_t pos;
1753 size_t num_written = 0;
1754 int err = 0;
1755 int ret = 0;
75dfe396 1756 struct inode *inode = file->f_path.dentry->d_inode;
d6e4a428 1757 struct btrfs_root *root = BTRFS_I(inode)->root;
b18c6685 1758 struct page *pages[8];
a429e513 1759 struct page *pinned[2] = { NULL, NULL };
2932f3ec
CM
1760 unsigned long first_index;
1761 unsigned long last_index;
6567e837
CM
1762 u64 start_pos;
1763 u64 num_blocks;
1764 u64 alloc_extent_start;
6567e837 1765 struct btrfs_trans_handle *trans;
b18c6685 1766 struct btrfs_key ins;
75dfe396
CM
1767
1768 if (file->f_flags & O_DIRECT)
1769 return -EINVAL;
1770 pos = *ppos;
75dfe396
CM
1771 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1772 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1773 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1774 if (err)
1775 goto out;
1776 if (count == 0)
1777 goto out;
1778 err = remove_suid(file->f_path.dentry);
1779 if (err)
1780 goto out;
1781 file_update_time(file);
a429e513
CM
1782
1783 start_pos = pos & ~((u64)PAGE_CACHE_SIZE - 1);
1784 num_blocks = (count + pos - start_pos + root->blocksize - 1) >>
1785 inode->i_blkbits;
1786
75dfe396 1787 mutex_lock(&inode->i_mutex);
2932f3ec
CM
1788 first_index = pos >> PAGE_CACHE_SHIFT;
1789 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
6567e837 1790
a429e513
CM
1791 if ((first_index << PAGE_CACHE_SHIFT) < inode->i_size &&
1792 (pos & (PAGE_CACHE_SIZE - 1))) {
1793 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
1794 if (!PageUptodate(pinned[0])) {
1795 ret = mpage_readpage(pinned[0], btrfs_get_block);
1796 BUG_ON(ret);
1797 } else {
1798 unlock_page(pinned[0]);
1799 }
1800 }
1801 if (first_index != last_index &&
1802 (last_index << PAGE_CACHE_SHIFT) < inode->i_size &&
1803 (count & (PAGE_CACHE_SIZE - 1))) {
1804 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
1805 if (!PageUptodate(pinned[1])) {
1806 ret = mpage_readpage(pinned[1], btrfs_get_block);
1807 BUG_ON(ret);
1808 } else {
1809 unlock_page(pinned[1]);
1810 }
1811 }
1812
6567e837
CM
1813 mutex_lock(&root->fs_info->fs_mutex);
1814 trans = btrfs_start_transaction(root, 1);
1815 if (!trans) {
1816 err = -ENOMEM;
b18c6685 1817 mutex_unlock(&root->fs_info->fs_mutex);
6567e837
CM
1818 goto out_unlock;
1819 }
a429e513
CM
1820 /* FIXME blocksize != 4096 */
1821 inode->i_blocks += num_blocks << 3;
b18c6685 1822 if (start_pos < inode->i_size) {
a429e513 1823 /* FIXME blocksize != pagesize */
b18c6685
CM
1824 ret = drop_extents(trans, root, inode,
1825 start_pos,
1826 (pos + count + root->blocksize -1) &
a429e513 1827 ~((u64)root->blocksize - 1));
236454df 1828 BUG_ON(ret);
b18c6685 1829 }
236454df
CM
1830 if (inode->i_size >= PAGE_CACHE_SIZE || pos + count < inode->i_size ||
1831 pos + count - start_pos > BTRFS_MAX_INLINE_DATA_SIZE(root)) {
4d775673
CM
1832 ret = btrfs_alloc_extent(trans, root, inode->i_ino,
1833 BTRFS_EXTENT_FILE, num_blocks, 1,
1834 (u64)-1, &ins);
236454df
CM
1835 BUG_ON(ret);
1836 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
b18c6685 1837 start_pos, ins.objectid, ins.offset);
236454df
CM
1838 BUG_ON(ret);
1839 } else {
1840 ins.offset = 0;
1841 ins.objectid = 0;
1842 }
6567e837 1843 BUG_ON(ret);
b18c6685
CM
1844 alloc_extent_start = ins.objectid;
1845 ret = btrfs_end_transaction(trans, root);
6567e837
CM
1846 mutex_unlock(&root->fs_info->fs_mutex);
1847
75dfe396
CM
1848 while(count > 0) {
1849 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
1850 size_t write_bytes = min(count, PAGE_CACHE_SIZE - offset);
1851 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
1852 PAGE_CACHE_SHIFT;
b18c6685
CM
1853
1854 memset(pages, 0, sizeof(pages));
1855 ret = prepare_pages(root, file, pages, num_pages,
6567e837
CM
1856 pos, first_index, last_index,
1857 write_bytes, alloc_extent_start);
75dfe396 1858 BUG_ON(ret);
b18c6685 1859
6567e837 1860 /* FIXME blocks != pagesize */
236454df
CM
1861 if (alloc_extent_start)
1862 alloc_extent_start += num_pages;
75dfe396
CM
1863 ret = btrfs_copy_from_user(pos, num_pages,
1864 write_bytes, pages, buf);
1865 BUG_ON(ret);
1866
f254e52c 1867 ret = dirty_and_release_pages(NULL, root, file, pages,
70b2befd 1868 num_pages, pos, write_bytes);
75dfe396
CM
1869 BUG_ON(ret);
1870 btrfs_drop_pages(pages, num_pages);
1871
75dfe396
CM
1872 buf += write_bytes;
1873 count -= write_bytes;
1874 pos += write_bytes;
1875 num_written += write_bytes;
1876
1877 balance_dirty_pages_ratelimited(inode->i_mapping);
1878 cond_resched();
1879 }
6567e837 1880out_unlock:
75dfe396
CM
1881 mutex_unlock(&inode->i_mutex);
1882out:
a429e513
CM
1883 if (pinned[0])
1884 page_cache_release(pinned[0]);
1885 if (pinned[1])
1886 page_cache_release(pinned[1]);
75dfe396
CM
1887 *ppos = pos;
1888 current->backing_dev_info = NULL;
a429e513 1889 mark_inode_dirty(inode);
75dfe396
CM
1890 return num_written ? num_written : err;
1891}
1892
f254e52c
CM
1893static int btrfs_read_actor(read_descriptor_t *desc, struct page *page,
1894 unsigned long offset, unsigned long size)
1895{
1896 char *kaddr;
1897 unsigned long left, count = desc->count;
d6e4a428 1898 struct inode *inode = page->mapping->host;
f254e52c
CM
1899
1900 if (size > count)
1901 size = count;
1902
1903 if (!PageChecked(page)) {
1904 /* FIXME, do it per block */
d6e4a428 1905 struct btrfs_root *root = BTRFS_I(inode)->root;
236454df 1906
f254e52c 1907 int ret = btrfs_csum_verify_file_block(root,
236454df
CM
1908 page->mapping->host->i_ino,
1909 page->index << PAGE_CACHE_SHIFT,
1910 kmap(page), PAGE_CACHE_SIZE);
f254e52c
CM
1911 if (ret) {
1912 printk("failed to verify ino %lu page %lu\n",
1913 page->mapping->host->i_ino,
1914 page->index);
1915 memset(page_address(page), 0, PAGE_CACHE_SIZE);
1916 }
1917 SetPageChecked(page);
1918 kunmap(page);
1919 }
1920 /*
1921 * Faults on the destination of a read are common, so do it before
1922 * taking the kmap.
1923 */
1924 if (!fault_in_pages_writeable(desc->arg.buf, size)) {
1925 kaddr = kmap_atomic(page, KM_USER0);
1926 left = __copy_to_user_inatomic(desc->arg.buf,
1927 kaddr + offset, size);
1928 kunmap_atomic(kaddr, KM_USER0);
1929 if (left == 0)
1930 goto success;
1931 }
1932
1933 /* Do it the slow way */
1934 kaddr = kmap(page);
1935 left = __copy_to_user(desc->arg.buf, kaddr + offset, size);
1936 kunmap(page);
1937
1938 if (left) {
1939 size -= left;
1940 desc->error = -EFAULT;
1941 }
1942success:
1943 desc->count = count - size;
1944 desc->written += size;
1945 desc->arg.buf += size;
1946 return size;
1947}
1948
1949/**
1950 * btrfs_file_aio_read - filesystem read routine
1951 * @iocb: kernel I/O control block
1952 * @iov: io vector request
1953 * @nr_segs: number of segments in the iovec
1954 * @pos: current file position
1955 */
1956static ssize_t btrfs_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
1957 unsigned long nr_segs, loff_t pos)
1958{
1959 struct file *filp = iocb->ki_filp;
1960 ssize_t retval;
1961 unsigned long seg;
1962 size_t count;
1963 loff_t *ppos = &iocb->ki_pos;
1964
1965 count = 0;
1966 for (seg = 0; seg < nr_segs; seg++) {
1967 const struct iovec *iv = &iov[seg];
1968
1969 /*
1970 * If any segment has a negative length, or the cumulative
1971 * length ever wraps negative then return -EINVAL.
1972 */
1973 count += iv->iov_len;
1974 if (unlikely((ssize_t)(count|iv->iov_len) < 0))
1975 return -EINVAL;
1976 if (access_ok(VERIFY_WRITE, iv->iov_base, iv->iov_len))
1977 continue;
1978 if (seg == 0)
1979 return -EFAULT;
1980 nr_segs = seg;
1981 count -= iv->iov_len; /* This segment is no good */
1982 break;
1983 }
1984 retval = 0;
1985 if (count) {
1986 for (seg = 0; seg < nr_segs; seg++) {
1987 read_descriptor_t desc;
1988
1989 desc.written = 0;
1990 desc.arg.buf = iov[seg].iov_base;
1991 desc.count = iov[seg].iov_len;
1992 if (desc.count == 0)
1993 continue;
1994 desc.error = 0;
1995 do_generic_file_read(filp, ppos, &desc,
1996 btrfs_read_actor);
1997 retval += desc.written;
1998 if (desc.error) {
1999 retval = retval ?: desc.error;
2000 break;
2001 }
2002 }
2003 }
2004 return retval;
2005}
2006
2619ba1f
CM
2007static int create_subvol(struct btrfs_root *root, char *name, int namelen)
2008{
2009 struct btrfs_trans_handle *trans;
2010 struct btrfs_key key;
2011 struct btrfs_root_item root_item;
2012 struct btrfs_inode_item *inode_item;
2013 struct buffer_head *subvol;
2014 struct btrfs_leaf *leaf;
2015 struct btrfs_root *new_root;
2016 struct inode *inode;
2017 int ret;
2018 u64 objectid;
2019 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
2020
2021 mutex_lock(&root->fs_info->fs_mutex);
2022 trans = btrfs_start_transaction(root, 1);
2023 BUG_ON(!trans);
2024
2025 subvol = btrfs_alloc_free_block(trans, root);
5e82849e
CM
2026 if (subvol == NULL)
2027 return -ENOSPC;
2619ba1f
CM
2028 leaf = btrfs_buffer_leaf(subvol);
2029 btrfs_set_header_nritems(&leaf->header, 0);
2030 btrfs_set_header_level(&leaf->header, 0);
7eccb903 2031 btrfs_set_header_blocknr(&leaf->header, bh_blocknr(subvol));
2619ba1f 2032 btrfs_set_header_generation(&leaf->header, trans->transid);
4d775673 2033 btrfs_set_header_owner(&leaf->header, root->root_key.objectid);
2619ba1f
CM
2034 memcpy(leaf->header.fsid, root->fs_info->disk_super->fsid,
2035 sizeof(leaf->header.fsid));
4d775673 2036 mark_buffer_dirty(subvol);
2619ba1f
CM
2037
2038 inode_item = &root_item.inode;
2039 memset(inode_item, 0, sizeof(*inode_item));
2040 btrfs_set_inode_generation(inode_item, 1);
2041 btrfs_set_inode_size(inode_item, 3);
2042 btrfs_set_inode_nlink(inode_item, 1);
2043 btrfs_set_inode_nblocks(inode_item, 1);
2044 btrfs_set_inode_mode(inode_item, S_IFDIR | 0755);
2045
7eccb903 2046 btrfs_set_root_blocknr(&root_item, bh_blocknr(subvol));
2619ba1f 2047 btrfs_set_root_refs(&root_item, 1);
5e82849e
CM
2048 brelse(subvol);
2049 subvol = NULL;
2619ba1f 2050
2619ba1f
CM
2051 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2052 0, &objectid);
2053 BUG_ON(ret);
2054
2055 btrfs_set_root_dirid(&root_item, new_dirid);
2056
2057 key.objectid = objectid;
2058 key.offset = 1;
2059 key.flags = 0;
2060 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2061 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2062 &root_item);
2063 BUG_ON(ret);
2064
2065 /*
2066 * insert the directory item
2067 */
2068 key.offset = (u64)-1;
2069 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2070 name, namelen,
2071 root->fs_info->sb->s_root->d_inode->i_ino,
2072 &key, 0);
2073 BUG_ON(ret);
2074
2075 ret = btrfs_commit_transaction(trans, root);
2076 BUG_ON(ret);
2077
2078 new_root = btrfs_read_fs_root(root->fs_info, &key);
2079 BUG_ON(!new_root);
2080
2081 trans = btrfs_start_transaction(new_root, 1);
2082 BUG_ON(!trans);
2083
2084 inode = btrfs_new_inode(trans, new_root, new_dirid, S_IFDIR | 0700);
2085 inode->i_op = &btrfs_dir_inode_operations;
2086 inode->i_fop = &btrfs_dir_file_operations;
2087
2088 ret = btrfs_make_empty_dir(trans, new_root, new_dirid, new_dirid);
2089 BUG_ON(ret);
2090
2091 inode->i_nlink = 1;
2092 inode->i_size = 6;
2093 ret = btrfs_update_inode(trans, new_root, inode);
2094 BUG_ON(ret);
2095
2096 ret = btrfs_commit_transaction(trans, new_root);
2097 BUG_ON(ret);
2098
2099 iput(inode);
2100
2101 mutex_unlock(&root->fs_info->fs_mutex);
2102 return 0;
2103}
2104
c5739bba
CM
2105static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2106{
2107 struct btrfs_trans_handle *trans;
2108 struct btrfs_key key;
2109 struct btrfs_root_item new_root_item;
2110 int ret;
2111 u64 objectid;
2112
2619ba1f
CM
2113 if (!root->ref_cows)
2114 return -EINVAL;
2115
c5739bba
CM
2116 mutex_lock(&root->fs_info->fs_mutex);
2117 trans = btrfs_start_transaction(root, 1);
2118 BUG_ON(!trans);
2119
2120 ret = btrfs_update_inode(trans, root, root->inode);
2121 BUG_ON(ret);
2122
1b05da2e
CM
2123 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2124 0, &objectid);
c5739bba
CM
2125 BUG_ON(ret);
2126
c5739bba
CM
2127 memcpy(&new_root_item, &root->root_item,
2128 sizeof(new_root_item));
2129
c5739bba
CM
2130 key.objectid = objectid;
2131 key.offset = 1;
2132 key.flags = 0;
2133 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
7eccb903 2134 btrfs_set_root_blocknr(&new_root_item, bh_blocknr(root->node));
c5739bba
CM
2135
2136 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2137 &new_root_item);
2138 BUG_ON(ret);
2139
c5739bba
CM
2140 /*
2141 * insert the directory item
2142 */
2143 key.offset = (u64)-1;
2144 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2145 name, namelen,
2146 root->fs_info->sb->s_root->d_inode->i_ino,
2147 &key, 0);
2148
2149 BUG_ON(ret);
2150
2151 ret = btrfs_inc_root_ref(trans, root);
2152 BUG_ON(ret);
2153
2154 ret = btrfs_commit_transaction(trans, root);
2155 BUG_ON(ret);
2156 mutex_unlock(&root->fs_info->fs_mutex);
2157 return 0;
2158}
2159
8352d8a4
CM
2160static int add_disk(struct btrfs_root *root, char *name, int namelen)
2161{
2162 struct block_device *bdev;
2163 struct btrfs_path *path;
2164 struct super_block *sb = root->fs_info->sb;
2165 struct btrfs_root *dev_root = root->fs_info->dev_root;
2166 struct btrfs_trans_handle *trans;
2167 struct btrfs_device_item *dev_item;
2168 struct btrfs_key key;
2169 u16 item_size;
2170 u64 num_blocks;
2171 u64 new_blocks;
b4100d64 2172 u64 device_id;
8352d8a4 2173 int ret;
b4100d64 2174
8352d8a4
CM
2175printk("adding disk %s\n", name);
2176 path = btrfs_alloc_path();
2177 if (!path)
2178 return -ENOMEM;
2179 num_blocks = btrfs_super_total_blocks(root->fs_info->disk_super);
2180 bdev = open_bdev_excl(name, O_RDWR, sb);
2181 if (IS_ERR(bdev)) {
2182 ret = PTR_ERR(bdev);
2183printk("open bdev excl failed ret %d\n", ret);
2184 goto out_nolock;
2185 }
2186 set_blocksize(bdev, sb->s_blocksize);
2187 new_blocks = bdev->bd_inode->i_size >> sb->s_blocksize_bits;
2188 key.objectid = num_blocks;
2189 key.offset = new_blocks;
2190 key.flags = 0;
2191 btrfs_set_key_type(&key, BTRFS_DEV_ITEM_KEY);
2192
2193 mutex_lock(&dev_root->fs_info->fs_mutex);
2194 trans = btrfs_start_transaction(dev_root, 1);
2195 item_size = sizeof(*dev_item) + namelen;
2196printk("insert empty on %Lu %Lu %u size %d\n", num_blocks, new_blocks, key.flags, item_size);
2197 ret = btrfs_insert_empty_item(trans, dev_root, path, &key, item_size);
2198 if (ret) {
2199printk("insert failed %d\n", ret);
2200 close_bdev_excl(bdev);
2201 if (ret > 0)
2202 ret = -EEXIST;
2203 goto out;
2204 }
2205 dev_item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
2206 path->slots[0], struct btrfs_device_item);
2207 btrfs_set_device_pathlen(dev_item, namelen);
2208 memcpy(dev_item + 1, name, namelen);
b4100d64
CM
2209
2210 device_id = btrfs_super_last_device_id(root->fs_info->disk_super) + 1;
2211 btrfs_set_super_last_device_id(root->fs_info->disk_super, device_id);
2212 btrfs_set_device_id(dev_item, device_id);
8352d8a4
CM
2213 mark_buffer_dirty(path->nodes[0]);
2214
b4100d64
CM
2215 ret = btrfs_insert_dev_radix(root, bdev, device_id, num_blocks,
2216 new_blocks);
8352d8a4
CM
2217
2218 if (!ret) {
2219 btrfs_set_super_total_blocks(root->fs_info->disk_super,
2220 num_blocks + new_blocks);
2221 i_size_write(root->fs_info->btree_inode,
2222 (num_blocks + new_blocks) <<
2223 root->fs_info->btree_inode->i_blkbits);
2224 }
2225
2226out:
2227 ret = btrfs_commit_transaction(trans, dev_root);
2228 BUG_ON(ret);
2229 mutex_unlock(&root->fs_info->fs_mutex);
2230out_nolock:
2231 btrfs_free_path(path);
2232
2233 return ret;
2234}
2235
c5739bba
CM
2236static int btrfs_ioctl(struct inode *inode, struct file *filp, unsigned int
2237 cmd, unsigned long arg)
2238{
2239 struct btrfs_root *root = BTRFS_I(inode)->root;
2240 struct btrfs_ioctl_vol_args vol_args;
8352d8a4 2241 int ret = 0;
7e38180e 2242 struct btrfs_dir_item *di;
c5739bba 2243 int namelen;
2619ba1f
CM
2244 struct btrfs_path *path;
2245 u64 root_dirid;
c5739bba 2246
c5739bba
CM
2247 switch (cmd) {
2248 case BTRFS_IOC_SNAP_CREATE:
2249 if (copy_from_user(&vol_args,
2250 (struct btrfs_ioctl_vol_args __user *)arg,
2251 sizeof(vol_args)))
2252 return -EFAULT;
2253 namelen = strlen(vol_args.name);
2254 if (namelen > BTRFS_VOL_NAME_MAX)
2255 return -EINVAL;
2619ba1f
CM
2256 path = btrfs_alloc_path();
2257 if (!path)
2258 return -ENOMEM;
2d13d8d0 2259 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
2619ba1f 2260 mutex_lock(&root->fs_info->fs_mutex);
7e38180e 2261 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
2619ba1f
CM
2262 path, root_dirid,
2263 vol_args.name, namelen, 0);
2264 mutex_unlock(&root->fs_info->fs_mutex);
2d13d8d0 2265 btrfs_free_path(path);
7e38180e 2266 if (di && !IS_ERR(di))
2619ba1f
CM
2267 return -EEXIST;
2268
2269 if (root == root->fs_info->tree_root)
2270 ret = create_subvol(root, vol_args.name, namelen);
2271 else
2272 ret = create_snapshot(root, vol_args.name, namelen);
c5739bba
CM
2273 WARN_ON(ret);
2274 break;
8352d8a4
CM
2275 case BTRFS_IOC_ADD_DISK:
2276 if (copy_from_user(&vol_args,
2277 (struct btrfs_ioctl_vol_args __user *)arg,
2278 sizeof(vol_args)))
2279 return -EFAULT;
2280 namelen = strlen(vol_args.name);
2281 if (namelen > BTRFS_VOL_NAME_MAX)
2282 return -EINVAL;
2283 vol_args.name[namelen] = '\0';
2284 ret = add_disk(root, vol_args.name, namelen);
2285 break;
c5739bba
CM
2286 default:
2287 return -ENOTTY;
2288 }
8352d8a4 2289 return ret;
c5739bba
CM
2290}
2291
2c90e5d6
CM
2292static struct kmem_cache *btrfs_inode_cachep;
2293struct kmem_cache *btrfs_trans_handle_cachep;
2294struct kmem_cache *btrfs_transaction_cachep;
2295struct kmem_cache *btrfs_bit_radix_cachep;
2296struct kmem_cache *btrfs_path_cachep;
2297
2298/*
2299 * Called inside transaction, so use GFP_NOFS
2300 */
2301static struct inode *btrfs_alloc_inode(struct super_block *sb)
2302{
2303 struct btrfs_inode *ei;
2304
2305 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2306 if (!ei)
2307 return NULL;
2c90e5d6
CM
2308 return &ei->vfs_inode;
2309}
2310
2311static void btrfs_destroy_inode(struct inode *inode)
2312{
2c90e5d6 2313 WARN_ON(!list_empty(&inode->i_dentry));
2c90e5d6
CM
2314 WARN_ON(inode->i_data.nrpages);
2315
2c90e5d6
CM
2316 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2317}
2318
2319static void init_once(void * foo, struct kmem_cache * cachep,
2320 unsigned long flags)
2321{
2322 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2323
2324 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
2325 SLAB_CTOR_CONSTRUCTOR) {
2326 inode_init_once(&ei->vfs_inode);
2327 }
2328}
2329
2330static int init_inodecache(void)
2331{
2332 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
2333 sizeof(struct btrfs_inode),
2334 0, (SLAB_RECLAIM_ACCOUNT|
2335 SLAB_MEM_SPREAD),
2336 init_once, NULL);
2337 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
2338 sizeof(struct btrfs_trans_handle),
2339 0, (SLAB_RECLAIM_ACCOUNT|
2340 SLAB_MEM_SPREAD),
2341 NULL, NULL);
2342 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
2343 sizeof(struct btrfs_transaction),
2344 0, (SLAB_RECLAIM_ACCOUNT|
2345 SLAB_MEM_SPREAD),
2346 NULL, NULL);
2347 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
2348 sizeof(struct btrfs_transaction),
2349 0, (SLAB_RECLAIM_ACCOUNT|
2350 SLAB_MEM_SPREAD),
2351 NULL, NULL);
2352 btrfs_bit_radix_cachep = kmem_cache_create("btrfs_radix",
2353 256,
2354 0, (SLAB_RECLAIM_ACCOUNT|
2355 SLAB_MEM_SPREAD |
2356 SLAB_DESTROY_BY_RCU),
2357 NULL, NULL);
2358 if (btrfs_inode_cachep == NULL || btrfs_trans_handle_cachep == NULL ||
2359 btrfs_transaction_cachep == NULL || btrfs_bit_radix_cachep == NULL)
2360 return -ENOMEM;
2361 return 0;
2362}
2363
2364static void destroy_inodecache(void)
2365{
2366 kmem_cache_destroy(btrfs_inode_cachep);
2367 kmem_cache_destroy(btrfs_trans_handle_cachep);
2368 kmem_cache_destroy(btrfs_transaction_cachep);
2369 kmem_cache_destroy(btrfs_bit_radix_cachep);
2370 kmem_cache_destroy(btrfs_path_cachep);
2371}
2372
2e635a27
CM
2373static int btrfs_get_sb(struct file_system_type *fs_type,
2374 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
2375{
2376 return get_sb_bdev(fs_type, flags, dev_name, data,
2377 btrfs_fill_super, mnt);
2378}
2379
236454df
CM
2380
2381static int btrfs_getattr(struct vfsmount *mnt,
2382 struct dentry *dentry, struct kstat *stat)
2383{
2384 struct inode *inode = dentry->d_inode;
2385 generic_fillattr(inode, stat);
2386 stat->blksize = 256 * 1024;
2387 return 0;
2388}
2389
8fd17795
CM
2390static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
2391{
2392 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
2393 struct btrfs_super_block *disk_super = root->fs_info->disk_super;
2394
2395 buf->f_namelen = BTRFS_NAME_LEN;
2396 buf->f_blocks = btrfs_super_total_blocks(disk_super);
2397 buf->f_bfree = buf->f_blocks - btrfs_super_blocks_used(disk_super);
2398 buf->f_bavail = buf->f_bfree;
2399 buf->f_bsize = dentry->d_sb->s_blocksize;
2400 buf->f_type = BTRFS_SUPER_MAGIC;
2401 return 0;
2402}
b5133862 2403
2e635a27
CM
2404static struct file_system_type btrfs_fs_type = {
2405 .owner = THIS_MODULE,
2406 .name = "btrfs",
2407 .get_sb = btrfs_get_sb,
2408 .kill_sb = kill_block_super,
2409 .fs_flags = FS_REQUIRES_DEV,
2410};
2411
e20d96d6 2412static struct super_operations btrfs_super_ops = {
134e9731 2413 .delete_inode = btrfs_delete_inode,
e20d96d6
CM
2414 .put_super = btrfs_put_super,
2415 .read_inode = btrfs_read_locked_inode,
d5719762
CM
2416 .write_super = btrfs_write_super,
2417 .sync_fs = btrfs_sync_fs,
4730a4bc 2418 .write_inode = btrfs_write_inode,
b5133862 2419 .dirty_inode = btrfs_dirty_inode,
2c90e5d6
CM
2420 .alloc_inode = btrfs_alloc_inode,
2421 .destroy_inode = btrfs_destroy_inode,
8fd17795 2422 .statfs = btrfs_statfs,
e20d96d6
CM
2423};
2424
2425static struct inode_operations btrfs_dir_inode_operations = {
2426 .lookup = btrfs_lookup,
d5719762 2427 .create = btrfs_create,
134e9731 2428 .unlink = btrfs_unlink,
f7922033 2429 .mkdir = btrfs_mkdir,
5f443fd2 2430 .rmdir = btrfs_rmdir,
e20d96d6
CM
2431};
2432
d6e4a428
CM
2433static struct inode_operations btrfs_dir_ro_inode_operations = {
2434 .lookup = btrfs_lookup,
2435};
2436
e20d96d6
CM
2437static struct file_operations btrfs_dir_file_operations = {
2438 .llseek = generic_file_llseek,
2439 .read = generic_read_dir,
2440 .readdir = btrfs_readdir,
c5739bba 2441 .ioctl = btrfs_ioctl,
e20d96d6
CM
2442};
2443
dee26a9f
CM
2444static struct address_space_operations btrfs_aops = {
2445 .readpage = btrfs_readpage,
dee26a9f
CM
2446 .writepage = btrfs_writepage,
2447 .sync_page = block_sync_page,
2448 .prepare_write = btrfs_prepare_write,
75dfe396 2449 .commit_write = btrfs_commit_write,
dee26a9f
CM
2450};
2451
2452static struct inode_operations btrfs_file_inode_operations = {
f4b9aa8d 2453 .truncate = btrfs_truncate,
236454df 2454 .getattr = btrfs_getattr,
dee26a9f
CM
2455};
2456
2457static struct file_operations btrfs_file_operations = {
2458 .llseek = generic_file_llseek,
2459 .read = do_sync_read,
e8f05c45
CM
2460 .aio_read = btrfs_file_aio_read,
2461 .write = btrfs_file_write,
dee26a9f
CM
2462 .mmap = generic_file_mmap,
2463 .open = generic_file_open,
c5739bba 2464 .ioctl = btrfs_ioctl,
8fd17795 2465 .fsync = btrfs_sync_file,
dee26a9f 2466};
e20d96d6 2467
2e635a27
CM
2468static int __init init_btrfs_fs(void)
2469{
2c90e5d6 2470 int err;
2e635a27 2471 printk("btrfs loaded!\n");
2c90e5d6
CM
2472 err = init_inodecache();
2473 if (err)
2474 return err;
d6e4a428
CM
2475 kset_set_kset_s(&btrfs_subsys, fs_subsys);
2476 err = subsystem_register(&btrfs_subsys);
2477 if (err)
2478 goto out;
2e635a27 2479 return register_filesystem(&btrfs_fs_type);
d6e4a428
CM
2480out:
2481 destroy_inodecache();
2482 return err;
2e635a27
CM
2483}
2484
2485static void __exit exit_btrfs_fs(void)
2486{
2c90e5d6 2487 destroy_inodecache();
2e635a27 2488 unregister_filesystem(&btrfs_fs_type);
d6e4a428 2489 subsystem_unregister(&btrfs_subsys);
2e635a27
CM
2490 printk("btrfs unloaded\n");
2491}
2492
2493module_init(init_btrfs_fs)
2494module_exit(exit_btrfs_fs)
2495
2496MODULE_LICENSE("GPL");
This page took 0.146516 seconds and 5 git commands to generate.