Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a704f0b4
Commit
a704f0b4
authored
Jul 05, 2004
by
Herbert Xu
Committed by
David S. Miller
Jul 05, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ESP4]: Merge NAT-T code in esp_output().
parent
835b1c06
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
43 deletions
+22
-43
net/ipv4/esp4.c
net/ipv4/esp4.c
+22
-43
No files found.
net/ipv4/esp4.c
View file @
a704f0b4
...
...
@@ -28,9 +28,6 @@ int esp_output(struct sk_buff **pskb)
struct
crypto_tfm
*
tfm
;
struct
esp_data
*
esp
;
struct
sk_buff
*
trailer
;
struct
udphdr
*
uh
=
NULL
;
u32
*
udpdata32
;
struct
xfrm_encap_tmpl
*
encap
=
NULL
;
int
blksize
;
int
clen
;
int
alen
;
...
...
@@ -88,30 +85,10 @@ int esp_output(struct sk_buff **pskb)
*
(
u8
*
)(
trailer
->
tail
+
clen
-
(
*
pskb
)
->
len
-
2
)
=
(
clen
-
(
*
pskb
)
->
len
)
-
2
;
pskb_put
(
*
pskb
,
trailer
,
clen
-
(
*
pskb
)
->
len
);
encap
=
x
->
encap
;
iph
=
(
*
pskb
)
->
nh
.
iph
;
if
(
x
->
props
.
mode
)
{
top_iph
=
(
struct
iphdr
*
)
skb_push
(
*
pskb
,
x
->
props
.
header_len
);
esph
=
(
struct
ip_esp_hdr
*
)(
top_iph
+
1
);
if
(
encap
)
{
switch
(
encap
->
encap_type
)
{
default:
case
UDP_ENCAP_ESPINUDP
:
uh
=
(
struct
udphdr
*
)
esph
;
esph
=
(
struct
ip_esp_hdr
*
)(
uh
+
1
);
top_iph
->
protocol
=
IPPROTO_UDP
;
break
;
case
UDP_ENCAP_ESPINUDP_NON_IKE
:
uh
=
(
struct
udphdr
*
)
esph
;
udpdata32
=
(
u32
*
)(
uh
+
1
);
udpdata32
[
0
]
=
udpdata32
[
1
]
=
0
;
esph
=
(
struct
ip_esp_hdr
*
)(
udpdata32
+
2
);
top_iph
->
protocol
=
IPPROTO_UDP
;
break
;
}
}
else
top_iph
->
protocol
=
IPPROTO_ESP
;
*
(
u8
*
)(
trailer
->
tail
-
1
)
=
IPPROTO_IPIP
;
top_iph
->
ihl
=
5
;
top_iph
->
version
=
4
;
...
...
@@ -131,24 +108,6 @@ int esp_output(struct sk_buff **pskb)
esph
=
(
struct
ip_esp_hdr
*
)
skb_push
(
*
pskb
,
x
->
props
.
header_len
);
top_iph
=
(
struct
iphdr
*
)
skb_push
(
*
pskb
,
iph
->
ihl
*
4
);
memcpy
(
top_iph
,
&
tmp_iph
,
iph
->
ihl
*
4
);
if
(
encap
)
{
switch
(
encap
->
encap_type
)
{
default:
case
UDP_ENCAP_ESPINUDP
:
uh
=
(
struct
udphdr
*
)
esph
;
esph
=
(
struct
ip_esp_hdr
*
)(
uh
+
1
);
top_iph
->
protocol
=
IPPROTO_UDP
;
break
;
case
UDP_ENCAP_ESPINUDP_NON_IKE
:
uh
=
(
struct
udphdr
*
)
esph
;
udpdata32
=
(
u32
*
)(
uh
+
1
);
udpdata32
[
0
]
=
udpdata32
[
1
]
=
0
;
esph
=
(
struct
ip_esp_hdr
*
)(
udpdata32
+
2
);
top_iph
->
protocol
=
IPPROTO_UDP
;
break
;
}
}
else
top_iph
->
protocol
=
IPPROTO_ESP
;
iph
=
&
tmp_iph
.
iph
;
top_iph
->
tot_len
=
htons
((
*
pskb
)
->
len
+
alen
);
top_iph
->
check
=
0
;
...
...
@@ -157,13 +116,33 @@ int esp_output(struct sk_buff **pskb)
}
/* this is non-NULL only with UDP Encapsulation */
if
(
encap
&&
uh
)
{
if
(
x
->
encap
)
{
struct
xfrm_encap_tmpl
*
encap
=
x
->
encap
;
struct
udphdr
*
uh
;
u32
*
udpdata32
;
uh
=
(
struct
udphdr
*
)
esph
;
uh
->
source
=
encap
->
encap_sport
;
uh
->
dest
=
encap
->
encap_dport
;
uh
->
len
=
htons
((
*
pskb
)
->
len
+
alen
-
sizeof
(
struct
iphdr
));
uh
->
check
=
0
;
switch
(
encap
->
encap_type
)
{
default:
case
UDP_ENCAP_ESPINUDP
:
esph
=
(
struct
ip_esp_hdr
*
)(
uh
+
1
);
break
;
case
UDP_ENCAP_ESPINUDP_NON_IKE
:
udpdata32
=
(
u32
*
)(
uh
+
1
);
udpdata32
[
0
]
=
udpdata32
[
1
]
=
0
;
esph
=
(
struct
ip_esp_hdr
*
)(
udpdata32
+
2
);
break
;
}
top_iph
->
protocol
=
IPPROTO_UDP
;
}
else
top_iph
->
protocol
=
IPPROTO_ESP
;
esph
->
spi
=
x
->
id
.
spi
;
esph
->
seq_no
=
htonl
(
++
x
->
replay
.
oseq
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment