Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932162Ab2F0UMW (ORCPT ); Wed, 27 Jun 2012 16:12:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42388 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754023Ab2F0UMV (ORCPT ); Wed, 27 Jun 2012 16:12:21 -0400 Message-ID: <1340827938.1207.227.camel@bling.home> Subject: Re: [PATCH v2 3/6] kvm: Sanitize KVM_IRQFD flags From: Alex Williamson To: "Michael S. Tsirkin" Cc: avi@redhat.com, kvm@vger.kernel.org, linux-kernel@vger.kernel.org, jan.kiszka@siemens.com Date: Wed, 27 Jun 2012 14:12:18 -0600 In-Reply-To: <20120627092150.GD17507@redhat.com> References: <20120627044758.23698.249.stgit@bling.home> <20120627050924.23698.65802.stgit@bling.home> <20120627092150.GD17507@redhat.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1511 Lines: 44 On Wed, 2012-06-27 at 12:21 +0300, Michael S. Tsirkin wrote: > On Tue, Jun 26, 2012 at 11:09:32PM -0600, Alex Williamson wrote: > > We only know of one so far. > > > > Signed-off-by: Alex Williamson > > Ugh. So we have a bug: we should have sanitized the fields. > If there's buggy userspace that only set the low bit > it will break with this change. > Is it too late now? Do we need KVM_IRQFD2 which > sanitized fields properly? Avi? If we take that attitude that we haven't sanitized the bits in the past and therefore all other bits are tainted from future use, we might as well toss out this ioctl and start over. There's no way to add anything. :-\ > > --- > > > > virt/kvm/eventfd.c | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c > > index c307c24..7d7e2aa 100644 > > --- a/virt/kvm/eventfd.c > > +++ b/virt/kvm/eventfd.c > > @@ -340,6 +340,9 @@ kvm_irqfd_deassign(struct kvm *kvm, struct kvm_irqfd *args) > > int > > kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args) > > { > > + if (args->flags & ~KVM_IRQFD_FLAG_DEASSIGN) > > + return -EINVAL; > > + > > if (args->flags & KVM_IRQFD_FLAG_DEASSIGN) > > return kvm_irqfd_deassign(kvm, args); > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/