From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: Wei Liu <wei.liu2@citrix.com>,
Ian Jackson <Ian.Jackson@eu.citrix.com>,
Ian Campbell <Ian.Campbell@citrix.com>,
Xen Coverity Team <coverity@xen.org>,
Xen-devel <xen-devel@lists.xen.org>
Subject: Re: [PATCH v2 for-4.5 1/3] python/xc: Fix multiple issues in pyflask_context_to_sid()
Date: Wed, 10 Dec 2014 12:13:45 -0500 [thread overview]
Message-ID: <20141210171345.GM4268@laptop.dumpdata.com> (raw)
In-Reply-To: <1418143402-29674-1-git-send-email-andrew.cooper3@citrix.com>
On Tue, Dec 09, 2014 at 04:43:22PM +0000, Andrew Cooper wrote:
> The error handling from a failed memory allocation should return
> PyErr_SetFromErrno(xc_error_obj); rather than simply calling it and continuing
> to the memcpy() below, with the dest pointer being NULL.
>
> Coverity also complains about passing a non-NUL terminated string to
> xc_flask_context_to_sid(). xc_flask_context_to_sid() doesn't actually take a
> NUL terminated string, but it does take a char* which, in context, used to be
> a string, which is why Coverity complains.
>
> One solution would be to use strdup(ctx) which is simpler than a
> strlen()/malloc()/memcpy() combo, which would result in a NUL-terminated
> string being used with xc_flask_context_to_sid().
>
> However, ctx is strictly an input to the hypercall and is not mutated along
> the way. Both these issues can be fixed, and the error logic simplified, by
> not duplicating ctx in the first place.
>
> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
> Coverity-IDs: 1055305 1055721
> Acked-by: Ian Campbell <Ian.Campbell@citrix.com>
> CC: Ian Jackson <Ian.Jackson@eu.citrix.com>
> CC: Wei Liu <wei.liu2@citrix.com>
> CC: Xen Coverity Team <coverity@xen.org>
>
> ---
> v2: Expand the commit message. No code change
Thank you.
Release-Acked-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> ---
> tools/python/xen/lowlevel/xc/xc.c | 21 +++------------------
> 1 file changed, 3 insertions(+), 18 deletions(-)
>
> diff --git a/tools/python/xen/lowlevel/xc/xc.c b/tools/python/xen/lowlevel/xc/xc.c
> index f83e33d..2aa0dc7 100644
> --- a/tools/python/xen/lowlevel/xc/xc.c
> +++ b/tools/python/xen/lowlevel/xc/xc.c
> @@ -2125,8 +2125,6 @@ static PyObject *pyflask_context_to_sid(PyObject *self, PyObject *args,
> {
> xc_interface *xc_handle;
> char *ctx;
> - char *buf;
> - uint32_t len;
> uint32_t sid;
> int ret;
>
> @@ -2136,28 +2134,15 @@ static PyObject *pyflask_context_to_sid(PyObject *self, PyObject *args,
> &ctx) )
> return NULL;
>
> - len = strlen(ctx);
> -
> - buf = malloc(len);
> - if (!buf) {
> - errno = -ENOMEM;
> - PyErr_SetFromErrno(xc_error_obj);
> - }
> -
> - memcpy(buf, ctx, len);
> -
> xc_handle = xc_interface_open(0,0,0);
> if (!xc_handle) {
> - free(buf);
> return PyErr_SetFromErrno(xc_error_obj);
> }
> -
> - ret = xc_flask_context_to_sid(xc_handle, buf, len, &sid);
> -
> +
> + ret = xc_flask_context_to_sid(xc_handle, ctx, strlen(ctx), &sid);
> +
> xc_interface_close(xc_handle);
>
> - free(buf);
> -
> if ( ret != 0 ) {
> errno = -ret;
> return PyErr_SetFromErrno(xc_error_obj);
> --
> 1.7.10.4
>
next prev parent reply other threads:[~2014-12-10 17:13 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-27 12:34 [PATCH for-4.5 0/3] Coverity fixes for python lowlevel libraries Andrew Cooper
2014-11-27 12:34 ` [PATCH for-4.5 1/3] python/xc: Fix multiple issues in pyflask_context_to_sid() Andrew Cooper
2014-11-28 11:37 ` Ian Campbell
2014-11-28 11:47 ` Andrew Cooper
2014-11-28 12:15 ` Ian Campbell
2014-12-09 14:27 ` Ian Campbell
2014-12-09 14:30 ` Andrew Cooper
2014-12-09 16:20 ` Konrad Rzeszutek Wilk
2014-12-09 16:43 ` [PATCH v2 " Andrew Cooper
2014-12-10 17:13 ` Konrad Rzeszutek Wilk [this message]
2014-12-16 17:16 ` Ian Campbell
2014-11-27 12:34 ` [PATCH for-4.5 2/3] python/xc: Fix multiple issues in pyxc_readconsolering() Andrew Cooper
2014-11-28 11:38 ` Ian Campbell
2014-12-01 21:14 ` Konrad Rzeszutek Wilk
2014-12-02 13:50 ` Ian Campbell
2014-12-02 18:47 ` Konrad Rzeszutek Wilk
2014-12-04 13:26 ` Ian Campbell
2014-11-27 12:34 ` [PATCH for-4.5 3/3] python/xs: Correct the indirection of the NULL xshandle() check Andrew Cooper
2014-11-28 11:32 ` Ian Campbell
2014-12-01 21:14 ` Konrad Rzeszutek Wilk
2014-11-28 12:07 ` [PATCH for-4.5 0/3] Coverity fixes for python lowlevel libraries Ian Campbell
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=20141210171345.GM4268@laptop.dumpdata.com \
--to=konrad.wilk@oracle.com \
--cc=Ian.Campbell@citrix.com \
--cc=Ian.Jackson@eu.citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=coverity@xen.org \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.