aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/xfrm4_policy.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2007-11-14 00:36:07 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 17:53:40 -0500
commitfff693888012806370c98c601fbaa141fb12dfca (patch)
treedfa42737bee5f14d1acfaabbc9320fdc45487dec /net/ipv4/xfrm4_policy.c
parent45ff5a3f9a3d0b1b4f063b5285ab39b7fac59471 (diff)
[IPSEC]: Make sure idev is consistent with dev in xfrm_dst
Previously we took the device from the bottom route and idev from the top route. This is bad because idev may well point to a different device. This patch changes it so that we get the idev from the device directly. It also makes it an error if either dev or idev is NULL. This is consistent with the rest of the routing code which also treats these cases as errors. I've removed the err initialisation in xfrm6_policy.c because it achieves no purpose and hid a bug when an initial version of this patch neglected to set err to -ENODEV (fortunately the IPv4 version warned about it). Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/xfrm4_policy.c')
-rw-r--r--net/ipv4/xfrm4_policy.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/net/ipv4/xfrm4_policy.c b/net/ipv4/xfrm4_policy.c
index c40a71b74dba..d903c8bdffcd 100644
--- a/net/ipv4/xfrm4_policy.c
+++ b/net/ipv4/xfrm4_policy.c
@@ -153,14 +153,21 @@ __xfrm4_bundle_create(struct xfrm_policy *policy, struct xfrm_state **xfrm, int
153 153
154 dst_prev = *dst_p; 154 dst_prev = *dst_p;
155 i = 0; 155 i = 0;
156 err = -ENODEV;
156 for (; dst_prev != &rt->u.dst; dst_prev = dst_prev->child) { 157 for (; dst_prev != &rt->u.dst; dst_prev = dst_prev->child) {
157 struct xfrm_dst *x = (struct xfrm_dst*)dst_prev; 158 struct xfrm_dst *x = (struct xfrm_dst*)dst_prev;
158 x->u.rt.fl = *fl; 159 x->u.rt.fl = *fl;
159 160
160 dst_prev->xfrm = xfrm[i++]; 161 dst_prev->xfrm = xfrm[i++];
161 dst_prev->dev = rt->u.dst.dev; 162 dst_prev->dev = rt->u.dst.dev;
162 if (rt->u.dst.dev) 163 if (!rt->u.dst.dev)
163 dev_hold(rt->u.dst.dev); 164 goto error;
165 dev_hold(rt->u.dst.dev);
166
167 x->u.rt.idev = in_dev_get(rt->u.dst.dev);
168 if (!x->u.rt.idev)
169 goto error;
170
164 dst_prev->obsolete = -1; 171 dst_prev->obsolete = -1;
165 dst_prev->flags |= DST_HOST; 172 dst_prev->flags |= DST_HOST;
166 dst_prev->lastuse = jiffies; 173 dst_prev->lastuse = jiffies;
@@ -181,8 +188,6 @@ __xfrm4_bundle_create(struct xfrm_policy *policy, struct xfrm_state **xfrm, int
181 x->u.rt.rt_dst = rt0->rt_dst; 188 x->u.rt.rt_dst = rt0->rt_dst;
182 x->u.rt.rt_gateway = rt0->rt_gateway; 189 x->u.rt.rt_gateway = rt0->rt_gateway;
183 x->u.rt.rt_spec_dst = rt0->rt_spec_dst; 190 x->u.rt.rt_spec_dst = rt0->rt_spec_dst;
184 x->u.rt.idev = rt0->idev;
185 in_dev_hold(rt0->idev);
186 header_len -= x->u.dst.xfrm->props.header_len; 191 header_len -= x->u.dst.xfrm->props.header_len;
187 trailer_len -= x->u.dst.xfrm->props.trailer_len; 192 trailer_len -= x->u.dst.xfrm->props.trailer_len;
188 } 193 }