Skip to content

Commit 94d077c

Browse files
qsnklassert
authored andcommitted
xfrm: state: initialize state_ptrs earlier in xfrm_state_find
In case of preemption, xfrm_state_look_at will find a different pcpu_id and look up states for that other CPU. If we matched a state for CPU2 in the state_cache while the lookup started on CPU1, we will jump to "found", but the "best" state that we got will be ignored and we will enter the "acquire" block. This block uses state_ptrs, which isn't initialized at this point. Let's initialize state_ptrs just after taking rcu_read_lock. This will also prevent a possible misuse in the future, if someone adjusts this function. Reported-by: [email protected] Fixes: e952837 ("xfrm: state: fix out-of-bounds read during lookup") Signed-off-by: Sabrina Dubroca <[email protected]> Reviewed-by: Florian Westphal <[email protected]> Signed-off-by: Steffen Klassert <[email protected]>
1 parent b56bbaf commit 94d077c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

net/xfrm/xfrm_state.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,6 +1389,8 @@ xfrm_state_find(const xfrm_address_t *daddr, const xfrm_address_t *saddr,
13891389
sequence = read_seqcount_begin(&net->xfrm.xfrm_state_hash_generation);
13901390

13911391
rcu_read_lock();
1392+
xfrm_hash_ptrs_get(net, &state_ptrs);
1393+
13921394
hlist_for_each_entry_rcu(x, &pol->state_cache_list, state_cache) {
13931395
if (x->props.family == encap_family &&
13941396
x->props.reqid == tmpl->reqid &&
@@ -1429,8 +1431,6 @@ xfrm_state_find(const xfrm_address_t *daddr, const xfrm_address_t *saddr,
14291431
else if (acquire_in_progress) /* XXX: acquire_in_progress should not happen */
14301432
WARN_ON(1);
14311433

1432-
xfrm_hash_ptrs_get(net, &state_ptrs);
1433-
14341434
h = __xfrm_dst_hash(daddr, saddr, tmpl->reqid, encap_family, state_ptrs.hmask);
14351435
hlist_for_each_entry_rcu(x, state_ptrs.bydst + h, bydst) {
14361436
#ifdef CONFIG_XFRM_OFFLOAD

0 commit comments

Comments
 (0)