3 * Linux INET implementation
6 * Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
14 #include <linux/types.h>
15 #include <linux/module.h>
20 #include <net/route.h>
21 #include <net/tcp_states.h>
23 int __ip4_datagram_connect(struct sock
*sk
, struct sockaddr
*uaddr
, int addr_len
)
25 struct inet_sock
*inet
= inet_sk(sk
);
26 struct sockaddr_in
*usin
= (struct sockaddr_in
*) uaddr
;
34 if (addr_len
< sizeof(*usin
))
37 if (usin
->sin_family
!= AF_INET
)
42 oif
= sk
->sk_bound_dev_if
;
43 saddr
= inet
->inet_saddr
;
44 if (ipv4_is_multicast(usin
->sin_addr
.s_addr
)) {
48 saddr
= inet
->mc_addr
;
50 fl4
= &inet
->cork
.fl
.u
.ip4
;
51 rt
= ip_route_connect(fl4
, usin
->sin_addr
.s_addr
, saddr
,
52 RT_CONN_FLAGS(sk
), oif
,
54 inet
->inet_sport
, usin
->sin_port
, sk
);
57 if (err
== -ENETUNREACH
)
58 IP_INC_STATS(sock_net(sk
), IPSTATS_MIB_OUTNOROUTES
);
62 if ((rt
->rt_flags
& RTCF_BROADCAST
) && !sock_flag(sk
, SOCK_BROADCAST
)) {
67 if (!inet
->inet_saddr
)
68 inet
->inet_saddr
= fl4
->saddr
; /* Update source address */
69 if (!inet
->inet_rcv_saddr
) {
70 inet
->inet_rcv_saddr
= fl4
->saddr
;
71 if (sk
->sk_prot
->rehash
)
72 sk
->sk_prot
->rehash(sk
);
74 inet
->inet_daddr
= fl4
->daddr
;
75 inet
->inet_dport
= usin
->sin_port
;
76 sk
->sk_state
= TCP_ESTABLISHED
;
78 inet
->inet_id
= jiffies
;
80 sk_dst_set(sk
, &rt
->dst
);
85 EXPORT_SYMBOL(__ip4_datagram_connect
);
87 int ip4_datagram_connect(struct sock
*sk
, struct sockaddr
*uaddr
, int addr_len
)
92 res
= __ip4_datagram_connect(sk
, uaddr
, addr_len
);
96 EXPORT_SYMBOL(ip4_datagram_connect
);
98 /* Because UDP xmit path can manipulate sk_dst_cache without holding
99 * socket lock, we need to use sk_dst_set() here,
100 * even if we own the socket lock.
102 void ip4_datagram_release_cb(struct sock
*sk
)
104 const struct inet_sock
*inet
= inet_sk(sk
);
105 const struct ip_options_rcu
*inet_opt
;
106 __be32 daddr
= inet
->inet_daddr
;
107 struct dst_entry
*dst
;
113 dst
= __sk_dst_get(sk
);
114 if (!dst
|| !dst
->obsolete
|| dst
->ops
->check(dst
, 0)) {
118 inet_opt
= rcu_dereference(inet
->inet_opt
);
119 if (inet_opt
&& inet_opt
->opt
.srr
)
120 daddr
= inet_opt
->opt
.faddr
;
121 rt
= ip_route_output_ports(sock_net(sk
), &fl4
, sk
, daddr
,
122 inet
->inet_saddr
, inet
->inet_dport
,
123 inet
->inet_sport
, sk
->sk_protocol
,
124 RT_CONN_FLAGS(sk
), sk
->sk_bound_dev_if
);
126 dst
= !IS_ERR(rt
) ? &rt
->dst
: NULL
;
131 EXPORT_SYMBOL_GPL(ip4_datagram_release_cb
);