Received: by 2002:ac0:aed5:0:0:0:0:0 with SMTP id t21csp2950580imb; Mon, 4 Mar 2019 19:24:48 -0800 (PST) X-Google-Smtp-Source: AHgI3IbILv7POhHDgPaTuW6qQhlZO13Tt6k/eiQI2r/DXJTPBo4VH2UA5JEVAc/I2t+h4BdwDZ7i X-Received: by 2002:a62:1c94:: with SMTP id c142mr24225684pfc.54.1551756287983; Mon, 04 Mar 2019 19:24:47 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1551756287; cv=none; d=google.com; s=arc-20160816; b=NZGV8Nx78jM9JtzNpmoonnFVhltZFP6Jp30mtB/pfri5C3WCRYPyywREikhCgvHp0f pWJOk/FrCQ1vO/YMXidabzNEK6ty/mCOWtWhRO2LdIRxDhDLlI4dfOTz6WvrhIqqbyWM HmXwkN6bf3XQs2UUuvrebHw5dL9OwhqvpzkDnxh1QK5IxClDCXFhYp9WSddjvjduuXgb y199bZeohkd54EfcbyM+xmHo0pSWEgphBAimrU90+JB/3FR1Tmyg4NKX6+DrGiKkjKEx bITFgRr5wyGIpT3d33cGEgPtL2W/1dACWGZF6r1njeTy8dguy/JnFYdsJ4qLah/vOvQY xofA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from; bh=N1/LyZ5Ajc38WW76t8o9FpFytofs6vxL8DZFb1izH0c=; b=WOtGqtO2v/dZozxzN0RgrrPed+Uf93HhETVyqUssyGWsSjLMSIiSDYnSIi6nwdQT/Z O80Z4P9gHW4v+uBQ62RDflT5yblEOB4GM+QZ2KMkIVkQIILlKRmEG2ZoDzfVuWAjzAml coXpocyVip7PC2may3q8+uRPjy1Yv3vqyfCzbxnYiwLlvpRg55icxj7GZ319b1RX9Q9W NIbvRZ/CyZPjEcP9hf2rZhaZO58uUS12o4RqGuUpu50brwT5+94WMF+7tmOLTVPIvUj+ VfC9EBXAmAXAZuOS86PqCz4jbWR5U5M2P+KfvBbBaEtC5CJefkDcVPjHv4hU+NleoW/Z U18w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 76si7346644pft.132.2019.03.04.19.24.33; Mon, 04 Mar 2019 19:24:47 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727034AbfCEDYL (ORCPT + 99 others); Mon, 4 Mar 2019 22:24:11 -0500 Received: from 59-120-53-16.HINET-IP.hinet.net ([59.120.53.16]:34555 "EHLO ATCSQR.andestech.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726996AbfCEDYK (ORCPT ); Mon, 4 Mar 2019 22:24:10 -0500 Received: from mail.andestech.com (atcpcs16.andestech.com [10.0.1.222]) by ATCSQR.andestech.com with ESMTP id x253MrPA044079; Tue, 5 Mar 2019 11:22:53 +0800 (GMT-8) (envelope-from vincentc@andestech.com) Received: from atcsqa06.andestech.com (10.0.15.65) by ATCPCS16.andestech.com (10.0.1.222) with Microsoft SMTP Server id 14.3.123.3; Tue, 5 Mar 2019 11:23:53 +0800 From: Vincent Chen To: , , , , , CC: , Subject: [PATCH v2 2/3] riscv: Add the support for c.ebreak check in is_valid_bugaddr() Date: Tue, 5 Mar 2019 11:23:34 +0800 Message-ID: <1551756215-22299-3-git-send-email-vincentc@andestech.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1551756215-22299-1-git-send-email-vincentc@andestech.com> References: <1551756215-22299-1-git-send-email-vincentc@andestech.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.0.15.65] X-DNSRBL: X-MAIL: ATCSQR.andestech.com x253MrPA044079 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The macro __BUG_INSN currently is defined as the "ebreak" opcode. The is_valid_bugaddr() function compares the instruction pointed to by $sepc with macro __BUG_INSN to check whether the current trap exception is caused by an "ebreak" instruction. However, this check flow is possibly erroneous because if C extension is supported, the expected trap instruction "ebreak" is possibly translated to "c.ebreak" by the assembler. Therefore, it requires a mechanism to distinguish the length of the instruction in $spec and compare it to the correct trap instruction. Signed-off-by: Vincent Chen --- arch/riscv/include/asm/bug.h | 7 ++++++- arch/riscv/kernel/traps.c | 20 +++++++++++++++++--- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/arch/riscv/include/asm/bug.h b/arch/riscv/include/asm/bug.h index 4d906d8..52a1fbd 100644 --- a/arch/riscv/include/asm/bug.h +++ b/arch/riscv/include/asm/bug.h @@ -21,7 +21,12 @@ #include #ifdef CONFIG_GENERIC_BUG -#define __BUG_INSN _AC(0x00100073, UL) /* ebreak */ +#define __INSN_LENGTH_MASK _UL(0x3) +#define __INSN_LENGTH_32 _UL(0x3) +#define __COMPRESSED_INSN_MASK _UL(0xffff) + +#define __BUG_INSN_32 _UL(0x00100073) /* ebreak */ +#define __BUG_INSN_16 _UL(0x9002) /* c.ebreak */ #ifndef __ASSEMBLY__ typedef u32 bug_insn_t; diff --git a/arch/riscv/kernel/traps.c b/arch/riscv/kernel/traps.c index 24a9333..6423e1a 100644 --- a/arch/riscv/kernel/traps.c +++ b/arch/riscv/kernel/traps.c @@ -118,6 +118,17 @@ asmlinkage void name(struct pt_regs *regs) \ DO_ERROR_INFO(do_trap_ecall_m, SIGILL, ILL_ILLTRP, "environment call from M-mode"); +#ifdef CONFIG_GENERIC_BUG +static inline unsigned long get_break_insn_length(unsigned long pc) +{ + bug_insn_t insn; + + if (probe_kernel_address((bug_insn_t *)pc, insn)) + return 0; + return (((insn & __INSN_LENGTH_MASK) == __INSN_LENGTH_32) ? 4UL : 2UL); +} +#endif /* CONFIG_GENERIC_BUG */ + asmlinkage void do_trap_break(struct pt_regs *regs) { #ifdef CONFIG_GENERIC_BUG @@ -129,8 +140,8 @@ asmlinkage void do_trap_break(struct pt_regs *regs) case BUG_TRAP_TYPE_NONE: break; case BUG_TRAP_TYPE_WARN: - regs->sepc += sizeof(bug_insn_t); - return; + regs->sepc += get_break_insn_length(regs->sepc); + break; case BUG_TRAP_TYPE_BUG: die(regs, "Kernel BUG"); } @@ -149,7 +160,10 @@ int is_valid_bugaddr(unsigned long pc) return 0; if (probe_kernel_address((bug_insn_t *)pc, insn)) return 0; - return (insn == __BUG_INSN); + if ((insn & __INSN_LENGTH_MASK) == __INSN_LENGTH_32) + return (insn == __BUG_INSN_32); + else + return ((insn & __COMPRESSED_INSN_MASK) == __BUG_INSN_16); } #endif /* CONFIG_GENERIC_BUG */ -- 1.7.1