From patchwork Wed Mar 6 13:33:34 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alan Hayward X-Patchwork-Id: 31731 Received: (qmail 34792 invoked by alias); 6 Mar 2019 13:33:45 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 34656 invoked by uid 89); 6 Mar 2019 13:33:44 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=priv X-HELO: EUR04-HE1-obe.outbound.protection.outlook.com Received: from mail-eopbgr70055.outbound.protection.outlook.com (HELO EUR04-HE1-obe.outbound.protection.outlook.com) (40.107.7.55) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 06 Mar 2019 13:33:42 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=armh.onmicrosoft.com; s=selector1-arm-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=xyL4YhC9en24vM6hMurUL4pJFCmRJLyaH7ZgyuhEo2M=; b=SnZRDM/jIk7oXR2FfosD7Topn33fkaHmTrBLH7BbkEsxmTr627GStF8WRWrHlCpT6HH1X1+UWwW6EFyOuAEYiLrbSuF10ss6Rt2cyiflzMdedVUuhQ6T0+aHgucCmFlZ75JxaX5n6cHi1FyerS3pxnZakawwaNzNBFT6QTwsynM= Received: from DB6PR0802MB2133.eurprd08.prod.outlook.com (10.172.227.22) by DB6PR0802MB2262.eurprd08.prod.outlook.com (10.172.227.19) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.1665.19; Wed, 6 Mar 2019 13:33:34 +0000 Received: from DB6PR0802MB2133.eurprd08.prod.outlook.com ([fe80::e974:35a7:c83c:e5b7]) by DB6PR0802MB2133.eurprd08.prod.outlook.com ([fe80::e974:35a7:c83c:e5b7%3]) with mapi id 15.20.1686.018; Wed, 6 Mar 2019 13:33:34 +0000 From: Alan Hayward To: "gdb-patches@sourceware.org" CC: nd , Alan Hayward Subject: [PATCH v2 2/8] AArch64: Use HWCAP to detect pauth feature Date: Wed, 6 Mar 2019 13:33:34 +0000 Message-ID: <20190306133325.2531-3-alan.hayward@arm.com> References: <20190306133325.2531-1-alan.hayward@arm.com> In-Reply-To: <20190306133325.2531-1-alan.hayward@arm.com> received-spf: None (protection.outlook.com: arm.com does not designate permitted sender hosts) authentication-results: spf=none (sender IP is ) smtp.mailfrom=Alan.Hayward@arm.com; x-ms-exchange-senderadcheck: 1 MIME-Version: 1.0 X-MS-Exchange-CrossTenant-mailboxtype: HOSTED X-IsSubscribed: yes Add aarch64_get_hwcap functions for reading the HWCAP. From this extract the PACA value and use this to enable pauth. gdb/ChangeLog: 2019-03-06 Alan Hayward Jiong Wang * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description): Read PACA hwcap. * aarch64-linux-tdep.c (aarch64_linux_core_read_description): Likewise. (aarch64_linux_get_hwcap): New function. * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define. (aarch64_linux_get_hwcap): New declaration. gdb/gdbserver/ChangeLog: 2019-03-06 Alan Hayward Jiong Wang * linux-aarch64-low.c (AARCH64_HWCAP_PACA): New define. (aarch64_get_hwcap): New function. (aarch64_arch_setup): Read APIA hwcap. --- gdb/aarch64-linux-nat.c | 7 +++++-- gdb/aarch64-linux-tdep.c | 16 +++++++++++---- gdb/aarch64-linux-tdep.h | 6 ++++++ gdb/gdbserver/linux-aarch64-low.c | 33 +++++++++++++++++++++++++++++-- 4 files changed, 54 insertions(+), 8 deletions(-) diff --git a/gdb/aarch64-linux-nat.c b/gdb/aarch64-linux-nat.c index f58a41e195..8a7006165e 100644 --- a/gdb/aarch64-linux-nat.c +++ b/gdb/aarch64-linux-nat.c @@ -606,8 +606,11 @@ aarch64_linux_nat_target::read_description () if (ret == 0) return tdesc_arm_with_neon; - /* pauth not yet supported. */ - return aarch64_read_description (aarch64_sve_get_vq (tid), false); + CORE_ADDR hwcap = 0; + bool pauth_p = aarch64_linux_get_hwcap (&hwcap) + && (hwcap & AARCH64_HWCAP_PACA); + + return aarch64_read_description (aarch64_sve_get_vq (tid), pauth_p); } /* Convert a native/host siginfo object, into/from the siginfo in the diff --git a/gdb/aarch64-linux-tdep.c b/gdb/aarch64-linux-tdep.c index 445019accc..5eeafa456c 100644 --- a/gdb/aarch64-linux-tdep.c +++ b/gdb/aarch64-linux-tdep.c @@ -637,12 +637,11 @@ aarch64_linux_core_read_description (struct gdbarch *gdbarch, { CORE_ADDR aarch64_hwcap = 0; - if (target_auxv_search (target, AT_HWCAP, &aarch64_hwcap) != 1) - return NULL; + if (!aarch64_linux_get_hwcap (&aarch64_hwcap)) + return nullptr; - /* pauth not yet supported. */ return aarch64_read_description (aarch64_linux_core_read_vq (gdbarch, abfd), - false); + aarch64_hwcap & AARCH64_HWCAP_PACA); } /* Implementation of `gdbarch_stap_is_single_operand', as defined in @@ -1420,6 +1419,15 @@ aarch64_linux_gcc_target_options (struct gdbarch *gdbarch) return NULL; } +/* See aarch64-linux-tdep.h. */ + +bool +aarch64_linux_get_hwcap (CORE_ADDR *hwcap) +{ + *hwcap = 0; + return target_auxv_search (current_top_target (), AT_HWCAP, hwcap) == 1; +} + static void aarch64_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) { diff --git a/gdb/aarch64-linux-tdep.h b/gdb/aarch64-linux-tdep.h index 814222ead0..244095cbca 100644 --- a/gdb/aarch64-linux-tdep.h +++ b/gdb/aarch64-linux-tdep.h @@ -36,4 +36,10 @@ extern const struct regset aarch64_linux_gregset; extern const struct regset aarch64_linux_fpregset; +/* Matches HWCAP_PACA in kernel header arch/arm64/include/uapi/asm/hwcap.h. */ +#define AARCH64_HWCAP_PACA (1 << 30) + +/* Fetch the AT_HWCAP entry from the auxv vector. */ +bool aarch64_linux_get_hwcap (CORE_ADDR *hwcap); + #endif /* AARCH64_LINUX_TDEP_H */ diff --git a/gdb/gdbserver/linux-aarch64-low.c b/gdb/gdbserver/linux-aarch64-low.c index db329da4dc..e2e25f0e27 100644 --- a/gdb/gdbserver/linux-aarch64-low.c +++ b/gdb/gdbserver/linux-aarch64-low.c @@ -485,6 +485,33 @@ aarch64_linux_new_fork (struct process_info *parent, *child->priv->arch_private = *parent->priv->arch_private; } +/* Matches HWCAP_PACA in kernel header arch/arm64/include/uapi/asm/hwcap.h. */ +#define AARCH64_HWCAP_PACA (1 << 30) + +/* Fetch the AT_HWCAP entry from the auxv vector. */ + +static bool +aarch64_get_hwcap (unsigned long *valp) +{ + unsigned char *data = (unsigned char *) alloca (16); + int offset = 0; + + while ((*the_target->read_auxv) (offset, data, 16) == 16) + { + unsigned long *data_p = (unsigned long *)data; + if (data_p[0] == AT_HWCAP) + { + *valp = data_p[1]; + return true; + } + + offset += 16; + } + + *valp = 0; + return false; +} + /* Implementation of linux_target_ops method "arch_setup". */ static void @@ -501,8 +528,10 @@ aarch64_arch_setup (void) if (is_elf64) { uint64_t vq = aarch64_sve_get_vq (tid); - /* pauth not yet supported. */ - current_process ()->tdesc = aarch64_linux_read_description (vq, false); + unsigned long hwcap = 0; + bool pauth_p = aarch64_get_hwcap (&hwcap) && (hwcap & AARCH64_HWCAP_PACA); + + current_process ()->tdesc = aarch64_linux_read_description (vq, pauth_p); } else current_process ()->tdesc = tdesc_arm_with_neon;