From: Alexander Graf <agraf@suse.de>
To: qemu-devel qemu-devel <qemu-devel@nongnu.org>
Cc: blauwirbel@gmail.com, qemu-ppc@nongnu.org, aurelien@aurel32.net,
David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PATCH 13/16] kvm: Comparison with ioctl number macros needs to be unsigned
Date: Thu, 15 Mar 2012 13:14:19 +0100 [thread overview]
Message-ID: <1331813662-15141-14-git-send-email-agraf@suse.de> (raw)
In-Reply-To: <1331813662-15141-1-git-send-email-agraf@suse.de>
From: David Gibson <david@gibson.dropbear.id.au>
In kvm-all.c we store an ioctl cmd number in the irqchip_inject_ioctl field
of KVMState, which has type 'int'. This seems to make sense since the
ioctl() man page says that the cmd parameter has type int.
However, the kernel treats ioctl numbers as unsigned - sys_ioctl() takes an
unsigned int, and the macros which generate ioctl numbers expand to
unsigned expressions. Furthermore, some ioctls (IOC_READ ioctls on x86
and IOC_WRITE ioctls on powerpc) have bit 31 set, and so would be negative
if interpreted as an int. This has the surprising and compile-breaking
consequence that in kvm_irqchip_set_irq() where we do:
return (s->irqchip_inject_ioctl == KVM_IRQ_LINE) ? 1 : event.status;
We will get a "comparison is always false due to limited range of data
type" warning from gcc if KVM_IRQ_LINE is one of the bit-31-set ioctls,
which it is on powerpc.
So, despite the fact that the man page and posix say ioctl numbers are
signed, they're actually unsigned. The kernel uses unsigned, the glibc
header uses unsigned long, and FreeBSD, NetBSD and OSX also use unsigned
long ioctl numbers in the code.
Therefore, this patch changes the variable to be unsigned, fixing the
compile.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
---
kvm-all.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/kvm-all.c b/kvm-all.c
index 42e5e23..ba2cee1 100644
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -79,7 +79,10 @@ struct KVMState
int pit_state2;
int xsave, xcrs;
int many_ioeventfds;
- int irqchip_inject_ioctl;
+ /* The man page (and posix) say ioctl numbers are signed int, but
+ * they're not. Linux, glibc and *BSD all treat ioctl numbers as
+ * unsigned, and treating them as signed here can break things */
+ unsigned irqchip_inject_ioctl;
#ifdef KVM_CAP_IRQ_ROUTING
struct kvm_irq_routing *irq_routes;
int nr_allocated_irq_routes;
--
1.6.0.2
next prev parent reply other threads:[~2012-03-15 12:14 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-15 12:14 [Qemu-devel] [PULL 00/16] ppc patch queue 2012-03-15 Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 01/16] Bad zero comparison for sas_ss_flags on powerpc Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 02/16] PPC: 405: Fix ppc405ep initialization Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 03/16] ppc: Add missing 'static' to spin_rw_ops Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 04/16] pseries: Don't try to munmap() a malloc()ed TCE table Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 05/16] PPC64: Add support for ldbrx and stdbrx instructions Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 06/16] pseries: Update SLOF firmware image Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 07/16] pseries: Remove unused constant from PCI code Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 08/16] pseries: Remove PCI device from PCI host bridge code Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 09/16] PPC: Add PIR register to POWER7 CPU Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 10/16] PPC: Fix large page support in TCG Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 11/16] pseries: Add support for level interrupts to XICS Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 12/16] ppc: Correctly define POWERPC_INSNS2_DEFAULT Alexander Graf
2012-03-15 12:14 ` Alexander Graf [this message]
2012-03-15 12:14 ` [Qemu-devel] [PATCH 14/16] PPC: KVM: Synchronize regs on CPU dump Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 15/16] pseries: Configure PCI bridge using properties Alexander Graf
2012-03-15 12:14 ` [Qemu-devel] [PATCH 16/16] PPC: Fix openpic with relative memregions Alexander Graf
2012-03-17 16:21 ` [Qemu-devel] [PULL 00/16] ppc patch queue 2012-03-15 Blue Swirl
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=1331813662-15141-14-git-send-email-agraf@suse.de \
--to=agraf@suse.de \
--cc=aurelien@aurel32.net \
--cc=blauwirbel@gmail.com \
--cc=david@gibson.dropbear.id.au \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.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 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).