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
1f6ad420
Commit
1f6ad420
authored
Aug 27, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://bk.skbuff.net:20609/linux-2.6-xfrm/
into nuts.davemloft.net:/disk1/BK/net-2.6
parents
a27c4a8f
0108a9a7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
91 additions
and
10 deletions
+91
-10
net/ipv6/datagram.c
net/ipv6/datagram.c
+12
-1
net/ipv6/ip6_output.c
net/ipv6/ip6_output.c
+0
-4
net/ipv6/raw.c
net/ipv6/raw.c
+10
-1
net/ipv6/tcp_ipv6.c
net/ipv6/tcp_ipv6.c
+59
-3
net/ipv6/udp.c
net/ipv6/udp.c
+10
-1
No files found.
net/ipv6/datagram.c
View file @
1f6ad420
...
...
@@ -38,7 +38,7 @@ int ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
struct
sockaddr_in6
*
usin
=
(
struct
sockaddr_in6
*
)
uaddr
;
struct
inet_opt
*
inet
=
inet_sk
(
sk
);
struct
ipv6_pinfo
*
np
=
inet6_sk
(
sk
);
struct
in6_addr
*
daddr
;
struct
in6_addr
*
daddr
,
*
final_p
=
NULL
,
final
;
struct
dst_entry
*
dst
;
struct
flowi
fl
;
struct
ip6_flowlabel
*
flowlabel
=
NULL
;
...
...
@@ -157,16 +157,27 @@ int ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
if
(
flowlabel
)
{
if
(
flowlabel
->
opt
&&
flowlabel
->
opt
->
srcrt
)
{
struct
rt0_hdr
*
rt0
=
(
struct
rt0_hdr
*
)
flowlabel
->
opt
->
srcrt
;
ipv6_addr_copy
(
&
final
,
&
fl
.
fl6_dst
);
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
rt0
->
addr
);
final_p
=
&
final
;
}
}
else
if
(
np
->
opt
&&
np
->
opt
->
srcrt
)
{
struct
rt0_hdr
*
rt0
=
(
struct
rt0_hdr
*
)
np
->
opt
->
srcrt
;
ipv6_addr_copy
(
&
final
,
&
fl
.
fl6_dst
);
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
rt0
->
addr
);
final_p
=
&
final
;
}
err
=
ip6_dst_lookup
(
sk
,
&
dst
,
&
fl
);
if
(
err
)
goto
out
;
if
(
final_p
)
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
final_p
);
if
((
err
=
xfrm_lookup
(
&
dst
,
&
fl
,
sk
,
0
))
<
0
)
{
dst_release
(
dst
);
goto
out
;
}
/* source address lookup done in ip6_dst_lookup */
...
...
net/ipv6/ip6_output.c
View file @
1f6ad420
...
...
@@ -796,10 +796,6 @@ int ip6_dst_lookup(struct sock *sk, struct dst_entry **dst, struct flowi *fl)
goto
out_err_release
;
}
}
if
((
err
=
xfrm_lookup
(
dst
,
fl
,
sk
,
0
))
<
0
)
{
err
=
-
ENETUNREACH
;
goto
out_err_release
;
}
return
0
;
...
...
net/ipv6/raw.c
View file @
1f6ad420
...
...
@@ -606,7 +606,7 @@ static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
{
struct
ipv6_txoptions
opt_space
;
struct
sockaddr_in6
*
sin6
=
(
struct
sockaddr_in6
*
)
msg
->
msg_name
;
struct
in6_addr
*
daddr
;
struct
in6_addr
*
daddr
,
*
final_p
=
NULL
,
final
;
struct
inet_opt
*
inet
=
inet_sk
(
sk
);
struct
ipv6_pinfo
*
np
=
inet6_sk
(
sk
);
struct
raw6_opt
*
raw_opt
=
raw6_sk
(
sk
);
...
...
@@ -729,7 +729,9 @@ static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
/* merge ip6_build_xmit from ip6_output */
if
(
opt
&&
opt
->
srcrt
)
{
struct
rt0_hdr
*
rt0
=
(
struct
rt0_hdr
*
)
opt
->
srcrt
;
ipv6_addr_copy
(
&
final
,
&
fl
.
fl6_dst
);
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
rt0
->
addr
);
final_p
=
&
final
;
}
if
(
!
fl
.
oif
&&
ipv6_addr_is_multicast
(
&
fl
.
fl6_dst
))
...
...
@@ -738,6 +740,13 @@ static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
err
=
ip6_dst_lookup
(
sk
,
&
dst
,
&
fl
);
if
(
err
)
goto
out
;
if
(
final_p
)
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
final_p
);
if
((
err
=
xfrm_lookup
(
&
dst
,
&
fl
,
sk
,
0
))
<
0
)
{
dst_release
(
dst
);
goto
out
;
}
if
(
hlimit
<
0
)
{
if
(
ipv6_addr_is_multicast
(
&
fl
.
fl6_dst
))
...
...
net/ipv6/tcp_ipv6.c
View file @
1f6ad420
...
...
@@ -549,7 +549,7 @@ static int tcp_v6_connect(struct sock *sk, struct sockaddr *uaddr,
struct
inet_opt
*
inet
=
inet_sk
(
sk
);
struct
ipv6_pinfo
*
np
=
inet6_sk
(
sk
);
struct
tcp_opt
*
tp
=
tcp_sk
(
sk
);
struct
in6_addr
*
saddr
=
NULL
;
struct
in6_addr
*
saddr
=
NULL
,
*
final_p
=
NULL
,
final
;
struct
flowi
fl
;
struct
dst_entry
*
dst
;
int
addr_type
;
...
...
@@ -666,13 +666,21 @@ static int tcp_v6_connect(struct sock *sk, struct sockaddr *uaddr,
if
(
np
->
opt
&&
np
->
opt
->
srcrt
)
{
struct
rt0_hdr
*
rt0
=
(
struct
rt0_hdr
*
)
np
->
opt
->
srcrt
;
ipv6_addr_copy
(
&
final
,
&
fl
.
fl6_dst
);
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
rt0
->
addr
);
final_p
=
&
final
;
}
err
=
ip6_dst_lookup
(
sk
,
&
dst
,
&
fl
);
if
(
err
)
goto
failure
;
if
(
final_p
)
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
final_p
);
if
((
err
=
xfrm_lookup
(
&
dst
,
&
fl
,
sk
,
0
))
<
0
)
{
dst_release
(
dst
);
goto
failure
;
}
if
(
saddr
==
NULL
)
{
saddr
=
&
fl
.
fl6_src
;
...
...
@@ -793,6 +801,12 @@ static void tcp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
sk
->
sk_err_soft
=
-
err
;
goto
out
;
}
if
((
err
=
xfrm_lookup
(
&
dst
,
&
fl
,
sk
,
0
))
<
0
)
{
sk
->
sk_err_soft
=
-
err
;
goto
out
;
}
}
else
dst_hold
(
dst
);
...
...
@@ -863,6 +877,7 @@ static int tcp_v6_send_synack(struct sock *sk, struct open_request *req,
struct
ipv6_pinfo
*
np
=
inet6_sk
(
sk
);
struct
sk_buff
*
skb
;
struct
ipv6_txoptions
*
opt
=
NULL
;
struct
in6_addr
*
final_p
=
NULL
,
final
;
struct
flowi
fl
;
int
err
=
-
1
;
...
...
@@ -888,12 +903,18 @@ static int tcp_v6_send_synack(struct sock *sk, struct open_request *req,
if
(
opt
&&
opt
->
srcrt
)
{
struct
rt0_hdr
*
rt0
=
(
struct
rt0_hdr
*
)
opt
->
srcrt
;
ipv6_addr_copy
(
&
final
,
&
fl
.
fl6_dst
);
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
rt0
->
addr
);
final_p
=
&
final
;
}
err
=
ip6_dst_lookup
(
sk
,
&
dst
,
&
fl
);
if
(
err
)
goto
done
;
if
(
final_p
)
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
final_p
);
if
((
err
=
xfrm_lookup
(
&
dst
,
&
fl
,
sk
,
0
))
<
0
)
goto
done
;
}
skb
=
tcp_make_synack
(
sk
,
dst
,
req
);
...
...
@@ -1021,6 +1042,12 @@ static void tcp_v6_send_reset(struct sk_buff *skb)
/* sk = NULL, but it is safe for now. RST socket required. */
if
(
!
ip6_dst_lookup
(
NULL
,
&
buff
->
dst
,
&
fl
))
{
if
((
xfrm_lookup
(
&
buff
->
dst
,
&
fl
,
NULL
,
0
))
<
0
)
{
dst_release
(
buff
->
dst
);
return
;
}
ip6_xmit
(
NULL
,
buff
,
&
fl
,
NULL
,
0
);
TCP_INC_STATS_BH
(
TCP_MIB_OUTSEGS
);
TCP_INC_STATS_BH
(
TCP_MIB_OUTRSTS
);
...
...
@@ -1082,6 +1109,10 @@ static void tcp_v6_send_ack(struct sk_buff *skb, u32 seq, u32 ack, u32 win, u32
fl
.
fl_ip_sport
=
t1
->
source
;
if
(
!
ip6_dst_lookup
(
NULL
,
&
buff
->
dst
,
&
fl
))
{
if
((
xfrm_lookup
(
&
buff
->
dst
,
&
fl
,
NULL
,
0
))
<
0
)
{
dst_release
(
buff
->
dst
);
return
;
}
ip6_xmit
(
NULL
,
buff
,
&
fl
,
NULL
,
0
);
TCP_INC_STATS_BH
(
TCP_MIB_OUTSEGS
);
return
;
...
...
@@ -1313,6 +1344,7 @@ static struct sock * tcp_v6_syn_recv_sock(struct sock *sk, struct sk_buff *skb,
}
if
(
dst
==
NULL
)
{
struct
in6_addr
*
final_p
=
NULL
,
final
;
struct
flowi
fl
;
memset
(
&
fl
,
0
,
sizeof
(
fl
));
...
...
@@ -1320,7 +1352,9 @@ static struct sock * tcp_v6_syn_recv_sock(struct sock *sk, struct sk_buff *skb,
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
&
req
->
af
.
v6_req
.
rmt_addr
);
if
(
opt
&&
opt
->
srcrt
)
{
struct
rt0_hdr
*
rt0
=
(
struct
rt0_hdr
*
)
opt
->
srcrt
;
ipv6_addr_copy
(
&
final
,
&
fl
.
fl6_dst
);
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
rt0
->
addr
);
final_p
=
&
final
;
}
ipv6_addr_copy
(
&
fl
.
fl6_src
,
&
req
->
af
.
v6_req
.
loc_addr
);
fl
.
oif
=
sk
->
sk_bound_dev_if
;
...
...
@@ -1329,6 +1363,12 @@ static struct sock * tcp_v6_syn_recv_sock(struct sock *sk, struct sk_buff *skb,
if
(
ip6_dst_lookup
(
sk
,
&
dst
,
&
fl
))
goto
out
;
if
(
final_p
)
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
final_p
);
if
((
xfrm_lookup
(
&
dst
,
&
fl
,
sk
,
0
))
<
0
)
goto
out
;
}
newsk
=
tcp_create_openreq_child
(
sk
,
req
,
skb
);
...
...
@@ -1710,6 +1750,7 @@ static int tcp_v6_rebuild_header(struct sock *sk)
if
(
dst
==
NULL
)
{
struct
inet_opt
*
inet
=
inet_sk
(
sk
);
struct
in6_addr
*
final_p
=
NULL
,
final
;
struct
flowi
fl
;
memset
(
&
fl
,
0
,
sizeof
(
fl
));
...
...
@@ -1723,15 +1764,24 @@ static int tcp_v6_rebuild_header(struct sock *sk)
if
(
np
->
opt
&&
np
->
opt
->
srcrt
)
{
struct
rt0_hdr
*
rt0
=
(
struct
rt0_hdr
*
)
np
->
opt
->
srcrt
;
ipv6_addr_copy
(
&
final
,
&
fl
.
fl6_dst
);
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
rt0
->
addr
);
final_p
=
&
final
;
}
err
=
ip6_dst_lookup
(
sk
,
&
dst
,
&
fl
);
if
(
err
)
{
sk
->
sk_route_caps
=
0
;
return
err
;
}
if
(
final_p
)
ipv6_addr_copy
(
&
fl
.
fl6_dst
,
final_p
);
if
((
err
=
xfrm_lookup
(
&
dst
,
&
fl
,
sk
,
0
))
<
0
)
{
sk
->
sk_err_soft
=
-
err
;
dst_release
(
dst
);
return
err
;
}
ip6_dst_store
(
sk
,
dst
,
NULL
);
sk
->
sk_route_caps
=
dst
->
dev
->
features
&
...
...
@@ -1775,6 +1825,12 @@ static int tcp_v6_xmit(struct sk_buff *skb, int ipfragok)
return
err
;
}
if
((
err
=
xfrm_lookup
(
&
dst
,
&
fl
,
sk
,
0
))
<
0
)
{
sk
->
sk_route_caps
=
0
;
dst_release
(
dst
);
return
err
;
}
ip6_dst_store
(
sk
,
dst
,
NULL
);
sk
->
sk_route_caps
=
dst
->
dev
->
features
&
~
(
NETIF_F_IP_CSUM
|
NETIF_F_TSO
);
...
...
net/ipv6/udp.c
View file @
1f6ad420
...
...
@@ -627,7 +627,7 @@ static int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
struct
inet_opt
*
inet
=
inet_sk
(
sk
);
struct
ipv6_pinfo
*
np
=
inet6_sk
(
sk
);
struct
sockaddr_in6
*
sin6
=
(
struct
sockaddr_in6
*
)
msg
->
msg_name
;
struct
in6_addr
*
daddr
;
struct
in6_addr
*
daddr
,
*
final_p
=
NULL
,
final
;
struct
ipv6_txoptions
*
opt
=
NULL
;
struct
ip6_flowlabel
*
flowlabel
=
NULL
;
struct
flowi
*
fl
=
&
inet
->
cork
.
fl
;
...
...
@@ -783,7 +783,9 @@ static int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
/* merge ip6_build_xmit from ip6_output */
if
(
opt
&&
opt
->
srcrt
)
{
struct
rt0_hdr
*
rt0
=
(
struct
rt0_hdr
*
)
opt
->
srcrt
;
ipv6_addr_copy
(
&
final
,
&
fl
->
fl6_dst
);
ipv6_addr_copy
(
&
fl
->
fl6_dst
,
rt0
->
addr
);
final_p
=
&
final
;
}
if
(
!
fl
->
oif
&&
ipv6_addr_is_multicast
(
&
fl
->
fl6_dst
))
...
...
@@ -792,6 +794,13 @@ static int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
err
=
ip6_dst_lookup
(
sk
,
&
dst
,
fl
);
if
(
err
)
goto
out
;
if
(
final_p
)
ipv6_addr_copy
(
&
fl
->
fl6_dst
,
final_p
);
if
((
err
=
xfrm_lookup
(
&
dst
,
fl
,
sk
,
0
))
<
0
)
{
dst_release
(
dst
);
goto
out
;
}
if
(
hlimit
<
0
)
{
if
(
ipv6_addr_is_multicast
(
&
fl
->
fl6_dst
))
...
...
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