diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-10-17 21:35:51 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-10-17 21:35:51 -0700 |
commit | 13996378e6585fb25e582afe7489bf52dde78deb (patch) | |
tree | 4a1eb75c81a5a9d23c68f9818259f3b357dc8265 /net/core | |
parent | ca68145f16359f71cd62b2671aa3e8c58f45ef19 (diff) | |
download | kernel_samsung_espresso10-13996378e6585fb25e582afe7489bf52dde78deb.zip kernel_samsung_espresso10-13996378e6585fb25e582afe7489bf52dde78deb.tar.gz kernel_samsung_espresso10-13996378e6585fb25e582afe7489bf52dde78deb.tar.bz2 |
[IPSEC]: Rename mode to outer_mode and add inner_mode
This patch adds a new field to xfrm states called inner_mode. The existing
mode object is renamed to outer_mode.
This is the first part of an attempt to fix inter-family transforms. As it
is we always use the outer family when determining which mode to use. As a
result we may end up shoving IPv4 packets into netfilter6 and vice versa.
What we really want is to use the inner family for the first part of outbound
processing and the outer family for the second part. For inbound processing
we'd use the opposite pairing.
I've also added a check to prevent silly combinations such as transport mode
with inter-family transforms.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/pktgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/pktgen.c b/net/core/pktgen.c index 2100c73..8cae60c 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c @@ -2454,7 +2454,7 @@ static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev) spin_lock(&x->lock); iph = ip_hdr(skb); - err = x->mode->output(x, skb); + err = x->outer_mode->output(x, skb); if (err) goto error; err = x->type->output(x, skb); |