2 * Copyright (C) 2012 STRATO. 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.
24 #include <sys/ioctl.h>
32 #include "kerncompat.h"
42 static int print_replace_status(int fd
, const char *path
, int once
);
43 static char *time2string(char *buf
, size_t s
, __u64 t
);
44 static char *progress2string(char *buf
, size_t s
, int progress_1000
);
47 static const char *replace_dev_result2string(__u64 result
)
50 case BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_ERROR
:
52 case BTRFS_IOCTL_DEV_REPLACE_RESULT_NOT_STARTED
:
54 case BTRFS_IOCTL_DEV_REPLACE_RESULT_ALREADY_STARTED
:
55 return "already started";
56 case BTRFS_IOCTL_DEV_REPLACE_RESULT_SCRUB_INPROGRESS
:
57 return "scrub is in progress";
59 return "<illegal result value>";
63 static const char * const replace_cmd_group_usage
[] = {
64 "btrfs replace <command> [<args>]",
68 static int dev_replace_cancel_fd
= -1;
69 static void dev_replace_sigint_handler(int signal
)
72 struct btrfs_ioctl_dev_replace_args args
= {0};
74 args
.cmd
= BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL
;
75 ret
= ioctl(dev_replace_cancel_fd
, BTRFS_IOC_DEV_REPLACE
, &args
);
77 perror("Device replace cancel failed");
80 static int dev_replace_handle_sigint(int fd
)
82 struct sigaction sa
= {
83 .sa_handler
= fd
== -1 ? SIG_DFL
: dev_replace_sigint_handler
86 dev_replace_cancel_fd
= fd
;
87 return sigaction(SIGINT
, &sa
, NULL
);
90 static const char *const cmd_replace_start_usage
[] = {
91 "btrfs replace start [-Bfr] <srcdev>|<devid> <targetdev> <mount_point>",
92 "Replace device of a btrfs filesystem.",
93 "On a live filesystem, duplicate the data to the target device which",
94 "is currently stored on the source device. If the source device is not",
95 "available anymore, or if the -r option is set, the data is built",
96 "only using the RAID redundancy mechanisms. After completion of the",
97 "operation, the source device is removed from the filesystem.",
98 "If the <srcdev> is a numerical value, it is assumed to be the device id",
99 "of the filesystem which is mounted at <mount_point>, otherwise it is",
100 "the path to the source device. If the source device is disconnected,",
101 "from the system, you have to use the <devid> parameter format.",
102 "The <targetdev> needs to be same size or larger than the <srcdev>.",
104 "-r only read from <srcdev> if no other zero-defect mirror exists",
105 " (enable this if your drive has lots of read errors, the access",
106 " would be very slow)",
107 "-f force using and overwriting <targetdev> even if it looks like",
108 " containing a valid btrfs filesystem. A valid filesystem is",
109 " assumed if a btrfs superblock is found which contains a",
110 " correct checksum. Devices which are currently mounted are",
111 " never allowed to be used as the <targetdev>",
112 "-B do not background",
116 static int cmd_replace_start(int argc
, char **argv
)
118 struct btrfs_ioctl_dev_replace_args start_args
= {0};
119 struct btrfs_ioctl_dev_replace_args status_args
= {0};
128 int avoid_reading_from_srcdev
= 0;
129 int force_using_targetdev
= 0;
130 u64 dstdev_block_count
;
131 int do_not_background
= 0;
132 DIR *dirstream
= NULL
;
136 while ((c
= getopt(argc
, argv
, "Brf")) != -1) {
139 do_not_background
= 1;
142 avoid_reading_from_srcdev
= 1;
145 force_using_targetdev
= 1;
149 usage(cmd_replace_start_usage
);
153 start_args
.start
.cont_reading_from_srcdev_mode
=
154 avoid_reading_from_srcdev
?
155 BTRFS_IOCTL_DEV_REPLACE_CONT_READING_FROM_SRCDEV_MODE_AVOID
:
156 BTRFS_IOCTL_DEV_REPLACE_CONT_READING_FROM_SRCDEV_MODE_ALWAYS
;
157 if (check_argc_exact(argc
- optind
, 3))
158 usage(cmd_replace_start_usage
);
159 path
= argv
[optind
+ 2];
161 fdmnt
= open_path_or_dev_mnt(path
, &dirstream
, 1);
163 goto leave_with_error
;
165 /* check for possible errors before backgrounding */
166 status_args
.cmd
= BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS
;
167 status_args
.result
= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_RESULT
;
168 ret
= ioctl(fdmnt
, BTRFS_IOC_DEV_REPLACE
, &status_args
);
171 "ERROR: ioctl(DEV_REPLACE_STATUS) failed on \"%s\": %s",
172 path
, strerror(errno
));
173 if (status_args
.result
!= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_RESULT
)
174 fprintf(stderr
, ", %s\n",
175 replace_dev_result2string(status_args
.result
));
177 fprintf(stderr
, "\n");
178 goto leave_with_error
;
181 if (status_args
.result
!= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_ERROR
) {
182 error("ioctl(DEV_REPLACE_STATUS) on '%s' returns error: %s",
183 path
, replace_dev_result2string(status_args
.result
));
184 goto leave_with_error
;
187 if (status_args
.status
.replace_state
==
188 BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED
) {
189 error("device replace on '%s' already started", path
);
190 goto leave_with_error
;
193 srcdev
= argv
[optind
];
194 dstdev
= canonicalize_path(argv
[optind
+ 1]);
196 error("cannot canonicalize path '%s': %s",
197 argv
[optind
+ 1], strerror(errno
));
198 goto leave_with_error
;
201 if (string_is_numerical(srcdev
)) {
202 struct btrfs_ioctl_fs_info_args fi_args
;
203 struct btrfs_ioctl_dev_info_args
*di_args
= NULL
;
205 start_args
.start
.srcdevid
= arg_strtou64(srcdev
);
207 ret
= get_fs_info(path
, &fi_args
, &di_args
);
209 error("failed to get device info: %s", strerror(-ret
));
211 goto leave_with_error
;
213 if (!fi_args
.num_devices
) {
214 error("no devices found");
216 goto leave_with_error
;
219 for (i
= 0; i
< fi_args
.num_devices
; i
++)
220 if (start_args
.start
.srcdevid
== di_args
[i
].devid
)
222 srcdev_size
= di_args
[i
].total_bytes
;
224 if (i
== fi_args
.num_devices
) {
225 error("'%s' is not a valid devid for filesystem '%s'",
227 goto leave_with_error
;
229 } else if (is_block_device(srcdev
) > 0) {
230 strncpy((char *)start_args
.start
.srcdev_name
, srcdev
,
231 BTRFS_DEVICE_PATH_NAME_MAX
);
232 start_args
.start
.srcdevid
= 0;
233 srcdev_size
= get_partition_size(srcdev
);
235 error("source device must be a block device or a devid");
236 goto leave_with_error
;
239 ret
= test_dev_for_mkfs(dstdev
, force_using_targetdev
);
241 goto leave_with_error
;
243 dstdev_size
= get_partition_size(dstdev
);
244 if (srcdev_size
> dstdev_size
) {
245 error("target device smaller than source device (required %llu bytes)",
247 goto leave_with_error
;
250 fddstdev
= open(dstdev
, O_RDWR
);
252 error("unable to open %s: %s", dstdev
, strerror(errno
));
253 goto leave_with_error
;
255 strncpy((char *)start_args
.start
.tgtdev_name
, dstdev
,
256 BTRFS_DEVICE_PATH_NAME_MAX
);
257 ret
= btrfs_prepare_device(fddstdev
, dstdev
, 1, &dstdev_block_count
, 0,
260 goto leave_with_error
;
267 dev_replace_handle_sigint(fdmnt
);
268 if (!do_not_background
) {
269 if (daemon(0, 0) < 0) {
270 error("backgrounding failed: %s", strerror(errno
));
271 goto leave_with_error
;
275 start_args
.cmd
= BTRFS_IOCTL_DEV_REPLACE_CMD_START
;
276 start_args
.result
= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_RESULT
;
277 ret
= ioctl(fdmnt
, BTRFS_IOC_DEV_REPLACE
, &start_args
);
278 if (do_not_background
) {
281 "ERROR: ioctl(DEV_REPLACE_START) failed on \"%s\": %s",
282 path
, strerror(errno
));
283 if (start_args
.result
!= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_RESULT
)
284 fprintf(stderr
, ", %s\n",
285 replace_dev_result2string(start_args
.result
));
287 fprintf(stderr
, "\n");
289 if (errno
== EOPNOTSUPP
)
290 warning("device replace of RAID5/6 not supported with this kernel");
292 goto leave_with_error
;
295 if (start_args
.result
!=
296 BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_ERROR
) {
297 error("ioctl(DEV_REPLACE_START) on '%s' returns error: %s",
299 replace_dev_result2string(start_args
.result
));
300 goto leave_with_error
;
303 close_file_or_dir(fdmnt
, dirstream
);
316 static const char *const cmd_replace_status_usage
[] = {
317 "btrfs replace status [-1] <mount_point>",
318 "Print status and progress information of a running device replace",
321 "-1 print once instead of print continuously until the replace",
322 " operation finishes (or is canceled)",
326 static int cmd_replace_status(int argc
, char **argv
)
333 DIR *dirstream
= NULL
;
335 while ((c
= getopt(argc
, argv
, "1")) != -1) {
342 usage(cmd_replace_status_usage
);
346 if (check_argc_exact(argc
- optind
, 1))
347 usage(cmd_replace_status_usage
);
350 fd
= btrfs_open_dir(path
, &dirstream
, 1);
354 ret
= print_replace_status(fd
, path
, once
);
355 close_file_or_dir(fd
, dirstream
);
359 static int print_replace_status(int fd
, const char *path
, int once
)
361 struct btrfs_ioctl_dev_replace_args args
= {0};
362 struct btrfs_ioctl_dev_replace_status_params
*status
;
364 int prevent_loop
= 0;
372 args
.cmd
= BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS
;
373 args
.result
= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_RESULT
;
374 ret
= ioctl(fd
, BTRFS_IOC_DEV_REPLACE
, &args
);
376 fprintf(stderr
, "ERROR: ioctl(DEV_REPLACE_STATUS) failed on \"%s\": %s",
377 path
, strerror(errno
));
378 if (args
.result
!= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_RESULT
)
379 fprintf(stderr
, ", %s\n",
380 replace_dev_result2string(args
.result
));
382 fprintf(stderr
, "\n");
386 if (args
.result
!= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_ERROR
) {
387 error("ioctl(DEV_REPLACE_STATUS) on '%s' returns error: %s",
389 replace_dev_result2string(args
.result
));
393 status
= &args
.status
;
397 switch (status
->replace_state
) {
398 case BTRFS_IOCTL_DEV_REPLACE_STATE_STARTED
:
401 progress2string(string3
,
403 status
->progress_1000
));
405 case BTRFS_IOCTL_DEV_REPLACE_STATE_FINISHED
:
407 printf("Started on %s, finished on %s",
408 time2string(string1
, sizeof(string1
),
409 status
->time_started
),
410 time2string(string2
, sizeof(string2
),
411 status
->time_stopped
));
413 case BTRFS_IOCTL_DEV_REPLACE_STATE_CANCELED
:
415 printf("Started on %s, canceled on %s at %s",
416 time2string(string1
, sizeof(string1
),
417 status
->time_started
),
418 time2string(string2
, sizeof(string2
),
419 status
->time_stopped
),
420 progress2string(string3
, sizeof(string3
),
421 status
->progress_1000
));
423 case BTRFS_IOCTL_DEV_REPLACE_STATE_SUSPENDED
:
425 printf("Started on %s, suspended on %s at %s",
426 time2string(string1
, sizeof(string1
),
427 status
->time_started
),
428 time2string(string2
, sizeof(string2
),
429 status
->time_stopped
),
430 progress2string(string3
, sizeof(string3
),
431 status
->progress_1000
));
433 case BTRFS_IOCTL_DEV_REPLACE_STATE_NEVER_STARTED
:
436 printf("Never started");
439 error("unknown status from ioctl DEV_REPLACE_STATUS on '%s': %llu\n",
440 path
, status
->replace_state
);
446 ", %llu write errs, %llu uncorr. read errs",
447 (unsigned long long)status
->num_write_errors
,
449 status
->num_uncorrectable_read_errors
);
450 if (once
|| prevent_loop
) {
457 while (num_chars
> 0) {
467 time2string(char *buf
, size_t s
, __u64 t
)
472 t_time_t
= (time_t)t
;
473 assert((__u64
)t_time_t
== t
);
474 localtime_r(&t_time_t
, &t_tm
);
475 strftime(buf
, s
, "%e.%b %T", &t_tm
);
480 progress2string(char *buf
, size_t s
, int progress_1000
)
482 snprintf(buf
, s
, "%d.%01d%%", progress_1000
/ 10, progress_1000
% 10);
488 static const char *const cmd_replace_cancel_usage
[] = {
489 "btrfs replace cancel <mount_point>",
490 "Cancel a running device replace operation.",
494 static int cmd_replace_cancel(int argc
, char **argv
)
496 struct btrfs_ioctl_dev_replace_args args
= {0};
502 DIR *dirstream
= NULL
;
504 while ((c
= getopt(argc
, argv
, "")) != -1) {
508 usage(cmd_replace_cancel_usage
);
512 if (check_argc_exact(argc
- optind
, 1))
513 usage(cmd_replace_cancel_usage
);
516 fd
= btrfs_open_dir(path
, &dirstream
, 1);
520 args
.cmd
= BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL
;
521 args
.result
= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_RESULT
;
522 ret
= ioctl(fd
, BTRFS_IOC_DEV_REPLACE
, &args
);
524 close_file_or_dir(fd
, dirstream
);
526 fprintf(stderr
, "ERROR: ioctl(DEV_REPLACE_CANCEL) failed on \"%s\": %s",
528 if (args
.result
!= BTRFS_IOCTL_DEV_REPLACE_RESULT_NO_RESULT
)
529 fprintf(stderr
, ", %s\n",
530 replace_dev_result2string(args
.result
));
532 fprintf(stderr
, "\n");
535 if (args
.result
== BTRFS_IOCTL_DEV_REPLACE_RESULT_NOT_STARTED
) {
536 printf("INFO: ioctl(DEV_REPLACE_CANCEL)\"%s\": %s\n",
537 path
, replace_dev_result2string(args
.result
));
543 static const char replace_cmd_group_info
[] =
544 "replace a device in the filesystem";
546 const struct cmd_group replace_cmd_group
= {
547 replace_cmd_group_usage
, replace_cmd_group_info
, {
548 { "start", cmd_replace_start
, cmd_replace_start_usage
, NULL
,
550 { "status", cmd_replace_status
, cmd_replace_status_usage
, NULL
,
552 { "cancel", cmd_replace_cancel
, cmd_replace_cancel_usage
, NULL
,
558 int cmd_replace(int argc
, char **argv
)
560 return handle_command_group(&replace_cmd_group
, argc
, argv
);