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 X-Spam-Level: X-Spam-Status: No, score=-5.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BD076CA9EA0 for ; Tue, 22 Oct 2019 03:22:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 96F422166E for ; Tue, 22 Oct 2019 03:22:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730786AbfJVDWI (ORCPT ); Mon, 21 Oct 2019 23:22:08 -0400 Received: from mga05.intel.com ([192.55.52.43]:19371 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730156AbfJVDWI (ORCPT ); Mon, 21 Oct 2019 23:22:08 -0400 X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Oct 2019 20:22:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,325,1566889200"; d="scan'208";a="200637906" Received: from sjchrist-coffee.jf.intel.com (HELO linux.intel.com) ([10.54.74.41]) by orsmga003.jf.intel.com with ESMTP; 21 Oct 2019 20:22:07 -0700 Date: Mon, 21 Oct 2019 20:22:07 -0700 From: Sean Christopherson To: Jarkko Sakkinen Cc: linux-sgx@vger.kernel.org Subject: Re: [PATCH for_v23 v3 01/12] x86/sgx: Pass EADD the kernel's virtual address for the source page Message-ID: <20191022032207.GC32147@linux.intel.com> References: <20191016183745.8226-1-sean.j.christopherson@intel.com> <20191016183745.8226-2-sean.j.christopherson@intel.com> <20191018095713.GA4835@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191018095713.GA4835@linux.intel.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-sgx-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sgx@vger.kernel.org On Fri, Oct 18, 2019 at 12:57:13PM +0300, Jarkko Sakkinen wrote: > On Wed, Oct 16, 2019 at 11:37:34AM -0700, Sean Christopherson wrote: > > Use the kernel's virtual address to reference the source page when > > EADDing a page to the enclave. gup() "does not guarantee that the page > > exists in the user mappings", i.e. EADD can still fault and deadlock > > due to mmap_sem contention if it consumes the userspace address. > > > > Signed-off-by: Sean Christopherson > > + kunmap_atomic((void *)pginfo.contents); > > Remark: if not casted first to unsigned long, it will give a warning on > 32-bit build. Do we care? SGX is 64-bit only, I don't see that changing anytime soon.