From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9E19914F9F1 for ; Wed, 27 Mar 2024 17:46:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711561616; cv=none; b=KtN/29+24K6QeJUOue2WY46t9jQ9/1E66ro3Ugc5N495ktg3IUPrernjAwmQ3uhvVCTUelukTCTyiVmN6PzVK9pvWp0cf7vYcVJBZJl+vTeGV/ejLj3/ljakMLLJ77fTs0OG3T4rrj6SV9n7MLJZxRP7oqIGE15O2mf7OI50eEY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711561616; c=relaxed/simple; bh=+JLGX36YP90VROvvA1SVh8R1mRHl0Ghl/7lpEVb6bo0=; h=Mime-Version:Content-Type:Date:Message-Id:From:To:Cc:Subject: References:In-Reply-To; b=eXrDun6d1wgI4i9Dpy/8bq97vO8qRMOwnorappqMTmaCDftkU/F1uOrKmAjm0rlSXrn+sgJxrpZN9e4GyrUWZANUgZ8gQ3/3+RAQnanJK8+k9VMroLizzDz798zoqGhN4cvO6EbKrvXkYn4CkX3t3U55W26KOedoyx0f5W4UbrM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=jbVTnNry; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="jbVTnNry" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0C063C433C7; Wed, 27 Mar 2024 17:46:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1711561616; bh=+JLGX36YP90VROvvA1SVh8R1mRHl0Ghl/7lpEVb6bo0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jbVTnNryCOCvZ0IKvA3CTaFuKaG//yheGiNyp7ASv2D6PEhQi3q9LxNZbbShnm8MO sZdyp4MdS4nTGIy1KXIGiROGocQpc61GKmJYSb3j47b2VoIOTIoHMjz9OG4Ft0dV9c VhOeFDQStAaK/z4wUv8tPETLT41Af9SRMwkllKIdGZ70o+lZt16ibupYK3/+EbIv01 DTZWIYZHRo+tUsQZu1jJ7R5kq4/r0566Qrw09MD4+qR1udomiyigb0sLWPu0ebGyvr hkCmbstnM7u49tESQQzyL94fdAL5JYujU3ZzS5RFhfUymvplvreuHx8KxeIRL2pAPQ nRPIOumYqKH3g== Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 27 Mar 2024 19:46:50 +0200 Message-Id: From: "Jarkko Sakkinen" To: "Masami Hiramatsu" , "Mark Rutland" Cc: , , , , , , , , , , , , , , , , , , Subject: Re: [PATCH 4/4] kprobes: Remove core dependency on modules X-Mailer: aerc 0.17.0 References: <20240326163624.3253157-1-mark.rutland@arm.com> <20240326163624.3253157-5-mark.rutland@arm.com> <20240327090155.873f1ed32700dbdb75f8eada@kernel.org> In-Reply-To: <20240327090155.873f1ed32700dbdb75f8eada@kernel.org> On Wed Mar 27, 2024 at 2:01 AM EET, Masami Hiramatsu (Google) wrote: > On Tue, 26 Mar 2024 17:38:18 +0000 > Mark Rutland wrote: > > > On Tue, Mar 26, 2024 at 07:13:51PM +0200, Jarkko Sakkinen wrote: > > > On Tue Mar 26, 2024 at 6:36 PM EET, Mark Rutland wrote: > >=20 > > > > +#ifdef CONFIG_MODULES > > > > /* Check if 'p' is probing a module. */ > > > > *probed_mod =3D __module_text_address((unsigned long) p->addr); > > > > if (*probed_mod) { > > > > @@ -1605,6 +1606,8 @@ static int check_kprobe_address_safe(struct k= probe *p, > > > > ret =3D -ENOENT; > > > > } > > > > } > > > > +#endif > > >=20 > > > This can be scoped a bit more (see v7 of my patch set). > >=20 > > > > +#ifdef CONFIG_MODULES > > > > static nokprobe_inline bool trace_kprobe_module_exist(struct trace= _kprobe *tk) > > > > { > > > > char *p; > > > > @@ -129,6 +130,9 @@ static nokprobe_inline bool trace_kprobe_module= _exist(struct trace_kprobe *tk) > > > > =20 > > > > return ret; > > > > } > > > > +#else > > > > +#define trace_kprobe_module_exist(tk) false /* aka a module never = exists */ > > > > +#endif /* CONFIG_MODULES */ > > > > =20 > > > > static bool trace_kprobe_is_busy(struct dyn_event *ev) > > > > { > > > > @@ -670,6 +674,7 @@ static int register_trace_kprobe(struct trace_k= probe *tk) > > > > return ret; > > > > } > > > > =20 > > > > +#ifdef CONFIG_MODULES > > > > /* Module notifier call back, checking event on the module */ > > > > static int trace_kprobe_module_callback(struct notifier_block *nb, > > > > unsigned long val, void *data) > > > > @@ -699,6 +704,9 @@ static int trace_kprobe_module_callback(struct = notifier_block *nb, > > > > =20 > > > > return NOTIFY_DONE; > > > > } > > > > +#else > > > > +#define trace_kprobe_module_callback (NULL) > > > > +#endif /* CONFIG_MODULES */ > > >=20 > > > The last two CONFIG_MODULES sections could be combined. This was also= in > > > v7. > >=20 > > > Other than lgtm. > >=20 > > Great! I've folded your v7 changes in, and pushed that out to: > >=20 > > https://git.kernel.org/pub/scm/linux/kernel/git/mark/linux.git/log/?h= =3Dkprobes/without-modules > >=20 > > I'll hold off sending that out to the list until other folk have had a = chance > > to comment. > > Yeah, the updated one looks good to me too. > > Thanks! As for RISC-V: Tested-by: Jarkko Sakkinen # arch/riscv I'm fine with adding to all patches because it would be hard to place tested-by to any specific patch (e.g. if this was a syscall I would give tested-by just for that patch). Just adding disclaimer because depending on subsystem people are more or less strict with this tag :-) BR, Jarkko 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 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 2E0B6C54E67 for ; Wed, 27 Mar 2024 17:47:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:References:Subject:Cc:To: From:Message-Id:Date:Mime-Version:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=a/16O7kcgenvXXWS25uClY5cv45D7HX+/hoqlgzmnM4=; b=OKHMJjpKahsL1w Q7dr0ag0ZPDrxT96YwsdeA1ytLdsFxG5iMiS/wk8yKitqBIkZITqWJ4eYJ6XWwxV86KKdB375tefq FZOq82LLRCJe8m94NXFBo+prPO4/GiwGJjmot0TTb0AKd2EaWHd/Eid8+UaJzYcizlBaJ2siwyMwk yfmk/76es/d65YCbiAQ36zC8GLKjPB7ihjm1dg1IoDoamcpkSJgQmUIaSb3eGxwpcRndTNXLf4PRN 5A8Rx54s84vkrLEgIi8eOp8zxfznoFJT3uEJ++50SNG2IbsysXYgPVcRHkKuXteocm1Cp8dcYA033 S65yruDvJW2Lyi9I4lZg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1rpXMe-0000000AMY7-1doT; Wed, 27 Mar 2024 17:47:04 +0000 Received: from dfw.source.kernel.org ([139.178.84.217]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1rpXMc-0000000AMV1-01RL for linux-arm-kernel@lists.infradead.org; Wed, 27 Mar 2024 17:47:03 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 57FD06160E; Wed, 27 Mar 2024 17:46:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0C063C433C7; Wed, 27 Mar 2024 17:46:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1711561616; bh=+JLGX36YP90VROvvA1SVh8R1mRHl0Ghl/7lpEVb6bo0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jbVTnNryCOCvZ0IKvA3CTaFuKaG//yheGiNyp7ASv2D6PEhQi3q9LxNZbbShnm8MO sZdyp4MdS4nTGIy1KXIGiROGocQpc61GKmJYSb3j47b2VoIOTIoHMjz9OG4Ft0dV9c VhOeFDQStAaK/z4wUv8tPETLT41Af9SRMwkllKIdGZ70o+lZt16ibupYK3/+EbIv01 DTZWIYZHRo+tUsQZu1jJ7R5kq4/r0566Qrw09MD4+qR1udomiyigb0sLWPu0ebGyvr hkCmbstnM7u49tESQQzyL94fdAL5JYujU3ZzS5RFhfUymvplvreuHx8KxeIRL2pAPQ nRPIOumYqKH3g== Mime-Version: 1.0 Date: Wed, 27 Mar 2024 19:46:50 +0200 Message-Id: From: "Jarkko Sakkinen" To: "Masami Hiramatsu" , "Mark Rutland" Cc: , , , , , , , , , , , , , , , , , , Subject: Re: [PATCH 4/4] kprobes: Remove core dependency on modules X-Mailer: aerc 0.17.0 References: <20240326163624.3253157-1-mark.rutland@arm.com> <20240326163624.3253157-5-mark.rutland@arm.com> <20240327090155.873f1ed32700dbdb75f8eada@kernel.org> In-Reply-To: <20240327090155.873f1ed32700dbdb75f8eada@kernel.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240327_104702_158376_E0254520 X-CRM114-Status: GOOD ( 21.70 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Wed Mar 27, 2024 at 2:01 AM EET, Masami Hiramatsu (Google) wrote: > On Tue, 26 Mar 2024 17:38:18 +0000 > Mark Rutland wrote: > > > On Tue, Mar 26, 2024 at 07:13:51PM +0200, Jarkko Sakkinen wrote: > > > On Tue Mar 26, 2024 at 6:36 PM EET, Mark Rutland wrote: > > > > > > +#ifdef CONFIG_MODULES > > > > /* Check if 'p' is probing a module. */ > > > > *probed_mod = __module_text_address((unsigned long) p->addr); > > > > if (*probed_mod) { > > > > @@ -1605,6 +1606,8 @@ static int check_kprobe_address_safe(struct kprobe *p, > > > > ret = -ENOENT; > > > > } > > > > } > > > > +#endif > > > > > > This can be scoped a bit more (see v7 of my patch set). > > > > > > +#ifdef CONFIG_MODULES > > > > static nokprobe_inline bool trace_kprobe_module_exist(struct trace_kprobe *tk) > > > > { > > > > char *p; > > > > @@ -129,6 +130,9 @@ static nokprobe_inline bool trace_kprobe_module_exist(struct trace_kprobe *tk) > > > > > > > > return ret; > > > > } > > > > +#else > > > > +#define trace_kprobe_module_exist(tk) false /* aka a module never exists */ > > > > +#endif /* CONFIG_MODULES */ > > > > > > > > static bool trace_kprobe_is_busy(struct dyn_event *ev) > > > > { > > > > @@ -670,6 +674,7 @@ static int register_trace_kprobe(struct trace_kprobe *tk) > > > > return ret; > > > > } > > > > > > > > +#ifdef CONFIG_MODULES > > > > /* Module notifier call back, checking event on the module */ > > > > static int trace_kprobe_module_callback(struct notifier_block *nb, > > > > unsigned long val, void *data) > > > > @@ -699,6 +704,9 @@ static int trace_kprobe_module_callback(struct notifier_block *nb, > > > > > > > > return NOTIFY_DONE; > > > > } > > > > +#else > > > > +#define trace_kprobe_module_callback (NULL) > > > > +#endif /* CONFIG_MODULES */ > > > > > > The last two CONFIG_MODULES sections could be combined. This was also in > > > v7. > > > > > Other than lgtm. > > > > Great! I've folded your v7 changes in, and pushed that out to: > > > > https://git.kernel.org/pub/scm/linux/kernel/git/mark/linux.git/log/?h=kprobes/without-modules > > > > I'll hold off sending that out to the list until other folk have had a chance > > to comment. > > Yeah, the updated one looks good to me too. > > Thanks! As for RISC-V: Tested-by: Jarkko Sakkinen # arch/riscv I'm fine with adding to all patches because it would be hard to place tested-by to any specific patch (e.g. if this was a syscall I would give tested-by just for that patch). Just adding disclaimer because depending on subsystem people are more or less strict with this tag :-) BR, Jarkko _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel