inet_hashtables.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  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 INET transport hashtables
  7. *
  8. * Authors: Lotsa people, from code originally in tcp
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. */
  15. #include <linux/module.h>
  16. #include <linux/random.h>
  17. #include <linux/sched.h>
  18. #include <linux/slab.h>
  19. #include <linux/wait.h>
  20. #include <net/inet_connection_sock.h>
  21. #include <net/inet_hashtables.h>
  22. #include <net/ip.h>
  23. /*
  24. * Allocate and initialize a new local port bind bucket.
  25. * The bindhash mutex for snum's hash chain must be held here.
  26. */
  27. struct inet_bind_bucket *inet_bind_bucket_create(kmem_cache_t *cachep,
  28. struct inet_bind_hashbucket *head,
  29. const unsigned short snum)
  30. {
  31. struct inet_bind_bucket *tb = kmem_cache_alloc(cachep, SLAB_ATOMIC);
  32. if (tb != NULL) {
  33. tb->port = snum;
  34. tb->fastreuse = 0;
  35. INIT_HLIST_HEAD(&tb->owners);
  36. hlist_add_head(&tb->node, &head->chain);
  37. }
  38. return tb;
  39. }
  40. /*
  41. * Caller must hold hashbucket lock for this tb with local BH disabled
  42. */
  43. void inet_bind_bucket_destroy(kmem_cache_t *cachep, struct inet_bind_bucket *tb)
  44. {
  45. if (hlist_empty(&tb->owners)) {
  46. __hlist_del(&tb->node);
  47. kmem_cache_free(cachep, tb);
  48. }
  49. }
  50. void inet_bind_hash(struct sock *sk, struct inet_bind_bucket *tb,
  51. const unsigned short snum)
  52. {
  53. inet_sk(sk)->num = snum;
  54. sk_add_bind_node(sk, &tb->owners);
  55. inet_csk(sk)->icsk_bind_hash = tb;
  56. }
  57. /*
  58. * Get rid of any references to a local port held by the given sock.
  59. */
  60. static void __inet_put_port(struct inet_hashinfo *hashinfo, struct sock *sk)
  61. {
  62. const int bhash = inet_bhashfn(inet_sk(sk)->num, hashinfo->bhash_size);
  63. struct inet_bind_hashbucket *head = &hashinfo->bhash[bhash];
  64. struct inet_bind_bucket *tb;
  65. spin_lock(&head->lock);
  66. tb = inet_csk(sk)->icsk_bind_hash;
  67. __sk_del_bind_node(sk);
  68. inet_csk(sk)->icsk_bind_hash = NULL;
  69. inet_sk(sk)->num = 0;
  70. inet_bind_bucket_destroy(hashinfo->bind_bucket_cachep, tb);
  71. spin_unlock(&head->lock);
  72. }
  73. void inet_put_port(struct inet_hashinfo *hashinfo, struct sock *sk)
  74. {
  75. local_bh_disable();
  76. __inet_put_port(hashinfo, sk);
  77. local_bh_enable();
  78. }
  79. EXPORT_SYMBOL(inet_put_port);
  80. /*
  81. * This lock without WQ_FLAG_EXCLUSIVE is good on UP and it can be very bad on SMP.
  82. * Look, when several writers sleep and reader wakes them up, all but one
  83. * immediately hit write lock and grab all the cpus. Exclusive sleep solves
  84. * this, _but_ remember, it adds useless work on UP machines (wake up each
  85. * exclusive lock release). It should be ifdefed really.
  86. */
  87. void inet_listen_wlock(struct inet_hashinfo *hashinfo)
  88. {
  89. write_lock(&hashinfo->lhash_lock);
  90. if (atomic_read(&hashinfo->lhash_users)) {
  91. DEFINE_WAIT(wait);
  92. for (;;) {
  93. prepare_to_wait_exclusive(&hashinfo->lhash_wait,
  94. &wait, TASK_UNINTERRUPTIBLE);
  95. if (!atomic_read(&hashinfo->lhash_users))
  96. break;
  97. write_unlock_bh(&hashinfo->lhash_lock);
  98. schedule();
  99. write_lock_bh(&hashinfo->lhash_lock);
  100. }
  101. finish_wait(&hashinfo->lhash_wait, &wait);
  102. }
  103. }
  104. EXPORT_SYMBOL(inet_listen_wlock);
  105. /*
  106. * Don't inline this cruft. Here are some nice properties to exploit here. The
  107. * BSD API does not allow a listening sock to specify the remote port nor the
  108. * remote address for the connection. So always assume those are both
  109. * wildcarded during the search since they can never be otherwise.
  110. */
  111. struct sock *__inet_lookup_listener(const struct hlist_head *head, const u32 daddr,
  112. const unsigned short hnum, const int dif)
  113. {
  114. struct sock *result = NULL, *sk;
  115. const struct hlist_node *node;
  116. int hiscore = -1;
  117. sk_for_each(sk, node, head) {
  118. const struct inet_sock *inet = inet_sk(sk);
  119. if (inet->num == hnum && !ipv6_only_sock(sk)) {
  120. const __u32 rcv_saddr = inet->rcv_saddr;
  121. int score = sk->sk_family == PF_INET ? 1 : 0;
  122. if (rcv_saddr) {
  123. if (rcv_saddr != daddr)
  124. continue;
  125. score += 2;
  126. }
  127. if (sk->sk_bound_dev_if) {
  128. if (sk->sk_bound_dev_if != dif)
  129. continue;
  130. score += 2;
  131. }
  132. if (score == 5)
  133. return sk;
  134. if (score > hiscore) {
  135. hiscore = score;
  136. result = sk;
  137. }
  138. }
  139. }
  140. return result;
  141. }
  142. EXPORT_SYMBOL_GPL(__inet_lookup_listener);
  143. /* called with local bh disabled */
  144. static int __inet_check_established(struct inet_timewait_death_row *death_row,
  145. struct sock *sk, __u16 lport,
  146. struct inet_timewait_sock **twp)
  147. {
  148. struct inet_hashinfo *hinfo = death_row->hashinfo;
  149. struct inet_sock *inet = inet_sk(sk);
  150. u32 daddr = inet->rcv_saddr;
  151. u32 saddr = inet->daddr;
  152. int dif = sk->sk_bound_dev_if;
  153. INET_ADDR_COOKIE(acookie, saddr, daddr)
  154. const __u32 ports = INET_COMBINED_PORTS(inet->dport, lport);
  155. unsigned int hash = inet_ehashfn(daddr, lport, saddr, inet->dport);
  156. struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash);
  157. struct sock *sk2;
  158. const struct hlist_node *node;
  159. struct inet_timewait_sock *tw;
  160. prefetch(head->chain.first);
  161. write_lock(&head->lock);
  162. /* Check TIME-WAIT sockets first. */
  163. sk_for_each(sk2, node, &(head + hinfo->ehash_size)->chain) {
  164. tw = inet_twsk(sk2);
  165. if (INET_TW_MATCH(sk2, hash, acookie, saddr, daddr, ports, dif)) {
  166. if (twsk_unique(sk, sk2, twp))
  167. goto unique;
  168. else
  169. goto not_unique;
  170. }
  171. }
  172. tw = NULL;
  173. /* And established part... */
  174. sk_for_each(sk2, node, &head->chain) {
  175. if (INET_MATCH(sk2, hash, acookie, saddr, daddr, ports, dif))
  176. goto not_unique;
  177. }
  178. unique:
  179. /* Must record num and sport now. Otherwise we will see
  180. * in hash table socket with a funny identity. */
  181. inet->num = lport;
  182. inet->sport = htons(lport);
  183. sk->sk_hash = hash;
  184. BUG_TRAP(sk_unhashed(sk));
  185. __sk_add_node(sk, &head->chain);
  186. sock_prot_inc_use(sk->sk_prot);
  187. write_unlock(&head->lock);
  188. if (twp) {
  189. *twp = tw;
  190. NET_INC_STATS_BH(LINUX_MIB_TIMEWAITRECYCLED);
  191. } else if (tw) {
  192. /* Silly. Should hash-dance instead... */
  193. inet_twsk_deschedule(tw, death_row);
  194. NET_INC_STATS_BH(LINUX_MIB_TIMEWAITRECYCLED);
  195. inet_twsk_put(tw);
  196. }
  197. return 0;
  198. not_unique:
  199. write_unlock(&head->lock);
  200. return -EADDRNOTAVAIL;
  201. }
  202. static inline u32 inet_sk_port_offset(const struct sock *sk)
  203. {
  204. const struct inet_sock *inet = inet_sk(sk);
  205. return secure_ipv4_port_ephemeral(inet->rcv_saddr, inet->daddr,
  206. inet->dport);
  207. }
  208. /*
  209. * Bind a port for a connect operation and hash it.
  210. */
  211. int inet_hash_connect(struct inet_timewait_death_row *death_row,
  212. struct sock *sk)
  213. {
  214. struct inet_hashinfo *hinfo = death_row->hashinfo;
  215. const unsigned short snum = inet_sk(sk)->num;
  216. struct inet_bind_hashbucket *head;
  217. struct inet_bind_bucket *tb;
  218. int ret;
  219. if (!snum) {
  220. int low = sysctl_local_port_range[0];
  221. int high = sysctl_local_port_range[1];
  222. int range = high - low;
  223. int i;
  224. int port;
  225. static u32 hint;
  226. u32 offset = hint + inet_sk_port_offset(sk);
  227. struct hlist_node *node;
  228. struct inet_timewait_sock *tw = NULL;
  229. local_bh_disable();
  230. for (i = 1; i <= range; i++) {
  231. port = low + (i + offset) % range;
  232. head = &hinfo->bhash[inet_bhashfn(port, hinfo->bhash_size)];
  233. spin_lock(&head->lock);
  234. /* Does not bother with rcv_saddr checks,
  235. * because the established check is already
  236. * unique enough.
  237. */
  238. inet_bind_bucket_for_each(tb, node, &head->chain) {
  239. if (tb->port == port) {
  240. BUG_TRAP(!hlist_empty(&tb->owners));
  241. if (tb->fastreuse >= 0)
  242. goto next_port;
  243. if (!__inet_check_established(death_row,
  244. sk, port,
  245. &tw))
  246. goto ok;
  247. goto next_port;
  248. }
  249. }
  250. tb = inet_bind_bucket_create(hinfo->bind_bucket_cachep, head, port);
  251. if (!tb) {
  252. spin_unlock(&head->lock);
  253. break;
  254. }
  255. tb->fastreuse = -1;
  256. goto ok;
  257. next_port:
  258. spin_unlock(&head->lock);
  259. }
  260. local_bh_enable();
  261. return -EADDRNOTAVAIL;
  262. ok:
  263. hint += i;
  264. /* Head lock still held and bh's disabled */
  265. inet_bind_hash(sk, tb, port);
  266. if (sk_unhashed(sk)) {
  267. inet_sk(sk)->sport = htons(port);
  268. __inet_hash(hinfo, sk, 0);
  269. }
  270. spin_unlock(&head->lock);
  271. if (tw) {
  272. inet_twsk_deschedule(tw, death_row);
  273. inet_twsk_put(tw);
  274. }
  275. ret = 0;
  276. goto out;
  277. }
  278. head = &hinfo->bhash[inet_bhashfn(snum, hinfo->bhash_size)];
  279. tb = inet_csk(sk)->icsk_bind_hash;
  280. spin_lock_bh(&head->lock);
  281. if (sk_head(&tb->owners) == sk && !sk->sk_bind_node.next) {
  282. __inet_hash(hinfo, sk, 0);
  283. spin_unlock_bh(&head->lock);
  284. return 0;
  285. } else {
  286. spin_unlock(&head->lock);
  287. /* No definite answer... Walk to established hash table */
  288. ret = __inet_check_established(death_row, sk, snum, NULL);
  289. out:
  290. local_bh_enable();
  291. return ret;
  292. }
  293. }
  294. EXPORT_SYMBOL_GPL(inet_hash_connect);