diff options
Diffstat (limited to 'net/dccp/ipv6.c')
| -rw-r--r-- | net/dccp/ipv6.c | 30 | 
1 files changed, 6 insertions, 24 deletions
diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index 091698899594..6e3f32575df7 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c  | |||
| @@ -248,7 +248,7 @@ static int dccp_v6_send_response(struct sock *sk, struct request_sock *req, | |||
| 248 | struct ipv6_pinfo *np = inet6_sk(sk); | 248 | struct ipv6_pinfo *np = inet6_sk(sk); | 
| 249 | struct sk_buff *skb; | 249 | struct sk_buff *skb; | 
| 250 | struct ipv6_txoptions *opt = NULL; | 250 | struct ipv6_txoptions *opt = NULL; | 
| 251 | struct in6_addr *final_p = NULL, final; | 251 | struct in6_addr *final_p, final; | 
| 252 | struct flowi fl; | 252 | struct flowi fl; | 
| 253 | int err = -1; | 253 | int err = -1; | 
| 254 | struct dst_entry *dst; | 254 | struct dst_entry *dst; | 
| @@ -265,13 +265,7 @@ static int dccp_v6_send_response(struct sock *sk, struct request_sock *req, | |||
| 265 | 265 | ||
| 266 | opt = np->opt; | 266 | opt = np->opt; | 
| 267 | 267 | ||
| 268 | if (opt != NULL && opt->srcrt != NULL) { | 268 | final_p = fl6_update_dst(&fl, opt, &final); | 
| 269 | const struct rt0_hdr *rt0 = (struct rt0_hdr *)opt->srcrt; | ||
| 270 | |||
| 271 | ipv6_addr_copy(&final, &fl.fl6_dst); | ||
| 272 | ipv6_addr_copy(&fl.fl6_dst, rt0->addr); | ||
| 273 | final_p = &final; | ||
| 274 | } | ||
| 275 | 269 | ||
| 276 | err = ip6_dst_lookup(sk, &dst, &fl); | 270 | err = ip6_dst_lookup(sk, &dst, &fl); | 
| 277 | if (err) | 271 | if (err) | 
| @@ -545,19 +539,13 @@ static struct sock *dccp_v6_request_recv_sock(struct sock *sk, | |||
| 545 | goto out_overflow; | 539 | goto out_overflow; | 
| 546 | 540 | ||
| 547 | if (dst == NULL) { | 541 | if (dst == NULL) { | 
| 548 | struct in6_addr *final_p = NULL, final; | 542 | struct in6_addr *final_p, final; | 
| 549 | struct flowi fl; | 543 | struct flowi fl; | 
| 550 | 544 | ||
| 551 | memset(&fl, 0, sizeof(fl)); | 545 | memset(&fl, 0, sizeof(fl)); | 
| 552 | fl.proto = IPPROTO_DCCP; | 546 | fl.proto = IPPROTO_DCCP; | 
| 553 | ipv6_addr_copy(&fl.fl6_dst, &ireq6->rmt_addr); | 547 | ipv6_addr_copy(&fl.fl6_dst, &ireq6->rmt_addr); | 
| 554 | if (opt != NULL && opt->srcrt != NULL) { | 548 | final_p = fl6_update_dst(&fl, opt, &final); | 
| 555 | const struct rt0_hdr *rt0 = (struct rt0_hdr *)opt->srcrt; | ||
| 556 | |||
| 557 | ipv6_addr_copy(&final, &fl.fl6_dst); | ||
| 558 | ipv6_addr_copy(&fl.fl6_dst, rt0->addr); | ||
| 559 | final_p = &final; | ||
| 560 | } | ||
| 561 | ipv6_addr_copy(&fl.fl6_src, &ireq6->loc_addr); | 549 | ipv6_addr_copy(&fl.fl6_src, &ireq6->loc_addr); | 
| 562 | fl.oif = sk->sk_bound_dev_if; | 550 | fl.oif = sk->sk_bound_dev_if; | 
| 563 | fl.fl_ip_dport = inet_rsk(req)->rmt_port; | 551 | fl.fl_ip_dport = inet_rsk(req)->rmt_port; | 
| @@ -885,7 +873,7 @@ static int dccp_v6_connect(struct sock *sk, struct sockaddr *uaddr, | |||
| 885 | struct inet_sock *inet = inet_sk(sk); | 873 | struct inet_sock *inet = inet_sk(sk); | 
| 886 | struct ipv6_pinfo *np = inet6_sk(sk); | 874 | struct ipv6_pinfo *np = inet6_sk(sk); | 
| 887 | struct dccp_sock *dp = dccp_sk(sk); | 875 | struct dccp_sock *dp = dccp_sk(sk); | 
| 888 | struct in6_addr *saddr = NULL, *final_p = NULL, final; | 876 | struct in6_addr *saddr = NULL, *final_p, final; | 
| 889 | struct flowi fl; | 877 | struct flowi fl; | 
| 890 | struct dst_entry *dst; | 878 | struct dst_entry *dst; | 
| 891 | int addr_type; | 879 | int addr_type; | 
| @@ -988,13 +976,7 @@ static int dccp_v6_connect(struct sock *sk, struct sockaddr *uaddr, | |||
| 988 | fl.fl_ip_sport = inet->inet_sport; | 976 | fl.fl_ip_sport = inet->inet_sport; | 
| 989 | security_sk_classify_flow(sk, &fl); | 977 | security_sk_classify_flow(sk, &fl); | 
| 990 | 978 | ||
| 991 | if (np->opt != NULL && np->opt->srcrt != NULL) { | 979 | final_p = fl6_update_dst(&fl, np->opt, &final); | 
| 992 | const struct rt0_hdr *rt0 = (struct rt0_hdr *)np->opt->srcrt; | ||
| 993 | |||
| 994 | ipv6_addr_copy(&final, &fl.fl6_dst); | ||
| 995 | ipv6_addr_copy(&fl.fl6_dst, rt0->addr); | ||
| 996 | final_p = &final; | ||
| 997 | } | ||
| 998 | 980 | ||
| 999 | err = ip6_dst_lookup(sk, &dst, &fl); | 981 | err = ip6_dst_lookup(sk, &dst, &fl); | 
| 1000 | if (err) | 982 | if (err) | 
