All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dave Scott <Dave.Scott@citrix.com>
To: Andrew Cooper <Andrew.Cooper3@citrix.com>
Cc: Ian Jackson <Ian.Jackson@citrix.com>,
	Dave Scott <Dave.Scott@citrix.com>, Wei Liu <wei.liu2@citrix.com>,
	Ian Campbell <Ian.Campbell@citrix.com>,
	Xen-devel <xen-devel@lists.xen.org>
Subject: Re: [PATCH] ocaml/xenctrl: Check return values from hypercalls
Date: Wed, 28 Jan 2015 09:35:30 +0000	[thread overview]
Message-ID: <6941D352-9429-4103-A230-F8914D95B155@citrix.com> (raw)
In-Reply-To: <1422391091-6639-1-git-send-email-andrew.cooper3@citrix.com>

Looks fine to me

Acked-by: David Scott <dave.scott@citrix.com>

> On 27 Jan 2015, at 20:38, Andrew Cooper <andrew.cooper3@citrix.com> wrote:
> 
> rather than blindly continuing and possibly using negative values.
> 
> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
> CC: Ian Campbell <Ian.Campbell@citrix.com>
> CC: Ian Jackson <Ian.Jackson@eu.citrix.com>
> CC: Wei Liu <wei.liu2@citrix.com>
> CC: Dave Scott <dave.scott@eu.citrix.com>
> 
> ---
> Found with XenServers Coverity scanning.  We have the sensitivity turned up
> higher than Coverity Scan, which does not flag these issues.
> ---
> tools/ocaml/libs/xc/xenctrl_stubs.c |    9 +++++++++
> 1 file changed, 9 insertions(+)
> 
> diff --git a/tools/ocaml/libs/xc/xenctrl_stubs.c b/tools/ocaml/libs/xc/xenctrl_stubs.c
> index f0810eb..92d064f 100644
> --- a/tools/ocaml/libs/xc/xenctrl_stubs.c
> +++ b/tools/ocaml/libs/xc/xenctrl_stubs.c
> @@ -457,6 +457,9 @@ CAMLprim value stub_xc_vcpu_getaffinity(value xch, value domid,
> 	int i, len = xc_get_max_cpus(_H(xch));
> 	int retval;
> 
> +	if (len < 1)
> +		failwith_xc(_H(xch));
> +
> 	c_cpumap = xc_cpumap_alloc(_H(xch));
> 	if (c_cpumap == NULL)
> 		failwith_xc(_H(xch));
> @@ -821,6 +824,12 @@ CAMLprim value stub_xc_version_version(value xch)
> 
> 	caml_enter_blocking_section();
> 	packed = xc_version(_H(xch), XENVER_version, NULL);
> +	caml_leave_blocking_section();
> +
> +	if (packed < 0)
> +		failwith_xc(_H(xch));
> +
> +	caml_enter_blocking_section();
> 	retval = xc_version(_H(xch), XENVER_extraversion, &extra);
> 	caml_leave_blocking_section();
> 
> -- 
> 1.7.10.4
> 

  reply	other threads:[~2015-01-28  9:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-27 20:38 [PATCH] ocaml/xenctrl: Check return values from hypercalls Andrew Cooper
2015-01-28  9:35 ` Dave Scott [this message]
2015-01-28 14:05   ` 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=6941D352-9429-4103-A230-F8914D95B155@citrix.com \
    --to=dave.scott@citrix.com \
    --cc=Andrew.Cooper3@citrix.com \
    --cc=Ian.Campbell@citrix.com \
    --cc=Ian.Jackson@citrix.com \
    --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.