Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756509AbYJ3Ajj (ORCPT ); Wed, 29 Oct 2008 20:39:39 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755740AbYJ3Aja (ORCPT ); Wed, 29 Oct 2008 20:39:30 -0400 Received: from idcmail-mo1so.shaw.ca ([24.71.223.10]:57861 "EHLO idcmail-mo1so.shaw.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755063AbYJ3Aj3 (ORCPT ); Wed, 29 Oct 2008 20:39:29 -0400 X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.0 c=0 a=6K9UcZB1irvz1XBPfZkA:9 a=TYm2aEzDoQ08VyJ9UXkA:7 a=iTfKDgIDfxDTUjOO2W9c-6yiIe8A:4 a=MSl-tDqOz04A:10 a=JfD0Fch1gWkA:10 a=D4FwsTI08Q0A:10 a=BjSCe7YdmnEA:10 Message-ID: <4909023E.60806@shaw.ca> Date: Wed, 29 Oct 2008 18:39:26 -0600 From: Robert Hancock User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Roland Dreier CC: "Phillip O'Donnell" , jeff@garzik.org, Oskar Liljeblad , linux-kernel@vger.kernel.org Subject: Re: [PATCH] libata: Avoid overflow in ata_tf_to_lba48() when tf->hba_lbal > 127 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1237 Lines: 31 Roland Dreier wrote: > In ata_tf_to_lba48(), when evaluating > > (tf->hob_lbal & 0xff) << 24 > > the expression is promoted to signed int (since int can hold all values > of u8). However, if hob_lbal is 128 or more, then it is treated as a > negative signed value and sign-extended when promoted to u64 to | into > sectors, which leads to the MSB 32 bits of section getting set > incorrectly. > > For example, Phillip O'Donnell reported > that a 1.5GB drive caused: > > ata3.00: HPA detected: current 2930277168, native 18446744072344861488 > > where 2930277168 == 0xAEA87B30 and 18446744072344861488 == 0xffffffffaea87b30 > which shows the problem when hob_lbal is 0xae. > > Fix this by adding a cast to u64, just as is used by for hob_lbah and > hob_lbam in the function. > > Reported-by: Phillip O'Donnell > Signed-off-by: Roland Dreier This should be pushed to -stable as well once it's merged.. -- 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/