Message ID | 20221114191547.1694267-22-memxor@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | BPF |
Headers | show |
Series | Allocated objects, BPF linked lists | expand |
On 11/14/22 2:15 PM, Kumar Kartikeya Dwivedi wrote: > This commit implements the delayed release logic for bpf_list_push_front > and bpf_list_push_back. > > Once a node has been added to the list, it's pointer changes to > PTR_UNTRUSTED. However, it is only released once the lock protecting the > list is unlocked. For such PTR_TO_BTF_ID | MEM_ALLOC with PTR_UNTRUSTED > set but an active ref_obj_id, it is still permitted to read them as long > as the lock is held. Writing to them is not allowed. > > This allows having read access to push items we no longer own until we > release the lock guarding the list, allowing a little more flexibility > when working with these APIs. > > Note that enabling write support has fairly tricky interactions with > what happens inside the critical section. Just as an example, currently, > bpf_obj_drop is not permitted, but if it were, being able to write to > the PTR_UNTRUSTED pointer while the object gets released back to the > memory allocator would violate safety properties we wish to guarantee > (i.e. not crashing the kernel). The memory could be reused for a > different type in the BPF program or even in the kernel as it gets > eventually kfree'd. > > Not enabling bpf_obj_drop inside the critical section would appear to > prevent all of the above, but that is more of an artifical limitation > right now. Since the write support is tangled with how we handle > potential aliasing of nodes inside the critical section that may or may > not be part of the list anymore, it has been deferred to a future patch. > > Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com> > --- Can the two WARN_ON_ONCE in this patch be converted to verifier-log-and-EFAULT? Looks like they're both in functions with access to 'env' and are checking for scenarios that should be considered bugs in the verifier. Aside from that style nit, logic and patch summary updates here LGTM. Acked-by: Dave Marchevsky <davemarchevsky@fb.com>
On Tue, Nov 15, 2022 at 10:22:56PM IST, Dave Marchevsky wrote: > On 11/14/22 2:15 PM, Kumar Kartikeya Dwivedi wrote: > > This commit implements the delayed release logic for bpf_list_push_front > > and bpf_list_push_back. > > > > Once a node has been added to the list, it's pointer changes to > > PTR_UNTRUSTED. However, it is only released once the lock protecting the > > list is unlocked. For such PTR_TO_BTF_ID | MEM_ALLOC with PTR_UNTRUSTED > > set but an active ref_obj_id, it is still permitted to read them as long > > as the lock is held. Writing to them is not allowed. > > > > This allows having read access to push items we no longer own until we > > release the lock guarding the list, allowing a little more flexibility > > when working with these APIs. > > > > Note that enabling write support has fairly tricky interactions with > > what happens inside the critical section. Just as an example, currently, > > bpf_obj_drop is not permitted, but if it were, being able to write to > > the PTR_UNTRUSTED pointer while the object gets released back to the > > memory allocator would violate safety properties we wish to guarantee > > (i.e. not crashing the kernel). The memory could be reused for a > > different type in the BPF program or even in the kernel as it gets > > eventually kfree'd. > > > > Not enabling bpf_obj_drop inside the critical section would appear to > > prevent all of the above, but that is more of an artifical limitation > > right now. Since the write support is tangled with how we handle > > potential aliasing of nodes inside the critical section that may or may > > not be part of the list anymore, it has been deferred to a future patch. > > > > Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com> > > --- > > Can the two WARN_ON_ONCE in this patch be converted to > verifier-log-and-EFAULT? Looks like they're both in > functions with access to 'env' and are checking for > scenarios that should be considered bugs in the verifier. > Will do. > Aside from that style nit, logic and patch summary updates > here LGTM. > > Acked-by: Dave Marchevsky <davemarchevsky@fb.com>
diff --git a/include/linux/bpf_verifier.h b/include/linux/bpf_verifier.h index 306fc1d6cc4a..740e774e1c7a 100644 --- a/include/linux/bpf_verifier.h +++ b/include/linux/bpf_verifier.h @@ -223,6 +223,11 @@ struct bpf_reference_state { * exiting a callback function. */ int callback_ref; + /* Mark the reference state to release the registers sharing the same id + * on bpf_spin_unlock (for nodes that we will lose ownership to but are + * safe to access inside the critical section). + */ + bool release_on_unlock; }; /* state of the program: diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index c034ca2d9479..8725c2ee7eb4 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -5648,7 +5648,9 @@ static int process_spin_lock(struct bpf_verifier_env *env, int regno, cur->active_lock.ptr = btf; cur->active_lock.id = reg->id; } else { + struct bpf_func_state *fstate = cur_func(env); void *ptr; + int i; if (map) ptr = map; @@ -5666,6 +5668,16 @@ static int process_spin_lock(struct bpf_verifier_env *env, int regno, } cur->active_lock.ptr = NULL; cur->active_lock.id = 0; + + for (i = 0; i < fstate->acquired_refs; i++) { + /* WARN because this reference state cannot be freed + * before this point, as bpf_spin_lock critical section + * does not allow functions that release the allocated + * object immediately. + */ + if (fstate->refs[i].release_on_unlock) + WARN_ON_ONCE(release_reference(env, fstate->refs[i].id)); + } } return 0; } @@ -8262,6 +8274,39 @@ static int process_kf_arg_ptr_to_kptr_strong(struct bpf_verifier_env *env, return 0; } +static int ref_set_release_on_unlock(struct bpf_verifier_env *env, u32 ref_obj_id) +{ + struct bpf_func_state *state = cur_func(env); + struct bpf_reg_state *reg; + int i; + + /* bpf_spin_lock only allows calling list_push and list_pop, no BPF + * subprogs, no global functions. This means that the references would + * not be released inside the critical section but they may be added to + * the reference state, and the acquired_refs are never copied out for a + * different frame as BPF to BPF calls don't work in bpf_spin_lock + * critical sections. + */ + if (!ref_obj_id) { + verbose(env, "verifier internal error: ref_obj_id is zero for release_on_unlock\n"); + return -EFAULT; + } + for (i = 0; i < state->acquired_refs; i++) { + if (state->refs[i].id == ref_obj_id) { + WARN_ON_ONCE(state->refs[i].release_on_unlock); + state->refs[i].release_on_unlock = true; + /* Now mark everyone sharing same ref_obj_id as untrusted */ + bpf_for_each_reg_in_vstate(env->cur_state, state, reg, ({ + if (reg->ref_obj_id == ref_obj_id) + reg->type |= PTR_UNTRUSTED; + })); + return 0; + } + } + verbose(env, "verifier internal error: ref state missing for ref_obj_id\n"); + return -EFAULT; +} + /* Implementation details: * * Each register points to some region of memory, which we define as an @@ -8447,7 +8492,8 @@ static int process_kf_arg_ptr_to_list_node(struct bpf_verifier_env *env, field->list_head.node_offset); return -EINVAL; } - return 0; + /* Set arg#1 for expiration after unlock */ + return ref_set_release_on_unlock(env, reg->ref_obj_id); } static int check_kfunc_args(struct bpf_verifier_env *env, struct bpf_kfunc_call_arg_meta *meta)
This commit implements the delayed release logic for bpf_list_push_front and bpf_list_push_back. Once a node has been added to the list, it's pointer changes to PTR_UNTRUSTED. However, it is only released once the lock protecting the list is unlocked. For such PTR_TO_BTF_ID | MEM_ALLOC with PTR_UNTRUSTED set but an active ref_obj_id, it is still permitted to read them as long as the lock is held. Writing to them is not allowed. This allows having read access to push items we no longer own until we release the lock guarding the list, allowing a little more flexibility when working with these APIs. Note that enabling write support has fairly tricky interactions with what happens inside the critical section. Just as an example, currently, bpf_obj_drop is not permitted, but if it were, being able to write to the PTR_UNTRUSTED pointer while the object gets released back to the memory allocator would violate safety properties we wish to guarantee (i.e. not crashing the kernel). The memory could be reused for a different type in the BPF program or even in the kernel as it gets eventually kfree'd. Not enabling bpf_obj_drop inside the critical section would appear to prevent all of the above, but that is more of an artifical limitation right now. Since the write support is tangled with how we handle potential aliasing of nodes inside the critical section that may or may not be part of the list anymore, it has been deferred to a future patch. Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com> --- include/linux/bpf_verifier.h | 5 ++++ kernel/bpf/verifier.c | 48 +++++++++++++++++++++++++++++++++++- 2 files changed, 52 insertions(+), 1 deletion(-)