From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 1237EECAAA1 for ; Tue, 1 Nov 2022 13:31:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:In-Reply-To:References: Message-ID:Date:Subject:CC:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=20Orzeqey+j1nqKl8bwKQA5hyGamPasr9uCTMB7S0EI=; b=H87YIXN5snPuUq prQdy4lo4bnTWc8FaDEU0il9kCkYsH4WmY1pxO8lTT3aZKwlP3ui100ZJYsyjUBrkKpLZE8WSF1YG 92l9ogT5ypKrNI06w9I8xL4itn/EFJ0fl8gUHwDa6DWp5rorMxnm0J1xZX+3u/ozgB8zNXm740rAW rA7s8kn95tjekr2skSyaJMpp4KvKzTFAqeZ3rbKw1k6OxxEV9DlV84Tk92x2cdf3coYgLDTiJS95N fM4WgSdUrpJQnACG2Y4PAX3xPajEps0V5kljru2K2U++Uk5oZjr+TSYZhhN/m8gaFwZxgKHXy6PJC Cqu2sCD+6p3Fz7XHyFgQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oprKy-005HUw-4d; Tue, 01 Nov 2022 13:29:52 +0000 Received: from eu-smtp-delivery-151.mimecast.com ([185.58.85.151]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1oprKu-005HTa-Va for linux-arm-kernel@lists.infradead.org; Tue, 01 Nov 2022 13:29:50 +0000 Received: from AcuMS.aculab.com (156.67.243.121 [156.67.243.121]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384) id uk-mta-20-AfaSK5zRMHuT_5a8roxyow-1; Tue, 01 Nov 2022 13:29:43 +0000 X-MC-Unique: AfaSK5zRMHuT_5a8roxyow-1 Received: from AcuMS.Aculab.com (10.202.163.6) by AcuMS.aculab.com (10.202.163.6) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Tue, 1 Nov 2022 13:29:41 +0000 Received: from AcuMS.Aculab.com ([::1]) by AcuMS.aculab.com ([::1]) with mapi id 15.00.1497.042; Tue, 1 Nov 2022 13:29:41 +0000 From: David Laight To: 'Mark Rutland' CC: 'Szabolcs Nagy' , Theodore Ts'o , "linux-api@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" Subject: RE: linux interprets an fcntl int arg as long Thread-Topic: linux interprets an fcntl int arg as long Thread-Index: AQHY7dH4b5GlkmHz9EyVI+/nub6Ts64p0qEQgAAgcACAAAds0IAAERqAgAADzNA= Date: Tue, 1 Nov 2022 13:29:41 +0000 Message-ID: <267402c9e66a4cac91a2e1df749dea6a@AcuMS.aculab.com> References: <0030a20a94cd49628c5461d044bb28ed@AcuMS.aculab.com> In-Reply-To: Accept-Language: en-GB, en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ms-exchange-transport-fromentityheader: Hosted x-originating-ip: [10.202.205.107] MIME-Version: 1.0 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: aculab.com Content-Language: en-US X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20221101_062949_296514_34AC73CE X-CRM114-Status: GOOD ( 12.97 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Mark Rutland > Sent: 01 November 2022 13:13 > > On Tue, Nov 01, 2022 at 12:19:51PM +0000, David Laight wrote: > > From: 'Szabolcs Nagy' > > > Sent: 01 November 2022 11:45 > > > > > > The 11/01/2022 10:02, David Laight wrote: > > > > From: Szabolcs Nagy > > > > kernel code: > > > ------------ > > > SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg) > > > { > > > > That is just a wrapper and calls do_fcntl(). > > which needs changing to be add: > > arg &= ~0U; > > before the switch(cmd) { > > Just to check, do you mean the switch in do_fcntl(), or the switch within memfd_fcntl() ? > > The former handles other APIs which do expect arg to be a long (e.g. > F_SET_RW_HINT and F_GET_RW_HINT expect it to hold a full 64-bit pointer), so > that'd break things. The assignment to argv is earlier. David - Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK Registration No: 1397386 (Wales) _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel