blob: ab429fe0fa0f5fbe6fef0f586dc9b7bc18e09c1d [file] [log] [blame]
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/kernel.h>
20#include <linux/bio.h>
21#include <linux/buffer_head.h>
22#include <linux/file.h>
23#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040024#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040025#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
30#include <linux/smp_lock.h>
31#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040032#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040033#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040034#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040035#include <linux/swap.h>
36#include <linux/writeback.h>
37#include <linux/statfs.h>
38#include <linux/compat.h>
39#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040040#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040041#include <linux/version.h>
42#include <linux/xattr.h>
Yan Zheng7ea394f2008-08-05 13:05:02 -040043#include <linux/vmalloc.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050044#include "compat.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040045#include "ctree.h"
46#include "disk-io.h"
47#include "transaction.h"
48#include "btrfs_inode.h"
49#include "ioctl.h"
50#include "print-tree.h"
51#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040052#include "locking.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040053
54
55
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040056static noinline int create_subvol(struct btrfs_root *root,
57 struct dentry *dentry,
58 char *name, int namelen)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040059{
60 struct btrfs_trans_handle *trans;
61 struct btrfs_key key;
62 struct btrfs_root_item root_item;
63 struct btrfs_inode_item *inode_item;
64 struct extent_buffer *leaf;
65 struct btrfs_root *new_root = root;
66 struct inode *dir;
67 int ret;
68 int err;
69 u64 objectid;
70 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -050071 u64 index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040072 unsigned long nr = 1;
73
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040074 ret = btrfs_check_free_space(root, 1, 0);
75 if (ret)
76 goto fail_commit;
77
78 trans = btrfs_start_transaction(root, 1);
79 BUG_ON(!trans);
80
81 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
82 0, &objectid);
83 if (ret)
84 goto fail;
85
Zheng Yan31840ae2008-09-23 13:14:14 -040086 leaf = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
87 objectid, trans->transid, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -040088 if (IS_ERR(leaf)) {
89 ret = PTR_ERR(leaf);
90 goto fail;
91 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040092
93 btrfs_set_header_nritems(leaf, 0);
94 btrfs_set_header_level(leaf, 0);
95 btrfs_set_header_bytenr(leaf, leaf->start);
96 btrfs_set_header_generation(leaf, trans->transid);
97 btrfs_set_header_owner(leaf, objectid);
98
99 write_extent_buffer(leaf, root->fs_info->fsid,
100 (unsigned long)btrfs_header_fsid(leaf),
101 BTRFS_FSID_SIZE);
102 btrfs_mark_buffer_dirty(leaf);
103
104 inode_item = &root_item.inode;
105 memset(inode_item, 0, sizeof(*inode_item));
106 inode_item->generation = cpu_to_le64(1);
107 inode_item->size = cpu_to_le64(3);
108 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400109 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400110 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
111
112 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400113 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400114 btrfs_set_root_level(&root_item, 0);
115 btrfs_set_root_refs(&root_item, 1);
116 btrfs_set_root_used(&root_item, 0);
Yan Zheng80ff3852008-10-30 14:20:02 -0400117 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400118
119 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
120 root_item.drop_level = 0;
121
Chris Mason925baed2008-06-25 16:01:30 -0400122 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400123 free_extent_buffer(leaf);
124 leaf = NULL;
125
126 btrfs_set_root_dirid(&root_item, new_dirid);
127
128 key.objectid = objectid;
129 key.offset = 1;
130 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
131 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
132 &root_item);
133 if (ret)
134 goto fail;
135
136 /*
137 * insert the directory item
138 */
139 key.offset = (u64)-1;
Chris Mason3de45862008-11-17 21:02:50 -0500140 dir = dentry->d_parent->d_inode;
141 ret = btrfs_set_inode_index(dir, &index);
142 BUG_ON(ret);
143
144 ret = btrfs_insert_dir_item(trans, root,
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400145 name, namelen, dir->i_ino, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500146 BTRFS_FT_DIR, index);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400147 if (ret)
148 goto fail;
Chris Mason0660b5a2008-11-17 20:37:39 -0500149
150 /* add the backref first */
151 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
152 objectid, BTRFS_ROOT_BACKREF_KEY,
153 root->root_key.objectid,
154 dir->i_ino, index, name, namelen);
155
156 BUG_ON(ret);
157
158 /* now add the forward ref */
159 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
160 root->root_key.objectid, BTRFS_ROOT_REF_KEY,
161 objectid,
162 dir->i_ino, index, name, namelen);
163
164 BUG_ON(ret);
165
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400166 ret = btrfs_commit_transaction(trans, root);
167 if (ret)
168 goto fail_commit;
169
Chris Mason3de45862008-11-17 21:02:50 -0500170 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400171 BUG_ON(!new_root);
172
173 trans = btrfs_start_transaction(new_root, 1);
174 BUG_ON(!trans);
175
Yan Zhengd2fb3432008-12-11 16:30:39 -0500176 ret = btrfs_create_subvol_root(trans, new_root, dentry, new_dirid,
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400177 BTRFS_I(dir)->block_group);
178 if (ret)
179 goto fail;
180
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400181fail:
182 nr = trans->blocks_used;
183 err = btrfs_commit_transaction(trans, new_root);
184 if (err && !ret)
185 ret = err;
186fail_commit:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400187 btrfs_btree_balance_dirty(root, nr);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400188 return ret;
189}
190
Chris Mason3de45862008-11-17 21:02:50 -0500191static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
192 char *name, int namelen)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400193{
194 struct btrfs_pending_snapshot *pending_snapshot;
195 struct btrfs_trans_handle *trans;
Chris Mason3de45862008-11-17 21:02:50 -0500196 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400197 int err;
198 unsigned long nr = 0;
199
200 if (!root->ref_cows)
201 return -EINVAL;
202
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400203 ret = btrfs_check_free_space(root, 1, 0);
204 if (ret)
205 goto fail_unlock;
206
Chris Mason3de45862008-11-17 21:02:50 -0500207 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400208 if (!pending_snapshot) {
209 ret = -ENOMEM;
210 goto fail_unlock;
211 }
212 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
213 if (!pending_snapshot->name) {
214 ret = -ENOMEM;
215 kfree(pending_snapshot);
216 goto fail_unlock;
217 }
218 memcpy(pending_snapshot->name, name, namelen);
219 pending_snapshot->name[namelen] = '\0';
Chris Mason3de45862008-11-17 21:02:50 -0500220 pending_snapshot->dentry = dentry;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400221 trans = btrfs_start_transaction(root, 1);
222 BUG_ON(!trans);
223 pending_snapshot->root = root;
224 list_add(&pending_snapshot->list,
225 &trans->transaction->pending_snapshots);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400226 err = btrfs_commit_transaction(trans, root);
227
228fail_unlock:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400229 btrfs_btree_balance_dirty(root, nr);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400230 return ret;
231}
232
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400233/* copy of may_create in fs/namei.c() */
234static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
235{
236 if (child->d_inode)
237 return -EEXIST;
238 if (IS_DEADDIR(dir))
239 return -ENOENT;
240 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
241}
242
243/*
244 * Create a new subvolume below @parent. This is largely modeled after
245 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
246 * inside this filesystem so it's quite a bit simpler.
247 */
248static noinline int btrfs_mksubvol(struct path *parent, char *name,
Chris Mason3de45862008-11-17 21:02:50 -0500249 int mode, int namelen,
250 struct btrfs_root *snap_src)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400251{
252 struct dentry *dentry;
253 int error;
254
255 mutex_lock_nested(&parent->dentry->d_inode->i_mutex, I_MUTEX_PARENT);
256
257 dentry = lookup_one_len(name, parent->dentry, namelen);
258 error = PTR_ERR(dentry);
259 if (IS_ERR(dentry))
260 goto out_unlock;
261
262 error = -EEXIST;
263 if (dentry->d_inode)
264 goto out_dput;
265
266 if (!IS_POSIXACL(parent->dentry->d_inode))
267 mode &= ~current->fs->umask;
Chris Mason3de45862008-11-17 21:02:50 -0500268
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400269 error = mnt_want_write(parent->mnt);
270 if (error)
271 goto out_dput;
272
273 error = btrfs_may_create(parent->dentry->d_inode, dentry);
274 if (error)
275 goto out_drop_write;
276
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400277 /*
278 * Actually perform the low-level subvolume creation after all
279 * this VFS fuzz.
280 *
281 * Eventually we want to pass in an inode under which we create this
282 * subvolume, but for now all are under the filesystem root.
283 *
284 * Also we should pass on the mode eventually to allow creating new
285 * subvolume with specific mode bits.
286 */
Chris Mason3de45862008-11-17 21:02:50 -0500287 if (snap_src) {
Chris Masonea9e8b12008-11-17 21:14:24 -0500288 struct dentry *dir = dentry->d_parent;
289 struct dentry *test = dir->d_parent;
290 struct btrfs_path *path = btrfs_alloc_path();
291 int ret;
292 u64 test_oid;
293 u64 parent_oid = BTRFS_I(dir->d_inode)->root->root_key.objectid;
294
295 test_oid = snap_src->root_key.objectid;
296
297 ret = btrfs_find_root_ref(snap_src->fs_info->tree_root,
298 path, parent_oid, test_oid);
299 if (ret == 0)
300 goto create;
301 btrfs_release_path(snap_src->fs_info->tree_root, path);
302
303 /* we need to make sure we aren't creating a directory loop
304 * by taking a snapshot of something that has our current
305 * subvol in its directory tree. So, this loops through
306 * the dentries and checks the forward refs for each subvolume
307 * to see if is references the subvolume where we are
308 * placing this new snapshot.
309 */
310 while(1) {
311 if (!test ||
312 dir == snap_src->fs_info->sb->s_root ||
313 test == snap_src->fs_info->sb->s_root ||
314 test->d_inode->i_sb != snap_src->fs_info->sb) {
315 break;
316 }
317 if (S_ISLNK(test->d_inode->i_mode)) {
318 printk("Symlink in snapshot path, failed\n");
319 error = -EMLINK;
320 btrfs_free_path(path);
321 goto out_drop_write;
322 }
323 test_oid =
324 BTRFS_I(test->d_inode)->root->root_key.objectid;
325 ret = btrfs_find_root_ref(snap_src->fs_info->tree_root,
326 path, test_oid, parent_oid);
327 if (ret == 0) {
328 printk("Snapshot creation failed, looping\n");
329 error = -EMLINK;
330 btrfs_free_path(path);
331 goto out_drop_write;
332 }
333 btrfs_release_path(snap_src->fs_info->tree_root, path);
334 test = test->d_parent;
335 }
336create:
337 btrfs_free_path(path);
Chris Mason3de45862008-11-17 21:02:50 -0500338 error = create_snapshot(snap_src, dentry, name, namelen);
339 } else {
340 error = create_subvol(BTRFS_I(parent->dentry->d_inode)->root,
341 dentry, name, namelen);
342 }
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400343 if (error)
344 goto out_drop_write;
345
346 fsnotify_mkdir(parent->dentry->d_inode, dentry);
347out_drop_write:
348 mnt_drop_write(parent->mnt);
349out_dput:
350 dput(dentry);
351out_unlock:
352 mutex_unlock(&parent->dentry->d_inode->i_mutex);
353 return error;
354}
355
356
Christoph Hellwigb2950862008-12-02 09:54:17 -0500357static int btrfs_defrag_file(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400358{
359 struct inode *inode = fdentry(file)->d_inode;
360 struct btrfs_root *root = BTRFS_I(inode)->root;
361 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason3eaa2882008-07-24 11:57:52 -0400362 struct btrfs_ordered_extent *ordered;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400363 struct page *page;
364 unsigned long last_index;
365 unsigned long ra_pages = root->fs_info->bdi.ra_pages;
366 unsigned long total_read = 0;
367 u64 page_start;
368 u64 page_end;
369 unsigned long i;
370 int ret;
371
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400372 ret = btrfs_check_free_space(root, inode->i_size, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400373 if (ret)
374 return -ENOSPC;
375
376 mutex_lock(&inode->i_mutex);
377 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
378 for (i = 0; i <= last_index; i++) {
379 if (total_read % ra_pages == 0) {
380 btrfs_force_ra(inode->i_mapping, &file->f_ra, file, i,
381 min(last_index, i + ra_pages - 1));
382 }
383 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -0400384again:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400385 page = grab_cache_page(inode->i_mapping, i);
386 if (!page)
387 goto out_unlock;
388 if (!PageUptodate(page)) {
389 btrfs_readpage(NULL, page);
390 lock_page(page);
391 if (!PageUptodate(page)) {
392 unlock_page(page);
393 page_cache_release(page);
394 goto out_unlock;
395 }
396 }
397
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400398 wait_on_page_writeback(page);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400399
400 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
401 page_end = page_start + PAGE_CACHE_SIZE - 1;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400402 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason3eaa2882008-07-24 11:57:52 -0400403
404 ordered = btrfs_lookup_ordered_extent(inode, page_start);
405 if (ordered) {
406 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
407 unlock_page(page);
408 page_cache_release(page);
409 btrfs_start_ordered_extent(inode, ordered, 1);
410 btrfs_put_ordered_extent(ordered);
411 goto again;
412 }
413 set_page_extent_mapped(page);
414
Chris Masonf87f0572008-08-01 11:27:23 -0400415 /*
416 * this makes sure page_mkwrite is called on the
417 * page if it is dirtied again later
418 */
419 clear_page_dirty_for_io(page);
420
Chris Masonea8c2812008-08-04 23:17:27 -0400421 btrfs_set_extent_delalloc(inode, page_start, page_end);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400422
423 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
424 set_page_dirty(page);
425 unlock_page(page);
426 page_cache_release(page);
427 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
428 }
429
430out_unlock:
431 mutex_unlock(&inode->i_mutex);
432 return 0;
433}
434
435/*
436 * Called inside transaction, so use GFP_NOFS
437 */
438
439static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
440{
441 u64 new_size;
442 u64 old_size;
443 u64 devid = 1;
444 struct btrfs_ioctl_vol_args *vol_args;
445 struct btrfs_trans_handle *trans;
446 struct btrfs_device *device = NULL;
447 char *sizestr;
448 char *devstr = NULL;
449 int ret = 0;
450 int namelen;
451 int mod = 0;
452
Yan Zhengc146afa2008-11-12 14:34:12 -0500453 if (root->fs_info->sb->s_flags & MS_RDONLY)
454 return -EROFS;
455
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400456 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
457
458 if (!vol_args)
459 return -ENOMEM;
460
461 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
462 ret = -EFAULT;
463 goto out;
464 }
Mark Fasheh5516e592008-07-24 12:20:14 -0400465
466 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400467 namelen = strlen(vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400468
Chris Mason7d9eb122008-07-08 14:19:17 -0400469 mutex_lock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400470 sizestr = vol_args->name;
471 devstr = strchr(sizestr, ':');
472 if (devstr) {
473 char *end;
474 sizestr = devstr + 1;
475 *devstr = '\0';
476 devstr = vol_args->name;
477 devid = simple_strtoull(devstr, &end, 10);
478 printk(KERN_INFO "resizing devid %llu\n", devid);
479 }
Yan Zheng2b820322008-11-17 21:11:30 -0500480 device = btrfs_find_device(root, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400481 if (!device) {
482 printk(KERN_INFO "resizer unable to find device %llu\n", devid);
483 ret = -EINVAL;
484 goto out_unlock;
485 }
486 if (!strcmp(sizestr, "max"))
487 new_size = device->bdev->bd_inode->i_size;
488 else {
489 if (sizestr[0] == '-') {
490 mod = -1;
491 sizestr++;
492 } else if (sizestr[0] == '+') {
493 mod = 1;
494 sizestr++;
495 }
496 new_size = btrfs_parse_size(sizestr);
497 if (new_size == 0) {
498 ret = -EINVAL;
499 goto out_unlock;
500 }
501 }
502
503 old_size = device->total_bytes;
504
505 if (mod < 0) {
506 if (new_size > old_size) {
507 ret = -EINVAL;
508 goto out_unlock;
509 }
510 new_size = old_size - new_size;
511 } else if (mod > 0) {
512 new_size = old_size + new_size;
513 }
514
515 if (new_size < 256 * 1024 * 1024) {
516 ret = -EINVAL;
517 goto out_unlock;
518 }
519 if (new_size > device->bdev->bd_inode->i_size) {
520 ret = -EFBIG;
521 goto out_unlock;
522 }
523
524 do_div(new_size, root->sectorsize);
525 new_size *= root->sectorsize;
526
527 printk(KERN_INFO "new size for %s is %llu\n",
528 device->name, (unsigned long long)new_size);
529
530 if (new_size > old_size) {
531 trans = btrfs_start_transaction(root, 1);
532 ret = btrfs_grow_device(trans, device, new_size);
533 btrfs_commit_transaction(trans, root);
534 } else {
535 ret = btrfs_shrink_device(device, new_size);
536 }
537
538out_unlock:
Chris Mason7d9eb122008-07-08 14:19:17 -0400539 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400540out:
541 kfree(vol_args);
542 return ret;
543}
544
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400545static noinline int btrfs_ioctl_snap_create(struct file *file,
Chris Mason3de45862008-11-17 21:02:50 -0500546 void __user *arg, int subvol)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400547{
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400548 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400549 struct btrfs_ioctl_vol_args *vol_args;
550 struct btrfs_dir_item *di;
551 struct btrfs_path *path;
Chris Mason3de45862008-11-17 21:02:50 -0500552 struct file *src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400553 u64 root_dirid;
554 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -0500555 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400556
Yan Zhengc146afa2008-11-12 14:34:12 -0500557 if (root->fs_info->sb->s_flags & MS_RDONLY)
558 return -EROFS;
559
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400560 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
561
562 if (!vol_args)
563 return -ENOMEM;
564
565 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
566 ret = -EFAULT;
567 goto out;
568 }
569
Mark Fasheh5516e592008-07-24 12:20:14 -0400570 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400571 namelen = strlen(vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400572 if (strchr(vol_args->name, '/')) {
573 ret = -EINVAL;
574 goto out;
575 }
576
577 path = btrfs_alloc_path();
578 if (!path) {
579 ret = -ENOMEM;
580 goto out;
581 }
582
583 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400584 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
585 path, root_dirid,
586 vol_args->name, namelen, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400587 btrfs_free_path(path);
588
589 if (di && !IS_ERR(di)) {
590 ret = -EEXIST;
591 goto out;
592 }
593
594 if (IS_ERR(di)) {
595 ret = PTR_ERR(di);
596 goto out;
597 }
598
Chris Mason3de45862008-11-17 21:02:50 -0500599 if (subvol) {
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400600 ret = btrfs_mksubvol(&file->f_path, vol_args->name,
601 file->f_path.dentry->d_inode->i_mode,
Chris Mason3de45862008-11-17 21:02:50 -0500602 namelen, NULL);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400603 } else {
Chris Mason3de45862008-11-17 21:02:50 -0500604 struct inode *src_inode;
605 src_file = fget(vol_args->fd);
606 if (!src_file) {
607 ret = -EINVAL;
608 goto out;
609 }
610
611 src_inode = src_file->f_path.dentry->d_inode;
612 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
613 printk("btrfs: Snapshot src from another FS\n");
614 ret = -EINVAL;
615 fput(src_file);
616 goto out;
617 }
618 ret = btrfs_mksubvol(&file->f_path, vol_args->name,
619 file->f_path.dentry->d_inode->i_mode,
620 namelen, BTRFS_I(src_inode)->root);
621 fput(src_file);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400622 }
623
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400624out:
625 kfree(vol_args);
626 return ret;
627}
628
629static int btrfs_ioctl_defrag(struct file *file)
630{
631 struct inode *inode = fdentry(file)->d_inode;
632 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zhengc146afa2008-11-12 14:34:12 -0500633 int ret;
634
635 ret = mnt_want_write(file->f_path.mnt);
636 if (ret)
637 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400638
639 switch (inode->i_mode & S_IFMT) {
640 case S_IFDIR:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400641 btrfs_defrag_root(root, 0);
642 btrfs_defrag_root(root->fs_info->extent_root, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400643 break;
644 case S_IFREG:
645 btrfs_defrag_file(file);
646 break;
647 }
648
Yan Zhengab67b7c2008-12-19 10:58:39 -0500649 mnt_drop_write(file->f_path.mnt);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400650 return 0;
651}
652
Christoph Hellwigb2950862008-12-02 09:54:17 -0500653static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400654{
655 struct btrfs_ioctl_vol_args *vol_args;
656 int ret;
657
658 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
659
660 if (!vol_args)
661 return -ENOMEM;
662
663 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
664 ret = -EFAULT;
665 goto out;
666 }
Mark Fasheh5516e592008-07-24 12:20:14 -0400667 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400668 ret = btrfs_init_new_device(root, vol_args->name);
669
670out:
671 kfree(vol_args);
672 return ret;
673}
674
Christoph Hellwigb2950862008-12-02 09:54:17 -0500675static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400676{
677 struct btrfs_ioctl_vol_args *vol_args;
678 int ret;
679
Yan Zhengc146afa2008-11-12 14:34:12 -0500680 if (root->fs_info->sb->s_flags & MS_RDONLY)
681 return -EROFS;
682
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400683 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
684
685 if (!vol_args)
686 return -ENOMEM;
687
688 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
689 ret = -EFAULT;
690 goto out;
691 }
Mark Fasheh5516e592008-07-24 12:20:14 -0400692 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400693 ret = btrfs_rm_device(root, vol_args->name);
694
695out:
696 kfree(vol_args);
697 return ret;
698}
699
Christoph Hellwigb2950862008-12-02 09:54:17 -0500700static long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
701 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400702{
703 struct inode *inode = fdentry(file)->d_inode;
704 struct btrfs_root *root = BTRFS_I(inode)->root;
705 struct file *src_file;
706 struct inode *src;
707 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400708 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400709 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -0400710 char *buf;
711 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400712 u32 nritems;
713 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -0400714 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -0500715 u64 len = olen;
716 u64 bs = root->fs_info->sb->s_blocksize;
717 u64 hint_byte;
Chris Masond20f7042008-12-08 16:58:54 -0500718
Sage Weilc5c9cd42008-11-12 14:32:25 -0500719 /*
720 * TODO:
721 * - split compressed inline extents. annoying: we need to
722 * decompress into destination's address_space (the file offset
723 * may change, so source mapping won't do), then recompress (or
724 * otherwise reinsert) a subrange.
725 * - allow ranges within the same file to be cloned (provided
726 * they don't overlap)?
727 */
728
Yan Zhengc146afa2008-11-12 14:34:12 -0500729 ret = mnt_want_write(file->f_path.mnt);
730 if (ret)
731 return ret;
732
Sage Weilc5c9cd42008-11-12 14:32:25 -0500733 src_file = fget(srcfd);
Yan Zhengab67b7c2008-12-19 10:58:39 -0500734 if (!src_file) {
735 ret = -EBADF;
736 goto out_drop_write;
737 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400738 src = src_file->f_dentry->d_inode;
739
Sage Weilc5c9cd42008-11-12 14:32:25 -0500740 ret = -EINVAL;
741 if (src == inode)
742 goto out_fput;
743
Yan Zhengae01a0a2008-08-04 23:23:47 -0400744 ret = -EISDIR;
745 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400746 goto out_fput;
747
Yan Zhengae01a0a2008-08-04 23:23:47 -0400748 ret = -EXDEV;
749 if (src->i_sb != inode->i_sb || BTRFS_I(src)->root != root)
750 goto out_fput;
751
752 ret = -ENOMEM;
753 buf = vmalloc(btrfs_level_size(root, 0));
754 if (!buf)
755 goto out_fput;
756
757 path = btrfs_alloc_path();
758 if (!path) {
759 vfree(buf);
760 goto out_fput;
761 }
762 path->reada = 2;
763
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400764 if (inode < src) {
765 mutex_lock(&inode->i_mutex);
766 mutex_lock(&src->i_mutex);
767 } else {
768 mutex_lock(&src->i_mutex);
769 mutex_lock(&inode->i_mutex);
770 }
771
Sage Weilc5c9cd42008-11-12 14:32:25 -0500772 /* determine range to clone */
773 ret = -EINVAL;
774 if (off >= src->i_size || off + len > src->i_size)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400775 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -0500776 if (len == 0)
777 olen = len = src->i_size - off;
778 /* if we extend to eof, continue to block boundary */
779 if (off + len == src->i_size)
780 len = ((src->i_size + bs-1) & ~(bs-1))
781 - off;
782
783 /* verify the end result is block aligned */
784 if ((off & (bs-1)) ||
785 ((off + len) & (bs-1)))
786 goto out_unlock;
787
788 printk("final src extent is %llu~%llu\n", off, len);
789 printk("final dst extent is %llu~%llu\n", destoff, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400790
791 /* do any pending delalloc/csum calc on src, one way or
792 another, and lock file content */
793 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -0400794 struct btrfs_ordered_extent *ordered;
Sage Weilc5c9cd42008-11-12 14:32:25 -0500795 lock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
796 ordered = btrfs_lookup_first_ordered_extent(inode, off+len);
Yan Zhengae01a0a2008-08-04 23:23:47 -0400797 if (BTRFS_I(src)->delalloc_bytes == 0 && !ordered)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400798 break;
Sage Weilc5c9cd42008-11-12 14:32:25 -0500799 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
Yan Zhengae01a0a2008-08-04 23:23:47 -0400800 if (ordered)
801 btrfs_put_ordered_extent(ordered);
Sage Weilc5c9cd42008-11-12 14:32:25 -0500802 btrfs_wait_ordered_range(src, off, off+len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400803 }
804
Yan Zhengae01a0a2008-08-04 23:23:47 -0400805 trans = btrfs_start_transaction(root, 1);
806 BUG_ON(!trans);
807
Sage Weilc5c9cd42008-11-12 14:32:25 -0500808 /* punch hole in destination first */
809 btrfs_drop_extents(trans, root, inode, off, off+len, 0, &hint_byte);
810
811 /* clone data */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400812 key.objectid = src->i_ino;
Yan Zhengae01a0a2008-08-04 23:23:47 -0400813 key.type = BTRFS_EXTENT_DATA_KEY;
814 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400815
816 while (1) {
817 /*
818 * note the key will change type as we walk through the
819 * tree.
820 */
821 ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
822 if (ret < 0)
823 goto out;
824
Yan Zhengae01a0a2008-08-04 23:23:47 -0400825 nritems = btrfs_header_nritems(path->nodes[0]);
826 if (path->slots[0] >= nritems) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400827 ret = btrfs_next_leaf(root, path);
828 if (ret < 0)
829 goto out;
830 if (ret > 0)
831 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -0400832 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400833 }
834 leaf = path->nodes[0];
835 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400836
Yan Zhengae01a0a2008-08-04 23:23:47 -0400837 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500838 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400839 key.objectid != src->i_ino)
840 break;
841
Sage Weilc5c9cd42008-11-12 14:32:25 -0500842 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
843 struct btrfs_file_extent_item *extent;
844 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -0400845 u32 size;
846 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -0500847 u64 disko = 0, diskl = 0;
848 u64 datao = 0, datal = 0;
849 u8 comp;
Zheng Yan31840ae2008-09-23 13:14:14 -0400850
851 size = btrfs_item_size_nr(leaf, slot);
852 read_extent_buffer(leaf, buf,
853 btrfs_item_ptr_offset(leaf, slot),
854 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -0500855
856 extent = btrfs_item_ptr(leaf, slot,
857 struct btrfs_file_extent_item);
858 comp = btrfs_file_extent_compression(leaf, extent);
859 type = btrfs_file_extent_type(leaf, extent);
860 if (type == BTRFS_FILE_EXTENT_REG) {
861 disko = btrfs_file_extent_disk_bytenr(leaf, extent);
862 diskl = btrfs_file_extent_disk_num_bytes(leaf, extent);
863 datao = btrfs_file_extent_offset(leaf, extent);
864 datal = btrfs_file_extent_num_bytes(leaf, extent);
865 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
866 /* take upper bound, may be compressed */
867 datal = btrfs_file_extent_ram_bytes(leaf,
868 extent);
869 }
Zheng Yan31840ae2008-09-23 13:14:14 -0400870 btrfs_release_path(root, path);
871
Sage Weilc5c9cd42008-11-12 14:32:25 -0500872 if (key.offset + datal < off ||
873 key.offset >= off+len)
874 goto next;
875
Zheng Yan31840ae2008-09-23 13:14:14 -0400876 memcpy(&new_key, &key, sizeof(new_key));
877 new_key.objectid = inode->i_ino;
Sage Weilc5c9cd42008-11-12 14:32:25 -0500878 new_key.offset = key.offset + destoff - off;
879
880 if (type == BTRFS_FILE_EXTENT_REG) {
881 ret = btrfs_insert_empty_item(trans, root, path,
882 &new_key, size);
883 if (ret)
884 goto out;
885
886 leaf = path->nodes[0];
887 slot = path->slots[0];
888 write_extent_buffer(leaf, buf,
889 btrfs_item_ptr_offset(leaf, slot),
890 size);
891
892 extent = btrfs_item_ptr(leaf, slot,
893 struct btrfs_file_extent_item);
894 printk(" orig disk %llu~%llu data %llu~%llu\n",
895 disko, diskl, datao, datal);
896
897 if (off > key.offset) {
898 datao += off - key.offset;
899 datal -= off - key.offset;
900 }
901 if (key.offset + datao + datal + key.offset >
902 off + len)
903 datal = off + len - key.offset - datao;
904 /* disko == 0 means it's a hole */
905 if (!disko)
906 datao = 0;
907 printk(" final disk %llu~%llu data %llu~%llu\n",
908 disko, diskl, datao, datal);
909
910 btrfs_set_file_extent_offset(leaf, extent,
911 datao);
912 btrfs_set_file_extent_num_bytes(leaf, extent,
913 datal);
914 if (disko) {
915 inode_add_bytes(inode, datal);
916 ret = btrfs_inc_extent_ref(trans, root,
917 disko, diskl, leaf->start,
918 root->root_key.objectid,
919 trans->transid,
920 inode->i_ino);
921 BUG_ON(ret);
922 }
923 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
924 u64 skip = 0;
925 u64 trim = 0;
926 if (off > key.offset) {
927 skip = off - key.offset;
928 new_key.offset += skip;
929 }
930 if (key.offset + datal > off+len)
931 trim = key.offset + datal - (off+len);
932 printk("len %lld skip %lld trim %lld\n",
933 datal, skip, trim);
934 if (comp && (skip || trim)) {
935 printk("btrfs clone_range can't split compressed inline extents yet\n");
936 ret = -EINVAL;
937 goto out;
938 }
939 size -= skip + trim;
940 datal -= skip + trim;
941 ret = btrfs_insert_empty_item(trans, root, path,
942 &new_key, size);
943 if (ret)
944 goto out;
945
946 if (skip) {
947 u32 start = btrfs_file_extent_calc_inline_size(0);
948 memmove(buf+start, buf+start+skip,
949 datal);
950 }
951
952 leaf = path->nodes[0];
953 slot = path->slots[0];
954 write_extent_buffer(leaf, buf,
955 btrfs_item_ptr_offset(leaf, slot),
956 size);
957 inode_add_bytes(inode, datal);
958 }
959
960 btrfs_mark_buffer_dirty(leaf);
961 }
962
Sage Weilc5c9cd42008-11-12 14:32:25 -0500963 next:
Zheng Yan31840ae2008-09-23 13:14:14 -0400964 btrfs_release_path(root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400965 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400966 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400967 ret = 0;
968out:
Yan Zhengae01a0a2008-08-04 23:23:47 -0400969 btrfs_release_path(root, path);
970 if (ret == 0) {
971 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilc5c9cd42008-11-12 14:32:25 -0500972 if (destoff + olen > inode->i_size)
973 btrfs_i_size_write(inode, destoff + olen);
Yan Zhengae01a0a2008-08-04 23:23:47 -0400974 BTRFS_I(inode)->flags = BTRFS_I(src)->flags;
975 ret = btrfs_update_inode(trans, root, inode);
976 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400977 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -0500978 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
Yan Zhengae01a0a2008-08-04 23:23:47 -0400979 if (ret)
980 vmtruncate(inode, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400981out_unlock:
982 mutex_unlock(&src->i_mutex);
983 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -0400984 vfree(buf);
985 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400986out_fput:
987 fput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -0500988out_drop_write:
989 mnt_drop_write(file->f_path.mnt);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400990 return ret;
991}
992
Christoph Hellwig7a865e82008-12-02 09:52:24 -0500993static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -0500994{
995 struct btrfs_ioctl_clone_range_args args;
996
Christoph Hellwig7a865e82008-12-02 09:52:24 -0500997 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -0500998 return -EFAULT;
999 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
1000 args.src_length, args.dest_offset);
1001}
1002
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001003/*
1004 * there are many ways the trans_start and trans_end ioctls can lead
1005 * to deadlocks. They should only be used by applications that
1006 * basically own the machine, and have a very in depth understanding
1007 * of all the possible deadlocks and enospc problems.
1008 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001009static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001010{
1011 struct inode *inode = fdentry(file)->d_inode;
1012 struct btrfs_root *root = BTRFS_I(inode)->root;
1013 struct btrfs_trans_handle *trans;
1014 int ret = 0;
1015
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04001016 if (!capable(CAP_SYS_ADMIN))
1017 return -EPERM;
1018
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001019 if (file->private_data) {
1020 ret = -EINPROGRESS;
1021 goto out;
1022 }
Sage Weil9ca9ee02008-08-04 10:41:27 -04001023
Yan Zhengc146afa2008-11-12 14:34:12 -05001024 ret = mnt_want_write(file->f_path.mnt);
1025 if (ret)
1026 goto out;
1027
Sage Weil9ca9ee02008-08-04 10:41:27 -04001028 mutex_lock(&root->fs_info->trans_mutex);
1029 root->fs_info->open_ioctl_trans++;
1030 mutex_unlock(&root->fs_info->trans_mutex);
1031
1032 trans = btrfs_start_ioctl_transaction(root, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001033 if (trans)
1034 file->private_data = trans;
1035 else
1036 ret = -ENOMEM;
1037 /*printk(KERN_INFO "btrfs_ioctl_trans_start on %p\n", file);*/
1038out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001039 return ret;
1040}
1041
1042/*
1043 * there are many ways the trans_start and trans_end ioctls can lead
1044 * to deadlocks. They should only be used by applications that
1045 * basically own the machine, and have a very in depth understanding
1046 * of all the possible deadlocks and enospc problems.
1047 */
1048long btrfs_ioctl_trans_end(struct file *file)
1049{
1050 struct inode *inode = fdentry(file)->d_inode;
1051 struct btrfs_root *root = BTRFS_I(inode)->root;
1052 struct btrfs_trans_handle *trans;
1053 int ret = 0;
1054
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001055 trans = file->private_data;
1056 if (!trans) {
1057 ret = -EINVAL;
1058 goto out;
1059 }
1060 btrfs_end_transaction(trans, root);
Christoph Hellwigb2141072008-09-05 16:43:31 -04001061 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04001062
1063 mutex_lock(&root->fs_info->trans_mutex);
1064 root->fs_info->open_ioctl_trans--;
1065 mutex_unlock(&root->fs_info->trans_mutex);
1066
Sage Weilcfc8ea82008-12-11 16:30:06 -05001067 mnt_drop_write(file->f_path.mnt);
1068
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001069out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001070 return ret;
1071}
1072
1073long btrfs_ioctl(struct file *file, unsigned int
1074 cmd, unsigned long arg)
1075{
1076 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05001077 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001078
1079 switch (cmd) {
1080 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05001081 return btrfs_ioctl_snap_create(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05001082 case BTRFS_IOC_SUBVOL_CREATE:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05001083 return btrfs_ioctl_snap_create(file, argp, 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001084 case BTRFS_IOC_DEFRAG:
1085 return btrfs_ioctl_defrag(file);
1086 case BTRFS_IOC_RESIZE:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05001087 return btrfs_ioctl_resize(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001088 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05001089 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001090 case BTRFS_IOC_RM_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05001091 return btrfs_ioctl_rm_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001092 case BTRFS_IOC_BALANCE:
1093 return btrfs_balance(root->fs_info->dev_root);
1094 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05001095 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
1096 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05001097 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001098 case BTRFS_IOC_TRANS_START:
1099 return btrfs_ioctl_trans_start(file);
1100 case BTRFS_IOC_TRANS_END:
1101 return btrfs_ioctl_trans_end(file);
1102 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001103 btrfs_sync_fs(file->f_dentry->d_sb, 1);
1104 return 0;
1105 }
1106
1107 return -ENOTTY;
1108}