[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CALCETrWEhNCWDz7OVpbYJceJ5eShsWWhuyuAQQSzAdKncUo7zA@mail.gmail.com>
Date: Fri, 4 Oct 2019 07:59:00 -0700
From: Andy Lutomirski <luto@...nel.org>
To: Changbin Du <changbin.du@...il.com>
Cc: Dave Hansen <dave.hansen@...ux.intel.com>,
Andy Lutomirski <luto@...nel.org>, X86 ML <x86@...nel.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] x86/mm: determine whether the fault address is canonical
On Fri, Oct 4, 2019 at 6:45 AM Changbin Du <changbin.du@...il.com> wrote:
>
> We know the answer, so don't ask the user.
>
> Signed-off-by: Changbin Du <changbin.du@...il.com>
> ---
> arch/x86/mm/extable.c | 5 ++++-
> arch/x86/mm/mm_internal.h | 11 +++++++++++
> 2 files changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/arch/x86/mm/extable.c b/arch/x86/mm/extable.c
> index 4d75bc656f97..5196e586756f 100644
> --- a/arch/x86/mm/extable.c
> +++ b/arch/x86/mm/extable.c
> @@ -8,6 +8,8 @@
> #include <asm/traps.h>
> #include <asm/kdebug.h>
>
> +#include "mm_internal.h"
> +
> typedef bool (*ex_handler_t)(const struct exception_table_entry *,
> struct pt_regs *, int, unsigned long,
> unsigned long);
> @@ -123,7 +125,8 @@ __visible bool ex_handler_uaccess(const struct exception_table_entry *fixup,
> unsigned long error_code,
> unsigned long fault_addr)
> {
> - WARN_ONCE(trapnr == X86_TRAP_GP, "General protection fault in user access. Non-canonical address?");
> + WARN_ONCE(trapnr == X86_TRAP_GP, "General protection fault at %s address in user access.",
> + is_canonical_addr(fault_addr) ? "canonical" : "non-canonical");
Unless the hardware behaves rather differently from the way I think it
does, fault_addr is garbage for anything other than #PF and sometimes
for #DF. (And maybe the virtualization faults?) I don't believe that
#GP fills in CR2.
Powered by blists - more mailing lists