From: Hari Bathini <hbathini@linux.ibm.com>
To: linuxppc-dev <linuxppc-dev@lists.ozlabs.org>, bpf@vger.kernel.org
Cc: Michael Ellerman <mpe@ellerman.id.au>,
"Naveen N. Rao" <naveen.n.rao@linux.ibm.com>,
Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Andrii Nakryiko <andrii@kernel.org>,
Song Liu <songliubraving@fb.com>,
Christophe Leroy <christophe.leroy@csgroup.eu>
Subject: [PATCH v2 3/4] powerpc/bpf: implement bpf_arch_text_invalidate for bpf_prog_pack
Date: Thu, 9 Mar 2023 23:32:12 +0530 [thread overview]
Message-ID: <20230309180213.180263-4-hbathini@linux.ibm.com> (raw)
In-Reply-To: <20230309180213.180263-1-hbathini@linux.ibm.com>
Implement bpf_arch_text_invalidate and use it to fill unused part of
the bpf_prog_pack with trap instructions when a BPF program is freed.
Signed-off-by: Hari Bathini <hbathini@linux.ibm.com>
---
arch/powerpc/net/bpf_jit_comp.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/arch/powerpc/net/bpf_jit_comp.c b/arch/powerpc/net/bpf_jit_comp.c
index 0a70319116d1..d1794d9f0154 100644
--- a/arch/powerpc/net/bpf_jit_comp.c
+++ b/arch/powerpc/net/bpf_jit_comp.c
@@ -293,3 +293,18 @@ void *bpf_arch_text_copy(void *dst, void *src, size_t len)
return ret;
}
+
+int bpf_arch_text_invalidate(void *dst, size_t len)
+{
+ u32 inst = BREAKPOINT_INSTRUCTION;
+ int ret = -EINVAL;
+
+ if (WARN_ON_ONCE(core_kernel_text((unsigned long)dst)))
+ return ret;
+
+ mutex_lock(&text_mutex);
+ ret = patch_instructions(dst, &inst, true, len);
+ mutex_unlock(&text_mutex);
+
+ return ret;
+}
--
2.39.2
WARNING: multiple messages have this Message-ID (diff)
From: Hari Bathini <hbathini@linux.ibm.com>
To: linuxppc-dev <linuxppc-dev@lists.ozlabs.org>, bpf@vger.kernel.org
Cc: Song Liu <songliubraving@fb.com>,
Daniel Borkmann <daniel@iogearbox.net>,
Alexei Starovoitov <ast@kernel.org>,
Andrii Nakryiko <andrii@kernel.org>,
"Naveen N. Rao" <naveen.n.rao@linux.ibm.com>
Subject: [PATCH v2 3/4] powerpc/bpf: implement bpf_arch_text_invalidate for bpf_prog_pack
Date: Thu, 9 Mar 2023 23:32:12 +0530 [thread overview]
Message-ID: <20230309180213.180263-4-hbathini@linux.ibm.com> (raw)
In-Reply-To: <20230309180213.180263-1-hbathini@linux.ibm.com>
Implement bpf_arch_text_invalidate and use it to fill unused part of
the bpf_prog_pack with trap instructions when a BPF program is freed.
Signed-off-by: Hari Bathini <hbathini@linux.ibm.com>
---
arch/powerpc/net/bpf_jit_comp.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/arch/powerpc/net/bpf_jit_comp.c b/arch/powerpc/net/bpf_jit_comp.c
index 0a70319116d1..d1794d9f0154 100644
--- a/arch/powerpc/net/bpf_jit_comp.c
+++ b/arch/powerpc/net/bpf_jit_comp.c
@@ -293,3 +293,18 @@ void *bpf_arch_text_copy(void *dst, void *src, size_t len)
return ret;
}
+
+int bpf_arch_text_invalidate(void *dst, size_t len)
+{
+ u32 inst = BREAKPOINT_INSTRUCTION;
+ int ret = -EINVAL;
+
+ if (WARN_ON_ONCE(core_kernel_text((unsigned long)dst)))
+ return ret;
+
+ mutex_lock(&text_mutex);
+ ret = patch_instructions(dst, &inst, true, len);
+ mutex_unlock(&text_mutex);
+
+ return ret;
+}
--
2.39.2
next prev parent reply other threads:[~2023-03-09 18:02 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-09 18:02 [PATCH v2 0/4] enable bpf_prog_pack allocator for powerpc Hari Bathini
2023-03-09 18:02 ` Hari Bathini
2023-03-09 18:02 ` [PATCH v2 1/4] powerpc/code-patching: introduce patch_instructions() Hari Bathini
2023-03-09 18:02 ` Hari Bathini
2023-03-10 18:26 ` Christophe Leroy
2023-03-10 18:26 ` Christophe Leroy
2023-03-11 7:42 ` Christophe Leroy
2023-03-11 7:42 ` Christophe Leroy
2023-03-11 8:02 ` Christophe Leroy
2023-03-11 8:02 ` Christophe Leroy
2023-03-09 18:02 ` [PATCH v2 2/4] powerpc/bpf: implement bpf_arch_text_copy Hari Bathini
2023-03-09 18:02 ` Hari Bathini
2023-03-10 22:04 ` Song Liu
2023-03-10 22:04 ` Song Liu
2023-03-09 18:02 ` Hari Bathini [this message]
2023-03-09 18:02 ` [PATCH v2 3/4] powerpc/bpf: implement bpf_arch_text_invalidate for bpf_prog_pack Hari Bathini
2023-03-10 22:06 ` Song Liu
2023-03-10 22:06 ` Song Liu
2023-03-09 18:02 ` [PATCH v2 4/4] powerpc/bpf: use bpf_jit_binary_pack_[alloc|finalize|free] Hari Bathini
2023-03-09 18:02 ` Hari Bathini
2023-03-10 22:35 ` Song Liu
2023-03-10 22:35 ` Song Liu
2023-08-25 15:40 ` Hari Bathini
2023-08-25 15:40 ` Hari Bathini
2023-03-11 10:16 ` Christophe Leroy
2023-03-11 10:16 ` Christophe Leroy
2023-08-25 15:29 ` Hari Bathini
2023-08-25 15:29 ` Hari Bathini
-- strict thread matches above, loose matches on Subject: below --
2023-03-09 18:00 [PATCH v2 0/4] enable bpf_prog_pack allocator for powerpc Hari Bathini
2023-03-09 18:00 ` [PATCH v2 3/4] powerpc/bpf: implement bpf_arch_text_invalidate for bpf_prog_pack Hari Bathini
2023-03-09 18:00 ` Hari Bathini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230309180213.180263-4-hbathini@linux.ibm.com \
--to=hbathini@linux.ibm.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=christophe.leroy@csgroup.eu \
--cc=daniel@iogearbox.net \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mpe@ellerman.id.au \
--cc=naveen.n.rao@linux.ibm.com \
--cc=songliubraving@fb.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.