inet_timewait_sock.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. /*
  2. * INET An implementation of the TCP/IP protocol suite for the LINUX
  3. * operating system. INET is implemented using the BSD Socket
  4. * interface as the means of communication with the user level.
  5. *
  6. * Generic TIME_WAIT sockets functions
  7. *
  8. * From code orinally in TCP
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/kmemcheck.h>
  12. #include <linux/slab.h>
  13. #include <linux/module.h>
  14. #include <net/inet_hashtables.h>
  15. #include <net/inet_timewait_sock.h>
  16. #include <net/ip.h>
  17. /**
  18. * inet_twsk_bind_unhash - unhash a timewait socket from bind hash
  19. * @tw: timewait socket
  20. * @hashinfo: hashinfo pointer
  21. *
  22. * unhash a timewait socket from bind hash, if hashed.
  23. * bind hash lock must be held by caller.
  24. * Returns 1 if caller should call inet_twsk_put() after lock release.
  25. */
  26. void inet_twsk_bind_unhash(struct inet_timewait_sock *tw,
  27. struct inet_hashinfo *hashinfo)
  28. {
  29. struct inet_bind_bucket *tb = tw->tw_tb;
  30. if (!tb)
  31. return;
  32. __hlist_del(&tw->tw_bind_node);
  33. tw->tw_tb = NULL;
  34. inet_bind_bucket_destroy(hashinfo->bind_bucket_cachep, tb);
  35. __sock_put((struct sock *)tw);
  36. }
  37. /* Must be called with locally disabled BHs. */
  38. static void inet_twsk_kill(struct inet_timewait_sock *tw)
  39. {
  40. struct inet_hashinfo *hashinfo = tw->tw_dr->hashinfo;
  41. spinlock_t *lock = inet_ehash_lockp(hashinfo, tw->tw_hash);
  42. struct inet_bind_hashbucket *bhead;
  43. spin_lock(lock);
  44. sk_nulls_del_node_init_rcu((struct sock *)tw);
  45. spin_unlock(lock);
  46. /* Disassociate with bind bucket. */
  47. bhead = &hashinfo->bhash[inet_bhashfn(twsk_net(tw), tw->tw_num,
  48. hashinfo->bhash_size)];
  49. spin_lock(&bhead->lock);
  50. inet_twsk_bind_unhash(tw, hashinfo);
  51. spin_unlock(&bhead->lock);
  52. atomic_dec(&tw->tw_dr->tw_count);
  53. inet_twsk_put(tw);
  54. }
  55. void inet_twsk_free(struct inet_timewait_sock *tw)
  56. {
  57. struct module *owner = tw->tw_prot->owner;
  58. twsk_destructor((struct sock *)tw);
  59. #ifdef SOCK_REFCNT_DEBUG
  60. pr_debug("%s timewait_sock %p released\n", tw->tw_prot->name, tw);
  61. #endif
  62. kmem_cache_free(tw->tw_prot->twsk_prot->twsk_slab, tw);
  63. module_put(owner);
  64. }
  65. void inet_twsk_put(struct inet_timewait_sock *tw)
  66. {
  67. if (atomic_dec_and_test(&tw->tw_refcnt))
  68. inet_twsk_free(tw);
  69. }
  70. EXPORT_SYMBOL_GPL(inet_twsk_put);
  71. static void inet_twsk_add_node_rcu(struct inet_timewait_sock *tw,
  72. struct hlist_nulls_head *list)
  73. {
  74. hlist_nulls_add_head_rcu(&tw->tw_node, list);
  75. }
  76. static void inet_twsk_add_bind_node(struct inet_timewait_sock *tw,
  77. struct hlist_head *list)
  78. {
  79. hlist_add_head(&tw->tw_bind_node, list);
  80. }
  81. /*
  82. * Enter the time wait state. This is called with locally disabled BH.
  83. * Essentially we whip up a timewait bucket, copy the relevant info into it
  84. * from the SK, and mess with hash chains and list linkage.
  85. */
  86. void __inet_twsk_hashdance(struct inet_timewait_sock *tw, struct sock *sk,
  87. struct inet_hashinfo *hashinfo)
  88. {
  89. const struct inet_sock *inet = inet_sk(sk);
  90. const struct inet_connection_sock *icsk = inet_csk(sk);
  91. struct inet_ehash_bucket *ehead = inet_ehash_bucket(hashinfo, sk->sk_hash);
  92. spinlock_t *lock = inet_ehash_lockp(hashinfo, sk->sk_hash);
  93. struct inet_bind_hashbucket *bhead;
  94. /* Step 1: Put TW into bind hash. Original socket stays there too.
  95. Note, that any socket with inet->num != 0 MUST be bound in
  96. binding cache, even if it is closed.
  97. */
  98. bhead = &hashinfo->bhash[inet_bhashfn(twsk_net(tw), inet->inet_num,
  99. hashinfo->bhash_size)];
  100. spin_lock(&bhead->lock);
  101. tw->tw_tb = icsk->icsk_bind_hash;
  102. WARN_ON(!icsk->icsk_bind_hash);
  103. inet_twsk_add_bind_node(tw, &tw->tw_tb->owners);
  104. spin_unlock(&bhead->lock);
  105. spin_lock(lock);
  106. /*
  107. * Step 2: Hash TW into tcp ehash chain.
  108. * Notes :
  109. * - tw_refcnt is set to 3 because :
  110. * - We have one reference from bhash chain.
  111. * - We have one reference from ehash chain.
  112. * We can use atomic_set() because prior spin_lock()/spin_unlock()
  113. * committed into memory all tw fields.
  114. */
  115. atomic_set(&tw->tw_refcnt, 1 + 1 + 1);
  116. inet_twsk_add_node_rcu(tw, &ehead->chain);
  117. /* Step 3: Remove SK from hash chain */
  118. if (__sk_nulls_del_node_init_rcu(sk))
  119. sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
  120. spin_unlock(lock);
  121. }
  122. EXPORT_SYMBOL_GPL(__inet_twsk_hashdance);
  123. static void tw_timer_handler(unsigned long data)
  124. {
  125. struct inet_timewait_sock *tw = (struct inet_timewait_sock *)data;
  126. if (tw->tw_kill)
  127. NET_INC_STATS_BH(twsk_net(tw), LINUX_MIB_TIMEWAITKILLED);
  128. else
  129. NET_INC_STATS_BH(twsk_net(tw), LINUX_MIB_TIMEWAITED);
  130. inet_twsk_kill(tw);
  131. }
  132. struct inet_timewait_sock *inet_twsk_alloc(const struct sock *sk,
  133. struct inet_timewait_death_row *dr,
  134. const int state)
  135. {
  136. struct inet_timewait_sock *tw;
  137. if (atomic_read(&dr->tw_count) >= dr->sysctl_max_tw_buckets)
  138. return NULL;
  139. tw = kmem_cache_alloc(sk->sk_prot_creator->twsk_prot->twsk_slab,
  140. GFP_ATOMIC);
  141. if (tw) {
  142. const struct inet_sock *inet = inet_sk(sk);
  143. kmemcheck_annotate_bitfield(tw, flags);
  144. tw->tw_dr = dr;
  145. /* Give us an identity. */
  146. tw->tw_daddr = inet->inet_daddr;
  147. tw->tw_rcv_saddr = inet->inet_rcv_saddr;
  148. tw->tw_bound_dev_if = sk->sk_bound_dev_if;
  149. tw->tw_tos = inet->tos;
  150. tw->tw_num = inet->inet_num;
  151. tw->tw_state = TCP_TIME_WAIT;
  152. tw->tw_substate = state;
  153. tw->tw_sport = inet->inet_sport;
  154. tw->tw_dport = inet->inet_dport;
  155. tw->tw_family = sk->sk_family;
  156. tw->tw_reuse = sk->sk_reuse;
  157. tw->tw_hash = sk->sk_hash;
  158. tw->tw_ipv6only = 0;
  159. tw->tw_transparent = inet->transparent;
  160. tw->tw_prot = sk->sk_prot_creator;
  161. atomic64_set(&tw->tw_cookie, atomic64_read(&sk->sk_cookie));
  162. twsk_net_set(tw, sock_net(sk));
  163. setup_timer(&tw->tw_timer, tw_timer_handler, (unsigned long)tw);
  164. /*
  165. * Because we use RCU lookups, we should not set tw_refcnt
  166. * to a non null value before everything is setup for this
  167. * timewait socket.
  168. */
  169. atomic_set(&tw->tw_refcnt, 0);
  170. __module_get(tw->tw_prot->owner);
  171. }
  172. return tw;
  173. }
  174. EXPORT_SYMBOL_GPL(inet_twsk_alloc);
  175. /* These are always called from BH context. See callers in
  176. * tcp_input.c to verify this.
  177. */
  178. /* This is for handling early-kills of TIME_WAIT sockets.
  179. * Warning : consume reference.
  180. * Caller should not access tw anymore.
  181. */
  182. void inet_twsk_deschedule_put(struct inet_timewait_sock *tw)
  183. {
  184. if (del_timer_sync(&tw->tw_timer))
  185. inet_twsk_kill(tw);
  186. inet_twsk_put(tw);
  187. }
  188. EXPORT_SYMBOL(inet_twsk_deschedule_put);
  189. void inet_twsk_schedule(struct inet_timewait_sock *tw, const int timeo)
  190. {
  191. /* timeout := RTO * 3.5
  192. *
  193. * 3.5 = 1+2+0.5 to wait for two retransmits.
  194. *
  195. * RATIONALE: if FIN arrived and we entered TIME-WAIT state,
  196. * our ACK acking that FIN can be lost. If N subsequent retransmitted
  197. * FINs (or previous seqments) are lost (probability of such event
  198. * is p^(N+1), where p is probability to lose single packet and
  199. * time to detect the loss is about RTO*(2^N - 1) with exponential
  200. * backoff). Normal timewait length is calculated so, that we
  201. * waited at least for one retransmitted FIN (maximal RTO is 120sec).
  202. * [ BTW Linux. following BSD, violates this requirement waiting
  203. * only for 60sec, we should wait at least for 240 secs.
  204. * Well, 240 consumes too much of resources 8)
  205. * ]
  206. * This interval is not reduced to catch old duplicate and
  207. * responces to our wandering segments living for two MSLs.
  208. * However, if we use PAWS to detect
  209. * old duplicates, we can reduce the interval to bounds required
  210. * by RTO, rather than MSL. So, if peer understands PAWS, we
  211. * kill tw bucket after 3.5*RTO (it is important that this number
  212. * is greater than TS tick!) and detect old duplicates with help
  213. * of PAWS.
  214. */
  215. tw->tw_kill = timeo <= 4*HZ;
  216. if (!mod_timer_pinned(&tw->tw_timer, jiffies + timeo)) {
  217. atomic_inc(&tw->tw_refcnt);
  218. atomic_inc(&tw->tw_dr->tw_count);
  219. }
  220. }
  221. EXPORT_SYMBOL_GPL(inet_twsk_schedule);
  222. void inet_twsk_purge(struct inet_hashinfo *hashinfo,
  223. struct inet_timewait_death_row *twdr, int family)
  224. {
  225. struct inet_timewait_sock *tw;
  226. struct sock *sk;
  227. struct hlist_nulls_node *node;
  228. unsigned int slot;
  229. for (slot = 0; slot <= hashinfo->ehash_mask; slot++) {
  230. struct inet_ehash_bucket *head = &hashinfo->ehash[slot];
  231. restart_rcu:
  232. cond_resched();
  233. rcu_read_lock();
  234. restart:
  235. sk_nulls_for_each_rcu(sk, node, &head->chain) {
  236. if (sk->sk_state != TCP_TIME_WAIT)
  237. continue;
  238. tw = inet_twsk(sk);
  239. if ((tw->tw_family != family) ||
  240. atomic_read(&twsk_net(tw)->count))
  241. continue;
  242. if (unlikely(!atomic_inc_not_zero(&tw->tw_refcnt)))
  243. continue;
  244. if (unlikely((tw->tw_family != family) ||
  245. atomic_read(&twsk_net(tw)->count))) {
  246. inet_twsk_put(tw);
  247. goto restart;
  248. }
  249. rcu_read_unlock();
  250. local_bh_disable();
  251. inet_twsk_deschedule_put(tw);
  252. local_bh_enable();
  253. goto restart_rcu;
  254. }
  255. /* If the nulls value we got at the end of this lookup is
  256. * not the expected one, we must restart lookup.
  257. * We probably met an item that was moved to another chain.
  258. */
  259. if (get_nulls_value(node) != slot)
  260. goto restart;
  261. rcu_read_unlock();
  262. }
  263. }
  264. EXPORT_SYMBOL_GPL(inet_twsk_purge);