MEM_RCU                 = BIT(13 + BPF_BASE_TYPE_BITS),
 
        /* Used to tag PTR_TO_BTF_ID | MEM_ALLOC references which are non-owning.
-        * Currently only valid for linked-list and rbtree nodes.
+        * Currently only valid for linked-list and rbtree nodes. If the nodes
+        * have a bpf_refcount_field, they must be tagged MEM_RCU as well.
         */
        NON_OWN_REF             = BIT(14 + BPF_BASE_TYPE_BITS),
 
 
        case PTR_TO_BTF_ID | PTR_TRUSTED:
        case PTR_TO_BTF_ID | MEM_RCU:
        case PTR_TO_BTF_ID | MEM_ALLOC | NON_OWN_REF:
+       case PTR_TO_BTF_ID | MEM_ALLOC | NON_OWN_REF | MEM_RCU:
                /* When referenced PTR_TO_BTF_ID is passed to release function,
                 * its fixed offset must be 0. In the other cases, fixed offset
                 * can be non-zero. This was already checked above. So pass
 static int ref_set_non_owning(struct bpf_verifier_env *env, struct bpf_reg_state *reg)
 {
        struct bpf_verifier_state *state = env->cur_state;
+       struct btf_record *rec = reg_btf_record(reg);
 
        if (!state->active_lock.ptr) {
                verbose(env, "verifier internal error: ref_set_non_owning w/o active lock\n");
        }
 
        reg->type |= NON_OWN_REF;
+       if (rec->refcount_off >= 0)
+               reg->type |= MEM_RCU;
+
        return 0;
 }
 
                struct bpf_func_state *state;
                struct bpf_reg_state *reg;
 
+               if (in_rbtree_lock_required_cb(env) && (rcu_lock || rcu_unlock)) {
+                       verbose(env, "Calling bpf_rcu_read_{lock,unlock} in unnecessary rbtree callback\n");
+                       return -EACCES;
+               }
+
                if (rcu_lock) {
                        verbose(env, "nested rcu read lock (kernel function %s)\n", func_name);
                        return -EINVAL;
                                        return -EINVAL;
                                }
 
-                               if (env->cur_state->active_rcu_lock) {
+                               if (env->cur_state->active_rcu_lock &&
+                                   !in_rbtree_lock_required_cb(env)) {
                                        verbose(env, "bpf_rcu_read_unlock is missing\n");
                                        return -EINVAL;
                                }