inet_connection_sock.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  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. * Support for INET connection oriented protocols.
  7. *
  8. * Authors: See the TCP sources
  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/jhash.h>
  17. #include <net/inet_connection_sock.h>
  18. #include <net/inet_hashtables.h>
  19. #include <net/inet_timewait_sock.h>
  20. #include <net/ip.h>
  21. #include <net/route.h>
  22. #include <net/tcp_states.h>
  23. #include <net/xfrm.h>
  24. #ifdef INET_CSK_DEBUG
  25. const char inet_csk_timer_bug_msg[] = "inet_csk BUG: unknown timer value\n";
  26. EXPORT_SYMBOL(inet_csk_timer_bug_msg);
  27. #endif
  28. /*
  29. * This struct holds the first and last local port number.
  30. */
  31. struct local_ports sysctl_local_ports __read_mostly = {
  32. .lock = __SEQLOCK_UNLOCKED(sysctl_local_ports.lock),
  33. .range = { 32768, 61000 },
  34. };
  35. unsigned long *sysctl_local_reserved_ports;
  36. EXPORT_SYMBOL(sysctl_local_reserved_ports);
  37. void inet_get_local_port_range(int *low, int *high)
  38. {
  39. unsigned seq;
  40. do {
  41. seq = read_seqbegin(&sysctl_local_ports.lock);
  42. *low = sysctl_local_ports.range[0];
  43. *high = sysctl_local_ports.range[1];
  44. } while (read_seqretry(&sysctl_local_ports.lock, seq));
  45. }
  46. EXPORT_SYMBOL(inet_get_local_port_range);
  47. int inet_csk_bind_conflict(const struct sock *sk,
  48. const struct inet_bind_bucket *tb)
  49. {
  50. struct sock *sk2;
  51. struct hlist_node *node;
  52. int reuse = sk->sk_reuse;
  53. /*
  54. * Unlike other sk lookup places we do not check
  55. * for sk_net here, since _all_ the socks listed
  56. * in tb->owners list belong to the same net - the
  57. * one this bucket belongs to.
  58. */
  59. sk_for_each_bound(sk2, node, &tb->owners) {
  60. if (sk != sk2 &&
  61. !inet_v6_ipv6only(sk2) &&
  62. (!sk->sk_bound_dev_if ||
  63. !sk2->sk_bound_dev_if ||
  64. sk->sk_bound_dev_if == sk2->sk_bound_dev_if)) {
  65. if (!reuse || !sk2->sk_reuse ||
  66. sk2->sk_state == TCP_LISTEN) {
  67. const __be32 sk2_rcv_saddr = sk_rcv_saddr(sk2);
  68. if (!sk2_rcv_saddr || !sk_rcv_saddr(sk) ||
  69. sk2_rcv_saddr == sk_rcv_saddr(sk))
  70. break;
  71. }
  72. }
  73. }
  74. return node != NULL;
  75. }
  76. EXPORT_SYMBOL_GPL(inet_csk_bind_conflict);
  77. /* Obtain a reference to a local port for the given sock,
  78. * if snum is zero it means select any available local port.
  79. */
  80. int inet_csk_get_port(struct sock *sk, unsigned short snum)
  81. {
  82. struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo;
  83. struct inet_bind_hashbucket *head;
  84. struct hlist_node *node;
  85. struct inet_bind_bucket *tb;
  86. int ret, attempts = 5;
  87. struct net *net = sock_net(sk);
  88. int smallest_size = -1, smallest_rover;
  89. local_bh_disable();
  90. if (!snum) {
  91. int remaining, rover, low, high;
  92. again:
  93. inet_get_local_port_range(&low, &high);
  94. remaining = (high - low) + 1;
  95. smallest_rover = rover = net_random() % remaining + low;
  96. smallest_size = -1;
  97. do {
  98. if (inet_is_reserved_local_port(rover))
  99. goto next_nolock;
  100. head = &hashinfo->bhash[inet_bhashfn(net, rover,
  101. hashinfo->bhash_size)];
  102. spin_lock(&head->lock);
  103. inet_bind_bucket_for_each(tb, node, &head->chain)
  104. if (net_eq(ib_net(tb), net) && tb->port == rover) {
  105. if (tb->fastreuse > 0 &&
  106. sk->sk_reuse &&
  107. sk->sk_state != TCP_LISTEN &&
  108. (tb->num_owners < smallest_size || smallest_size == -1)) {
  109. smallest_size = tb->num_owners;
  110. smallest_rover = rover;
  111. if (atomic_read(&hashinfo->bsockets) > (high - low) + 1) {
  112. spin_unlock(&head->lock);
  113. snum = smallest_rover;
  114. goto have_snum;
  115. }
  116. }
  117. goto next;
  118. }
  119. break;
  120. next:
  121. spin_unlock(&head->lock);
  122. next_nolock:
  123. if (++rover > high)
  124. rover = low;
  125. } while (--remaining > 0);
  126. /* Exhausted local port range during search? It is not
  127. * possible for us to be holding one of the bind hash
  128. * locks if this test triggers, because if 'remaining'
  129. * drops to zero, we broke out of the do/while loop at
  130. * the top level, not from the 'break;' statement.
  131. */
  132. ret = 1;
  133. if (remaining <= 0) {
  134. if (smallest_size != -1) {
  135. snum = smallest_rover;
  136. goto have_snum;
  137. }
  138. goto fail;
  139. }
  140. /* OK, here is the one we will use. HEAD is
  141. * non-NULL and we hold it's mutex.
  142. */
  143. snum = rover;
  144. } else {
  145. have_snum:
  146. head = &hashinfo->bhash[inet_bhashfn(net, snum,
  147. hashinfo->bhash_size)];
  148. spin_lock(&head->lock);
  149. inet_bind_bucket_for_each(tb, node, &head->chain)
  150. if (net_eq(ib_net(tb), net) && tb->port == snum)
  151. goto tb_found;
  152. }
  153. tb = NULL;
  154. goto tb_not_found;
  155. tb_found:
  156. if (!hlist_empty(&tb->owners)) {
  157. if (tb->fastreuse > 0 &&
  158. sk->sk_reuse && sk->sk_state != TCP_LISTEN &&
  159. smallest_size == -1) {
  160. goto success;
  161. } else {
  162. ret = 1;
  163. if (inet_csk(sk)->icsk_af_ops->bind_conflict(sk, tb)) {
  164. if (sk->sk_reuse && sk->sk_state != TCP_LISTEN &&
  165. smallest_size != -1 && --attempts >= 0) {
  166. spin_unlock(&head->lock);
  167. goto again;
  168. }
  169. goto fail_unlock;
  170. }
  171. }
  172. }
  173. tb_not_found:
  174. ret = 1;
  175. if (!tb && (tb = inet_bind_bucket_create(hashinfo->bind_bucket_cachep,
  176. net, head, snum)) == NULL)
  177. goto fail_unlock;
  178. if (hlist_empty(&tb->owners)) {
  179. if (sk->sk_reuse && sk->sk_state != TCP_LISTEN)
  180. tb->fastreuse = 1;
  181. else
  182. tb->fastreuse = 0;
  183. } else if (tb->fastreuse &&
  184. (!sk->sk_reuse || sk->sk_state == TCP_LISTEN))
  185. tb->fastreuse = 0;
  186. success:
  187. if (!inet_csk(sk)->icsk_bind_hash)
  188. inet_bind_hash(sk, tb, snum);
  189. WARN_ON(inet_csk(sk)->icsk_bind_hash != tb);
  190. ret = 0;
  191. fail_unlock:
  192. spin_unlock(&head->lock);
  193. fail:
  194. local_bh_enable();
  195. return ret;
  196. }
  197. EXPORT_SYMBOL_GPL(inet_csk_get_port);
  198. /*
  199. * Wait for an incoming connection, avoid race conditions. This must be called
  200. * with the socket locked.
  201. */
  202. static int inet_csk_wait_for_connect(struct sock *sk, long timeo)
  203. {
  204. struct inet_connection_sock *icsk = inet_csk(sk);
  205. DEFINE_WAIT(wait);
  206. int err;
  207. /*
  208. * True wake-one mechanism for incoming connections: only
  209. * one process gets woken up, not the 'whole herd'.
  210. * Since we do not 'race & poll' for established sockets
  211. * anymore, the common case will execute the loop only once.
  212. *
  213. * Subtle issue: "add_wait_queue_exclusive()" will be added
  214. * after any current non-exclusive waiters, and we know that
  215. * it will always _stay_ after any new non-exclusive waiters
  216. * because all non-exclusive waiters are added at the
  217. * beginning of the wait-queue. As such, it's ok to "drop"
  218. * our exclusiveness temporarily when we get woken up without
  219. * having to remove and re-insert us on the wait queue.
  220. */
  221. for (;;) {
  222. prepare_to_wait_exclusive(sk_sleep(sk), &wait,
  223. TASK_INTERRUPTIBLE);
  224. release_sock(sk);
  225. if (reqsk_queue_empty(&icsk->icsk_accept_queue))
  226. timeo = schedule_timeout(timeo);
  227. lock_sock(sk);
  228. err = 0;
  229. if (!reqsk_queue_empty(&icsk->icsk_accept_queue))
  230. break;
  231. err = -EINVAL;
  232. if (sk->sk_state != TCP_LISTEN)
  233. break;
  234. err = sock_intr_errno(timeo);
  235. if (signal_pending(current))
  236. break;
  237. err = -EAGAIN;
  238. if (!timeo)
  239. break;
  240. }
  241. finish_wait(sk_sleep(sk), &wait);
  242. return err;
  243. }
  244. /*
  245. * This will accept the next outstanding connection.
  246. */
  247. struct sock *inet_csk_accept(struct sock *sk, int flags, int *err)
  248. {
  249. struct inet_connection_sock *icsk = inet_csk(sk);
  250. struct sock *newsk;
  251. int error;
  252. lock_sock(sk);
  253. /* We need to make sure that this socket is listening,
  254. * and that it has something pending.
  255. */
  256. error = -EINVAL;
  257. if (sk->sk_state != TCP_LISTEN)
  258. goto out_err;
  259. /* Find already established connection */
  260. if (reqsk_queue_empty(&icsk->icsk_accept_queue)) {
  261. long timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
  262. /* If this is a non blocking socket don't sleep */
  263. error = -EAGAIN;
  264. if (!timeo)
  265. goto out_err;
  266. error = inet_csk_wait_for_connect(sk, timeo);
  267. if (error)
  268. goto out_err;
  269. }
  270. newsk = reqsk_queue_get_child(&icsk->icsk_accept_queue, sk);
  271. WARN_ON(newsk->sk_state == TCP_SYN_RECV);
  272. out:
  273. release_sock(sk);
  274. return newsk;
  275. out_err:
  276. newsk = NULL;
  277. *err = error;
  278. goto out;
  279. }
  280. EXPORT_SYMBOL(inet_csk_accept);
  281. /*
  282. * Using different timers for retransmit, delayed acks and probes
  283. * We may wish use just one timer maintaining a list of expire jiffies
  284. * to optimize.
  285. */
  286. void inet_csk_init_xmit_timers(struct sock *sk,
  287. void (*retransmit_handler)(unsigned long),
  288. void (*delack_handler)(unsigned long),
  289. void (*keepalive_handler)(unsigned long))
  290. {
  291. struct inet_connection_sock *icsk = inet_csk(sk);
  292. setup_timer(&icsk->icsk_retransmit_timer, retransmit_handler,
  293. (unsigned long)sk);
  294. setup_timer(&icsk->icsk_delack_timer, delack_handler,
  295. (unsigned long)sk);
  296. setup_timer(&sk->sk_timer, keepalive_handler, (unsigned long)sk);
  297. icsk->icsk_pending = icsk->icsk_ack.pending = 0;
  298. }
  299. EXPORT_SYMBOL(inet_csk_init_xmit_timers);
  300. void inet_csk_clear_xmit_timers(struct sock *sk)
  301. {
  302. struct inet_connection_sock *icsk = inet_csk(sk);
  303. icsk->icsk_pending = icsk->icsk_ack.pending = icsk->icsk_ack.blocked = 0;
  304. sk_stop_timer(sk, &icsk->icsk_retransmit_timer);
  305. sk_stop_timer(sk, &icsk->icsk_delack_timer);
  306. sk_stop_timer(sk, &sk->sk_timer);
  307. }
  308. EXPORT_SYMBOL(inet_csk_clear_xmit_timers);
  309. void inet_csk_delete_keepalive_timer(struct sock *sk)
  310. {
  311. sk_stop_timer(sk, &sk->sk_timer);
  312. }
  313. EXPORT_SYMBOL(inet_csk_delete_keepalive_timer);
  314. void inet_csk_reset_keepalive_timer(struct sock *sk, unsigned long len)
  315. {
  316. sk_reset_timer(sk, &sk->sk_timer, jiffies + len);
  317. }
  318. EXPORT_SYMBOL(inet_csk_reset_keepalive_timer);
  319. struct dst_entry *inet_csk_route_req(struct sock *sk,
  320. struct flowi4 *fl4,
  321. const struct request_sock *req)
  322. {
  323. struct rtable *rt;
  324. const struct inet_request_sock *ireq = inet_rsk(req);
  325. struct ip_options_rcu *opt = inet_rsk(req)->opt;
  326. struct net *net = sock_net(sk);
  327. flowi4_init_output(fl4, sk->sk_bound_dev_if, sk->sk_mark,
  328. RT_CONN_FLAGS(sk), RT_SCOPE_UNIVERSE,
  329. sk->sk_protocol, inet_sk_flowi_flags(sk),
  330. (opt && opt->opt.srr) ? opt->opt.faddr : ireq->rmt_addr,
  331. ireq->loc_addr, ireq->rmt_port, inet_sk(sk)->inet_sport);
  332. security_req_classify_flow(req, flowi4_to_flowi(fl4));
  333. rt = ip_route_output_flow(net, fl4, sk);
  334. if (IS_ERR(rt))
  335. goto no_route;
  336. if (opt && opt->opt.is_strictroute && fl4->daddr != rt->rt_gateway)
  337. goto route_err;
  338. return &rt->dst;
  339. route_err:
  340. ip_rt_put(rt);
  341. no_route:
  342. IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES);
  343. return NULL;
  344. }
  345. EXPORT_SYMBOL_GPL(inet_csk_route_req);
  346. struct dst_entry *inet_csk_route_child_sock(struct sock *sk,
  347. struct sock *newsk,
  348. const struct request_sock *req)
  349. {
  350. const struct inet_request_sock *ireq = inet_rsk(req);
  351. struct inet_sock *newinet = inet_sk(newsk);
  352. struct ip_options_rcu *opt = ireq->opt;
  353. struct net *net = sock_net(sk);
  354. struct flowi4 *fl4;
  355. struct rtable *rt;
  356. fl4 = &newinet->cork.fl.u.ip4;
  357. flowi4_init_output(fl4, sk->sk_bound_dev_if, sk->sk_mark,
  358. RT_CONN_FLAGS(sk), RT_SCOPE_UNIVERSE,
  359. sk->sk_protocol, inet_sk_flowi_flags(sk),
  360. (opt && opt->opt.srr) ? opt->opt.faddr : ireq->rmt_addr,
  361. ireq->loc_addr, ireq->rmt_port, inet_sk(sk)->inet_sport);
  362. security_req_classify_flow(req, flowi4_to_flowi(fl4));
  363. rt = ip_route_output_flow(net, fl4, sk);
  364. if (IS_ERR(rt))
  365. goto no_route;
  366. if (opt && opt->opt.is_strictroute && fl4->daddr != rt->rt_gateway)
  367. goto route_err;
  368. return &rt->dst;
  369. route_err:
  370. ip_rt_put(rt);
  371. no_route:
  372. IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES);
  373. return NULL;
  374. }
  375. EXPORT_SYMBOL_GPL(inet_csk_route_child_sock);
  376. static inline u32 inet_synq_hash(const __be32 raddr, const __be16 rport,
  377. const u32 rnd, const u32 synq_hsize)
  378. {
  379. return jhash_2words((__force u32)raddr, (__force u32)rport, rnd) & (synq_hsize - 1);
  380. }
  381. #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
  382. #define AF_INET_FAMILY(fam) ((fam) == AF_INET)
  383. #else
  384. #define AF_INET_FAMILY(fam) 1
  385. #endif
  386. struct request_sock *inet_csk_search_req(const struct sock *sk,
  387. struct request_sock ***prevp,
  388. const __be16 rport, const __be32 raddr,
  389. const __be32 laddr)
  390. {
  391. const struct inet_connection_sock *icsk = inet_csk(sk);
  392. struct listen_sock *lopt = icsk->icsk_accept_queue.listen_opt;
  393. struct request_sock *req, **prev;
  394. for (prev = &lopt->syn_table[inet_synq_hash(raddr, rport, lopt->hash_rnd,
  395. lopt->nr_table_entries)];
  396. (req = *prev) != NULL;
  397. prev = &req->dl_next) {
  398. const struct inet_request_sock *ireq = inet_rsk(req);
  399. if (ireq->rmt_port == rport &&
  400. ireq->rmt_addr == raddr &&
  401. ireq->loc_addr == laddr &&
  402. AF_INET_FAMILY(req->rsk_ops->family)) {
  403. WARN_ON(req->sk);
  404. *prevp = prev;
  405. break;
  406. }
  407. }
  408. return req;
  409. }
  410. EXPORT_SYMBOL_GPL(inet_csk_search_req);
  411. void inet_csk_reqsk_queue_hash_add(struct sock *sk, struct request_sock *req,
  412. unsigned long timeout)
  413. {
  414. struct inet_connection_sock *icsk = inet_csk(sk);
  415. struct listen_sock *lopt = icsk->icsk_accept_queue.listen_opt;
  416. const u32 h = inet_synq_hash(inet_rsk(req)->rmt_addr, inet_rsk(req)->rmt_port,
  417. lopt->hash_rnd, lopt->nr_table_entries);
  418. reqsk_queue_hash_req(&icsk->icsk_accept_queue, h, req, timeout);
  419. inet_csk_reqsk_queue_added(sk, timeout);
  420. }
  421. EXPORT_SYMBOL_GPL(inet_csk_reqsk_queue_hash_add);
  422. /* Only thing we need from tcp.h */
  423. extern int sysctl_tcp_synack_retries;
  424. /* Decide when to expire the request and when to resend SYN-ACK */
  425. static inline void syn_ack_recalc(struct request_sock *req, const int thresh,
  426. const int max_retries,
  427. const u8 rskq_defer_accept,
  428. int *expire, int *resend)
  429. {
  430. if (!rskq_defer_accept) {
  431. *expire = req->retrans >= thresh;
  432. *resend = 1;
  433. return;
  434. }
  435. *expire = req->retrans >= thresh &&
  436. (!inet_rsk(req)->acked || req->retrans >= max_retries);
  437. /*
  438. * Do not resend while waiting for data after ACK,
  439. * start to resend on end of deferring period to give
  440. * last chance for data or ACK to create established socket.
  441. */
  442. *resend = !inet_rsk(req)->acked ||
  443. req->retrans >= rskq_defer_accept - 1;
  444. }
  445. void inet_csk_reqsk_queue_prune(struct sock *parent,
  446. const unsigned long interval,
  447. const unsigned long timeout,
  448. const unsigned long max_rto)
  449. {
  450. struct inet_connection_sock *icsk = inet_csk(parent);
  451. struct request_sock_queue *queue = &icsk->icsk_accept_queue;
  452. struct listen_sock *lopt = queue->listen_opt;
  453. int max_retries = icsk->icsk_syn_retries ? : sysctl_tcp_synack_retries;
  454. int thresh = max_retries;
  455. unsigned long now = jiffies;
  456. struct request_sock **reqp, *req;
  457. int i, budget;
  458. if (lopt == NULL || lopt->qlen == 0)
  459. return;
  460. /* Normally all the openreqs are young and become mature
  461. * (i.e. converted to established socket) for first timeout.
  462. * If synack was not acknowledged for 3 seconds, it means
  463. * one of the following things: synack was lost, ack was lost,
  464. * rtt is high or nobody planned to ack (i.e. synflood).
  465. * When server is a bit loaded, queue is populated with old
  466. * open requests, reducing effective size of queue.
  467. * When server is well loaded, queue size reduces to zero
  468. * after several minutes of work. It is not synflood,
  469. * it is normal operation. The solution is pruning
  470. * too old entries overriding normal timeout, when
  471. * situation becomes dangerous.
  472. *
  473. * Essentially, we reserve half of room for young
  474. * embrions; and abort old ones without pity, if old
  475. * ones are about to clog our table.
  476. */
  477. if (lopt->qlen>>(lopt->max_qlen_log-1)) {
  478. int young = (lopt->qlen_young<<1);
  479. while (thresh > 2) {
  480. if (lopt->qlen < young)
  481. break;
  482. thresh--;
  483. young <<= 1;
  484. }
  485. }
  486. if (queue->rskq_defer_accept)
  487. max_retries = queue->rskq_defer_accept;
  488. budget = 2 * (lopt->nr_table_entries / (timeout / interval));
  489. i = lopt->clock_hand;
  490. do {
  491. reqp=&lopt->syn_table[i];
  492. while ((req = *reqp) != NULL) {
  493. if (time_after_eq(now, req->expires)) {
  494. int expire = 0, resend = 0;
  495. syn_ack_recalc(req, thresh, max_retries,
  496. queue->rskq_defer_accept,
  497. &expire, &resend);
  498. if (req->rsk_ops->syn_ack_timeout)
  499. req->rsk_ops->syn_ack_timeout(parent, req);
  500. if (!expire &&
  501. (!resend ||
  502. !req->rsk_ops->rtx_syn_ack(parent, req, NULL) ||
  503. inet_rsk(req)->acked)) {
  504. unsigned long timeo;
  505. if (req->retrans++ == 0)
  506. lopt->qlen_young--;
  507. timeo = min((timeout << req->retrans), max_rto);
  508. req->expires = now + timeo;
  509. reqp = &req->dl_next;
  510. continue;
  511. }
  512. /* Drop this request */
  513. inet_csk_reqsk_queue_unlink(parent, req, reqp);
  514. reqsk_queue_removed(queue, req);
  515. reqsk_free(req);
  516. continue;
  517. }
  518. reqp = &req->dl_next;
  519. }
  520. i = (i + 1) & (lopt->nr_table_entries - 1);
  521. } while (--budget > 0);
  522. lopt->clock_hand = i;
  523. if (lopt->qlen)
  524. inet_csk_reset_keepalive_timer(parent, interval);
  525. }
  526. EXPORT_SYMBOL_GPL(inet_csk_reqsk_queue_prune);
  527. struct sock *inet_csk_clone(struct sock *sk, const struct request_sock *req,
  528. const gfp_t priority)
  529. {
  530. struct sock *newsk = sk_clone(sk, priority);
  531. if (newsk != NULL) {
  532. struct inet_connection_sock *newicsk = inet_csk(newsk);
  533. newsk->sk_state = TCP_SYN_RECV;
  534. newicsk->icsk_bind_hash = NULL;
  535. inet_sk(newsk)->inet_dport = inet_rsk(req)->rmt_port;
  536. inet_sk(newsk)->inet_num = ntohs(inet_rsk(req)->loc_port);
  537. inet_sk(newsk)->inet_sport = inet_rsk(req)->loc_port;
  538. newsk->sk_write_space = sk_stream_write_space;
  539. newicsk->icsk_retransmits = 0;
  540. newicsk->icsk_backoff = 0;
  541. newicsk->icsk_probes_out = 0;
  542. /* Deinitialize accept_queue to trap illegal accesses. */
  543. memset(&newicsk->icsk_accept_queue, 0, sizeof(newicsk->icsk_accept_queue));
  544. security_inet_csk_clone(newsk, req);
  545. }
  546. return newsk;
  547. }
  548. EXPORT_SYMBOL_GPL(inet_csk_clone);
  549. /*
  550. * At this point, there should be no process reference to this
  551. * socket, and thus no user references at all. Therefore we
  552. * can assume the socket waitqueue is inactive and nobody will
  553. * try to jump onto it.
  554. */
  555. void inet_csk_destroy_sock(struct sock *sk)
  556. {
  557. WARN_ON(sk->sk_state != TCP_CLOSE);
  558. WARN_ON(!sock_flag(sk, SOCK_DEAD));
  559. /* It cannot be in hash table! */
  560. WARN_ON(!sk_unhashed(sk));
  561. /* If it has not 0 inet_sk(sk)->inet_num, it must be bound */
  562. WARN_ON(inet_sk(sk)->inet_num && !inet_csk(sk)->icsk_bind_hash);
  563. sk->sk_prot->destroy(sk);
  564. sk_stream_kill_queues(sk);
  565. xfrm_sk_free_policy(sk);
  566. sk_refcnt_debug_release(sk);
  567. percpu_counter_dec(sk->sk_prot->orphan_count);
  568. sock_put(sk);
  569. }
  570. EXPORT_SYMBOL(inet_csk_destroy_sock);
  571. int inet_csk_listen_start(struct sock *sk, const int nr_table_entries)
  572. {
  573. struct inet_sock *inet = inet_sk(sk);
  574. struct inet_connection_sock *icsk = inet_csk(sk);
  575. int rc = reqsk_queue_alloc(&icsk->icsk_accept_queue, nr_table_entries);
  576. if (rc != 0)
  577. return rc;
  578. sk->sk_max_ack_backlog = 0;
  579. sk->sk_ack_backlog = 0;
  580. inet_csk_delack_init(sk);
  581. /* There is race window here: we announce ourselves listening,
  582. * but this transition is still not validated by get_port().
  583. * It is OK, because this socket enters to hash table only
  584. * after validation is complete.
  585. */
  586. sk->sk_state = TCP_LISTEN;
  587. if (!sk->sk_prot->get_port(sk, inet->inet_num)) {
  588. inet->inet_sport = htons(inet->inet_num);
  589. sk_dst_reset(sk);
  590. sk->sk_prot->hash(sk);
  591. return 0;
  592. }
  593. sk->sk_state = TCP_CLOSE;
  594. __reqsk_queue_destroy(&icsk->icsk_accept_queue);
  595. return -EADDRINUSE;
  596. }
  597. EXPORT_SYMBOL_GPL(inet_csk_listen_start);
  598. /*
  599. * This routine closes sockets which have been at least partially
  600. * opened, but not yet accepted.
  601. */
  602. void inet_csk_listen_stop(struct sock *sk)
  603. {
  604. struct inet_connection_sock *icsk = inet_csk(sk);
  605. struct request_sock *acc_req;
  606. struct request_sock *req;
  607. inet_csk_delete_keepalive_timer(sk);
  608. /* make all the listen_opt local to us */
  609. acc_req = reqsk_queue_yank_acceptq(&icsk->icsk_accept_queue);
  610. /* Following specs, it would be better either to send FIN
  611. * (and enter FIN-WAIT-1, it is normal close)
  612. * or to send active reset (abort).
  613. * Certainly, it is pretty dangerous while synflood, but it is
  614. * bad justification for our negligence 8)
  615. * To be honest, we are not able to make either
  616. * of the variants now. --ANK
  617. */
  618. reqsk_queue_destroy(&icsk->icsk_accept_queue);
  619. while ((req = acc_req) != NULL) {
  620. struct sock *child = req->sk;
  621. acc_req = req->dl_next;
  622. local_bh_disable();
  623. bh_lock_sock(child);
  624. WARN_ON(sock_owned_by_user(child));
  625. sock_hold(child);
  626. sk->sk_prot->disconnect(child, O_NONBLOCK);
  627. sock_orphan(child);
  628. percpu_counter_inc(sk->sk_prot->orphan_count);
  629. inet_csk_destroy_sock(child);
  630. bh_unlock_sock(child);
  631. local_bh_enable();
  632. sock_put(child);
  633. sk_acceptq_removed(sk);
  634. __reqsk_free(req);
  635. }
  636. WARN_ON(sk->sk_ack_backlog);
  637. }
  638. EXPORT_SYMBOL_GPL(inet_csk_listen_stop);
  639. void inet_csk_addr2sockaddr(struct sock *sk, struct sockaddr *uaddr)
  640. {
  641. struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
  642. const struct inet_sock *inet = inet_sk(sk);
  643. sin->sin_family = AF_INET;
  644. sin->sin_addr.s_addr = inet->inet_daddr;
  645. sin->sin_port = inet->inet_dport;
  646. }
  647. EXPORT_SYMBOL_GPL(inet_csk_addr2sockaddr);
  648. #ifdef CONFIG_COMPAT
  649. int inet_csk_compat_getsockopt(struct sock *sk, int level, int optname,
  650. char __user *optval, int __user *optlen)
  651. {
  652. const struct inet_connection_sock *icsk = inet_csk(sk);
  653. if (icsk->icsk_af_ops->compat_getsockopt != NULL)
  654. return icsk->icsk_af_ops->compat_getsockopt(sk, level, optname,
  655. optval, optlen);
  656. return icsk->icsk_af_ops->getsockopt(sk, level, optname,
  657. optval, optlen);
  658. }
  659. EXPORT_SYMBOL_GPL(inet_csk_compat_getsockopt);
  660. int inet_csk_compat_setsockopt(struct sock *sk, int level, int optname,
  661. char __user *optval, unsigned int optlen)
  662. {
  663. const struct inet_connection_sock *icsk = inet_csk(sk);
  664. if (icsk->icsk_af_ops->compat_setsockopt != NULL)
  665. return icsk->icsk_af_ops->compat_setsockopt(sk, level, optname,
  666. optval, optlen);
  667. return icsk->icsk_af_ops->setsockopt(sk, level, optname,
  668. optval, optlen);
  669. }
  670. EXPORT_SYMBOL_GPL(inet_csk_compat_setsockopt);
  671. #endif