From: Andrew Morton <akpm@osdl.org>
To: NeilBrown <neilb@suse.de>
Cc: nfs@lists.sourceforge.net, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 006 of 8] knfsd: nfsd4: fslocations data structures
Date: Thu, 28 Sep 2006 23:45:40 -0700 [thread overview]
Message-ID: <20060928234540.fd74f1e1.akpm@osdl.org> (raw)
In-Reply-To: <1060929030913.24108@suse.de>
On Fri, 29 Sep 2006 13:09:13 +1000
NeilBrown <neilb@suse.de> wrote:
>
> From: Manoj Naik <manoj@almaden.ibm.com>
>
> Define FS locations structures, some functions to manipulate them, and add
> code to parse FS locations in downcall and add to the exports structure.
>
> ...
>
> +#ifdef CONFIG_NFSD_V4
> +
> +static int
> +fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc)
> +{
> + int len;
> + int migrated, i, err;
> +
> + len = qword_get(mesg, buf, PAGE_SIZE);
> + if (len != 5 || memcmp(buf, "fsloc", 5))
> + return 0;
> +
> + /* listsize */
> + err = get_int(mesg, &fsloc->locations_count);
> + if (err)
> + return err;
> + if (fsloc->locations_count < 0)
this is unsigned.
> + return -EINVAL;
> + if (fsloc->locations_count == 0)
> + return 0;
> +
> + fsloc->locations = kzalloc(fsloc->locations_count
> + * sizeof(struct nfsd4_fs_location), GFP_KERNEL);
This is subject to multiplication overflow. If it's a privileged operation
and isn't dependent on stuff coming in over the wire then ok..
> + if (!fsloc->locations)
> + return -ENOMEM;
> + for (i=0; i < fsloc->locations_count; i++) {
> + /* colon separated host list */
> + err = -EINVAL;
> + len = qword_get(mesg, buf, PAGE_SIZE);
> + if (len <= 0)
> + goto out_free_all;
> + err = -ENOMEM;
> + fsloc->locations[i].hosts = kstrdup(buf, GFP_KERNEL);
> + if (!fsloc->locations[i].hosts)
> + goto out_free_all;
> + err = -EINVAL;
> + /* slash separated path component list */
> + len = qword_get(mesg, buf, PAGE_SIZE);
> + if (len <= 0)
> + goto out_free_all;
> + err = -ENOMEM;
> + fsloc->locations[i].path = kstrdup(buf, GFP_KERNEL);
> + if (!fsloc->locations[i].path)
> + goto out_free_all;
> + }
> + /* migrated */
> + err = get_int(mesg, &migrated);
> + if (err)
> + goto out_free_all;
> + err = -EINVAL;
> + if (migrated < 0 || migrated > 1)
> + goto out_free_all;
> + fsloc->migrated = migrated;
> + return 0;
> +out_free_all:
> + nfsd4_fslocs_free(fsloc);
This call to nfsd4_fslocs_free() can end up kfreeing members of
fsloc->locations[] which haven't been initialised here. Are we sure the
caller set them all to zero?
> + return err;
> +}
> +
> +#else /* CONFIG_NFSD_V4 */
> +static int fsloc_parse(char **, char *, struct svc_export *) { return 0; }
static inline
This has a different prototype from the other version of fsloc_parse()
This ain't C++ - function arguments need identifiers as well as types.
Someone needs to read Documentation/SubmitChecklist..
next prev parent reply other threads:[~2006-09-29 6:45 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-29 3:08 [PATCH 000 of 8] knfsd: Introduction NeilBrown
2006-09-29 3:08 ` [PATCH 001 of 8] knfsd: Add nfs-export support to tmpfs NeilBrown
2006-09-29 6:29 ` Andrew Morton
2006-09-29 6:48 ` [NFS] " Neil Brown
2006-09-29 19:41 ` Hugh Dickins
2006-10-03 0:08 ` Neil Brown
2006-09-29 3:08 ` [PATCH 002 of 8] knfsd: lockd: fix refount on nsm NeilBrown
2006-09-29 6:01 ` [NFS] " Olaf Kirch
2006-09-29 3:08 ` [PATCH 003 of 8] knfsd: Fix auto-sizing of nfsd request/reply buffers NeilBrown
2006-09-29 3:08 ` [PATCH 004 of 8] knfsd: Close a race-opportunity in d_splice_alias NeilBrown
2006-09-29 3:09 ` [PATCH 005 of 8] knfsd: nfsd: store export path in export NeilBrown
2006-09-29 3:09 ` [PATCH 006 of 8] knfsd: nfsd4: fslocations data structures NeilBrown
2006-09-29 6:45 ` Andrew Morton [this message]
2006-10-02 18:23 ` [NFS] " J. Bruce Fields
2006-10-02 18:24 ` [PATCH 1 of 3] nfsd4: fix fs locations bounds-checking J. Bruce Fields
2006-10-02 18:26 ` [PATCH 2 of 3] nfsd4: fslocs: fix compile in non-CONFIG_NFSD_V4 case J. Bruce Fields
2006-10-02 18:26 ` [PATCH 3 of 3] nfsd4: fslocs: remove spurious NULL check J. Bruce Fields
2006-09-29 3:09 ` [PATCH 007 of 8] knfsd: nfsd4: xdr encoding for fs_locations NeilBrown
2006-09-29 3:09 ` [PATCH 008 of 8] knfsd: nfsd4: actually use all the pieces to implement referrals NeilBrown
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=20060928234540.fd74f1e1.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=neilb@suse.de \
--cc=nfs@lists.sourceforge.net \
/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
Powered by JetHome