From: "zhangyi (F)" <yi.zhang@huawei.com>
To: linux-unionfs@vger.kernel.org, fstests@vger.kernel.org
Cc: miklos@szeredi.hu, amir73il@gmail.com, eguan@redhat.com,
yi.zhang@huawei.com, miaoxie@huawei.com, yangerkun@huawei.com
Subject: [PATCH v3 2/6] fsck.overlay: add -n -p and -y options
Date: Thu, 28 Dec 2017 19:40:19 +0800 [thread overview]
Message-ID: <20171228114023.43999-3-yi.zhang@huawei.com> (raw)
In-Reply-To: <20171228114023.43999-1-yi.zhang@huawei.com>
Add -n -p and -y options to make it official as fsck utilities.
-p, automatic repair (no questions)
-n, make no changes to the filesystem
-y, assume "yes" to all questions
Signed-off-by: zhangyi (F) <yi.zhang@huawei.com>
---
README.md | 6 ++++--
fsck.c | 36 ++++++++++++++++++++++++++++++------
lib.c | 3 ++-
lib.h | 6 +++++-
4 files changed, 41 insertions(+), 10 deletions(-)
diff --git a/README.md b/README.md
index c2acb65..458a815 100644
--- a/README.md
+++ b/README.md
@@ -44,14 +44,16 @@ Usage
2. Run fsck.overlay program:
Usage:
- fsck.overlay [-l lowerdir] [-u upperdir] [-w workdir] [-avhV]
+ fsck.overlay [-l lowerdir] [-u upperdir] [-w workdir] [-pnyvhV]
Options:
-l, --lowerdir=LOWERDIR specify lower directories of overlayfs,
multiple lower use ':' as separator.
-u, --upperdir=UPPERDIR specify upper directory of overlayfs
-w, --workdir=WORKDIR specify work directory of overlayfs
- -a, --auto repair automatically (no questions)
+ -p, automatic repair (no questions)
+ -n, make no changes to the filesystem
+ -y, assume "yes" to all questions
-v, --verbose print more messages of overlayfs
-h, --help display this usage of overlayfs
-V, --version display version information
diff --git a/fsck.c b/fsck.c
index d4e861a..44211f7 100644
--- a/fsck.c
+++ b/fsck.c
@@ -62,13 +62,15 @@ static void ovl_clean_lowerdirs(void)
static void usage(void)
{
print_info(_("Usage:\n\t%s [-l lowerdir] [-u upperdir] [-w workdir] "
- "[-avhV]\n\n"), program_name);
+ "[-pnyvhV]\n\n"), program_name);
print_info(_("Options:\n"
"-l, --lowerdir=LOWERDIR specify lower directories of overlayfs,\n"
" multiple lower use ':' as separator\n"
"-u, --upperdir=UPPERDIR specify upper directory of overlayfs\n"
"-w, --workdir=WORKDIR specify work directory of overlayfs\n"
- "-a, --auto repair automatically (no questions)\n"
+ "-p, automatic repair (no questions)\n"
+ "-n, make no changes to the filesystem\n"
+ "-y, assume \"yes\" to all questions\n"
"-v, --verbose print more messages of overlayfs\n"
"-h, --help display this usage of overlayfs\n"
"-V, --version display version information\n"));
@@ -81,19 +83,19 @@ static void parse_options(int argc, char *argv[])
int c;
int ret = 0;
bool show_usage = false;
+ bool opt_conflict = false;
struct option long_options[] = {
{"lowerdir", required_argument, NULL, 'l'},
{"upperdir", required_argument, NULL, 'u'},
{"workdir", required_argument, NULL, 'w'},
- {"auto", no_argument, NULL, 'a'},
{"verbose", no_argument, NULL, 'v'},
{"version", no_argument, NULL, 'V'},
{"help", no_argument, NULL, 'h'},
{NULL, 0, NULL, 0}
};
- while ((c = getopt_long(argc, argv, "l:u:w:avVh", long_options, NULL)) != -1) {
+ while ((c = getopt_long(argc, argv, "l:u:w:apnyvVh", long_options, NULL)) != -1) {
switch (c) {
case 'l':
lowertemp = strdup(optarg);
@@ -119,7 +121,23 @@ static void parse_options(int argc, char *argv[])
}
break;
case 'a':
- flags |= FL_AUTO;
+ case 'p':
+ if (flags & (FL_OPT_YES | FL_OPT_NO))
+ opt_conflict = true;
+ else
+ flags |= FL_OPT_AUTO;
+ break;
+ case 'n':
+ if (flags & (FL_OPT_YES | FL_OPT_AUTO))
+ opt_conflict = true;
+ else
+ flags |= FL_OPT_NO;
+ break;
+ case 'y':
+ if (flags & (FL_OPT_NO | FL_OPT_AUTO))
+ opt_conflict = true;
+ else
+ flags |= FL_OPT_YES;
break;
case 'v':
flags |= FL_VERBOSE;
@@ -143,6 +161,12 @@ static void parse_options(int argc, char *argv[])
goto err_out;
}
+ if (opt_conflict) {
+ print_info(_("Only one of the options -p/-a, -n or -y can be specified!\n\n"));
+ show_usage = true;
+ goto err_out;
+ }
+
return;
err_out:
@@ -177,7 +201,7 @@ int main(int argc, char *argv[])
/* Ensure overlay filesystem not mounted */
if ((err = ovl_check_mount(&mounted)))
goto out;
- if (mounted) {
+ if (mounted && !(flags & FL_OPT_NO)) {
set_st_abort(&status);
goto out;
}
diff --git a/lib.c b/lib.c
index 271cafd..497d357 100644
--- a/lib.c
+++ b/lib.c
@@ -59,7 +59,8 @@ static int ask_yn(const char *question, int def)
/* Ask user */
int ask_question(const char *question, int def)
{
- if (flags & FL_AUTO) {
+ if (flags & FL_OPT_MASK) {
+ def = (flags & FL_OPT_YES) ? 1 : (flags & FL_OPT_NO) ? 0 : def;
print_info(_("%s? %s\n"), question, def ? _("y") : _("n"));
return def;
}
diff --git a/lib.h b/lib.h
index 235719c..5d94836 100644
--- a/lib.h
+++ b/lib.h
@@ -37,7 +37,11 @@
#define FL_VERBOSE (1 << 0) /* verbose */
#define FL_UPPER (1 << 1) /* specify upper directory */
#define FL_WORK (1 << 2) /* specify work directory */
-#define FL_AUTO (1 << 3) /* automactically scan dirs and repair */
+#define FL_OPT_AUTO (1 << 3) /* automactically scan dirs and repair */
+#define FL_OPT_NO (1 << 4) /* no changes to the filesystem */
+#define FL_OPT_YES (1 << 5) /* yes to all questions */
+#define FL_OPT_MASK (FL_OPT_AUTO|FL_OPT_NO|FL_OPT_YES)
+
/* Scan path type */
#define OVL_UPPER 0
--
2.9.5
next prev parent reply other threads:[~2017-12-28 11:33 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-28 11:40 [PATCH v3 0/6] overlay: implement fsck.overlay utility zhangyi (F)
2017-12-28 11:40 ` [PATCH v3 1/6] overlay: implement fsck utility zhangyi (F)
2017-12-29 9:20 ` Amir Goldstein
2017-12-28 11:40 ` zhangyi (F) [this message]
2017-12-28 13:52 ` [PATCH v3 2/6] fsck.overlay: add -n -p and -y options Amir Goldstein
2017-12-28 11:40 ` [PATCH v3 3/6] fsck.overlay: encapsulate underlying directories options zhangyi (F)
2017-12-28 13:59 ` Amir Goldstein
2017-12-28 11:40 ` [PATCH v3 4/6] fsck.overlay: correct redirect xattr check zhangyi (F)
2017-12-28 14:22 ` Amir Goldstein
2017-12-29 3:23 ` zhangyi (F)
2017-12-29 9:32 ` Amir Goldstein
2017-12-29 10:25 ` zhangyi (F)
2017-12-28 11:40 ` [PATCH v3 5/6] fsck.overlay: fix lower target lookup zhangyi (F)
2017-12-28 11:40 ` [PATCH v3 6/6] fsck.overlay: add impure xattr check zhangyi (F)
2017-12-28 13:18 ` Amir Goldstein
2017-12-29 2:21 ` zhangyi (F)
2017-12-29 7:03 ` Amir Goldstein
2017-12-29 7:39 ` zhangyi (F)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171228114023.43999-3-yi.zhang@huawei.com \
--to=yi.zhang@huawei.com \
--cc=amir73il@gmail.com \
--cc=eguan@redhat.com \
--cc=fstests@vger.kernel.org \
--cc=linux-unionfs@vger.kernel.org \
--cc=miaoxie@huawei.com \
--cc=miklos@szeredi.hu \
--cc=yangerkun@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox