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=-7.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,NICE_REPLY_A, SPF_HELO_NONE,SPF_PASS autolearn=no 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 C59D7C07E96 for ; Tue, 6 Jul 2021 12:57:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id ADAA161A46 for ; Tue, 6 Jul 2021 12:57:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231658AbhGFNAg (ORCPT ); Tue, 6 Jul 2021 09:00:36 -0400 Received: from mail.kernel.org ([198.145.29.99]:56864 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231614AbhGFNAg (ORCPT ); Tue, 6 Jul 2021 09:00:36 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 95072619B2; Tue, 6 Jul 2021 12:57:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1625576277; bh=tXJG+vlNUQuSlsOGmqvU6o9KMiZhzD6lIR38SC/vSio=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=JdckYc3K8x8Unj771PzniuMxFqJCDQ00CQleN9+z74naWEyY6Yqc14+V3OZhT/75a pDuFZq/PfVSKtR0rsC4l183ob4gwqMU4w8F3qYWmjWNveAqS95siHZtoXfBiTstsw+ J7xE14wMb2/2gtYaX20z9Gvsq4sBSfUixb8AyjF25YnS26QbF64AVuZPXG9sjPhJFq ZO8MbM7S6uUEXFXcaMhadQ2+as58hzWLBlyqGpOAjvxX1RvwfcheuahNvxTc4nqOPY QwOASxp7i0AsbkBCJ/NJrbY1q2noOyiGh0OfWxdqdES4hmA7P3P0lWISRy5IYc58hR 620aCKEn0JAKw== Date: Tue, 6 Jul 2021 21:57:53 +0900 From: Masami Hiramatsu To: Ingo Molnar Cc: Steven Rostedt , Josh Poimboeuf , X86 ML , Daniel Xu , linux-kernel@vger.kernel.org, bpf@vger.kernel.org, kuba@kernel.org, mingo@redhat.com, ast@kernel.org, Thomas Gleixner , Borislav Petkov , Peter Zijlstra , kernel-team@fb.com, yhs@fb.com, linux-ia64@vger.kernel.org, Abhishek Sagar , Andrii Nakryiko Subject: Re: [PATCH -tip v8 13/13] x86/kprobes: Fixup return address in generic trampoline handler Message-Id: <20210706215753.c7cad02afdeda48bf801d294@kernel.org> In-Reply-To: References: <162399992186.506599.8457763707951687195.stgit@devnote2> <162400004562.506599.7549585083316952768.stgit@devnote2> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.32; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org On Mon, 5 Jul 2021 10:34:58 +0200 Ingo Molnar wrote: > > * Masami Hiramatsu wrote: > > > In x86, kretprobe trampoline address on the stack frame will > > be replaced with the real return address after returning from > > trampoline_handler. Before fixing the return address, the real > > return address can be found in the current->kretprobe_instances. > > > > However, since there is a window between updating the > > current->kretprobe_instances and fixing the address on the stack, > > if an interrupt caused at that timing and the interrupt handler > > does stacktrace, it may fail to unwind because it can not get > > the correct return address from current->kretprobe_instances. > > > > This will minimize that window by fixing the return address > > right before updating current->kretprobe_instances. > > Is there still a window? I.e. is it "minimized" (to how big of a window?), > or eliminated? Oh, this will eliminate the window, because the return address is fixed before updating the 'current->kretprobe_instance'. > > > +void arch_kretprobe_fixup_return(struct pt_regs *regs, > > + unsigned long correct_ret_addr) > > +{ > > + unsigned long *frame_pointer; > > + > > + frame_pointer = ((unsigned long *)®s->sp) + 1; > > + > > + /* Replace fake return address with real one. */ > > + *frame_pointer = correct_ret_addr; > > Firstly, why does ®s->sp have to be forced to 'unsigned long *'? > > pt_regs::sp is 'unsigned long' on both 32-bit and 64-bit kernels AFAICS. Ah, right. > > Secondly, the new code modified by your patch now looks like this: > > frame_pointer = ((unsigned long *)®s->sp) + 1; > > + kretprobe_trampoline_handler(regs, frame_pointer); > > where: > > +void arch_kretprobe_fixup_return(struct pt_regs *regs, > + unsigned long correct_ret_addr) > +{ > + unsigned long *frame_pointer; > + > + frame_pointer = ((unsigned long *)®s->sp) + 1; > + > + /* Replace fake return address with real one. */ > + *frame_pointer = correct_ret_addr; > +} > > So we first do: > > frame_pointer = ((unsigned long *)®s->sp) + 1; > > ... and pass that in to arch_kretprobe_fixup_return() as > 'correct_ret_addr', which does: No, 'correct_ret_addr' is found from 'current->kretprobe_instances' /* Find correct address and all nodes for this frame. */ correct_ret_addr = (void *)__kretprobe_find_ret_addr(current, &node); > > + frame_pointer = ((unsigned long *)®s->sp) + 1; > + *frame_pointer = correct_ret_addr; > > ... which looks like the exact same thing as: > > *frame_pointer = frame_pointer; > > ... obfuscated through a thick layer of type casts? Thus it will be the same thing as *frame_pointer = __kretprobe_find_ret_addr(current, &node); Actually, this is a bit confusing because same 'frame_pointer' is calcurated twice from 'regs->sp'. This is because the return address is stored at 'frame_pointer' or not depends on the architecture. Thank you, > > Thanks, > > Ingo -- Masami Hiramatsu