Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751920AbdF2B4I (ORCPT ); Wed, 28 Jun 2017 21:56:08 -0400 Received: from szxga03-in.huawei.com ([45.249.212.189]:8399 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751579AbdF2B4A (ORCPT ); Wed, 28 Jun 2017 21:56:00 -0400 Message-ID: <59545DD6.3030508@huawei.com> Date: Thu, 29 Jun 2017 09:54:30 +0800 From: zhong jiang User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Thomas Gleixner CC: Ingo Molnar , , , , , , , , Subject: Re: [PATCH] futex: avoid undefined behaviour when shift exponent is negative References: <1498045437-7675-1-git-send-email-zhongjiang@huawei.com> <20170621164036.4findvvz7jj4cvqo@gmail.com> <595331FE.3090700@huawei.com> In-Reply-To: Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.177.29.68] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A090202.59545DEE.0004,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2014-11-16 11:51:01, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: bc40e2ccfed27148a0ab083dbda6b773 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2271 Lines: 72 Hi, Thomas Thank you for clarification. On 2017/6/29 6:13, Thomas Gleixner wrote: > On Wed, 28 Jun 2017, zhong jiang wrote: >> On 2017/6/22 0:40, Ingo Molnar wrote: >>> * zhong jiang wrote: >>> >>>> when shift expoment is negative, left shift alway zero. therefore, we >>>> modify the logic to avoid the warining. >>>> >>>> Signed-off-by: zhong jiang >>>> --- >>>> arch/x86/include/asm/futex.h | 8 ++++++-- >>>> 1 file changed, 6 insertions(+), 2 deletions(-) >>>> >>>> diff --git a/arch/x86/include/asm/futex.h b/arch/x86/include/asm/futex.h >>>> index b4c1f54..2425fca 100644 >>>> --- a/arch/x86/include/asm/futex.h >>>> +++ b/arch/x86/include/asm/futex.h >>>> @@ -49,8 +49,12 @@ static inline int futex_atomic_op_inuser(int encoded_op, u32 __user *uaddr) >>>> int cmparg = (encoded_op << 20) >> 20; >>>> int oldval = 0, ret, tem; >>>> >>>> - if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) >>>> - oparg = 1 << oparg; >>>> + if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) { >>>> + if (oparg >= 0) >>>> + oparg = 1 << oparg; >>>> + else >>>> + oparg = 0; >>>> + } >>> Could we avoid all these complications by using an unsigned type? >> I think it is not feasible. a negative shift exponent is likely >> existence and reasonable. > What is reasonable about a negative shift value? > >> as the above case, oparg is a negative is common. > That's simply wrong. If oparg is negative and the SHIFT bit is set then the > result is undefined today and there is no way that this can be used at > all. > > On x86: > > 1 << -1 = 0x80000000 > 1 << -2048 = 0x00000001 > 1 << -2047 = 0x00000002 but I test the cases in x86_64 all is zero. I wonder whether it is related to gcc or not zj.c:15:8: warning: left shift count is negative [-Wshift-count-negative] j = 1 << -2048; ^ [root@localhost zhongjiang]# ./zj j = 0 Thanks zhongjiang > Anything using a shift value < 0 or > 31 will get crap as a > result. Rightfully so because it's just undefined. > > Yes I know that the insanity of user space is unlimited, but anything > attempting this is so broken that we cannot break it further by making that > shift arg unsigned and actually limit it to 0-31 > Thanks, > > tglx > > > > . >