Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 143a4454 authored by Xin Long's avatar Xin Long Committed by Steffen Klassert
Browse files

xfrm: do not call rcu_read_unlock when afinfo is NULL in xfrm_get_tos



When xfrm_policy_get_afinfo returns NULL, it will not hold rcu
read lock. In this case, rcu_read_unlock should not be called
in xfrm_get_tos, just like other places where it's calling
xfrm_policy_get_afinfo.

Fixes: f5e2bb4f ("xfrm: policy: xfrm_get_tos cannot fail")
Signed-off-by: default avatarXin Long <lucien.xin@gmail.com>
Signed-off-by: default avatarSteffen Klassert <steffen.klassert@secunet.com>
parent 510c321b
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1458,10 +1458,13 @@ xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
static int xfrm_get_tos(const struct flowi *fl, int family)
{
	const struct xfrm_policy_afinfo *afinfo;
	int tos = 0;
	int tos;

	afinfo = xfrm_policy_get_afinfo(family);
	tos = afinfo ? afinfo->get_tos(fl) : 0;
	if (!afinfo)
		return 0;

	tos = afinfo->get_tos(fl);

	rcu_read_unlock();