* [PATCH 1/1] nfsmount: Fixed parsing error in the nfsmount.conf code.
@ 2012-03-06 0:13 Steve Dickson
2012-03-06 16:05 ` Steve Dickson
0 siblings, 1 reply; 2+ messages in thread
From: Steve Dickson @ 2012-03-06 0:13 UTC (permalink / raw)
To: Linux NFS Mailing List
When the options where prefixed with spaces (instead of tabs)
the second option in the list was missed to so a miscalculation
the the nfsmount.conf parsing code.
Signed-off-by: Steve Dickson <steved@redhat.com>
---
support/nfs/conffile.c | 19 ++++++-------------
1 files changed, 6 insertions(+), 13 deletions(-)
diff --git a/support/nfs/conffile.c b/support/nfs/conffile.c
index 3990578..2f1e235 100644
--- a/support/nfs/conffile.c
+++ b/support/nfs/conffile.c
@@ -211,7 +211,7 @@ static void
conf_parse_line(int trans, char *line, size_t sz)
{
char *val, *ptr;
- size_t i;
+ size_t i, valsize;
size_t j;
static char *section = 0;
static char *arg = 0;
@@ -298,23 +298,16 @@ conf_parse_line(int trans, char *line, size_t sz)
}
line[strcspn (line, " \t=")] = '\0';
val = line + i + 1 + strspn (line + i + 1, " \t");
+ valsize = 0;
+ while (val[valsize++]);
- /* Skip trailing comments, if any */
- for (j = 0; j < sz - (val - line); j++) {
- if (val[j] == '#' || val[j] == ';') {
+ /* Skip trailing spaces and comments */
+ for (j = 0; j < valsize; j++) {
+ if (val[j] == '#' || val[j] == ';' || isspace(val[j])) {
val[j] = '\0';
break;
}
}
-
- /* Skip trailing whitespace, if any */
- for (j--; j > 0; j--) {
- if (isspace(val[j]))
- val[j] = '\0';
- else
- break;
- }
-
/* XXX Perhaps should we not ignore errors? */
conf_set(trans, section, arg, line, val, 0, 0);
return;
--
1.7.7.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 1/1] nfsmount: Fixed parsing error in the nfsmount.conf code.
2012-03-06 0:13 [PATCH 1/1] nfsmount: Fixed parsing error in the nfsmount.conf code Steve Dickson
@ 2012-03-06 16:05 ` Steve Dickson
0 siblings, 0 replies; 2+ messages in thread
From: Steve Dickson @ 2012-03-06 16:05 UTC (permalink / raw)
To: Steve Dickson; +Cc: Linux NFS Mailing List
On 03/05/2012 07:13 PM, Steve Dickson wrote:
> When the options where prefixed with spaces (instead of tabs)
> the second option in the list was missed to so a miscalculation
> the the nfsmount.conf parsing code.
>
> Signed-off-by: Steve Dickson <steved@redhat.com>
Committed....
steved.
> ---
> support/nfs/conffile.c | 19 ++++++-------------
> 1 files changed, 6 insertions(+), 13 deletions(-)
>
> diff --git a/support/nfs/conffile.c b/support/nfs/conffile.c
> index 3990578..2f1e235 100644
> --- a/support/nfs/conffile.c
> +++ b/support/nfs/conffile.c
> @@ -211,7 +211,7 @@ static void
> conf_parse_line(int trans, char *line, size_t sz)
> {
> char *val, *ptr;
> - size_t i;
> + size_t i, valsize;
> size_t j;
> static char *section = 0;
> static char *arg = 0;
> @@ -298,23 +298,16 @@ conf_parse_line(int trans, char *line, size_t sz)
> }
> line[strcspn (line, " \t=")] = '\0';
> val = line + i + 1 + strspn (line + i + 1, " \t");
> + valsize = 0;
> + while (val[valsize++]);
>
> - /* Skip trailing comments, if any */
> - for (j = 0; j < sz - (val - line); j++) {
> - if (val[j] == '#' || val[j] == ';') {
> + /* Skip trailing spaces and comments */
> + for (j = 0; j < valsize; j++) {
> + if (val[j] == '#' || val[j] == ';' || isspace(val[j])) {
> val[j] = '\0';
> break;
> }
> }
> -
> - /* Skip trailing whitespace, if any */
> - for (j--; j > 0; j--) {
> - if (isspace(val[j]))
> - val[j] = '\0';
> - else
> - break;
> - }
> -
> /* XXX Perhaps should we not ignore errors? */
> conf_set(trans, section, arg, line, val, 0, 0);
> return;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-03-06 16:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-06 0:13 [PATCH 1/1] nfsmount: Fixed parsing error in the nfsmount.conf code Steve Dickson
2012-03-06 16:05 ` Steve Dickson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).