aboutsummaryrefslogtreecommitdiffstats
path: root/net/xfrm
diff options
context:
space:
mode:
authorSteffen Klassert <steffen.klassert@secunet.com>2011-03-07 19:06:31 -0500
committerDavid S. Miller <davem@davemloft.net>2011-03-13 23:22:28 -0400
commit1ce3644ade9c865c755bf0f6a4e109b7bb6eb60f (patch)
tree14ce0727337a43d1fa28432d01189d1a5f4269c7 /net/xfrm
parent9736acf395d3608583a7be70f62800b494fa103c (diff)
xfrm: Use separate low and high order bits of the sequence numbers in xfrm_skb_cb
To support IPsec extended sequence numbers, we split the output sequence numbers of xfrm_skb_cb in low and high order 32 bits and we add the high order 32 bits to the input sequence numbers. All users are updated accordingly. Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com> Acked-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm')
-rw-r--r--net/xfrm/xfrm_input.c4
-rw-r--r--net/xfrm/xfrm_output.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/net/xfrm/xfrm_input.c b/net/xfrm/xfrm_input.c
index 45f1c98d4fce..b173b7fdc433 100644
--- a/net/xfrm/xfrm_input.c
+++ b/net/xfrm/xfrm_input.c
@@ -118,7 +118,7 @@ int xfrm_input(struct sk_buff *skb, int nexthdr, __be32 spi, int encap_type)
118 if (encap_type < 0) { 118 if (encap_type < 0) {
119 async = 1; 119 async = 1;
120 x = xfrm_input_state(skb); 120 x = xfrm_input_state(skb);
121 seq = XFRM_SKB_CB(skb)->seq.input; 121 seq = XFRM_SKB_CB(skb)->seq.input.low;
122 goto resume; 122 goto resume;
123 } 123 }
124 124
@@ -184,7 +184,7 @@ int xfrm_input(struct sk_buff *skb, int nexthdr, __be32 spi, int encap_type)
184 184
185 spin_unlock(&x->lock); 185 spin_unlock(&x->lock);
186 186
187 XFRM_SKB_CB(skb)->seq.input = seq; 187 XFRM_SKB_CB(skb)->seq.input.low = seq;
188 188
189 nexthdr = x->type->input(x, skb); 189 nexthdr = x->type->input(x, skb);
190 190
diff --git a/net/xfrm/xfrm_output.c b/net/xfrm/xfrm_output.c
index 64f2ae1fdc15..4b63776a0264 100644
--- a/net/xfrm/xfrm_output.c
+++ b/net/xfrm/xfrm_output.c
@@ -68,7 +68,7 @@ static int xfrm_output_one(struct sk_buff *skb, int err)
68 } 68 }
69 69
70 if (x->type->flags & XFRM_TYPE_REPLAY_PROT) { 70 if (x->type->flags & XFRM_TYPE_REPLAY_PROT) {
71 XFRM_SKB_CB(skb)->seq.output = ++x->replay.oseq; 71 XFRM_SKB_CB(skb)->seq.output.low = ++x->replay.oseq;
72 if (unlikely(x->replay.oseq == 0)) { 72 if (unlikely(x->replay.oseq == 0)) {
73 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATESEQERROR); 73 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATESEQERROR);
74 x->replay.oseq--; 74 x->replay.oseq--;