2008-11-18 15:40:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Oracle. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License v2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 021110-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include "kerncompat.h"
|
|
|
|
#include "ctree.h"
|
|
|
|
#include "disk-io.h"
|
|
|
|
#include "transaction.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
static char *device;
|
2015-01-19 07:27:30 +00:00
|
|
|
static int force = 0;
|
2008-11-18 15:40:06 +00:00
|
|
|
|
2013-08-09 20:20:47 +00:00
|
|
|
static int update_seeding_flag(struct btrfs_root *root, int set_flag)
|
2008-11-18 15:40:06 +00:00
|
|
|
{
|
|
|
|
struct btrfs_trans_handle *trans;
|
|
|
|
struct btrfs_super_block *disk_super;
|
|
|
|
u64 super_flags;
|
|
|
|
|
2013-03-06 16:32:51 +00:00
|
|
|
disk_super = root->fs_info->super_copy;
|
2008-11-18 15:40:06 +00:00
|
|
|
super_flags = btrfs_super_flags(disk_super);
|
|
|
|
if (set_flag) {
|
|
|
|
if (super_flags & BTRFS_SUPER_FLAG_SEEDING) {
|
2015-01-19 07:27:30 +00:00
|
|
|
if (force)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
fprintf(stderr, "seeding flag is already set on %s\n", device);
|
2008-11-18 15:40:06 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
super_flags |= BTRFS_SUPER_FLAG_SEEDING;
|
|
|
|
} else {
|
|
|
|
if (!(super_flags & BTRFS_SUPER_FLAG_SEEDING)) {
|
|
|
|
fprintf(stderr, "seeding flag is not set on %s\n",
|
|
|
|
device);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
super_flags &= ~BTRFS_SUPER_FLAG_SEEDING;
|
2014-07-07 01:54:52 +00:00
|
|
|
fprintf(stderr, "Warning: Seeding flag cleared.\n");
|
2008-11-18 15:40:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
trans = btrfs_start_transaction(root, 1);
|
|
|
|
btrfs_set_super_flags(disk_super, super_flags);
|
|
|
|
btrfs_commit_transaction(trans, root);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-09 20:20:47 +00:00
|
|
|
static int enable_extrefs_flag(struct btrfs_root *root)
|
2013-01-31 18:57:53 +00:00
|
|
|
{
|
|
|
|
struct btrfs_trans_handle *trans;
|
|
|
|
struct btrfs_super_block *disk_super;
|
|
|
|
u64 super_flags;
|
|
|
|
|
2013-03-06 16:32:51 +00:00
|
|
|
disk_super = root->fs_info->super_copy;
|
2013-01-31 18:57:53 +00:00
|
|
|
super_flags = btrfs_super_incompat_flags(disk_super);
|
|
|
|
super_flags |= BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF;
|
|
|
|
trans = btrfs_start_transaction(root, 1);
|
|
|
|
btrfs_set_super_incompat_flags(disk_super, super_flags);
|
|
|
|
btrfs_commit_transaction(trans, root);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-09 20:20:47 +00:00
|
|
|
static int enable_skinny_metadata(struct btrfs_root *root)
|
2013-03-15 19:32:16 +00:00
|
|
|
{
|
|
|
|
struct btrfs_trans_handle *trans;
|
|
|
|
struct btrfs_super_block *disk_super;
|
|
|
|
u64 super_flags;
|
|
|
|
|
2013-04-04 13:57:50 +00:00
|
|
|
disk_super = root->fs_info->super_copy;
|
2013-03-15 19:32:16 +00:00
|
|
|
super_flags = btrfs_super_incompat_flags(disk_super);
|
|
|
|
super_flags |= BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA;
|
|
|
|
trans = btrfs_start_transaction(root, 1);
|
|
|
|
btrfs_set_super_incompat_flags(disk_super, super_flags);
|
|
|
|
btrfs_commit_transaction(trans, root);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-18 15:40:06 +00:00
|
|
|
static void print_usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "usage: btrfstune [options] device\n");
|
2014-05-21 08:03:57 +00:00
|
|
|
fprintf(stderr, "\t-S value\tpositive value will enable seeding, zero to disable, negative is not allowed\n");
|
2013-01-31 18:57:53 +00:00
|
|
|
fprintf(stderr, "\t-r \t\tenable extended inode refs\n");
|
2014-05-21 08:03:57 +00:00
|
|
|
fprintf(stderr, "\t-x \t\tenable skinny metadata extent refs\n");
|
2015-01-19 07:27:30 +00:00
|
|
|
fprintf(stderr, "\t-f \t\tforce to set or clear flags, make sure that you are aware of the dangers\n");
|
2008-11-18 15:40:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
struct btrfs_root *root;
|
|
|
|
int success = 0;
|
2015-01-09 08:11:42 +00:00
|
|
|
int total = 0;
|
2013-01-31 18:57:53 +00:00
|
|
|
int extrefs_flag = 0;
|
2008-11-18 15:40:06 +00:00
|
|
|
int seeding_flag = 0;
|
2014-02-20 01:30:52 +00:00
|
|
|
u64 seeding_value = 0;
|
2013-03-15 19:32:16 +00:00
|
|
|
int skinny_flag = 0;
|
2008-11-18 15:40:06 +00:00
|
|
|
int ret;
|
|
|
|
|
2013-12-18 03:52:45 +00:00
|
|
|
optind = 1;
|
2008-11-18 15:40:06 +00:00
|
|
|
while(1) {
|
2014-07-07 01:54:52 +00:00
|
|
|
int c = getopt(argc, argv, "S:rxf");
|
2008-11-18 15:40:06 +00:00
|
|
|
if (c < 0)
|
|
|
|
break;
|
|
|
|
switch(c) {
|
|
|
|
case 'S':
|
|
|
|
seeding_flag = 1;
|
2014-02-20 01:30:52 +00:00
|
|
|
seeding_value = arg_strtou64(optarg);
|
2008-11-18 15:40:06 +00:00
|
|
|
break;
|
2013-01-31 18:57:53 +00:00
|
|
|
case 'r':
|
|
|
|
extrefs_flag = 1;
|
|
|
|
break;
|
2013-03-15 19:32:16 +00:00
|
|
|
case 'x':
|
|
|
|
skinny_flag = 1;
|
|
|
|
break;
|
2014-07-07 01:54:52 +00:00
|
|
|
case 'f':
|
|
|
|
force = 1;
|
|
|
|
break;
|
2008-11-18 15:40:06 +00:00
|
|
|
default:
|
|
|
|
print_usage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-16 03:59:46 +00:00
|
|
|
set_argv0(argv);
|
2008-11-18 15:40:06 +00:00
|
|
|
argc = argc - optind;
|
|
|
|
device = argv[optind];
|
2014-07-16 03:59:46 +00:00
|
|
|
if (check_argc_exact(argc, 1)) {
|
2008-11-18 15:40:06 +00:00
|
|
|
print_usage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-12-18 03:52:45 +00:00
|
|
|
if (!(seeding_flag + extrefs_flag + skinny_flag)) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR: At least one option should be assigned.\n");
|
|
|
|
print_usage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-02-20 02:49:03 +00:00
|
|
|
ret = check_mounted(device);
|
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "Could not check mount status: %s\n",
|
|
|
|
strerror(-ret));
|
|
|
|
return 1;
|
|
|
|
} else if (ret) {
|
2008-11-18 15:40:06 +00:00
|
|
|
fprintf(stderr, "%s is mounted\n", device);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-10-28 18:28:43 +00:00
|
|
|
root = open_ctree(device, 0, OPEN_CTREE_WRITES);
|
2008-11-18 15:40:06 +00:00
|
|
|
|
2013-01-21 15:57:25 +00:00
|
|
|
if (!root) {
|
|
|
|
fprintf(stderr, "Open ctree failed\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-11-18 15:40:06 +00:00
|
|
|
if (seeding_flag) {
|
2014-07-07 01:54:52 +00:00
|
|
|
if (!seeding_value && !force) {
|
|
|
|
fprintf(stderr, "Warning: This is dangerous, clearing the seeding flag may cause the derived device not to be mountable!\n");
|
|
|
|
ret = ask_user("We are going to clear the seeding flag, are you sure?");
|
|
|
|
if (!ret) {
|
|
|
|
fprintf(stderr, "Clear seeding flag canceled\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-18 15:40:06 +00:00
|
|
|
ret = update_seeding_flag(root, seeding_value);
|
|
|
|
if (!ret)
|
|
|
|
success++;
|
2015-01-09 08:11:42 +00:00
|
|
|
total++;
|
2008-11-18 15:40:06 +00:00
|
|
|
}
|
|
|
|
|
2013-01-31 18:57:53 +00:00
|
|
|
if (extrefs_flag) {
|
|
|
|
enable_extrefs_flag(root);
|
|
|
|
success++;
|
2015-01-09 08:11:42 +00:00
|
|
|
total++;
|
2013-01-31 18:57:53 +00:00
|
|
|
}
|
|
|
|
|
2013-03-15 19:32:16 +00:00
|
|
|
if (skinny_flag) {
|
|
|
|
enable_skinny_metadata(root);
|
|
|
|
success++;
|
2015-01-09 08:11:42 +00:00
|
|
|
total++;
|
2013-03-15 19:32:16 +00:00
|
|
|
}
|
|
|
|
|
2015-01-09 08:11:42 +00:00
|
|
|
if (success == total) {
|
2008-11-18 15:40:06 +00:00
|
|
|
ret = 0;
|
|
|
|
} else {
|
|
|
|
root->fs_info->readonly = 1;
|
|
|
|
ret = 1;
|
2013-12-18 03:52:45 +00:00
|
|
|
fprintf(stderr, "btrfstune failed\n");
|
2008-11-18 15:40:06 +00:00
|
|
|
}
|
|
|
|
close_ctree(root);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|