Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp2462415pxb; Fri, 29 Oct 2021 01:45:20 -0700 (PDT) X-Google-Smtp-Source: ABdhPJySkXgVK7FYC22lbksdMkU0LzeEHmpSP3VfqoPIEHDzQJQ9vTm5pBOqPSN25lHZ0lDKxSIT X-Received: by 2002:a17:906:c448:: with SMTP id ck8mr5544069ejb.252.1635497120402; Fri, 29 Oct 2021 01:45:20 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1635497120; cv=none; d=google.com; s=arc-20160816; b=F1MWjX3A1ZNh/CfSoZ6GwSqsZ7s+NHvXddCpU1GW9wyTLidRopSgcFZenA+48Q3O3V lV3oREOjNxV5XDcZVj/qvpN9AF0YftaL0GtpaT0ubVboTbBNUQUgCq7VBaOZLfGKGU+b moMoGqPIReqoRZxhnnv63vDzjMTdl2hmS+OT9REqVfTqupg4IU4hy2FHp+fo/CRCk3VM 8LKgd/RysnsqIkqfhN7wQCxD3gz30kw8lCjYUaVolNqR8vHsGjT/U1QOJeo30N6oJcTu +a7YlPFXgOJA2y4T+pijye7r+pXI8wPSAna28S0sjEq6f1Sm1edrLHuAzB2QlffM/x/n 5QAg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=+b9yV3pbfp7DagKS71qZT3FAFyW6NGMD7WKfSnGKZ/w=; b=lGqJKVtvUN5wIZIykAnOS1lHOBah9Br/Dzy8CCB+jtUzObXLt2Sp4k/7d3E/eyiyGj HIxKXWU2+bDb/qOJg42eEbOKLM2PzzKU7L1lgfTwS/js75KVKiebmQPFl2fXOCNRlOC5 x03zCevruURWm4kH95aQZid0mrvpPqZWr7bOOkkJe4a3wjaKcFwjKoUxfLcPg4F0ExXt eH0zGx7VUjHeLjVHIWUI6tXb0hA1tvnbjQcIa7T9np2X8QVXkg5v+LTdSn09oomvcync L0nsOUKb82wfWJhtF3GvYmt9IcUnYIx7n/T+SIO/tk3E9G1ygLdaRnTvn6LgjBQr2DC2 F4qg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id f11si2122179eds.256.2021.10.29.01.44.25; Fri, 29 Oct 2021 01:45:20 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229692AbhJ2Iqr (ORCPT + 99 others); Fri, 29 Oct 2021 04:46:47 -0400 Received: from mail.kernel.org ([198.145.29.99]:47178 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229874AbhJ2Iqp (ORCPT ); Fri, 29 Oct 2021 04:46:45 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 6904660FE3; Fri, 29 Oct 2021 08:44:14 +0000 (UTC) Date: Fri, 29 Oct 2021 10:44:11 +0200 From: Christian Brauner To: Lukas Czerner Cc: linux-ext4@vger.kernel.org, tytso@mit.edu, linux-fsdevel@vger.kernel.org, Al Viro , Carlos Maiolino Subject: Re: [PATCH v4 01/13] fs_parse: allow parameter value to be empty Message-ID: <20211029084411.zk32u3hflf2vdzmx@wittgenstein> References: <20211027141857.33657-1-lczerner@redhat.com> <20211027141857.33657-2-lczerner@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20211027141857.33657-2-lczerner@redhat.com> Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Wed, Oct 27, 2021 at 04:18:45PM +0200, Lukas Czerner wrote: > Allow parameter value to be empty by specifying fs_param_can_be_empty > flag. Hey Lukas, what option is this for? Usually this should be handled by passing FSCONFIG_SET_FLAG. Doesn't seem like a good idea to let the string value be optionally empty. I'd rather have the guarantee that it has to be something instead of having to be extra careful because it could be NULL. > > Signed-off-by: Lukas Czerner > Cc: Al Viro > Reviewed-by: Carlos Maiolino > --- > fs/fs_parser.c | 31 +++++++++++++++++++++++-------- > include/linux/fs_parser.h | 2 +- > 2 files changed, 24 insertions(+), 9 deletions(-) > > diff --git a/fs/fs_parser.c b/fs/fs_parser.c > index 3df07c0e32b3..ed40ce5742fd 100644 > --- a/fs/fs_parser.c > +++ b/fs/fs_parser.c > @@ -199,6 +199,8 @@ int fs_param_is_bool(struct p_log *log, const struct fs_parameter_spec *p, > int b; > if (param->type != fs_value_is_string) > return fs_param_bad_value(log, param); > + if (!*param->string && (p->flags & fs_param_can_be_empty)) > + return 0; > b = lookup_constant(bool_names, param->string, -1); > if (b == -1) > return fs_param_bad_value(log, param); > @@ -211,8 +213,11 @@ int fs_param_is_u32(struct p_log *log, const struct fs_parameter_spec *p, > struct fs_parameter *param, struct fs_parse_result *result) > { > int base = (unsigned long)p->data; > - if (param->type != fs_value_is_string || > - kstrtouint(param->string, base, &result->uint_32) < 0) > + if (param->type != fs_value_is_string) > + return fs_param_bad_value(log, param); > + if (!*param->string && (p->flags & fs_param_can_be_empty)) > + return 0; > + if (kstrtouint(param->string, base, &result->uint_32) < 0) > return fs_param_bad_value(log, param); > return 0; > } > @@ -221,8 +226,11 @@ EXPORT_SYMBOL(fs_param_is_u32); > int fs_param_is_s32(struct p_log *log, const struct fs_parameter_spec *p, > struct fs_parameter *param, struct fs_parse_result *result) > { > - if (param->type != fs_value_is_string || > - kstrtoint(param->string, 0, &result->int_32) < 0) > + if (param->type != fs_value_is_string) > + return fs_param_bad_value(log, param); > + if (!*param->string && (p->flags & fs_param_can_be_empty)) > + return 0; > + if (kstrtoint(param->string, 0, &result->int_32) < 0) > return fs_param_bad_value(log, param); > return 0; > } > @@ -231,8 +239,11 @@ EXPORT_SYMBOL(fs_param_is_s32); > int fs_param_is_u64(struct p_log *log, const struct fs_parameter_spec *p, > struct fs_parameter *param, struct fs_parse_result *result) > { > - if (param->type != fs_value_is_string || > - kstrtoull(param->string, 0, &result->uint_64) < 0) > + if (param->type != fs_value_is_string) > + return fs_param_bad_value(log, param); > + if (!*param->string && (p->flags & fs_param_can_be_empty)) > + return 0; > + if (kstrtoull(param->string, 0, &result->uint_64) < 0) > return fs_param_bad_value(log, param); > return 0; > } > @@ -244,6 +255,8 @@ int fs_param_is_enum(struct p_log *log, const struct fs_parameter_spec *p, > const struct constant_table *c; > if (param->type != fs_value_is_string) > return fs_param_bad_value(log, param); > + if (!*param->string && (p->flags & fs_param_can_be_empty)) > + return 0; > c = __lookup_constant(p->data, param->string); > if (!c) > return fs_param_bad_value(log, param); > @@ -255,7 +268,8 @@ EXPORT_SYMBOL(fs_param_is_enum); > int fs_param_is_string(struct p_log *log, const struct fs_parameter_spec *p, > struct fs_parameter *param, struct fs_parse_result *result) > { > - if (param->type != fs_value_is_string || !*param->string) > + if (param->type != fs_value_is_string || > + (!*param->string && !(p->flags & fs_param_can_be_empty))) > return fs_param_bad_value(log, param); > return 0; > } > @@ -275,7 +289,8 @@ int fs_param_is_fd(struct p_log *log, const struct fs_parameter_spec *p, > { > switch (param->type) { > case fs_value_is_string: > - if (kstrtouint(param->string, 0, &result->uint_32) < 0) > + if ((!*param->string && !(p->flags & fs_param_can_be_empty)) || > + kstrtouint(param->string, 0, &result->uint_32) < 0) > break; > if (result->uint_32 <= INT_MAX) > return 0; > diff --git a/include/linux/fs_parser.h b/include/linux/fs_parser.h > index aab0ffc6bac6..f103c91139d4 100644 > --- a/include/linux/fs_parser.h > +++ b/include/linux/fs_parser.h > @@ -42,7 +42,7 @@ struct fs_parameter_spec { > u8 opt; /* Option number (returned by fs_parse()) */ > unsigned short flags; > #define fs_param_neg_with_no 0x0002 /* "noxxx" is negative param */ > -#define fs_param_neg_with_empty 0x0004 /* "xxx=" is negative param */ > +#define fs_param_can_be_empty 0x0004 /* "xxx=" is allowed */ > #define fs_param_deprecated 0x0008 /* The param is deprecated */ > const void *data; > }; > -- > 2.31.1 >