2 * Copyright (C) 2011 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.
19 #include "kerncompat.h"
20 #include "androidcompat.h"
22 #include <sys/ioctl.h>
25 #include <sys/types.h>
26 #include <sys/socket.h>
28 #include <sys/syscall.h>
31 #include <uuid/uuid.h>
49 static const char * const scrub_cmd_group_usage[] = {
50 "btrfs scrub <command> [options] <path>|<device>",
54 #define SCRUB_DATA_FILE "/var/lib/btrfs/scrub.status"
55 #define SCRUB_PROGRESS_SOCKET_PATH "/var/lib/btrfs/scrub.progress"
56 #define SCRUB_FILE_VERSION_PREFIX "scrub status"
57 #define SCRUB_FILE_VERSION "1"
68 /* TBD: replace with #include "linux/ioprio.h" in some years */
69 #if !defined (IOPRIO_H)
70 #define IOPRIO_WHO_PROCESS 1
71 #define IOPRIO_CLASS_SHIFT 13
72 #define IOPRIO_PRIO_VALUE(class, data) \
73 (((class) << IOPRIO_CLASS_SHIFT) | (data))
74 #define IOPRIO_CLASS_IDLE 3
77 struct scrub_progress {
78 struct btrfs_ioctl_scrub_args scrub_args;
82 struct scrub_stats stats;
83 struct scrub_file_record *resumed;
85 pthread_mutex_t progress_mutex;
90 struct scrub_file_record {
91 u8 fsid[BTRFS_FSID_SIZE];
93 struct scrub_stats stats;
94 struct btrfs_scrub_progress p;
97 struct scrub_progress_cycle {
101 struct btrfs_ioctl_fs_info_args *fi;
102 struct scrub_progress *progress;
103 struct scrub_progress *shared_progress;
104 pthread_mutex_t *write_mutex;
107 struct scrub_fs_stat {
108 struct btrfs_scrub_progress p;
109 struct scrub_stats s;
113 static void print_scrub_full(struct btrfs_scrub_progress *sp)
115 printf("\tdata_extents_scrubbed: %lld\n", sp->data_extents_scrubbed);
116 printf("\ttree_extents_scrubbed: %lld\n", sp->tree_extents_scrubbed);
117 printf("\tdata_bytes_scrubbed: %lld\n", sp->data_bytes_scrubbed);
118 printf("\ttree_bytes_scrubbed: %lld\n", sp->tree_bytes_scrubbed);
119 printf("\tread_errors: %lld\n", sp->read_errors);
120 printf("\tcsum_errors: %lld\n", sp->csum_errors);
121 printf("\tverify_errors: %lld\n", sp->verify_errors);
122 printf("\tno_csum: %lld\n", sp->no_csum);
123 printf("\tcsum_discards: %lld\n", sp->csum_discards);
124 printf("\tsuper_errors: %lld\n", sp->super_errors);
125 printf("\tmalloc_errors: %lld\n", sp->malloc_errors);
126 printf("\tuncorrectable_errors: %lld\n", sp->uncorrectable_errors);
127 printf("\tunverified_errors: %lld\n", sp->unverified_errors);
128 printf("\tcorrected_errors: %lld\n", sp->corrected_errors);
129 printf("\tlast_physical: %lld\n", sp->last_physical);
132 #define PRINT_SCRUB_ERROR(test, desc) do { \
134 printf(" %s=%llu", desc, test); \
137 static void print_scrub_summary(struct btrfs_scrub_progress *p)
142 err_cnt = p->read_errors +
147 err_cnt2 = p->corrected_errors + p->uncorrectable_errors;
149 if (p->malloc_errors)
150 printf("*** WARNING: memory allocation failed while scrubbing. "
151 "results may be inaccurate\n");
153 printf("\ttotal bytes scrubbed: %s with %llu errors\n",
154 pretty_size(p->data_bytes_scrubbed + p->tree_bytes_scrubbed),
155 max(err_cnt, err_cnt2));
157 if (err_cnt || err_cnt2) {
158 printf("\terror details:");
159 PRINT_SCRUB_ERROR(p->read_errors, "read");
160 PRINT_SCRUB_ERROR(p->super_errors, "super");
161 PRINT_SCRUB_ERROR(p->verify_errors, "verify");
162 PRINT_SCRUB_ERROR(p->csum_errors, "csum");
164 printf("\tcorrected errors: %llu, uncorrectable errors: %llu, "
165 "unverified errors: %llu\n", p->corrected_errors,
166 p->uncorrectable_errors, p->unverified_errors);
170 #define _SCRUB_FS_STAT(p, name, fs_stat) do { \
171 fs_stat->p.name += p->name; \
174 #define _SCRUB_FS_STAT_MIN(ss, name, fs_stat) \
176 if (fs_stat->s.name > ss->name) { \
177 fs_stat->s.name = ss->name; \
181 #define _SCRUB_FS_STAT_ZMIN(ss, name, fs_stat) \
183 if (!fs_stat->s.name || fs_stat->s.name > ss->name) { \
184 fs_stat->s.name = ss->name; \
188 #define _SCRUB_FS_STAT_ZMAX(ss, name, fs_stat) \
190 if (!(fs_stat)->s.name || (fs_stat)->s.name < (ss)->name) { \
191 (fs_stat)->s.name = (ss)->name; \
195 static void add_to_fs_stat(struct btrfs_scrub_progress *p,
196 struct scrub_stats *ss,
197 struct scrub_fs_stat *fs_stat)
199 _SCRUB_FS_STAT(p, data_extents_scrubbed, fs_stat);
200 _SCRUB_FS_STAT(p, tree_extents_scrubbed, fs_stat);
201 _SCRUB_FS_STAT(p, data_bytes_scrubbed, fs_stat);
202 _SCRUB_FS_STAT(p, tree_bytes_scrubbed, fs_stat);
203 _SCRUB_FS_STAT(p, read_errors, fs_stat);
204 _SCRUB_FS_STAT(p, csum_errors, fs_stat);
205 _SCRUB_FS_STAT(p, verify_errors, fs_stat);
206 _SCRUB_FS_STAT(p, no_csum, fs_stat);
207 _SCRUB_FS_STAT(p, csum_discards, fs_stat);
208 _SCRUB_FS_STAT(p, super_errors, fs_stat);
209 _SCRUB_FS_STAT(p, malloc_errors, fs_stat);
210 _SCRUB_FS_STAT(p, uncorrectable_errors, fs_stat);
211 _SCRUB_FS_STAT(p, corrected_errors, fs_stat);
212 _SCRUB_FS_STAT(p, last_physical, fs_stat);
213 _SCRUB_FS_STAT_ZMIN(ss, t_start, fs_stat);
214 _SCRUB_FS_STAT_ZMIN(ss, t_resumed, fs_stat);
215 _SCRUB_FS_STAT_ZMAX(ss, duration, fs_stat);
216 _SCRUB_FS_STAT_ZMAX(ss, canceled, fs_stat);
217 _SCRUB_FS_STAT_MIN(ss, finished, fs_stat);
220 static void init_fs_stat(struct scrub_fs_stat *fs_stat)
222 memset(fs_stat, 0, sizeof(*fs_stat));
223 fs_stat->s.finished = 1;
226 static void _print_scrub_ss(struct scrub_stats *ss)
233 if (!ss || !ss->t_start) {
234 printf("\tno stats available\n");
238 localtime_r(&ss->t_resumed, &tm);
239 strftime(t, sizeof(t), "%c", &tm);
240 t[sizeof(t) - 1] = '\0';
241 printf("\tscrub resumed at %s", t);
243 localtime_r(&ss->t_start, &tm);
244 strftime(t, sizeof(t), "%c", &tm);
245 t[sizeof(t) - 1] = '\0';
246 printf("\tscrub started at %s", t);
249 seconds = ss->duration;
250 hours = ss->duration / (60 * 60);
251 gmtime_r(&seconds, &tm);
252 strftime(t, sizeof(t), "%M:%S", &tm);
254 printf(", running for %02u:%s\n", hours, t);
255 else if (ss->canceled)
256 printf(" and was aborted after %02u:%s\n", hours, t);
257 else if (ss->finished)
258 printf(" and finished after %02u:%s\n", hours, t);
260 printf(", interrupted after %02u:%s, not running\n",
264 static void print_scrub_dev(struct btrfs_ioctl_dev_info_args *di,
265 struct btrfs_scrub_progress *p, int raw,
266 const char *append, struct scrub_stats *ss)
268 printf("scrub device %s (id %llu) %s\n", di->path, di->devid,
269 append ? append : "");
277 print_scrub_summary(p);
281 static void print_fs_stat(struct scrub_fs_stat *fs_stat, int raw)
283 _print_scrub_ss(&fs_stat->s);
286 print_scrub_full(&fs_stat->p);
288 print_scrub_summary(&fs_stat->p);
291 static void free_history(struct scrub_file_record **last_scrubs)
293 struct scrub_file_record **l = last_scrubs;
302 * cancels a running scrub and makes the master process record the current
303 * progress status before exiting.
305 static int cancel_fd = -1;
306 static void scrub_sigint_record_progress(int signal)
310 ret = ioctl(cancel_fd, BTRFS_IOC_SCRUB_CANCEL, NULL);
312 perror("Scrub cancel failed");
315 static int scrub_handle_sigint_parent(void)
317 struct sigaction sa = {
318 .sa_handler = SIG_IGN,
319 .sa_flags = SA_RESTART,
322 return sigaction(SIGINT, &sa, NULL);
325 static int scrub_handle_sigint_child(int fd)
327 struct sigaction sa = {
328 .sa_handler = fd == -1 ? SIG_DFL : scrub_sigint_record_progress,
332 return sigaction(SIGINT, &sa, NULL);
335 static int scrub_datafile(const char *fn_base, const char *fn_local,
336 const char *fn_tmp, char *datafile, int size)
341 datafile[end + 1] = '\0';
342 strncpy(datafile, fn_base, end);
343 ret = strlen(datafile);
349 strncpy(datafile + ret + 1, fn_local, end - ret - 1);
350 ret = strlen(datafile);
357 strncpy(datafile + ret + 1, fn_tmp, end - ret - 1);
358 ret = strlen(datafile);
367 static int scrub_open_file(const char *datafile, int m)
372 fd = open(datafile, m, 0600);
376 ret = flock(fd, LOCK_EX|LOCK_NB);
386 static int scrub_open_file_r(const char *fn_base, const char *fn_local)
389 char datafile[PATH_MAX];
390 ret = scrub_datafile(fn_base, fn_local, NULL,
391 datafile, sizeof(datafile));
394 return scrub_open_file(datafile, O_RDONLY);
397 static int scrub_open_file_w(const char *fn_base, const char *fn_local,
401 char datafile[PATH_MAX];
402 ret = scrub_datafile(fn_base, fn_local, tmp,
403 datafile, sizeof(datafile));
406 return scrub_open_file(datafile, O_WRONLY|O_CREAT);
409 static int scrub_rename_file(const char *fn_base, const char *fn_local,
413 char datafile_old[PATH_MAX];
414 char datafile_new[PATH_MAX];
415 ret = scrub_datafile(fn_base, fn_local, tmp,
416 datafile_old, sizeof(datafile_old));
419 ret = scrub_datafile(fn_base, fn_local, NULL,
420 datafile_new, sizeof(datafile_new));
423 ret = rename(datafile_old, datafile_new);
424 return ret ? -errno : 0;
427 #define _SCRUB_KVREAD(ret, i, name, avail, l, dest) if (ret == 0) { \
428 ret = scrub_kvread(i, sizeof(#name), avail, l, #name, dest.name); \
432 * returns 0 if the key did not match (nothing was read)
433 * 1 if the key did match (success)
434 * -1 if the key did match and an error occurred
436 static int scrub_kvread(int *i, int len, int avail, const char *buf,
437 const char *key, u64 *dest)
441 if (*i + len + 1 < avail && strncmp(&buf[*i], key, len - 1) == 0) {
446 for (j = 0; isdigit(buf[*i + j]) && *i + j < avail; ++j)
450 *dest = atoll(&buf[*i]);
458 #define _SCRUB_INVALID do { \
460 warning("invalid data on line %d pos " \
461 "%d state %d (near \"%.*s\") at %s:%d", \
462 lineno, i, state, 20 > avail ? avail : 20, \
463 l + i, __FILE__, __LINE__); \
467 static struct scrub_file_record **scrub_read_file(int fd, int report_errors)
480 char empty_uuid[BTRFS_FSID_SIZE] = {0};
481 struct scrub_file_record **p = NULL;
484 old_avail = avail - i;
486 error("scrub record file corrupted near byte %d", i);
487 return ERR_PTR(-EINVAL);
490 memmove(l, l + i, old_avail);
491 avail = read(fd, l + old_avail, sizeof(l) - old_avail);
494 if (avail == 0 && old_avail == 0) {
496 memcmp(p[curr]->fsid, empty_uuid, BTRFS_FSID_SIZE) == 0) {
498 } else if (curr == -1) {
499 p = ERR_PTR(-ENODATA);
505 return ERR_PTR(-errno);
514 case 0: /* start of file */
515 ret = scrub_kvread(&i,
516 sizeof(SCRUB_FILE_VERSION_PREFIX), avail, l,
517 SCRUB_FILE_VERSION_PREFIX, &version);
520 if (version != atoll(SCRUB_FILE_VERSION))
521 return ERR_PTR(-ENOTSUP);
524 case 1: /* start of line, alloc */
526 * this state makes sure we have a complete line in
527 * further processing, so we don't need wrap-tracking
530 if (!eof && !memchr(l + i, '\n', avail - i))
533 if (curr > -1 && memcmp(p[curr]->fsid, empty_uuid,
534 BTRFS_FSID_SIZE) == 0) {
540 p = realloc(p, (curr + 2) * sizeof(*p));
543 return ERR_PTR(-errno);
545 p[curr] = malloc(sizeof(**p));
548 return ERR_PTR(-errno);
550 memset(p[curr], 0, sizeof(**p));
554 case 2: /* start of line, skip space */
555 while (isspace(l[i]) && i < avail) {
561 (!eof && !memchr(l + i, '\n', avail - i)))
565 case 3: /* read fsid */
568 for (j = 0; l[i + j] != ':' && i + j < avail; ++j)
570 if (i + j + 1 >= avail)
572 if (j != BTRFS_UUID_UNPARSED_SIZE - 1)
575 ret = uuid_parse(l + i, p[curr]->fsid);
581 case 4: /* read dev id */
582 for (j = 0; isdigit(l[i + j]) && i+j < avail; ++j)
584 if (j == 0 || i + j + 1 >= avail)
586 p[curr]->devid = atoll(&l[i]);
590 case 5: /* read key/value pair */
592 _SCRUB_KVREAD(ret, &i, data_extents_scrubbed, avail, l,
594 _SCRUB_KVREAD(ret, &i, data_extents_scrubbed, avail, l,
596 _SCRUB_KVREAD(ret, &i, tree_extents_scrubbed, avail, l,
598 _SCRUB_KVREAD(ret, &i, data_bytes_scrubbed, avail, l,
600 _SCRUB_KVREAD(ret, &i, tree_bytes_scrubbed, avail, l,
602 _SCRUB_KVREAD(ret, &i, read_errors, avail, l,
604 _SCRUB_KVREAD(ret, &i, csum_errors, avail, l,
606 _SCRUB_KVREAD(ret, &i, verify_errors, avail, l,
608 _SCRUB_KVREAD(ret, &i, no_csum, avail, l,
610 _SCRUB_KVREAD(ret, &i, csum_discards, avail, l,
612 _SCRUB_KVREAD(ret, &i, super_errors, avail, l,
614 _SCRUB_KVREAD(ret, &i, malloc_errors, avail, l,
616 _SCRUB_KVREAD(ret, &i, uncorrectable_errors, avail, l,
618 _SCRUB_KVREAD(ret, &i, corrected_errors, avail, l,
620 _SCRUB_KVREAD(ret, &i, last_physical, avail, l,
622 _SCRUB_KVREAD(ret, &i, finished, avail, l,
624 _SCRUB_KVREAD(ret, &i, t_start, avail, l,
625 (u64 *)&p[curr]->stats);
626 _SCRUB_KVREAD(ret, &i, t_resumed, avail, l,
627 (u64 *)&p[curr]->stats);
628 _SCRUB_KVREAD(ret, &i, duration, avail, l,
629 (u64 *)&p[curr]->stats);
630 _SCRUB_KVREAD(ret, &i, canceled, avail, l,
636 case 6: /* after number */
639 else if (l[i] == '\n')
645 case 99: /* skip rest of line */
650 if (l[i - 1] == '\n') {
657 error("internal error: unknown parser state %d near byte %d",
659 return ERR_PTR(-EINVAL);
664 static int scrub_write_buf(int fd, const void *data, int len)
667 ret = write(fd, data, len);
671 static int scrub_writev(int fd, char *buf, int max, const char *fmt, ...)
672 __attribute__ ((format (printf, 4, 5)));
673 static int scrub_writev(int fd, char *buf, int max, const char *fmt, ...)
679 ret = vsnprintf(buf, max, fmt, args);
683 return scrub_write_buf(fd, buf, ret);
686 #define _SCRUB_SUM(dest, data, name) dest->scrub_args.progress.name = \
687 data->resumed->p.name + data->scrub_args.progress.name
689 static struct scrub_progress *scrub_resumed_stats(struct scrub_progress *data,
690 struct scrub_progress *dest)
692 if (!data->resumed || data->skip)
695 _SCRUB_SUM(dest, data, data_extents_scrubbed);
696 _SCRUB_SUM(dest, data, tree_extents_scrubbed);
697 _SCRUB_SUM(dest, data, data_bytes_scrubbed);
698 _SCRUB_SUM(dest, data, tree_bytes_scrubbed);
699 _SCRUB_SUM(dest, data, read_errors);
700 _SCRUB_SUM(dest, data, csum_errors);
701 _SCRUB_SUM(dest, data, verify_errors);
702 _SCRUB_SUM(dest, data, no_csum);
703 _SCRUB_SUM(dest, data, csum_discards);
704 _SCRUB_SUM(dest, data, super_errors);
705 _SCRUB_SUM(dest, data, malloc_errors);
706 _SCRUB_SUM(dest, data, uncorrectable_errors);
707 _SCRUB_SUM(dest, data, corrected_errors);
708 _SCRUB_SUM(dest, data, last_physical);
709 dest->stats.canceled = data->stats.canceled;
710 dest->stats.finished = data->stats.finished;
711 dest->stats.t_resumed = data->stats.t_start;
712 dest->stats.t_start = data->resumed->stats.t_start;
713 dest->stats.duration = data->resumed->stats.duration +
714 data->stats.duration;
715 dest->scrub_args.devid = data->scrub_args.devid;
719 #define _SCRUB_KVWRITE(fd, buf, name, use) \
720 scrub_kvwrite(fd, buf, sizeof(buf), #name, \
721 use->scrub_args.progress.name)
723 #define _SCRUB_KVWRITE_STATS(fd, buf, name, use) \
724 scrub_kvwrite(fd, buf, sizeof(buf), #name, \
727 static int scrub_kvwrite(int fd, char *buf, int max, const char *key, u64 val)
729 return scrub_writev(fd, buf, max, "|%s:%lld", key, val);
732 static int scrub_write_file(int fd, const char *fsid,
733 struct scrub_progress *data, int n)
738 struct scrub_progress local;
739 struct scrub_progress *use;
744 /* each -1 is to subtract one \0 byte, the + 2 is for ':' and '\n' */
745 ret = scrub_write_buf(fd, SCRUB_FILE_VERSION_PREFIX ":"
746 SCRUB_FILE_VERSION "\n",
747 (sizeof(SCRUB_FILE_VERSION_PREFIX) - 1) +
748 (sizeof(SCRUB_FILE_VERSION) - 1) + 2);
752 for (i = 0; i < n; ++i) {
753 use = scrub_resumed_stats(&data[i], &local);
754 if (scrub_write_buf(fd, fsid, strlen(fsid)) ||
755 scrub_write_buf(fd, ":", 1) ||
756 scrub_writev(fd, buf, sizeof(buf), "%lld",
757 use->scrub_args.devid) ||
758 scrub_write_buf(fd, buf, ret) ||
759 _SCRUB_KVWRITE(fd, buf, data_extents_scrubbed, use) ||
760 _SCRUB_KVWRITE(fd, buf, tree_extents_scrubbed, use) ||
761 _SCRUB_KVWRITE(fd, buf, data_bytes_scrubbed, use) ||
762 _SCRUB_KVWRITE(fd, buf, tree_bytes_scrubbed, use) ||
763 _SCRUB_KVWRITE(fd, buf, read_errors, use) ||
764 _SCRUB_KVWRITE(fd, buf, csum_errors, use) ||
765 _SCRUB_KVWRITE(fd, buf, verify_errors, use) ||
766 _SCRUB_KVWRITE(fd, buf, no_csum, use) ||
767 _SCRUB_KVWRITE(fd, buf, csum_discards, use) ||
768 _SCRUB_KVWRITE(fd, buf, super_errors, use) ||
769 _SCRUB_KVWRITE(fd, buf, malloc_errors, use) ||
770 _SCRUB_KVWRITE(fd, buf, uncorrectable_errors, use) ||
771 _SCRUB_KVWRITE(fd, buf, corrected_errors, use) ||
772 _SCRUB_KVWRITE(fd, buf, last_physical, use) ||
773 _SCRUB_KVWRITE_STATS(fd, buf, t_start, use) ||
774 _SCRUB_KVWRITE_STATS(fd, buf, t_resumed, use) ||
775 _SCRUB_KVWRITE_STATS(fd, buf, duration, use) ||
776 _SCRUB_KVWRITE_STATS(fd, buf, canceled, use) ||
777 _SCRUB_KVWRITE_STATS(fd, buf, finished, use) ||
778 scrub_write_buf(fd, "\n", 1)) {
786 static int scrub_write_progress(pthread_mutex_t *m, const char *fsid,
787 struct scrub_progress *data, int n)
794 ret = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &old);
800 ret = pthread_mutex_lock(m);
806 fd = scrub_open_file_w(SCRUB_DATA_FILE, fsid, "tmp");
811 err = scrub_write_file(fd, fsid, data, n);
814 err = scrub_rename_file(SCRUB_DATA_FILE, fsid, "tmp");
825 ret = pthread_mutex_unlock(m);
830 ret = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &old);
838 static void *scrub_one_dev(void *ctx)
840 struct scrub_progress *sp = ctx;
844 sp->stats.canceled = 0;
845 sp->stats.duration = 0;
846 sp->stats.finished = 0;
848 ret = syscall(SYS_ioprio_set, IOPRIO_WHO_PROCESS, 0,
849 IOPRIO_PRIO_VALUE(sp->ioprio_class,
850 sp->ioprio_classdata));
852 warning("setting ioprio failed: %s (ignored)",
855 ret = ioctl(sp->fd, BTRFS_IOC_SCRUB, &sp->scrub_args);
856 gettimeofday(&tv, NULL);
858 sp->stats.duration = tv.tv_sec - sp->stats.t_start;
859 sp->stats.canceled = !!ret;
860 sp->ioctl_errno = errno;
861 ret = pthread_mutex_lock(&sp->progress_mutex);
863 return ERR_PTR(-ret);
864 sp->stats.finished = 1;
865 ret = pthread_mutex_unlock(&sp->progress_mutex);
867 return ERR_PTR(-ret);
872 static void *progress_one_dev(void *ctx)
874 struct scrub_progress *sp = ctx;
876 sp->ret = ioctl(sp->fd, BTRFS_IOC_SCRUB_PROGRESS, &sp->scrub_args);
877 sp->ioctl_errno = errno;
882 /* nb: returns a negative errno via ERR_PTR */
883 static void *scrub_progress_cycle(void *ctx)
886 int perr = 0; /* positive / pthread error returns */
889 char fsid[BTRFS_UUID_UNPARSED_SIZE];
890 struct scrub_progress *sp;
891 struct scrub_progress *sp_last;
892 struct scrub_progress *sp_shared;
894 struct scrub_progress_cycle *spc = ctx;
895 int ndev = spc->fi->num_devices;
899 struct pollfd accept_poll_fd = {
904 struct pollfd write_poll_fd = {
908 struct sockaddr_un peer;
909 socklen_t peer_size = sizeof(peer);
911 perr = pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &old);
915 uuid_unparse(spc->fi->fsid, fsid);
917 for (i = 0; i < ndev; ++i) {
918 sp = &spc->progress[i];
919 sp_last = &spc->progress[i + ndev];
920 sp_shared = &spc->shared_progress[i];
921 sp->scrub_args.devid = sp_last->scrub_args.devid =
922 sp_shared->scrub_args.devid;
923 sp->fd = sp_last->fd = spc->fdmnt;
924 sp->stats.t_start = sp_last->stats.t_start =
925 sp_shared->stats.t_start;
926 sp->resumed = sp_last->resumed = sp_shared->resumed;
927 sp->skip = sp_last->skip = sp_shared->skip;
928 sp->stats.finished = sp_last->stats.finished =
929 sp_shared->stats.finished;
933 ret = poll(&accept_poll_fd, 1, 5 * 1000);
939 peer_fd = accept(spc->prg_fd, (struct sockaddr *)&peer,
941 gettimeofday(&tv, NULL);
944 for (i = 0; i < ndev; ++i) {
945 sp = &spc->progress[this * ndev + i];
946 sp_last = &spc->progress[last * ndev + i];
947 sp_shared = &spc->shared_progress[i];
948 if (sp->stats.finished)
950 progress_one_dev(sp);
951 sp->stats.duration = tv.tv_sec - sp->stats.t_start;
954 if (sp->ioctl_errno != ENOTCONN &&
955 sp->ioctl_errno != ENODEV) {
956 ret = -sp->ioctl_errno;
960 * scrub finished or device removed, check the
961 * finished flag. if unset, just use the last
962 * result we got for the current write and go
963 * on. flag should be set on next cycle, then.
965 perr = pthread_setcancelstate(
966 PTHREAD_CANCEL_DISABLE, &old);
969 perr = pthread_mutex_lock(&sp_shared->progress_mutex);
972 if (!sp_shared->stats.finished) {
973 perr = pthread_mutex_unlock(
974 &sp_shared->progress_mutex);
977 perr = pthread_setcancelstate(
978 PTHREAD_CANCEL_ENABLE, &old);
981 memcpy(sp, sp_last, sizeof(*sp));
984 perr = pthread_mutex_unlock(&sp_shared->progress_mutex);
987 perr = pthread_setcancelstate(
988 PTHREAD_CANCEL_ENABLE, &old);
991 memcpy(sp, sp_shared, sizeof(*sp));
992 memcpy(sp_last, sp_shared, sizeof(*sp));
995 write_poll_fd.fd = peer_fd;
996 ret = poll(&write_poll_fd, 1, 0);
1002 ret = scrub_write_file(
1004 &spc->progress[this * ndev], ndev);
1011 if (!spc->do_record)
1013 ret = scrub_write_progress(spc->write_mutex, fsid,
1014 &spc->progress[this * ndev], ndev);
1023 return ERR_PTR(ret);
1026 static struct scrub_file_record *last_dev_scrub(
1027 struct scrub_file_record *const *const past_scrubs, u64 devid)
1031 if (!past_scrubs || IS_ERR(past_scrubs))
1034 for (i = 0; past_scrubs[i]; ++i)
1035 if (past_scrubs[i]->devid == devid)
1036 return past_scrubs[i];
1041 static int mkdir_p(char *path)
1046 for (i = 1; i < strlen(path); ++i) {
1050 ret = mkdir(path, 0777);
1051 if (ret && errno != EEXIST)
1059 static int is_scrub_running_on_fs(struct btrfs_ioctl_fs_info_args *fi_args,
1060 struct btrfs_ioctl_dev_info_args *di_args,
1061 struct scrub_file_record **past_scrubs)
1065 if (!fi_args || !di_args || !past_scrubs)
1068 for (i = 0; i < fi_args->num_devices; i++) {
1069 struct scrub_file_record *sfr =
1070 last_dev_scrub(past_scrubs, di_args[i].devid);
1074 if (!(sfr->stats.finished || sfr->stats.canceled))
1080 static int is_scrub_running_in_kernel(int fd,
1081 struct btrfs_ioctl_dev_info_args *di_args, u64 max_devices)
1083 struct scrub_progress sp;
1087 for (i = 0; i < max_devices; i++) {
1088 memset(&sp, 0, sizeof(sp));
1089 sp.scrub_args.devid = di_args[i].devid;
1090 ret = ioctl(fd, BTRFS_IOC_SCRUB_PROGRESS, &sp.scrub_args);
1098 static const char * const cmd_scrub_start_usage[];
1099 static const char * const cmd_scrub_resume_usage[];
1101 static int scrub_start(int argc, char **argv, int resume)
1111 int e_uncorrectable = 0;
1112 int e_correctable = 0;
1115 int do_background = 1;
1121 int do_stats_per_dev = 0;
1122 int ioprio_class = IOPRIO_CLASS_IDLE;
1123 int ioprio_classdata = 0;
1127 struct btrfs_ioctl_fs_info_args fi_args;
1128 struct btrfs_ioctl_dev_info_args *di_args = NULL;
1129 struct scrub_progress *sp = NULL;
1130 struct scrub_fs_stat fs_stat;
1132 struct sockaddr_un addr = {
1133 .sun_family = AF_UNIX,
1135 pthread_t *t_devs = NULL;
1137 struct scrub_file_record **past_scrubs = NULL;
1138 struct scrub_file_record *last_scrub = NULL;
1139 char *datafile = strdup(SCRUB_DATA_FILE);
1140 char fsid[BTRFS_UUID_UNPARSED_SIZE];
1141 char sock_path[PATH_MAX] = "";
1142 struct scrub_progress_cycle spc;
1143 pthread_mutex_t spc_write_mutex = PTHREAD_MUTEX_INITIALIZER;
1146 DIR *dirstream = NULL;
1148 int nothing_to_resume = 0;
1150 while ((c = getopt(argc, argv, "BdqrRc:n:f")) != -1) {
1158 do_stats_per_dev = 1;
1170 ioprio_class = (int)strtol(optarg, NULL, 10);
1173 ioprio_classdata = (int)strtol(optarg, NULL, 10);
1180 usage(resume ? cmd_scrub_resume_usage :
1181 cmd_scrub_start_usage);
1185 /* try to catch most error cases before forking */
1187 if (check_argc_exact(argc - optind, 1)) {
1188 usage(resume ? cmd_scrub_resume_usage :
1189 cmd_scrub_start_usage);
1192 spc.progress = NULL;
1193 if (do_quiet && do_print)
1196 if (mkdir_p(datafile)) {
1197 warning_on(!do_quiet,
1198 "cannot create scrub data file, mkdir %s failed: %s. Status recording disabled",
1199 datafile, strerror(errno));
1204 path = argv[optind];
1206 fdmnt = open_path_or_dev_mnt(path, &dirstream, !do_quiet);
1210 ret = get_fs_info(path, &fi_args, &di_args);
1213 "getting dev info for scrub failed: %s",
1218 if (!fi_args.num_devices) {
1219 error_on(!do_quiet, "no devices found");
1224 uuid_unparse(fi_args.fsid, fsid);
1225 fdres = scrub_open_file_r(SCRUB_DATA_FILE, fsid);
1226 if (fdres < 0 && fdres != -ENOENT) {
1227 warning_on(!do_quiet, "failed to open status file: %s",
1229 } else if (fdres >= 0) {
1230 past_scrubs = scrub_read_file(fdres, !do_quiet);
1231 if (IS_ERR(past_scrubs))
1232 warning_on(!do_quiet, "failed to read status file: %s",
1233 strerror(-PTR_ERR(past_scrubs)));
1238 * Check for stale information in the status file, ie. if it's
1239 * canceled=0, finished=0 but no scrub is running.
1241 if (!is_scrub_running_in_kernel(fdmnt, di_args, fi_args.num_devices))
1245 * check whether any involved device is already busy running a
1246 * scrub. This would cause damaged status messages and the state
1247 * "aborted" without the explanation that a scrub was already
1248 * running. Therefore check it first, prevent it and give some
1249 * feedback to the user if scrub is already running.
1250 * Note that if scrub is started with a block device as the
1251 * parameter, only that particular block device is checked. It
1252 * is a normal mode of operation to start scrub on multiple
1253 * single devices, there is no reason to prevent this.
1255 if (!force && is_scrub_running_on_fs(&fi_args, di_args, past_scrubs)) {
1257 "Scrub is already running.\n"
1258 "To cancel use 'btrfs scrub cancel %s'.\n"
1259 "To see the status use 'btrfs scrub status [-d] %s'",
1265 t_devs = malloc(fi_args.num_devices * sizeof(*t_devs));
1266 sp = calloc(fi_args.num_devices, sizeof(*sp));
1267 spc.progress = calloc(fi_args.num_devices * 2, sizeof(*spc.progress));
1269 if (!t_devs || !sp || !spc.progress) {
1270 error_on(!do_quiet, "scrub failed: %s", strerror(errno));
1275 for (i = 0; i < fi_args.num_devices; ++i) {
1276 devid = di_args[i].devid;
1277 ret = pthread_mutex_init(&sp[i].progress_mutex, NULL);
1279 error_on(!do_quiet, "pthread_mutex_init failed: %s",
1284 last_scrub = last_dev_scrub(past_scrubs, devid);
1285 sp[i].scrub_args.devid = devid;
1287 if (resume && last_scrub && (last_scrub->stats.canceled ||
1288 !last_scrub->stats.finished)) {
1290 sp[i].scrub_args.start = last_scrub->p.last_physical;
1291 sp[i].resumed = last_scrub;
1292 } else if (resume) {
1295 sp[i].resumed = last_scrub;
1299 sp[i].scrub_args.start = 0ll;
1300 sp[i].resumed = NULL;
1303 sp[i].scrub_args.end = (u64)-1ll;
1304 sp[i].scrub_args.flags = readonly ? BTRFS_SCRUB_READONLY : 0;
1305 sp[i].ioprio_class = ioprio_class;
1306 sp[i].ioprio_classdata = ioprio_classdata;
1309 if (!n_start && !n_resume) {
1311 printf("scrub: nothing to resume for %s, fsid %s\n",
1313 nothing_to_resume = 1;
1317 ret = prg_fd = socket(AF_UNIX, SOCK_STREAM, 0);
1319 ret = scrub_datafile(SCRUB_PROGRESS_SOCKET_PATH, fsid, NULL,
1320 sock_path, sizeof(sock_path));
1321 /* ignore EOVERFLOW, try using a shorter path for the socket */
1322 addr.sun_path[sizeof(addr.sun_path) - 1] = '\0';
1323 strncpy(addr.sun_path, sock_path, sizeof(addr.sun_path) - 1);
1324 ret = bind(prg_fd, (struct sockaddr *)&addr, sizeof(addr));
1325 if (ret != -1 || errno != EADDRINUSE)
1328 * bind failed with EADDRINUSE. so let's see if anyone answers
1329 * when we make a call to the socket ...
1331 ret = connect(prg_fd, (struct sockaddr *)&addr, sizeof(addr));
1332 if (!ret || errno != ECONNREFUSED) {
1333 /* ... yes, so scrub must be running. error out */
1334 error("scrub already running");
1340 * ... no, this means someone left us alone with an unused
1341 * socket in the file system. remove it and try again.
1343 ret = unlink(sock_path);
1346 ret = listen(prg_fd, 100);
1348 warning_on(!do_quiet,
1349 "failed to open the progress status socket at %s: %s. Progress cannot be queried",
1350 sock_path[0] ? sock_path :
1351 SCRUB_PROGRESS_SOCKET_PATH, strerror(errno));
1361 /* write all-zero progress file for a start */
1362 ret = scrub_write_progress(&spc_write_mutex, fsid, sp,
1363 fi_args.num_devices);
1365 warning_on(!do_quiet,
1366 "failed to write the progress status file: %s. Status recording disabled",
1372 if (do_background) {
1375 error_on(!do_quiet, "cannot scrub, fork failed: %s",
1383 scrub_handle_sigint_parent();
1385 printf("scrub %s on %s, fsid %s (pid=%d)\n",
1386 n_start ? "started" : "resumed",
1394 error_on(!do_quiet, "wait failed (ret=%d): %s",
1395 ret, strerror(errno));
1399 if (!WIFEXITED(stat) || WEXITSTATUS(stat)) {
1400 error_on(!do_quiet, "scrub process failed");
1401 err = WIFEXITED(stat) ? WEXITSTATUS(stat) : -1;
1409 scrub_handle_sigint_child(fdmnt);
1411 for (i = 0; i < fi_args.num_devices; ++i) {
1413 sp[i].scrub_args.progress = sp[i].resumed->p;
1414 sp[i].stats = sp[i].resumed->stats;
1416 sp[i].stats.finished = 1;
1419 devid = di_args[i].devid;
1420 gettimeofday(&tv, NULL);
1421 sp[i].stats.t_start = tv.tv_sec;
1422 ret = pthread_create(&t_devs[i], NULL,
1423 scrub_one_dev, &sp[i]);
1426 error("creating scrub_one_dev[%llu] thread failed: %s",
1427 devid, strerror(ret));
1434 spc.prg_fd = prg_fd;
1435 spc.do_record = do_record;
1436 spc.write_mutex = &spc_write_mutex;
1437 spc.shared_progress = sp;
1439 ret = pthread_create(&t_prog, NULL, scrub_progress_cycle, &spc);
1442 error("creating progress thread failed: %s",
1449 for (i = 0; i < fi_args.num_devices; ++i) {
1452 devid = di_args[i].devid;
1453 ret = pthread_join(t_devs[i], NULL);
1456 error("pthread_join failed for scrub_one_dev[%llu]: %s",
1457 devid, strerror(ret));
1462 switch (sp[i].ioctl_errno) {
1465 warning("device %lld not present",
1473 error("scrubbing %s failed for device id %lld: ret=%d, errno=%d (%s)",
1475 sp[i].ret, sp[i].ioctl_errno,
1476 strerror(sp[i].ioctl_errno));
1481 if (sp[i].scrub_args.progress.uncorrectable_errors > 0)
1483 if (sp[i].scrub_args.progress.corrected_errors > 0
1484 || sp[i].scrub_args.progress.unverified_errors > 0)
1489 const char *append = "done";
1490 if (!do_stats_per_dev)
1491 init_fs_stat(&fs_stat);
1492 for (i = 0; i < fi_args.num_devices; ++i) {
1493 if (do_stats_per_dev) {
1494 print_scrub_dev(&di_args[i],
1495 &sp[i].scrub_args.progress,
1497 sp[i].ret ? "canceled" : "done",
1501 append = "canceled";
1502 add_to_fs_stat(&sp[i].scrub_args.progress,
1503 &sp[i].stats, &fs_stat);
1506 if (!do_stats_per_dev) {
1507 printf("scrub %s for %s\n", append, fsid);
1508 print_fs_stat(&fs_stat, print_raw);
1512 ret = pthread_cancel(t_prog);
1514 ret = pthread_join(t_prog, &terr);
1516 /* check for errors from the handling of the progress thread */
1517 if (do_print && ret) {
1518 error("progress thread handling failed: %s",
1522 /* check for errors returned from the progress thread itself */
1523 if (do_print && terr && terr != PTHREAD_CANCELED)
1524 error("recording progress failed: %s",
1525 strerror(-PTR_ERR(terr)));
1528 ret = scrub_write_progress(&spc_write_mutex, fsid, sp,
1529 fi_args.num_devices);
1530 if (ret && do_print)
1531 error("failed to record the result: %s",
1535 scrub_handle_sigint_child(-1);
1538 free_history(past_scrubs);
1548 close_file_or_dir(fdmnt, dirstream);
1552 if (nothing_to_resume)
1554 if (e_uncorrectable) {
1555 error_on(!do_quiet, "there are uncorrectable errors");
1559 warning_on(!do_quiet,
1560 "errors detected during scrubbing, corrected");
1565 static const char * const cmd_scrub_start_usage[] = {
1566 "btrfs scrub start [-BdqrRf] [-c ioprio_class -n ioprio_classdata] <path>|<device>",
1567 "Start a new scrub. If a scrub is already running, the new one fails.",
1569 "-B do not background",
1570 "-d stats per device (-B only)",
1572 "-r read only mode",
1573 "-R raw print mode, print full data instead of summary",
1574 "-c set ioprio class (see ionice(1) manpage)",
1575 "-n set ioprio classdata (see ionice(1) manpage)",
1576 "-f force starting new scrub even if a scrub is already running",
1577 " this is useful when scrub stats record file is damaged",
1581 static int cmd_scrub_start(int argc, char **argv)
1583 return scrub_start(argc, argv, 0);
1586 static const char * const cmd_scrub_cancel_usage[] = {
1587 "btrfs scrub cancel <path>|<device>",
1588 "Cancel a running scrub",
1592 static int cmd_scrub_cancel(int argc, char **argv)
1597 DIR *dirstream = NULL;
1599 clean_args_no_options(argc, argv, cmd_scrub_cancel_usage);
1601 if (check_argc_exact(argc - optind, 1))
1602 usage(cmd_scrub_cancel_usage);
1604 path = argv[optind];
1606 fdmnt = open_path_or_dev_mnt(path, &dirstream, 1);
1612 ret = ioctl(fdmnt, BTRFS_IOC_SCRUB_CANCEL, NULL);
1615 error("scrub cancel failed on %s: %s", path,
1616 errno == ENOTCONN ? "not running" : strerror(errno));
1617 if (errno == ENOTCONN)
1625 printf("scrub cancelled\n");
1628 close_file_or_dir(fdmnt, dirstream);
1632 static const char * const cmd_scrub_resume_usage[] = {
1633 "btrfs scrub resume [-BdqrR] [-c ioprio_class -n ioprio_classdata] <path>|<device>",
1634 "Resume previously canceled or interrupted scrub",
1636 "-B do not background",
1637 "-d stats per device (-B only)",
1639 "-r read only mode",
1640 "-R raw print mode, print full data instead of summary",
1641 "-c set ioprio class (see ionice(1) manpage)",
1642 "-n set ioprio classdata (see ionice(1) manpage)",
1646 static int cmd_scrub_resume(int argc, char **argv)
1648 return scrub_start(argc, argv, 1);
1651 static const char * const cmd_scrub_status_usage[] = {
1652 "btrfs scrub status [-dR] <path>|<device>",
1653 "Show status of running or finished scrub",
1655 "-d stats per device",
1656 "-R print raw stats",
1660 static int cmd_scrub_status(int argc, char **argv)
1663 struct btrfs_ioctl_fs_info_args fi_args;
1664 struct btrfs_ioctl_dev_info_args *di_args = NULL;
1665 struct scrub_file_record **past_scrubs = NULL;
1666 struct scrub_file_record *last_scrub;
1667 struct scrub_fs_stat fs_stat;
1668 struct sockaddr_un addr = {
1669 .sun_family = AF_UNIX,
1676 int do_stats_per_dev = 0;
1678 char fsid[BTRFS_UUID_UNPARSED_SIZE];
1681 DIR *dirstream = NULL;
1683 while ((c = getopt(argc, argv, "dR")) != -1) {
1686 do_stats_per_dev = 1;
1693 usage(cmd_scrub_status_usage);
1697 if (check_argc_exact(argc - optind, 1))
1698 usage(cmd_scrub_status_usage);
1700 path = argv[optind];
1702 fdmnt = open_path_or_dev_mnt(path, &dirstream, 1);
1706 ret = get_fs_info(path, &fi_args, &di_args);
1708 error("getting dev info for scrub failed: %s",
1713 if (!fi_args.num_devices) {
1714 error("no devices found");
1719 uuid_unparse(fi_args.fsid, fsid);
1721 fdres = socket(AF_UNIX, SOCK_STREAM, 0);
1723 error("failed to create socket to receive progress information: %s",
1728 scrub_datafile(SCRUB_PROGRESS_SOCKET_PATH, fsid,
1729 NULL, addr.sun_path, sizeof(addr.sun_path));
1730 /* ignore EOVERFLOW, just use shorter name and hope for the best */
1731 addr.sun_path[sizeof(addr.sun_path) - 1] = '\0';
1732 ret = connect(fdres, (struct sockaddr *)&addr, sizeof(addr));
1735 fdres = scrub_open_file_r(SCRUB_DATA_FILE, fsid);
1736 if (fdres < 0 && fdres != -ENOENT) {
1737 warning("failed to open status file: %s",
1745 past_scrubs = scrub_read_file(fdres, 1);
1746 if (IS_ERR(past_scrubs))
1747 warning("failed to read status: %s",
1748 strerror(-PTR_ERR(past_scrubs)));
1750 in_progress = is_scrub_running_in_kernel(fdmnt, di_args, fi_args.num_devices);
1752 printf("scrub status for %s\n", fsid);
1754 if (do_stats_per_dev) {
1755 for (i = 0; i < fi_args.num_devices; ++i) {
1756 last_scrub = last_dev_scrub(past_scrubs,
1759 print_scrub_dev(&di_args[i], NULL, print_raw,
1763 last_scrub->stats.in_progress = in_progress;
1764 print_scrub_dev(&di_args[i], &last_scrub->p, print_raw,
1765 last_scrub->stats.finished ?
1766 "history" : "status",
1767 &last_scrub->stats);
1770 init_fs_stat(&fs_stat);
1771 fs_stat.s.in_progress = in_progress;
1772 for (i = 0; i < fi_args.num_devices; ++i) {
1773 last_scrub = last_dev_scrub(past_scrubs,
1777 add_to_fs_stat(&last_scrub->p, &last_scrub->stats,
1780 print_fs_stat(&fs_stat, print_raw);
1784 free_history(past_scrubs);
1788 close_file_or_dir(fdmnt, dirstream);
1793 static const char scrub_cmd_group_info[] =
1794 "verify checksums of data and metadata";
1796 const struct cmd_group scrub_cmd_group = {
1797 scrub_cmd_group_usage, scrub_cmd_group_info, {
1798 { "start", cmd_scrub_start, cmd_scrub_start_usage, NULL, 0 },
1799 { "cancel", cmd_scrub_cancel, cmd_scrub_cancel_usage, NULL, 0 },
1800 { "resume", cmd_scrub_resume, cmd_scrub_resume_usage, NULL, 0 },
1801 { "status", cmd_scrub_status, cmd_scrub_status_usage, NULL, 0 },
1806 int cmd_scrub(int argc, char **argv)
1808 return handle_command_group(&scrub_cmd_group, argc, argv);