diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/ip6_output.c | 4 | ||||
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 9 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 161afd1142..937018529d 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c | |||
@@ -913,7 +913,7 @@ static int ip6_dst_lookup_tail(struct sock *sk, | |||
913 | int err; | 913 | int err; |
914 | 914 | ||
915 | if (*dst == NULL) | 915 | if (*dst == NULL) |
916 | *dst = ip6_route_output(&init_net, sk, fl); | 916 | *dst = ip6_route_output(sk->sk_net, sk, fl); |
917 | 917 | ||
918 | if ((err = (*dst)->error)) | 918 | if ((err = (*dst)->error)) |
919 | goto out_err_release; | 919 | goto out_err_release; |
@@ -954,7 +954,7 @@ static int ip6_dst_lookup_tail(struct sock *sk, | |||
954 | dst_release(*dst); | 954 | dst_release(*dst); |
955 | memcpy(&fl_gw, fl, sizeof(struct flowi)); | 955 | memcpy(&fl_gw, fl, sizeof(struct flowi)); |
956 | memset(&fl_gw.fl6_dst, 0, sizeof(struct in6_addr)); | 956 | memset(&fl_gw.fl6_dst, 0, sizeof(struct in6_addr)); |
957 | *dst = ip6_route_output(&init_net, sk, &fl_gw); | 957 | *dst = ip6_route_output(sk->sk_net, sk, &fl_gw); |
958 | if ((err = (*dst)->error)) | 958 | if ((err = (*dst)->error)) |
959 | goto out_err_release; | 959 | goto out_err_release; |
960 | } | 960 | } |
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index fd773ac753..aacbb7688b 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
@@ -1071,8 +1071,11 @@ static void tcp_v6_send_reset(struct sock *sk, struct sk_buff *skb) | |||
1071 | fl.fl_ip_sport = t1->source; | 1071 | fl.fl_ip_sport = t1->source; |
1072 | security_skb_classify_flow(skb, &fl); | 1072 | security_skb_classify_flow(skb, &fl); |
1073 | 1073 | ||
1074 | /* sk = NULL, but it is safe for now. RST socket required. */ | 1074 | /* Pass a socket to ip6_dst_lookup either it is for RST |
1075 | if (!ip6_dst_lookup(NULL, &buff->dst, &fl)) { | 1075 | * Underlying function will use this to retrieve the network |
1076 | * namespace | ||
1077 | */ | ||
1078 | if (!ip6_dst_lookup(tcp6_socket->sk, &buff->dst, &fl)) { | ||
1076 | 1079 | ||
1077 | if (xfrm_lookup(&buff->dst, &fl, NULL, 0) >= 0) { | 1080 | if (xfrm_lookup(&buff->dst, &fl, NULL, 0) >= 0) { |
1078 | ip6_xmit(tcp6_socket->sk, buff, &fl, NULL, 0); | 1081 | ip6_xmit(tcp6_socket->sk, buff, &fl, NULL, 0); |
@@ -1172,7 +1175,7 @@ static void tcp_v6_send_ack(struct tcp_timewait_sock *tw, | |||
1172 | fl.fl_ip_sport = t1->source; | 1175 | fl.fl_ip_sport = t1->source; |
1173 | security_skb_classify_flow(skb, &fl); | 1176 | security_skb_classify_flow(skb, &fl); |
1174 | 1177 | ||
1175 | if (!ip6_dst_lookup(NULL, &buff->dst, &fl)) { | 1178 | if (!ip6_dst_lookup(tcp6_socket->sk, &buff->dst, &fl)) { |
1176 | if (xfrm_lookup(&buff->dst, &fl, NULL, 0) >= 0) { | 1179 | if (xfrm_lookup(&buff->dst, &fl, NULL, 0) >= 0) { |
1177 | ip6_xmit(tcp6_socket->sk, buff, &fl, NULL, 0); | 1180 | ip6_xmit(tcp6_socket->sk, buff, &fl, NULL, 0); |
1178 | TCP_INC_STATS_BH(TCP_MIB_OUTSEGS); | 1181 | TCP_INC_STATS_BH(TCP_MIB_OUTSEGS); |