2012-08-07 10:37:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 STRATO. 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 <sys/ioctl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
|
|
|
|
#include "ctree.h"
|
|
|
|
#include "ioctl.h"
|
|
|
|
|
|
|
|
#include "commands.h"
|
2013-01-20 21:04:15 +00:00
|
|
|
#include "qgroup.h"
|
2013-01-28 05:22:30 +00:00
|
|
|
#include "utils.h"
|
2012-08-07 10:37:54 +00:00
|
|
|
|
|
|
|
static const char * const qgroup_cmd_group_usage[] = {
|
|
|
|
"btrfs qgroup <command> [options] <path>",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int qgroup_assign(int assign, int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
int fd;
|
|
|
|
int e;
|
|
|
|
char *path = argv[3];
|
|
|
|
struct btrfs_ioctl_qgroup_assign_args args;
|
2013-07-15 11:36:50 +00:00
|
|
|
DIR *dirstream = NULL;
|
2012-08-07 10:37:54 +00:00
|
|
|
|
|
|
|
if (check_argc_exact(argc, 4))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
memset(&args, 0, sizeof(args));
|
|
|
|
args.assign = assign;
|
|
|
|
args.src = parse_qgroupid(argv[1]);
|
|
|
|
args.dst = parse_qgroupid(argv[2]);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME src should accept subvol path
|
|
|
|
*/
|
2013-01-20 21:04:16 +00:00
|
|
|
if ((args.src >> 48) >= (args.dst >> 48)) {
|
2012-08-07 10:37:54 +00:00
|
|
|
fprintf(stderr, "ERROR: bad relation requested '%s'\n", path);
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
2013-07-15 11:36:50 +00:00
|
|
|
fd = open_file_or_dir(path, &dirstream);
|
2012-08-07 10:37:54 +00:00
|
|
|
if (fd < 0) {
|
|
|
|
fprintf(stderr, "ERROR: can't access '%s'\n", path);
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = ioctl(fd, BTRFS_IOC_QGROUP_ASSIGN, &args);
|
|
|
|
e = errno;
|
2013-07-15 11:36:50 +00:00
|
|
|
close_file_or_dir(fd, dirstream);
|
2012-08-07 10:37:54 +00:00
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "ERROR: unable to assign quota group: %s\n",
|
|
|
|
strerror(e));
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qgroup_create(int create, int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
int fd;
|
|
|
|
int e;
|
|
|
|
char *path = argv[2];
|
|
|
|
struct btrfs_ioctl_qgroup_create_args args;
|
2013-07-15 11:36:50 +00:00
|
|
|
DIR *dirstream = NULL;
|
2012-08-07 10:37:54 +00:00
|
|
|
|
|
|
|
if (check_argc_exact(argc, 3))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
memset(&args, 0, sizeof(args));
|
|
|
|
args.create = create;
|
|
|
|
args.qgroupid = parse_qgroupid(argv[1]);
|
|
|
|
|
2013-07-15 11:36:50 +00:00
|
|
|
fd = open_file_or_dir(path, &dirstream);
|
2012-08-07 10:37:54 +00:00
|
|
|
if (fd < 0) {
|
|
|
|
fprintf(stderr, "ERROR: can't access '%s'\n", path);
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = ioctl(fd, BTRFS_IOC_QGROUP_CREATE, &args);
|
|
|
|
e = errno;
|
2013-07-15 11:36:50 +00:00
|
|
|
close_file_or_dir(fd, dirstream);
|
2012-08-07 10:37:54 +00:00
|
|
|
if (ret < 0) {
|
2013-12-02 06:11:55 +00:00
|
|
|
fprintf(stderr, "ERROR: unable to %s quota group: %s\n",
|
|
|
|
create ? "create":"destroy", strerror(e));
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_limit(const char *p, unsigned long long *s)
|
|
|
|
{
|
|
|
|
char *endptr;
|
|
|
|
unsigned long long size;
|
|
|
|
|
|
|
|
if (strcasecmp(p, "none") == 0) {
|
|
|
|
*s = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
size = strtoull(p, &endptr, 10);
|
|
|
|
switch (*endptr) {
|
|
|
|
case 'T':
|
|
|
|
case 't':
|
|
|
|
size *= 1024;
|
2013-11-06 23:15:55 +00:00
|
|
|
/* fallthrough */
|
2012-08-07 10:37:54 +00:00
|
|
|
case 'G':
|
|
|
|
case 'g':
|
|
|
|
size *= 1024;
|
2013-11-06 23:15:55 +00:00
|
|
|
/* fallthrough */
|
2012-08-07 10:37:54 +00:00
|
|
|
case 'M':
|
|
|
|
case 'm':
|
|
|
|
size *= 1024;
|
2013-11-06 23:15:55 +00:00
|
|
|
/* fallthrough */
|
2012-08-07 10:37:54 +00:00
|
|
|
case 'K':
|
|
|
|
case 'k':
|
|
|
|
size *= 1024;
|
|
|
|
++endptr;
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*endptr)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*s = size;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * const cmd_qgroup_assign_usage[] = {
|
|
|
|
"btrfs qgroup assign <src> <dst> <path>",
|
|
|
|
"Enable subvolume qgroup support for a filesystem.",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int cmd_qgroup_assign(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ret = qgroup_assign(1, argc, argv);
|
|
|
|
if (ret < 0)
|
|
|
|
usage(cmd_qgroup_assign_usage);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * const cmd_qgroup_remove_usage[] = {
|
|
|
|
"btrfs qgroup remove <src> <dst> <path>",
|
|
|
|
"Remove a subvol from a quota group.",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int cmd_qgroup_remove(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ret = qgroup_assign(0, argc, argv);
|
|
|
|
if (ret < 0)
|
|
|
|
usage(cmd_qgroup_remove_usage);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * const cmd_qgroup_create_usage[] = {
|
|
|
|
"btrfs qgroup create <qgroupid> <path>",
|
|
|
|
"Create a subvolume quota group.",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int cmd_qgroup_create(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ret = qgroup_create(1, argc, argv);
|
|
|
|
if (ret < 0)
|
|
|
|
usage(cmd_qgroup_create_usage);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * const cmd_qgroup_destroy_usage[] = {
|
|
|
|
"btrfs qgroup destroy <qgroupid> <path>",
|
|
|
|
"Destroy a subvolume quota group.",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int cmd_qgroup_destroy(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ret = qgroup_create(0, argc, argv);
|
|
|
|
if (ret < 0)
|
|
|
|
usage(cmd_qgroup_destroy_usage);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * const cmd_qgroup_show_usage[] = {
|
Btrfs-progs: enhance btrfs qgroup show to sort qgroups
You might want to list qgroups in order of some items, such as 'qgroupid', 'rfer'
and so on, you can use '--sort'. Now you can sort the qgroups by 'qgroupid',
'rfer','excl','max_rfer' and 'max_excl'.
For example:
If you want to list qgroups in order of 'qgroupid'.
You can use the option like that:
btrfs qgroup show --sort=+/-qgroupid <path>
Here, '+' means the result is sorted by ascending order. '-' is by descending
order. If you don't specify either '+' nor '-', the result is sorted by
default - ascending order.
If you want to combine sort items, you do it like that:
btrfs qgroup show --sort=-qgroupid,+rfer,max_rfer,excl <path>
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
2013-10-07 07:21:44 +00:00
|
|
|
"btrfs qgroup show -pcreFf "
|
|
|
|
"[--sort=qgroupid,rfer,excl,max_rfer,max_excl] <path>",
|
2013-10-07 07:21:42 +00:00
|
|
|
"Show subvolume quota groups.",
|
2015-01-19 07:18:18 +00:00
|
|
|
"-p print parent qgroup id",
|
|
|
|
"-c print child qgroup id",
|
|
|
|
"-r print max referenced size of qgroup",
|
|
|
|
"-e print max exclusive size of qgroup",
|
|
|
|
"-F list all qgroups which impact the given path"
|
2013-10-07 07:21:42 +00:00
|
|
|
"(include ancestral qgroups)",
|
2015-01-19 07:18:18 +00:00
|
|
|
"-f list all qgroups which impact the given path"
|
2013-10-07 07:21:43 +00:00
|
|
|
"(exclude ancestral qgroups)",
|
2015-01-19 07:18:18 +00:00
|
|
|
"--raw raw numbers in bytes",
|
|
|
|
"--iec use 1024 as a base (KiB, MiB, GiB, TiB)",
|
|
|
|
"--si use 1000 as a base (kB, MB, GB, TB)",
|
|
|
|
"--kbytes show sizes in KiB, or kB with --si",
|
|
|
|
"--mbytes show sizes in MiB, or MB with --si",
|
|
|
|
"--gbytes show sizes in GiB, or GB with --si",
|
|
|
|
"--tbytes show sizes in TiB, or TB with --si",
|
Btrfs-progs: enhance btrfs qgroup show to sort qgroups
You might want to list qgroups in order of some items, such as 'qgroupid', 'rfer'
and so on, you can use '--sort'. Now you can sort the qgroups by 'qgroupid',
'rfer','excl','max_rfer' and 'max_excl'.
For example:
If you want to list qgroups in order of 'qgroupid'.
You can use the option like that:
btrfs qgroup show --sort=+/-qgroupid <path>
Here, '+' means the result is sorted by ascending order. '-' is by descending
order. If you don't specify either '+' nor '-', the result is sorted by
default - ascending order.
If you want to combine sort items, you do it like that:
btrfs qgroup show --sort=-qgroupid,+rfer,max_rfer,excl <path>
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
2013-10-07 07:21:44 +00:00
|
|
|
"--sort=qgroupid,rfer,excl,max_rfer,max_excl",
|
2015-01-19 07:18:18 +00:00
|
|
|
" list qgroups in order of qgroupid,"
|
Btrfs-progs: enhance btrfs qgroup show to sort qgroups
You might want to list qgroups in order of some items, such as 'qgroupid', 'rfer'
and so on, you can use '--sort'. Now you can sort the qgroups by 'qgroupid',
'rfer','excl','max_rfer' and 'max_excl'.
For example:
If you want to list qgroups in order of 'qgroupid'.
You can use the option like that:
btrfs qgroup show --sort=+/-qgroupid <path>
Here, '+' means the result is sorted by ascending order. '-' is by descending
order. If you don't specify either '+' nor '-', the result is sorted by
default - ascending order.
If you want to combine sort items, you do it like that:
btrfs qgroup show --sort=-qgroupid,+rfer,max_rfer,excl <path>
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
2013-10-07 07:21:44 +00:00
|
|
|
"rfer,max_rfer or max_excl",
|
2015-01-19 07:18:18 +00:00
|
|
|
" you can use '+' or '-' in front of each item.",
|
|
|
|
" (+:ascending, -:descending, ascending default)",
|
2012-08-07 10:37:54 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int cmd_qgroup_show(int argc, char **argv)
|
|
|
|
{
|
2013-10-07 07:21:38 +00:00
|
|
|
char *path;
|
2012-08-07 10:37:54 +00:00
|
|
|
int ret = 0;
|
|
|
|
int fd;
|
2013-02-27 11:04:18 +00:00
|
|
|
int e;
|
2013-07-15 11:36:50 +00:00
|
|
|
DIR *dirstream = NULL;
|
2013-10-07 07:21:42 +00:00
|
|
|
u64 qgroupid;
|
|
|
|
int filter_flag = 0;
|
2015-01-19 07:18:18 +00:00
|
|
|
unsigned unit_mode = UNITS_DEFAULT;
|
2013-10-07 07:21:42 +00:00
|
|
|
|
Btrfs-progs: enhance btrfs qgroup show to sort qgroups
You might want to list qgroups in order of some items, such as 'qgroupid', 'rfer'
and so on, you can use '--sort'. Now you can sort the qgroups by 'qgroupid',
'rfer','excl','max_rfer' and 'max_excl'.
For example:
If you want to list qgroups in order of 'qgroupid'.
You can use the option like that:
btrfs qgroup show --sort=+/-qgroupid <path>
Here, '+' means the result is sorted by ascending order. '-' is by descending
order. If you don't specify either '+' nor '-', the result is sorted by
default - ascending order.
If you want to combine sort items, you do it like that:
btrfs qgroup show --sort=-qgroupid,+rfer,max_rfer,excl <path>
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
2013-10-07 07:21:44 +00:00
|
|
|
struct btrfs_qgroup_comparer_set *comparer_set;
|
2013-10-07 07:21:42 +00:00
|
|
|
struct btrfs_qgroup_filter_set *filter_set;
|
|
|
|
filter_set = btrfs_qgroup_alloc_filter_set();
|
Btrfs-progs: enhance btrfs qgroup show to sort qgroups
You might want to list qgroups in order of some items, such as 'qgroupid', 'rfer'
and so on, you can use '--sort'. Now you can sort the qgroups by 'qgroupid',
'rfer','excl','max_rfer' and 'max_excl'.
For example:
If you want to list qgroups in order of 'qgroupid'.
You can use the option like that:
btrfs qgroup show --sort=+/-qgroupid <path>
Here, '+' means the result is sorted by ascending order. '-' is by descending
order. If you don't specify either '+' nor '-', the result is sorted by
default - ascending order.
If you want to combine sort items, you do it like that:
btrfs qgroup show --sort=-qgroupid,+rfer,max_rfer,excl <path>
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
2013-10-07 07:21:44 +00:00
|
|
|
comparer_set = btrfs_qgroup_alloc_comparer_set();
|
2013-10-07 07:21:38 +00:00
|
|
|
|
|
|
|
optind = 1;
|
|
|
|
while (1) {
|
2015-01-19 12:30:06 +00:00
|
|
|
int c;
|
2015-01-19 07:18:18 +00:00
|
|
|
int option_index = 0;
|
2015-01-19 12:44:49 +00:00
|
|
|
static const struct option long_options[] = {
|
2015-01-19 12:30:06 +00:00
|
|
|
{"sort", 1, NULL, 'S'},
|
2015-01-19 07:18:18 +00:00
|
|
|
{"raw", no_argument, NULL, 0},
|
|
|
|
{"kbytes", no_argument, NULL, 0},
|
|
|
|
{"mbytes", no_argument, NULL, 0},
|
|
|
|
{"gbytes", no_argument, NULL, 0},
|
|
|
|
{"tbytes", no_argument, NULL, 0},
|
|
|
|
{"si", no_argument, NULL, GETOPT_VAL_SI},
|
|
|
|
{"iec", no_argument, NULL, GETOPT_VAL_IEC},
|
2015-01-19 12:30:06 +00:00
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
Btrfs-progs: enhance btrfs qgroup show to sort qgroups
You might want to list qgroups in order of some items, such as 'qgroupid', 'rfer'
and so on, you can use '--sort'. Now you can sort the qgroups by 'qgroupid',
'rfer','excl','max_rfer' and 'max_excl'.
For example:
If you want to list qgroups in order of 'qgroupid'.
You can use the option like that:
btrfs qgroup show --sort=+/-qgroupid <path>
Here, '+' means the result is sorted by ascending order. '-' is by descending
order. If you don't specify either '+' nor '-', the result is sorted by
default - ascending order.
If you want to combine sort items, you do it like that:
btrfs qgroup show --sort=-qgroupid,+rfer,max_rfer,excl <path>
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
2013-10-07 07:21:44 +00:00
|
|
|
c = getopt_long(argc, argv, "pcreFf",
|
2015-01-19 07:18:18 +00:00
|
|
|
long_options, &option_index);
|
2015-01-19 12:30:06 +00:00
|
|
|
|
2013-10-07 07:21:38 +00:00
|
|
|
if (c < 0)
|
|
|
|
break;
|
|
|
|
switch (c) {
|
|
|
|
case 'p':
|
|
|
|
btrfs_qgroup_setup_print_column(
|
|
|
|
BTRFS_QGROUP_PARENT);
|
|
|
|
break;
|
2013-10-07 07:21:39 +00:00
|
|
|
case 'c':
|
|
|
|
btrfs_qgroup_setup_print_column(
|
|
|
|
BTRFS_QGROUP_CHILD);
|
|
|
|
break;
|
2013-10-07 07:21:40 +00:00
|
|
|
case 'r':
|
|
|
|
btrfs_qgroup_setup_print_column(
|
|
|
|
BTRFS_QGROUP_MAX_RFER);
|
|
|
|
break;
|
2013-10-07 07:21:41 +00:00
|
|
|
case 'e':
|
|
|
|
btrfs_qgroup_setup_print_column(
|
|
|
|
BTRFS_QGROUP_MAX_EXCL);
|
|
|
|
break;
|
2013-10-07 07:21:42 +00:00
|
|
|
case 'F':
|
|
|
|
filter_flag |= 0x1;
|
|
|
|
break;
|
2013-10-07 07:21:43 +00:00
|
|
|
case 'f':
|
|
|
|
filter_flag |= 0x2;
|
|
|
|
break;
|
Btrfs-progs: enhance btrfs qgroup show to sort qgroups
You might want to list qgroups in order of some items, such as 'qgroupid', 'rfer'
and so on, you can use '--sort'. Now you can sort the qgroups by 'qgroupid',
'rfer','excl','max_rfer' and 'max_excl'.
For example:
If you want to list qgroups in order of 'qgroupid'.
You can use the option like that:
btrfs qgroup show --sort=+/-qgroupid <path>
Here, '+' means the result is sorted by ascending order. '-' is by descending
order. If you don't specify either '+' nor '-', the result is sorted by
default - ascending order.
If you want to combine sort items, you do it like that:
btrfs qgroup show --sort=-qgroupid,+rfer,max_rfer,excl <path>
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
2013-10-07 07:21:44 +00:00
|
|
|
case 'S':
|
|
|
|
ret = btrfs_qgroup_parse_sort_string(optarg,
|
|
|
|
&comparer_set);
|
|
|
|
if (ret)
|
|
|
|
usage(cmd_qgroup_show_usage);
|
|
|
|
break;
|
2015-01-19 07:18:18 +00:00
|
|
|
case 0:
|
|
|
|
if (option_index == 1)
|
|
|
|
unit_mode = UNITS_RAW;
|
|
|
|
else if (option_index == 2)
|
|
|
|
units_set_base(&unit_mode, UNITS_KBYTES);
|
|
|
|
else if (option_index == 3)
|
|
|
|
units_set_base(&unit_mode, UNITS_MBYTES);
|
|
|
|
else if (option_index == 4)
|
|
|
|
units_set_base(&unit_mode, UNITS_GBYTES);
|
|
|
|
else if (option_index == 5)
|
|
|
|
units_set_base(&unit_mode, UNITS_TBYTES);
|
|
|
|
break;
|
|
|
|
case GETOPT_VAL_SI:
|
|
|
|
units_set_mode(&unit_mode, UNITS_DECIMAL);
|
|
|
|
break;
|
|
|
|
case GETOPT_VAL_IEC:
|
|
|
|
units_set_mode(&unit_mode, UNITS_BINARY);
|
|
|
|
break;
|
2013-10-07 07:21:38 +00:00
|
|
|
default:
|
|
|
|
usage(cmd_qgroup_show_usage);
|
|
|
|
}
|
|
|
|
}
|
2015-01-19 07:18:18 +00:00
|
|
|
btrfs_qgroup_setup_units(unit_mode);
|
|
|
|
|
2013-10-07 07:21:38 +00:00
|
|
|
if (check_argc_exact(argc - optind, 1))
|
2012-08-07 10:37:54 +00:00
|
|
|
usage(cmd_qgroup_show_usage);
|
|
|
|
|
2013-10-07 07:21:38 +00:00
|
|
|
path = argv[optind];
|
2013-07-15 11:36:50 +00:00
|
|
|
fd = open_file_or_dir(path, &dirstream);
|
2012-08-07 10:37:54 +00:00
|
|
|
if (fd < 0) {
|
|
|
|
fprintf(stderr, "ERROR: can't access '%s'\n", path);
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
|
2013-10-07 07:21:42 +00:00
|
|
|
if (filter_flag) {
|
|
|
|
qgroupid = btrfs_get_path_rootid(fd);
|
2013-10-07 07:21:43 +00:00
|
|
|
if (filter_flag & 0x1)
|
|
|
|
btrfs_qgroup_setup_filter(&filter_set,
|
|
|
|
BTRFS_QGROUP_FILTER_ALL_PARENT,
|
|
|
|
qgroupid);
|
|
|
|
if (filter_flag & 0x2)
|
|
|
|
btrfs_qgroup_setup_filter(&filter_set,
|
|
|
|
BTRFS_QGROUP_FILTER_PARENT,
|
|
|
|
qgroupid);
|
2013-10-07 07:21:42 +00:00
|
|
|
}
|
Btrfs-progs: enhance btrfs qgroup show to sort qgroups
You might want to list qgroups in order of some items, such as 'qgroupid', 'rfer'
and so on, you can use '--sort'. Now you can sort the qgroups by 'qgroupid',
'rfer','excl','max_rfer' and 'max_excl'.
For example:
If you want to list qgroups in order of 'qgroupid'.
You can use the option like that:
btrfs qgroup show --sort=+/-qgroupid <path>
Here, '+' means the result is sorted by ascending order. '-' is by descending
order. If you don't specify either '+' nor '-', the result is sorted by
default - ascending order.
If you want to combine sort items, you do it like that:
btrfs qgroup show --sort=-qgroupid,+rfer,max_rfer,excl <path>
Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
2013-10-07 07:21:44 +00:00
|
|
|
ret = btrfs_show_qgroups(fd, filter_set, comparer_set);
|
2013-02-27 11:04:18 +00:00
|
|
|
e = errno;
|
2013-07-15 11:36:50 +00:00
|
|
|
close_file_or_dir(fd, dirstream);
|
2013-09-04 15:22:25 +00:00
|
|
|
if (ret < 0)
|
2013-02-27 11:04:18 +00:00
|
|
|
fprintf(stderr, "ERROR: can't list qgroups: %s\n",
|
|
|
|
strerror(e));
|
2012-08-07 10:37:54 +00:00
|
|
|
|
2013-09-04 15:22:25 +00:00
|
|
|
return !!ret;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char * const cmd_qgroup_limit_usage[] = {
|
|
|
|
"btrfs qgroup limit [options] <size>|none [<qgroupid>] <path>",
|
|
|
|
"Limit the size of a subvolume quota group.",
|
|
|
|
"",
|
2013-03-27 13:54:12 +00:00
|
|
|
"-c limit amount of data after compression. This is the default,",
|
|
|
|
" it is currently not possible to turn off this option.",
|
2012-08-07 10:37:54 +00:00
|
|
|
"-e limit space exclusively assigned to this qgroup",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int cmd_qgroup_limit(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
int fd;
|
|
|
|
int e;
|
2013-01-26 18:10:33 +00:00
|
|
|
char *path = NULL;
|
2012-08-07 10:37:54 +00:00
|
|
|
struct btrfs_ioctl_qgroup_limit_args args;
|
|
|
|
unsigned long long size;
|
|
|
|
int compressed = 0;
|
|
|
|
int exclusive = 0;
|
2013-07-15 11:36:50 +00:00
|
|
|
DIR *dirstream = NULL;
|
2012-08-07 10:37:54 +00:00
|
|
|
|
|
|
|
optind = 1;
|
|
|
|
while (1) {
|
|
|
|
int c = getopt(argc, argv, "ce");
|
|
|
|
if (c < 0)
|
|
|
|
break;
|
|
|
|
switch (c) {
|
|
|
|
case 'c':
|
|
|
|
compressed = 1;
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
exclusive = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage(cmd_qgroup_limit_usage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-12 04:30:19 +00:00
|
|
|
if (check_argc_min(argc - optind, 2))
|
|
|
|
usage(cmd_qgroup_limit_usage);
|
|
|
|
|
2012-08-07 10:37:54 +00:00
|
|
|
if (!parse_limit(argv[optind], &size)) {
|
|
|
|
fprintf(stderr, "Invalid size argument given\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&args, 0, sizeof(args));
|
|
|
|
if (size) {
|
|
|
|
if (compressed)
|
|
|
|
args.lim.flags |= BTRFS_QGROUP_LIMIT_RFER_CMPR |
|
|
|
|
BTRFS_QGROUP_LIMIT_EXCL_CMPR;
|
|
|
|
if (exclusive) {
|
|
|
|
args.lim.flags |= BTRFS_QGROUP_LIMIT_MAX_EXCL;
|
|
|
|
args.lim.max_exclusive = size;
|
|
|
|
} else {
|
|
|
|
args.lim.flags |= BTRFS_QGROUP_LIMIT_MAX_RFER;
|
|
|
|
args.lim.max_referenced = size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-20 21:04:14 +00:00
|
|
|
if (argc - optind == 2) {
|
|
|
|
args.qgroupid = 0;
|
2012-08-07 10:37:54 +00:00
|
|
|
path = argv[optind + 1];
|
|
|
|
ret = test_issubvolume(path);
|
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "ERROR: error accessing '%s'\n", path);
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
if (!ret) {
|
|
|
|
fprintf(stderr, "ERROR: '%s' is not a subvolume\n",
|
|
|
|
path);
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* keep qgroupid at 0, this indicates that the subvolume the
|
|
|
|
* fd refers to is to be limited
|
|
|
|
*/
|
2013-01-20 21:04:14 +00:00
|
|
|
} else if (argc - optind == 3) {
|
|
|
|
args.qgroupid = parse_qgroupid(argv[optind + 1]);
|
2012-08-07 10:37:54 +00:00
|
|
|
path = argv[optind + 2];
|
2013-01-20 21:04:14 +00:00
|
|
|
} else
|
|
|
|
usage(cmd_qgroup_limit_usage);
|
2012-08-07 10:37:54 +00:00
|
|
|
|
2013-07-15 11:36:50 +00:00
|
|
|
fd = open_file_or_dir(path, &dirstream);
|
2012-08-07 10:37:54 +00:00
|
|
|
if (fd < 0) {
|
|
|
|
fprintf(stderr, "ERROR: can't access '%s'\n", path);
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = ioctl(fd, BTRFS_IOC_QGROUP_LIMIT, &args);
|
|
|
|
e = errno;
|
2013-07-15 11:36:50 +00:00
|
|
|
close_file_or_dir(fd, dirstream);
|
2012-08-07 10:37:54 +00:00
|
|
|
if (ret < 0) {
|
|
|
|
fprintf(stderr, "ERROR: unable to limit requested quota group: "
|
|
|
|
"%s\n", strerror(e));
|
2013-09-04 15:22:25 +00:00
|
|
|
return 1;
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct cmd_group qgroup_cmd_group = {
|
|
|
|
qgroup_cmd_group_usage, NULL, {
|
2013-08-14 23:16:45 +00:00
|
|
|
{ "assign", cmd_qgroup_assign, cmd_qgroup_assign_usage,
|
|
|
|
NULL, 0 },
|
|
|
|
{ "remove", cmd_qgroup_remove, cmd_qgroup_remove_usage,
|
|
|
|
NULL, 0 },
|
|
|
|
{ "create", cmd_qgroup_create, cmd_qgroup_create_usage,
|
|
|
|
NULL, 0 },
|
|
|
|
{ "destroy", cmd_qgroup_destroy, cmd_qgroup_destroy_usage,
|
|
|
|
NULL, 0 },
|
|
|
|
{ "show", cmd_qgroup_show, cmd_qgroup_show_usage,
|
|
|
|
NULL, 0 },
|
|
|
|
{ "limit", cmd_qgroup_limit, cmd_qgroup_limit_usage,
|
|
|
|
NULL, 0 },
|
|
|
|
NULL_CMD_STRUCT
|
2012-08-07 10:37:54 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int cmd_qgroup(int argc, char **argv)
|
|
|
|
{
|
|
|
|
return handle_command_group(&qgroup_cmd_group, argc, argv);
|
|
|
|
}
|