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=-9.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT 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 96BE7C1975A for ; Mon, 23 Mar 2020 03:46:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6EFA72070A for ; Mon, 23 Mar 2020 03:46:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726983AbgCWDqk (ORCPT ); Sun, 22 Mar 2020 23:46:40 -0400 Received: from mga06.intel.com ([134.134.136.31]:64502 "EHLO mga06.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726979AbgCWDqk (ORCPT ); Sun, 22 Mar 2020 23:46:40 -0400 IronPort-SDR: S2KTvPP/p0rEmSfuPA0jQaMKDTt2O3fsHFhG0j1keQm84Al2AuguL6qI/ufZs8qzIxOVyBceF0 hHKjeLhmQd/A== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Mar 2020 20:46:39 -0700 IronPort-SDR: GGaGk3ZEfE+fXiJVxDsXc5XmCklkwVPkEOWh2ceMYofBKRjmfO8GntFNxsHD1MWz/tJdT9TP5R 2woU/kAF78Rw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,295,1580803200"; d="scan'208";a="445661354" Received: from nspindel-mobl.ger.corp.intel.com (HELO localhost) ([10.214.214.10]) by fmsmga005.fm.intel.com with ESMTP; 22 Mar 2020 20:46:36 -0700 From: Jarkko Sakkinen To: linux-sgx@vger.kernel.org Cc: Jarkko Sakkinen , Sean Christopherson Subject: [PATCH 1/5] selftests/sgx: Add PHDRS to encl.lds Date: Mon, 23 Mar 2020 05:46:30 +0200 Message-Id: <20200323034634.4157-1-jarkko.sakkinen@linux.intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-sgx-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sgx@vger.kernel.org Improve encl.lds to create an ELF image that can be easily loaded without needing the conversion to a raw binary. This is achieved by adding PHDRS to encl.lds that describes the different segments. With a simple Python program it is easy to see that the changes result in a sane memory layout [1]: Flags Start End rw- 0x0000000000200000 0x0000000000201000 r-x 0x0000000000201000 0x0000000000202000 rw- 0x0000000000202000 0x0000000000205000 These are the start and end positions in the enclave ELF image for different enclave memory areas. Since all the sections are marked as being allocated, an ELF enclave loader can be solely based on p_offset, p_memsz and p_flags fields of struct Elf64_Phdr. [1] import sys from elftools.elf.elffile import ELFFile PAGE_SIZE = 0x1000 if __name__ == '__main__': flags2str = ['---', '--x', '-w-', '-wx', 'r--', 'r-x', 'rw-', 'rwx'] if len(sys.argv) != 2: sys.exit(1) with open(sys.argv[1], 'rb') as file: file = ELFFile(file) print('{:<5} {:<18} {:<18}'.format('Flags', 'Start', 'End')) for seg in file.iter_segments(): if seg['p_type'] != 'PT_LOAD': continue flags = flags2str[seg['p_flags']] start = seg['p_offset'] & ~(PAGE_SIZE - 1) end = start + (seg['p_filesz'] + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1) print('{:<5} 0x{:0>16x} 0x{:0>16x}'.format(flags, start, end)) Cc: Sean Christopherson Signed-off-by: Jarkko Sakkinen --- tools/testing/selftests/sgx/encl.lds | 14 ++++++++++---- tools/testing/selftests/sgx/encl_bootstrap.S | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/tools/testing/selftests/sgx/encl.lds b/tools/testing/selftests/sgx/encl.lds index 9a56d3064104..0fbbda7e665e 100644 --- a/tools/testing/selftests/sgx/encl.lds +++ b/tools/testing/selftests/sgx/encl.lds @@ -1,25 +1,31 @@ OUTPUT_FORMAT(elf64-x86-64) +PHDRS +{ + tcs PT_LOAD; + text PT_LOAD; + data PT_LOAD; +} + SECTIONS { . = 0; .tcs : { *(.tcs*) - } + } : tcs . = ALIGN(4096); .text : { *(.text*) *(.rodata*) - } + } : text . = ALIGN(4096); .data : { *(.data*) - } + } : data /DISCARD/ : { - *(.data*) *(.comment*) *(.note*) *(.debug*) diff --git a/tools/testing/selftests/sgx/encl_bootstrap.S b/tools/testing/selftests/sgx/encl_bootstrap.S index 3a1479f1cdcf..b9ea6130e422 100644 --- a/tools/testing/selftests/sgx/encl_bootstrap.S +++ b/tools/testing/selftests/sgx/encl_bootstrap.S @@ -7,7 +7,7 @@ .byte 0x0f, 0x01, 0xd7 .endm - .section ".tcs", "a" + .section ".tcs", "aw" .balign 4096 .fill 1, 8, 0 # STATE (set by CPU) -- 2.25.1