Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 93D12C05027 for ; Thu, 2 Feb 2023 17:42:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231614AbjBBRmA (ORCPT ); Thu, 2 Feb 2023 12:42:00 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33300 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231835AbjBBRl6 (ORCPT ); Thu, 2 Feb 2023 12:41:58 -0500 Received: from mail-pg1-x536.google.com (mail-pg1-x536.google.com [IPv6:2607:f8b0:4864:20::536]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 36F6F298DD for ; Thu, 2 Feb 2023 09:41:57 -0800 (PST) Received: by mail-pg1-x536.google.com with SMTP id r18so1842232pgr.12 for ; Thu, 02 Feb 2023 09:41:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=nfX5H9V5MrNKSKkgY4eT0EcmzgQwTbioJAoXOa/XrdM=; b=IBZzloQpx+KZogx2fGBmgKgaUAbIFkVMpIm0OS/6MUGMRU1dp6fG86bwon2V5JrY66 kAdCfoVE0qvqVphmSTSn8iAhN6TrquxZf1GEkTI6WSPmva4mcCa1rGjGFSFRC9v1FXOw oHqgNRGdHiN5ubnh7PWo8Bp0pGDrOy9xvWku8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=nfX5H9V5MrNKSKkgY4eT0EcmzgQwTbioJAoXOa/XrdM=; b=A+WYJfbBGI9iU1sDq2h2PpWlyNyCInrYAXaH8+If2LXddOTNCSNP6b990CPEuCb4MF 9Gyf4iGfKTqKOjHDnh+nvjbd2ARtBdO0QrF9qGzaKh48XSAoKRAgQuf3efJeHbVx6gw3 jzZtNNQqRRhjdqSvmbar+Y+19tqheQ5dx/hSqMCrbEW97hMS8z1QmrD3ndNat7BBL8Po HwoB2dHO3nAWCmEbPxXEYbRNbRBTCWHAayUpmFEa6CgzT4tjKc0P8XWkD39X5dyOMREn boLVK/xyJaDlJCjEC+XufoSw2BEBOs5GGvP8QKijPQXGw0aWVq0myaSLnaDqRmZ6HRLQ JhdQ== X-Gm-Message-State: AO0yUKViYL71vtOPe30N/IeJWjx9bOmyFkjdEc7kZiCrH9aGPovE+Iel 1pfIURluoui1Dr/vESydWDanvn8xT22sBZr4lDhnDQ== X-Google-Smtp-Source: AK7set9CPjhJRe6HGlggG3wVT7dSPHFZm+o5JvOQnESuOBjfXgM5pycZKi4DteYQDc4MkI8O5W97QQpw38zisdpCXsk= X-Received: by 2002:a05:6a00:b41:b0:58b:c7ef:25ca with SMTP id p1-20020a056a000b4100b0058bc7ef25camr1848836pfo.51.1675359716731; Thu, 02 Feb 2023 09:41:56 -0800 (PST) MIME-Version: 1.0 References: <20230201163420.1579014-1-revest@chromium.org> <20230201163420.1579014-5-revest@chromium.org> In-Reply-To: From: Florent Revest Date: Thu, 2 Feb 2023 18:41:45 +0100 Message-ID: Subject: Re: [PATCH 4/8] ftrace: Store direct called addresses in their ops To: Mark Rutland Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-trace-kernel@vger.kernel.org, bpf@vger.kernel.org, catalin.marinas@arm.com, will@kernel.org, rostedt@goodmis.org, mhiramat@kernel.org, ast@kernel.org, daniel@iogearbox.net, andrii@kernel.org, kpsingh@kernel.org, jolsa@kernel.org, xukuohai@huaweicloud.com Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Feb 2, 2023 at 4:30 PM Mark Rutland wrote: > > On Wed, Feb 01, 2023 at 05:34:16PM +0100, Florent Revest wrote: > > All direct calls are now registered using the register_ftrace_direct API > > so each ops can jump to only one direct-called trampoline. > > > > By storing the direct called trampoline address directly in the ops we > > can save one hashmap lookup in the direct call ops and implement arm64 > > direct calls on top of call ops. > > > > Signed-off-by: Florent Revest > > --- > > include/linux/ftrace.h | 3 +++ > > kernel/trace/ftrace.c | 6 ++++-- > > 2 files changed, 7 insertions(+), 2 deletions(-) > > > > diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h > > index a7dbd307c3a4..84f717f8959e 100644 > > --- a/include/linux/ftrace.h > > +++ b/include/linux/ftrace.h > > @@ -321,6 +321,9 @@ struct ftrace_ops { > > unsigned long trampoline_size; > > struct list_head list; > > ftrace_ops_func_t ops_func; > > +#ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS > > + unsigned long direct_call; > > +#endif > > #endif > > }; > > > > diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c > > index cb77a0a208c7..b0426de11c45 100644 > > --- a/kernel/trace/ftrace.c > > +++ b/kernel/trace/ftrace.c > > @@ -2577,9 +2577,8 @@ ftrace_add_rec_direct(unsigned long ip, unsigned long addr, > > static void call_direct_funcs(unsigned long ip, unsigned long pip, > > struct ftrace_ops *ops, struct ftrace_regs *fregs) > > { > > - unsigned long addr; > > + unsigned long addr = ops->direct_call; > > > > - addr = ftrace_find_rec_direct(ip); > > if (!addr) > > return; > > > > @@ -5375,6 +5374,7 @@ int register_ftrace_direct(struct ftrace_ops *ops, unsigned long addr) > > ops->func = call_direct_funcs; > > ops->flags = MULTI_FLAGS; > > ops->trampoline = FTRACE_REGS_ADDR; > > + ops->direct_call = addr; > > > > err = register_ftrace_function_nolock(ops); > > > > @@ -5445,6 +5445,7 @@ __modify_ftrace_direct(struct ftrace_ops *ops, unsigned long addr) > > /* Enable the tmp_ops to have the same functions as the direct ops */ > > ftrace_ops_init(&tmp_ops); > > tmp_ops.func_hash = ops->func_hash; > > + tmp_ops.direct_call = addr; > > > > err = register_ftrace_function_nolock(&tmp_ops); > > if (err) > > @@ -5466,6 +5467,7 @@ __modify_ftrace_direct(struct ftrace_ops *ops, unsigned long addr) > > entry->direct = addr; > > } > > } > > + ops->direct_call = addr; > > AFAICT we don't synchronize threads when installing the tmp_ops, so IIUC on > arches with call_ops, there could be a a thread in the middle of ftrace_caller > which has loaded the ops pointer from the patch-site, but hasn't yet loaded the > ops::direct_func pointer, and could race with this assignment. > > Given that, I think this needs to be: > > WRITE_ONCE(ops->direct_call, addr); > > ... in order to avoid the risk of the store being torn, and the ftrace_caller > trampoline loading a corrupted pointer. Good point, I'll do that in v2.