2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
21 #include <sys/ioctl.h>
22 #include <sys/mount.h>
28 #include <sys/types.h>
33 #include <uuid/uuid.h>
34 #include "kerncompat.h"
36 #include "transaction.h"
41 #define BLKGETSIZE64 0
42 #define BTRFS_IOC_SNAP_CREATE 0
43 #define BTRFS_IOC_ADD_DEV 0
44 #define BTRFS_IOC_RM_DEV 0
45 #define BTRFS_VOL_NAME_MAX 255
46 struct btrfs_ioctl_vol_args { char name[BTRFS_VOL_NAME_MAX]; };
47 static inline int ioctl(int fd, int define, void *arg) { return 0; }
50 static void print_usage(void)
52 fprintf(stderr, "usage: btrfs-vol [options] mount_point\n");
53 fprintf(stderr, "\t-a device add one device\n");
54 fprintf(stderr, "\t-b balance chunks across all devices\n");
55 fprintf(stderr, "\t-r device remove one device\n");
59 static struct option long_options[] = {
60 /* { "byte-count", 1, NULL, 'b' }, */
61 { "add", 1, NULL, 'a' },
62 { "balance", 0, NULL, 'b' },
63 { "remove", 1, NULL, 'r' },
67 int main(int ac, char **av)
78 struct btrfs_ioctl_vol_args args;
79 u64 dev_block_count = 0;
82 "** WARNING: this program is considered deprecated\n"
83 "** Please consider to switch to the btrfs utility\n"
88 c = getopt_long(ac, av, "a:br:", long_options,
94 device = strdup(optarg);
95 cmd = BTRFS_IOC_ADD_DEV;
98 cmd = BTRFS_IOC_BALANCE;
101 device = strdup(optarg);
102 cmd = BTRFS_IOC_RM_DEV;
113 if (device && strcmp(device, "missing") == 0 &&
114 cmd == BTRFS_IOC_RM_DEV) {
115 fprintf(stderr, "removing missing devices from %s\n", mnt);
116 } else if (cmd != BTRFS_IOC_BALANCE) {
117 if (cmd == BTRFS_IOC_ADD_DEV) {
118 ret = check_mounted(device);
121 "error checking %s mount status\n",
126 fprintf(stderr, "%s is mounted\n", device);
130 devfd = open(device, O_RDWR);
132 fprintf(stderr, "Unable to open device %s\n", device);
135 ret = fstat(devfd, &st);
137 fprintf(stderr, "Unable to stat %s\n", device);
140 if (!S_ISBLK(st.st_mode)) {
141 fprintf(stderr, "%s is not a block device\n", device);
145 dirstream = opendir(mnt);
147 fprintf(stderr, "Unable to open directory %s\n", mnt);
150 if (cmd == BTRFS_IOC_ADD_DEV) {
153 ret = btrfs_prepare_device(devfd, device, 1, &dev_block_count,
156 fprintf(stderr, "Unable to init %s\n", device);
160 fd = dirfd(dirstream);
162 strcpy(args.name, device);
166 ret = ioctl(fd, cmd, &args);
167 printf("ioctl returns %d\n", ret);