summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhelg <helg@openbsd.org>2017-12-13 12:23:48 +0000
committerhelg <helg@openbsd.org>2017-12-13 12:23:48 +0000
commitd997417f91da30ef17aa5132aee92f99a4a9559c (patch)
tree6a826d10d8442b1fe146b0d545245e5109ffb850
parentFix stray return; hopefully this makes the internal PHY actually work now. (diff)
downloadwireguard-openbsd-d997417f91da30ef17aa5132aee92f99a4a9559c.tar.xz
wireguard-openbsd-d997417f91da30ef17aa5132aee92f99a4a9559c.zip
If the list of templates 'o' passed to fuse_opt_parse(3) is NULL then
the processing function should be called in the same way as if no match was found. ok mpi@
-rw-r--r--lib/libfuse/fuse_opt.c7
-rw-r--r--regress/lib/libfuse/fuse-opt-parse.c22
2 files changed, 20 insertions, 9 deletions
diff --git a/lib/libfuse/fuse_opt.c b/lib/libfuse/fuse_opt.c
index e7ec4168604..f4bb20428c7 100644
--- a/lib/libfuse/fuse_opt.c
+++ b/lib/libfuse/fuse_opt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fuse_opt.c,v 1.22 2017/12/11 12:38:54 helg Exp $ */
+/* $OpenBSD: fuse_opt.c,v 1.23 2017/12/13 12:23:48 helg Exp $ */
/*
* Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com>
* Copyright (c) 2013 Stefan Sperling <stsp@openbsd.org>
@@ -191,13 +191,10 @@ parse_opt(const struct fuse_opt *o, const char *opt, void *data,
int keyval, ret, found;
size_t sep;
- if (o == NULL)
- return (IFUSE_OPT_KEEP);
-
keyval = 0;
found = 0;
- for(; o->templ; o++) {
+ for(; o != NULL && o->templ; o++) {
sep = match_opt(o->templ, opt);
if (sep == 0)
continue;
diff --git a/regress/lib/libfuse/fuse-opt-parse.c b/regress/lib/libfuse/fuse-opt-parse.c
index 339dfc1ad82..329cba21085 100644
--- a/regress/lib/libfuse/fuse-opt-parse.c
+++ b/regress/lib/libfuse/fuse-opt-parse.c
@@ -33,6 +33,7 @@ struct data {
int cache;
int set_gid;
int gid;
+ int bad_opt;
};
enum {
@@ -86,6 +87,11 @@ proc(void *data, const char *arg, int key, struct fuse_args *args)
return (1);
}
+ if (strcmp("bad_opt", arg) == 0) {
+ conf->bad_opt = 1;
+ return (0);
+ }
+
return (1);
}
@@ -110,6 +116,7 @@ test_null_args(void) {
assert(data.ssh_ver == 0);
assert(data.count == 0);
assert(data.cache == 0);
+ assert(data.bad_opt == 0);
}
/*
@@ -124,7 +131,8 @@ test_null_opts(void)
char *argv_null_opts[] = {
"progname",
- "/mnt"
+ "/mnt",
+ "bad_opt"
};
args.argc = sizeof(argv_null_opts) / sizeof(argv_null_opts[0]);
@@ -146,6 +154,7 @@ test_null_opts(void)
assert(data.cache == 0);
assert(data.set_gid == 0);
assert(data.gid == 0);
+ assert(data.bad_opt == 1);
assert(args.argc == 2);
assert(strcmp(args.argv[0], "progname") == 0);
@@ -175,7 +184,8 @@ test_null_proc(void)
"-x", "xanadu",
"-o", "optstring=",
"-o", "optstring=optstring",
- "--count=10"
+ "--count=10",
+ "bad_opt"
};
args.argc = sizeof(argv_null_proc) / sizeof(argv_null_proc[0]);
@@ -197,8 +207,9 @@ test_null_proc(void)
assert(data.cache == 0);
assert(data.set_gid == 1);
assert(data.gid == 077);
+ assert(data.bad_opt == 0);
- assert(args.argc == 8);
+ assert(args.argc == 9);
assert(strcmp(args.argv[0], "progname") == 0);
assert(strcmp(args.argv[1], "-o") == 0);
assert(strcmp(args.argv[2], "debug") == 0);
@@ -207,6 +218,7 @@ test_null_proc(void)
assert(strcmp(args.argv[5], "-d") == 0);
assert(strcmp(args.argv[6], "-p22") == 0);
assert(strcmp(args.argv[7], "/mnt") == 0);
+ assert(strcmp(args.argv[8], "bad_opt") == 0);
assert(args.allocated);
fuse_opt_free_args(&args);
@@ -231,7 +243,8 @@ test_all_args(void)
"-1",
"-x", "xanadu",
"-o", "optstring=optstring,cache=no",
- "--count=10"
+ "--count=10",
+ "bad_opt"
};
args.argc = sizeof(argv) / sizeof(argv[0]);
@@ -253,6 +266,7 @@ test_all_args(void)
assert(data.cache == 0);
assert(data.set_gid == 1);
assert(data.gid == 077);
+ assert(data.bad_opt == 1);
assert(args.argc == 7);
assert(strcmp(args.argv[0], "progname") == 0);