From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:38460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RyKja-0001Jv-KM for qemu-devel@nongnu.org; Fri, 17 Feb 2012 05:08:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RyKjZ-0008Co-6j for qemu-devel@nongnu.org; Fri, 17 Feb 2012 05:08:10 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54076) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RyKjY-0008Ch-U4 for qemu-devel@nongnu.org; Fri, 17 Feb 2012 05:08:09 -0500 Date: Fri, 17 Feb 2012 12:08:10 +0200 From: "Michael S. Tsirkin" Message-ID: <20120217100810.GB31366@redhat.com> References: <4F3D6966.8090401@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4F3D6966.8090401@redhat.com> Subject: Re: [Qemu-devel] [PATCH 2/2] pci: rewrite devaddr parsing List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake Cc: qemu-devel@nongnu.org On Thu, Feb 16, 2012 at 01:39:02PM -0700, Eric Blake wrote: > On 02/16/2012 12:23 PM, malc wrote: > > On Thu, 16 Feb 2012, Michael S. Tsirkin wrote: > > > >> Use scanf instead of manual string scanning. > >> > >> + > >> + /* Parse [[:]:] */ > >> + sscanf(addr, "%x:%x:%x%n", &dom, &bus, &slot, &n); > > > > sscanf can fail. > > Worse, the *scanf family has undefined behavior on integer overflow. If > addr contains "100000000000000:0:0", there's no telling whether it will > be diagnosed as a parse error, or silently accepted and truncated, in > which case, there's no telling what dom will contain. > > I cringe any time I see someone using scanf to parse numbers from > arbitrary user input; I barely tolerate it for parsing things generated > by the kernel, but even there, I won't ever use scanf myself. > Same goes > for atoi. _Only_ strtol and friends can robustly parse arbitrary input > into integers. Seems easy to fix: I'll just set maximum field width of 8. Any other issues? > -- > Eric Blake eblake@redhat.com +1-919-301-3266 > Libvirt virtualization library http://libvirt.org >