From: Kumar Kartikeya Dwivedi <memxor@gmail.com>
To: bpf@vger.kernel.org
Cc: Alexei Starovoitov <ast@kernel.org>,
Andrii Nakryiko <andrii@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Eduard Zingerman <eddyz87@gmail.com>,
Emil Tsalapatis <emil@etsalapatis.com>,
kkd@meta.com, kernel-team@meta.com
Subject: [PATCH bpf-next v3 12/17] bpf: Report Execution Context Safety errors
Date: Mon, 13 Jul 2026 17:39:01 +0200 [thread overview]
Message-ID: <20260713153910.2556007-13-memxor@gmail.com> (raw)
In-Reply-To: <20260713153910.2556007-1-memxor@gmail.com>
Augment selected sleepability and critical-section failures with Execution
Context Safety reports. Keep the existing verifier messages and add source
context, path history, and suggestions tied to the active context.
Use the context history recorded earlier to anchor causal paths to lock, IRQ,
RCU, and preempt regions instead of unrelated register updates.
Cover global calls while holding a lock, sleepable global function calls,
sleepable helpers, sleepable kfunc calls from disallowed contexts, operations
that exit while a context is still active, and unmatched context exits.
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
---
kernel/bpf/diagnostics.c | 198 +++++++++++++++++++++++++++++++++++----
kernel/bpf/diagnostics.h | 9 ++
kernel/bpf/verifier.c | 93 ++++++++++++++++++
3 files changed, 283 insertions(+), 17 deletions(-)
diff --git a/kernel/bpf/diagnostics.c b/kernel/bpf/diagnostics.c
index 111999e7682d..c90be89d4707 100644
--- a/kernel/bpf/diagnostics.c
+++ b/kernel/bpf/diagnostics.c
@@ -965,6 +965,23 @@ static u32 diag_current_frameno(const struct bpf_verifier_env *env)
return env->cur_state->frame[env->cur_state->curframe]->frameno;
}
+static const char *diag_context_name(enum bpf_diag_context_kind kind)
+{
+ switch (kind) {
+ case BPF_DIAG_CONTEXT_RCU:
+ return "RCU read lock region";
+ case BPF_DIAG_CONTEXT_PREEMPT:
+ return "non-preemptible region";
+ case BPF_DIAG_CONTEXT_IRQ:
+ return "IRQ-disabled region";
+ case BPF_DIAG_CONTEXT_LOCK:
+ return "lock region";
+ case BPF_DIAG_CONTEXT_NONE:
+ default:
+ return "context";
+ }
+}
+
void bpf_diag_report_register_type(struct bpf_verifier_env *env, u32 insn_idx, int regno,
const char *problem, const char *reason, const char *suggestion)
{
@@ -1096,6 +1113,170 @@ void bpf_diag_report_call_type(struct bpf_verifier_env *env, u32 insn_idx, int a
diag_fmt_free(env);
}
+static const char *diag_context_constraint(enum bpf_diag_context_kind kind)
+{
+ switch (kind) {
+ case BPF_DIAG_CONTEXT_RCU:
+ return "RCU read-side critical sections cannot call operations that may sleep";
+ case BPF_DIAG_CONTEXT_PREEMPT:
+ return "preemption-disabled code cannot call operations that may sleep";
+ case BPF_DIAG_CONTEXT_IRQ:
+ return "IRQ-disabled code cannot call operations that may sleep";
+ case BPF_DIAG_CONTEXT_LOCK:
+ return "code holding a BPF spin lock cannot call operations that may sleep";
+ case BPF_DIAG_CONTEXT_NONE:
+ default:
+ return NULL;
+ }
+}
+
+static void diag_format_active_context(char *buf, size_t size, u32 depth, const char *context)
+{
+ if (depth == 1)
+ scnprintf(buf, size, "an active %s (depth 1)", context);
+ else
+ scnprintf(buf, size, "%u active %ss (depth %u)", depth, context, depth);
+}
+
+static u32 diag_context_depth(struct bpf_verifier_env *env, enum bpf_diag_context_kind kind)
+{
+ switch (kind) {
+ case BPF_DIAG_CONTEXT_RCU:
+ return env->cur_state->active_rcu_locks;
+ case BPF_DIAG_CONTEXT_PREEMPT:
+ return env->cur_state->active_preempt_locks;
+ case BPF_DIAG_CONTEXT_IRQ:
+ return bpf_diag_irq_depth(env->cur_state);
+ case BPF_DIAG_CONTEXT_LOCK:
+ return env->cur_state->active_locks;
+ case BPF_DIAG_CONTEXT_NONE:
+ default:
+ return 0;
+ }
+}
+
+static void diag_ctx_forbidden(struct bpf_verifier_env *env, u32 insn_idx, const char *operation,
+ enum bpf_diag_context_kind ctx_kind, const char *context,
+ const char *suggestion)
+{
+ u32 depth = diag_context_depth(env, ctx_kind);
+ struct bpf_diag_history_opts opts = {
+ .scope = BPF_DIAG_HISTORY_SCOPE_CONTEXT,
+ .ctx_kind = ctx_kind,
+ .ctx_depth = depth,
+ };
+ const char *depth_buf;
+
+ bpf_diag_report_header(env, CATEGORY_EXECUTION_CONTEXT_SAFETY,
+ "operation is not allowed in this context");
+ if (diag_context_constraint(ctx_kind)) {
+ if (depth) {
+ depth_buf = bpf_diag_scratch_buf(env, 2, NULL);
+ if (depth_buf)
+ diag_format_active_context((char *)depth_buf,
+ BPF_DIAG_SCRATCH_STR_LEN, depth,
+ context);
+ else
+ depth_buf = "";
+ diag_report_reason(env,
+ "The operation %s cannot be used in %s because %s. This "
+ "path is still inside %s.",
+ operation, context, diag_context_constraint(ctx_kind),
+ depth_buf);
+ } else {
+ diag_report_reason(env, "The operation %s cannot be used in %s because %s.",
+ operation, context, diag_context_constraint(ctx_kind));
+ }
+ } else {
+ diag_report_reason(env, "The operation %s cannot be used in %s.", operation,
+ context);
+ }
+
+ diag_report_section(env, "At");
+ bpf_diag_report_source(env, insn_idx, "error", "%s is not allowed in %s", operation,
+ context);
+
+ if (ctx_kind != BPF_DIAG_CONTEXT_NONE)
+ diag_print_history(env, &opts);
+
+ diag_report_suggestion(env, "%s", suggestion);
+}
+
+static void diag_ctx_active(struct bpf_verifier_env *env, u32 insn_idx, const char *operation,
+ enum bpf_diag_context_kind ctx_kind, const char *context,
+ const char *suggestion)
+{
+ u32 depth = diag_context_depth(env, ctx_kind);
+ struct bpf_diag_history_opts opts = {
+ .scope = BPF_DIAG_HISTORY_SCOPE_CONTEXT,
+ .ctx_kind = ctx_kind,
+ .ctx_depth = depth,
+ };
+ const char *depth_buf;
+
+ depth_buf = bpf_diag_scratch_buf(env, 2, NULL);
+ if (depth_buf)
+ diag_format_active_context((char *)depth_buf, BPF_DIAG_SCRATCH_STR_LEN, depth,
+ context);
+ else
+ depth_buf = "";
+
+ bpf_diag_report_header(env, CATEGORY_EXECUTION_CONTEXT_SAFETY,
+ "operation is not allowed in this context");
+ diag_report_reason(env,
+ "The operation %s cannot be used while this path is still inside %s. "
+ "Leave the region before this operation.",
+ operation, depth_buf);
+
+ diag_report_section(env, "At");
+ bpf_diag_report_source(env, insn_idx, "error", "%s is not allowed before leaving %s",
+ operation, context);
+
+ diag_print_history(env, &opts);
+
+ diag_report_suggestion(env, "%s", suggestion);
+}
+
+static void diag_ctx_underflow(struct bpf_verifier_env *env, u32 insn_idx, const char *operation,
+ enum bpf_diag_context_kind ctx_kind, const char *suggestion)
+{
+ struct bpf_diag_history_opts opts = {
+ .scope = BPF_DIAG_HISTORY_SCOPE_CONTEXT,
+ .ctx_kind = ctx_kind,
+ };
+ const char *context = diag_context_name(ctx_kind);
+
+ bpf_diag_report_header(env, CATEGORY_EXECUTION_CONTEXT_SAFETY, "unmatched context exit");
+ diag_report_reason(env,
+ "The operation %s tries to leave %s, but this path has no active %s to "
+ "leave. The current depth is 0.",
+ operation, context, context);
+
+ diag_report_section(env, "At");
+ bpf_diag_report_source(env, insn_idx, "error", "%s has no matching enter on this path",
+ operation);
+
+ diag_print_history(env, &opts);
+
+ diag_report_suggestion(env, "%s", suggestion);
+}
+
+void bpf_diag_ctx(struct bpf_verifier_env *env, enum bpf_diag_ctx_report report, u32 insn_idx,
+ const char *operation, enum bpf_diag_context_kind ctx_kind, const char *context,
+ const char *suggestion)
+{
+ switch (report) {
+ case BPF_DIAG_CTX_FORBIDDEN:
+ diag_ctx_forbidden(env, insn_idx, operation, ctx_kind, context, suggestion);
+ return;
+ case BPF_DIAG_CTX_ACTIVE:
+ diag_ctx_active(env, insn_idx, operation, ctx_kind, context, suggestion);
+ return;
+ case BPF_DIAG_CTX_UNDERFLOW:
+ diag_ctx_underflow(env, insn_idx, operation, ctx_kind, suggestion);
+ return;
+ }
+}
void bpf_diag_report_invalid_deref(struct bpf_verifier_env *env, u32 insn_idx, int regno,
const char *reg_name, const struct bpf_reg_state *reg,
enum bpf_diag_invalid_deref_kind kind, s64 offset)
@@ -2108,23 +2289,6 @@ static void diag_print_ref_event(struct bpf_verifier_env *env,
event->ref.ref_id);
}
-static const char *diag_context_name(enum bpf_diag_context_kind kind)
-{
- switch (kind) {
- case BPF_DIAG_CONTEXT_RCU:
- return "RCU read lock region";
- case BPF_DIAG_CONTEXT_PREEMPT:
- return "non-preemptible region";
- case BPF_DIAG_CONTEXT_IRQ:
- return "IRQ-disabled region";
- case BPF_DIAG_CONTEXT_LOCK:
- return "lock region";
- case BPF_DIAG_CONTEXT_NONE:
- default:
- return "context";
- }
-}
-
static void diag_print_context_event(struct bpf_verifier_env *env,
const struct bpf_diag_history_event *event)
{
diff --git a/kernel/bpf/diagnostics.h b/kernel/bpf/diagnostics.h
index 7f1af8f50704..f26432e84d9f 100644
--- a/kernel/bpf/diagnostics.h
+++ b/kernel/bpf/diagnostics.h
@@ -96,6 +96,12 @@ enum bpf_diag_context_kind {
BPF_DIAG_CONTEXT_LOCK,
};
+enum bpf_diag_ctx_report {
+ BPF_DIAG_CTX_FORBIDDEN,
+ BPF_DIAG_CTX_ACTIVE,
+ BPF_DIAG_CTX_UNDERFLOW,
+};
+
enum bpf_diag_context_event_kind {
BPF_DIAG_CONTEXT_EVENT_RCU = BPF_DIAG_CONTEXT_RCU,
BPF_DIAG_CONTEXT_EVENT_PREEMPT = BPF_DIAG_CONTEXT_PREEMPT,
@@ -159,6 +165,9 @@ void bpf_diag_leak(struct bpf_verifier_env *env, u32 ref_id, u32 alloc_insn, u32
void bpf_diag_report_call_type(struct bpf_verifier_env *env, u32 insn_idx, int argno, int regno,
int stack_arg_slot, const char *call_name, const char *arg_name,
const char *reason, const char *suggestion);
+void bpf_diag_ctx(struct bpf_verifier_env *env, enum bpf_diag_ctx_report report, u32 insn_idx,
+ const char *operation, enum bpf_diag_context_kind ctx_kind, const char *context,
+ const char *suggestion);
int bpf_diag_record_branch(struct bpf_verifier_env *env, u32 insn_idx, bool cond_true);
void bpf_diag_record_mod(struct bpf_verifier_env *env, u32 insn_idx,
struct bpf_diag_mod_target target, enum bpf_diag_mod_reason reason,
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index 07e2c1ed8fbe..e253fbc733a4 100644
--- a/kernel/bpf/verifier.c
+++ b/kernel/bpf/verifier.c
@@ -219,6 +219,8 @@ static int ref_set_non_owning(struct bpf_verifier_env *env,
static bool is_trusted_reg(struct bpf_verifier_env *env, const struct bpf_reg_state *reg);
static inline bool in_sleepable_context(struct bpf_verifier_env *env);
static const char *non_sleepable_context_description(struct bpf_verifier_env *env);
+static enum bpf_diag_context_kind non_sleepable_context_kind(struct bpf_verifier_env *env);
+static const char *non_sleepable_context_diag_description(struct bpf_verifier_env *env);
static void scalar32_min_max_add(struct bpf_reg_state *dst_reg, struct bpf_reg_state *src_reg);
static void scalar_min_max_add(struct bpf_reg_state *dst_reg, struct bpf_reg_state *src_reg);
@@ -10109,17 +10111,32 @@ static int check_func_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
if (err == -EFAULT)
return err;
if (bpf_subprog_is_global(env, subprog)) {
+ const char *context;
const char *sub_name = bpf_verifier_subprog_name(env, subprog);
+ const char *operation;
if (env->cur_state->active_locks) {
verbose(env, "global function calls are not allowed while holding a lock,\n"
"use static function instead\n");
+ operation =
+ bpf_diag_scratch_printf(env, 1, "global function %s()", sub_name);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_FORBIDDEN, *insn_idx, operation,
+ BPF_DIAG_CONTEXT_LOCK, "lock region",
+ "Release the lock before calling the global function, or use "
+ "a static function instead.");
return -EINVAL;
}
if (env->subprog_info[subprog].might_sleep && !in_sleepable_context(env)) {
verbose(env, "sleepable global function %s() called in %s\n",
sub_name, non_sleepable_context_description(env));
+ context = non_sleepable_context_diag_description(env);
+ operation = bpf_diag_scratch_printf(
+ env, 1, "sleepable global function %s()", sub_name);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_FORBIDDEN, *insn_idx, operation,
+ non_sleepable_context_kind(env), context,
+ "Move the call outside the critical section, or use a "
+ "non-sleepable function.");
return -EINVAL;
}
@@ -10721,6 +10738,9 @@ static int check_resource_leak(struct bpf_verifier_env *env, bool exception_exit
if (check_lock && env->cur_state->active_locks) {
verbose(env, "%s cannot be used inside bpf_spin_lock-ed region\n", prefix);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_ACTIVE, env->insn_idx, prefix, BPF_DIAG_CONTEXT_LOCK,
+ "lock region",
+ "Release the BPF spin lock before this operation on every path.");
return -EINVAL;
}
@@ -10732,16 +10752,25 @@ static int check_resource_leak(struct bpf_verifier_env *env, bool exception_exit
if (check_lock && env->cur_state->active_irq_id) {
verbose(env, "%s cannot be used inside bpf_local_irq_save-ed region\n", prefix);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_ACTIVE, env->insn_idx, prefix, BPF_DIAG_CONTEXT_IRQ,
+ "IRQ-disabled region",
+ "Restore the saved IRQ state before this operation on every path.");
return -EINVAL;
}
if (check_lock && env->cur_state->active_rcu_locks) {
verbose(env, "%s cannot be used inside bpf_rcu_read_lock-ed region\n", prefix);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_ACTIVE, env->insn_idx, prefix, BPF_DIAG_CONTEXT_RCU,
+ "RCU read lock region",
+ "Call bpf_rcu_read_unlock() before this operation on every path.");
return -EINVAL;
}
if (check_lock && env->cur_state->active_preempt_locks) {
verbose(env, "%s cannot be used inside bpf_preempt_disable-ed region\n", prefix);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_ACTIVE, env->insn_idx, prefix,
+ BPF_DIAG_CONTEXT_PREEMPT, "non-preemptible region",
+ "Call bpf_preempt_enable() before this operation on every path.");
return -EINVAL;
}
@@ -10895,6 +10924,36 @@ static const char *non_sleepable_context_description(struct bpf_verifier_env *en
return "non-sleepable prog";
}
+static enum bpf_diag_context_kind non_sleepable_context_kind(struct bpf_verifier_env *env)
+{
+ if (env->cur_state->active_rcu_locks)
+ return BPF_DIAG_CONTEXT_RCU;
+ if (env->cur_state->active_preempt_locks)
+ return BPF_DIAG_CONTEXT_PREEMPT;
+ if (env->cur_state->active_irq_id)
+ return BPF_DIAG_CONTEXT_IRQ;
+ if (env->cur_state->active_locks)
+ return BPF_DIAG_CONTEXT_LOCK;
+ return BPF_DIAG_CONTEXT_NONE;
+}
+
+static const char *non_sleepable_context_diag_description(struct bpf_verifier_env *env)
+{
+ switch (non_sleepable_context_kind(env)) {
+ case BPF_DIAG_CONTEXT_RCU:
+ return "RCU read lock region";
+ case BPF_DIAG_CONTEXT_PREEMPT:
+ return "non-preemptible region";
+ case BPF_DIAG_CONTEXT_IRQ:
+ return "IRQ-disabled region";
+ case BPF_DIAG_CONTEXT_LOCK:
+ return "lock region";
+ case BPF_DIAG_CONTEXT_NONE:
+ default:
+ return "non-sleepable program";
+ }
+}
+
static int release_reg(struct bpf_verifier_env *env, struct bpf_reg_state *reg,
bool convert_rcu, bool release_dynptr)
{
@@ -10923,6 +10982,7 @@ static int check_helper_call(struct bpf_verifier_env *env, struct bpf_insn *insn
enum bpf_type_flag ret_flag;
struct bpf_reg_state *regs;
struct bpf_call_arg_meta meta;
+ const char *operation;
int insn_idx = *insn_idx_p;
bool changes_data;
int i, err, func_id;
@@ -10971,6 +11031,13 @@ static int check_helper_call(struct bpf_verifier_env *env, struct bpf_insn *insn
if (fn->might_sleep && !in_sleepable_context(env)) {
verbose(env, "sleepable helper %s#%d in %s\n", func_id_name(func_id), func_id,
non_sleepable_context_description(env));
+ operation = bpf_diag_scratch_printf(env, 1, "sleepable helper %s#%d",
+ func_id_name(func_id), func_id);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_FORBIDDEN, insn_idx, operation,
+ non_sleepable_context_kind(env),
+ non_sleepable_context_diag_description(env),
+ "Move the helper call outside the critical section, or use a "
+ "non-sleepable helper.");
return -EINVAL;
}
@@ -13850,6 +13917,7 @@ static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
const struct btf_type *t, *ptr_type;
struct bpf_kfunc_call_arg_meta meta;
struct bpf_insn_aux_data *insn_aux;
+ const char *operation;
int err, insn_idx = *insn_idx_p;
const struct btf_param *args;
u32 i, nargs, ptr_type_id;
@@ -13909,6 +13977,11 @@ static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
sleepable = bpf_is_kfunc_sleepable(&meta);
if (sleepable && !in_sleepable(env)) {
verbose(env, "program must be sleepable to call sleepable kfunc %s\n", func_name);
+ operation = bpf_diag_scratch_printf(env, 1, "sleepable kfunc %s", func_name);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_FORBIDDEN, insn_idx, operation,
+ BPF_DIAG_CONTEXT_NONE, "non-sleepable program",
+ "Mark the program sleepable if the program type allows it, or use a "
+ "non-sleepable kfunc.");
return -EACCES;
}
@@ -13984,6 +14057,10 @@ static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
} else if (rcu_unlock) {
if (env->cur_state->active_rcu_locks == 0) {
verbose(env, "unmatched rcu read unlock (kernel function %s)\n", func_name);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_UNDERFLOW, insn_idx, func_name,
+ BPF_DIAG_CONTEXT_RCU, NULL,
+ "Remove the extra bpf_rcu_read_unlock() call, or ensure this "
+ "path first enters an RCU read lock region.");
return -EINVAL;
}
env->cur_state->active_rcu_locks--;
@@ -13998,6 +14075,10 @@ static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
} else if (preempt_enable) {
if (env->cur_state->active_preempt_locks == 0) {
verbose(env, "unmatched attempt to enable preemption (kernel function %s)\n", func_name);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_UNDERFLOW, insn_idx, func_name,
+ BPF_DIAG_CONTEXT_PREEMPT, NULL,
+ "Remove the extra bpf_preempt_enable() call, or ensure this "
+ "path first disables preemption.");
return -EINVAL;
}
env->cur_state->active_preempt_locks--;
@@ -14008,6 +14089,12 @@ static int check_kfunc_call(struct bpf_verifier_env *env, struct bpf_insn *insn,
if (sleepable && !in_sleepable_context(env)) {
verbose(env, "kernel func %s is sleepable within %s\n",
func_name, non_sleepable_context_description(env));
+ operation = bpf_diag_scratch_printf(env, 1, "sleepable kfunc %s", func_name);
+ bpf_diag_ctx(env, BPF_DIAG_CTX_FORBIDDEN, insn_idx, operation,
+ non_sleepable_context_kind(env),
+ non_sleepable_context_diag_description(env),
+ "Move the kfunc call outside the critical section, or use a "
+ "non-sleepable kfunc.");
return -EACCES;
}
@@ -18356,6 +18443,12 @@ static int do_check_insn(struct bpf_verifier_env *env, bool *do_print_state)
(insn->off != 0 || !kfunc_spin_allowed(insn->imm)))) {
verbose(env,
"function calls are not allowed while holding a lock\n");
+ bpf_diag_ctx(env, BPF_DIAG_CTX_ACTIVE, env->insn_idx,
+ "function call", BPF_DIAG_CONTEXT_LOCK,
+ "lock region",
+ "Release the BPF spin lock before making this "
+ "call, or move the call outside the locked "
+ "region.");
return -EINVAL;
}
}
--
2.53.0
next prev parent reply other threads:[~2026-07-13 15:39 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-13 15:38 [PATCH bpf-next v3 00/17] Redesign Verification Errors Kumar Kartikeya Dwivedi
2026-07-13 15:38 ` [PATCH bpf-next v3 01/17] bpf: Add verifier diagnostics report helpers Kumar Kartikeya Dwivedi
2026-07-13 15:50 ` sashiko-bot
2026-07-13 15:38 ` [PATCH bpf-next v3 02/17] bpf: Add source and instruction diagnostic context Kumar Kartikeya Dwivedi
2026-07-13 15:38 ` [PATCH bpf-next v3 03/17] bpf: Add verifier diagnostic event log Kumar Kartikeya Dwivedi
2026-07-13 15:54 ` sashiko-bot
2026-07-13 15:38 ` [PATCH bpf-next v3 04/17] bpf: Prune verifier diagnostics when switching paths Kumar Kartikeya Dwivedi
2026-07-13 16:02 ` sashiko-bot
2026-07-13 15:38 ` [PATCH bpf-next v3 05/17] bpf: Track verifier register diagnostic events Kumar Kartikeya Dwivedi
2026-07-13 16:06 ` sashiko-bot
2026-07-13 15:38 ` [PATCH bpf-next v3 06/17] bpf: Track verifier reference " Kumar Kartikeya Dwivedi
2026-07-13 15:38 ` [PATCH bpf-next v3 07/17] bpf: Track verifier context " Kumar Kartikeya Dwivedi
2026-07-13 15:38 ` [PATCH bpf-next v3 08/17] bpf: Report Register Type Safety errors Kumar Kartikeya Dwivedi
2026-07-13 15:38 ` [PATCH bpf-next v3 09/17] bpf: Report Memory Safety bounds errors Kumar Kartikeya Dwivedi
2026-07-13 15:38 ` [PATCH bpf-next v3 10/17] bpf: Report Resource Lifetime reference leaks Kumar Kartikeya Dwivedi
2026-07-13 16:04 ` sashiko-bot
2026-07-13 15:39 ` [PATCH bpf-next v3 11/17] bpf: Report Call Type Safety argument errors Kumar Kartikeya Dwivedi
2026-07-13 15:51 ` sashiko-bot
2026-07-13 15:39 ` Kumar Kartikeya Dwivedi [this message]
2026-07-13 15:53 ` [PATCH bpf-next v3 12/17] bpf: Report Execution Context Safety errors sashiko-bot
2026-07-13 15:39 ` [PATCH bpf-next v3 13/17] bpf: Report Program Structure CFG errors Kumar Kartikeya Dwivedi
2026-07-14 20:00 ` Eduard Zingerman
2026-07-13 15:39 ` [PATCH bpf-next v3 14/17] bpf: Report Policy helper and kfunc errors Kumar Kartikeya Dwivedi
2026-07-13 16:09 ` sashiko-bot
2026-07-13 15:39 ` [PATCH bpf-next v3 15/17] bpf: Report Verifier Limit errors Kumar Kartikeya Dwivedi
2026-07-13 15:39 ` [PATCH bpf-next v3 16/17] bpf: Report Verifier Internal errors Kumar Kartikeya Dwivedi
2026-07-13 15:39 ` [PATCH bpf-next v3 17/17] bpf: Gate verifier diagnostics on log level Kumar Kartikeya Dwivedi
2026-07-14 3:36 ` kernel test robot
2026-07-14 6:10 ` [syzbot ci] Re: Redesign Verification Errors syzbot ci
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=20260713153910.2556007-13-memxor@gmail.com \
--to=memxor@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=emil@etsalapatis.com \
--cc=kernel-team@meta.com \
--cc=kkd@meta.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.