aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/ah4.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2017-01-13 14:55:14 +0100
committerSteffen Klassert <steffen.klassert@secunet.com>2017-01-16 08:36:33 +0100
commit3819a35fdb8f82428c2b5190f195c4e0b8c427bf (patch)
tree3e696faeb870dfd7ce7b99a12da011e398e879af /net/ipv4/ah4.c
parentxfrm: state: simplify rcu_read_unlock handling in two spots (diff)
downloadlinux-dev-3819a35fdb8f82428c2b5190f195c4e0b8c427bf.tar.xz
linux-dev-3819a35fdb8f82428c2b5190f195c4e0b8c427bf.zip
xfrm: fix possible null deref in xfrm_init_tempstate
Dan reports following smatch warning: net/xfrm/xfrm_state.c:659 error: we previously assumed 'afinfo' could be null (see line 651) 649 struct xfrm_state_afinfo *afinfo = xfrm_state_afinfo_get_rcu(family); 651 if (afinfo) ... 658 } 659 afinfo->init_temprop(x, tmpl, daddr, saddr); I am resonably sure afinfo cannot be NULL here. xfrm_state4.c and state6.c are both part of ipv4/ipv6 (depends on CONFIG_XFRM, a boolean) but even if ipv6 is a module state6.c can't be removed (ipv6 lacks module_exit so it cannot be removed). The only callers for xfrm6_fini that leads to state backend unregister are error unwinding paths that can be called during ipv6 init function. So after ipv6 module is loaded successfully the state backend cannot go away anymore. The family value from policy lookup path is taken from dst_entry, so that should always be AF_INET(6). However, since this silences the warning and avoids readers of this code wondering about possible null deref it seems preferrable to be defensive and just add the old check back. Fixes: 711059b9752ad0 ("xfrm: add and use xfrm_state_afinfo_get_rcu") Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'net/ipv4/ah4.c')
0 files changed, 0 insertions, 0 deletions