minisocks.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*
  2. * net/dccp/minisocks.c
  3. *
  4. * An implementation of the DCCP protocol
  5. * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. */
  12. #include <linux/config.h>
  13. #include <linux/dccp.h>
  14. #include <linux/skbuff.h>
  15. #include <linux/timer.h>
  16. #include <net/sock.h>
  17. #include <net/xfrm.h>
  18. #include <net/inet_timewait_sock.h>
  19. #include "ackvec.h"
  20. #include "ccid.h"
  21. #include "dccp.h"
  22. #include "feat.h"
  23. struct inet_timewait_death_row dccp_death_row = {
  24. .sysctl_max_tw_buckets = NR_FILE * 2,
  25. .period = DCCP_TIMEWAIT_LEN / INET_TWDR_TWKILL_SLOTS,
  26. .death_lock = SPIN_LOCK_UNLOCKED,
  27. .hashinfo = &dccp_hashinfo,
  28. .tw_timer = TIMER_INITIALIZER(inet_twdr_hangman, 0,
  29. (unsigned long)&dccp_death_row),
  30. .twkill_work = __WORK_INITIALIZER(dccp_death_row.twkill_work,
  31. inet_twdr_twkill_work,
  32. &dccp_death_row),
  33. /* Short-time timewait calendar */
  34. .twcal_hand = -1,
  35. .twcal_timer = TIMER_INITIALIZER(inet_twdr_twcal_tick, 0,
  36. (unsigned long)&dccp_death_row),
  37. };
  38. EXPORT_SYMBOL_GPL(dccp_death_row);
  39. void dccp_time_wait(struct sock *sk, int state, int timeo)
  40. {
  41. struct inet_timewait_sock *tw = NULL;
  42. if (dccp_death_row.tw_count < dccp_death_row.sysctl_max_tw_buckets)
  43. tw = inet_twsk_alloc(sk, state);
  44. if (tw != NULL) {
  45. const struct inet_connection_sock *icsk = inet_csk(sk);
  46. const int rto = (icsk->icsk_rto << 2) - (icsk->icsk_rto >> 1);
  47. #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
  48. if (tw->tw_family == PF_INET6) {
  49. const struct ipv6_pinfo *np = inet6_sk(sk);
  50. struct inet6_timewait_sock *tw6;
  51. tw->tw_ipv6_offset = inet6_tw_offset(sk->sk_prot);
  52. tw6 = inet6_twsk((struct sock *)tw);
  53. ipv6_addr_copy(&tw6->tw_v6_daddr, &np->daddr);
  54. ipv6_addr_copy(&tw6->tw_v6_rcv_saddr, &np->rcv_saddr);
  55. tw->tw_ipv6only = np->ipv6only;
  56. }
  57. #endif
  58. /* Linkage updates. */
  59. __inet_twsk_hashdance(tw, sk, &dccp_hashinfo);
  60. /* Get the TIME_WAIT timeout firing. */
  61. if (timeo < rto)
  62. timeo = rto;
  63. tw->tw_timeout = DCCP_TIMEWAIT_LEN;
  64. if (state == DCCP_TIME_WAIT)
  65. timeo = DCCP_TIMEWAIT_LEN;
  66. inet_twsk_schedule(tw, &dccp_death_row, timeo,
  67. DCCP_TIMEWAIT_LEN);
  68. inet_twsk_put(tw);
  69. } else {
  70. /* Sorry, if we're out of memory, just CLOSE this
  71. * socket up. We've got bigger problems than
  72. * non-graceful socket closings.
  73. */
  74. LIMIT_NETDEBUG(KERN_INFO "DCCP: time wait bucket "
  75. "table overflow\n");
  76. }
  77. dccp_done(sk);
  78. }
  79. struct sock *dccp_create_openreq_child(struct sock *sk,
  80. const struct request_sock *req,
  81. const struct sk_buff *skb)
  82. {
  83. /*
  84. * Step 3: Process LISTEN state
  85. *
  86. * // Generate a new socket and switch to that socket
  87. * Set S := new socket for this port pair
  88. */
  89. struct sock *newsk = inet_csk_clone(sk, req, GFP_ATOMIC);
  90. if (newsk != NULL) {
  91. const struct dccp_request_sock *dreq = dccp_rsk(req);
  92. struct inet_connection_sock *newicsk = inet_csk(sk);
  93. struct dccp_sock *newdp = dccp_sk(newsk);
  94. struct dccp_minisock *newdmsk = dccp_msk(newsk);
  95. newdp->dccps_role = DCCP_ROLE_SERVER;
  96. newdp->dccps_hc_rx_ackvec = NULL;
  97. newdp->dccps_service_list = NULL;
  98. newdp->dccps_service = dreq->dreq_service;
  99. newicsk->icsk_rto = DCCP_TIMEOUT_INIT;
  100. do_gettimeofday(&newdp->dccps_epoch);
  101. if (dccp_feat_clone(sk, newsk))
  102. goto out_free;
  103. if (newdmsk->dccpms_send_ack_vector) {
  104. newdp->dccps_hc_rx_ackvec =
  105. dccp_ackvec_alloc(GFP_ATOMIC);
  106. if (unlikely(newdp->dccps_hc_rx_ackvec == NULL))
  107. goto out_free;
  108. }
  109. newdp->dccps_hc_rx_ccid =
  110. ccid_hc_rx_new(newdmsk->dccpms_rx_ccid,
  111. newsk, GFP_ATOMIC);
  112. newdp->dccps_hc_tx_ccid =
  113. ccid_hc_tx_new(newdmsk->dccpms_tx_ccid,
  114. newsk, GFP_ATOMIC);
  115. if (unlikely(newdp->dccps_hc_rx_ccid == NULL ||
  116. newdp->dccps_hc_tx_ccid == NULL)) {
  117. dccp_ackvec_free(newdp->dccps_hc_rx_ackvec);
  118. ccid_hc_rx_delete(newdp->dccps_hc_rx_ccid, newsk);
  119. ccid_hc_tx_delete(newdp->dccps_hc_tx_ccid, newsk);
  120. out_free:
  121. /* It is still raw copy of parent, so invalidate
  122. * destructor and make plain sk_free() */
  123. newsk->sk_destruct = NULL;
  124. sk_free(newsk);
  125. return NULL;
  126. }
  127. /*
  128. * Step 3: Process LISTEN state
  129. *
  130. * Choose S.ISS (initial seqno) or set from Init Cookie
  131. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init
  132. * Cookie
  133. */
  134. /* See dccp_v4_conn_request */
  135. newdmsk->dccpms_sequence_window = req->rcv_wnd;
  136. newdp->dccps_gar = newdp->dccps_isr = dreq->dreq_isr;
  137. dccp_update_gsr(newsk, dreq->dreq_isr);
  138. newdp->dccps_iss = dreq->dreq_iss;
  139. dccp_update_gss(newsk, dreq->dreq_iss);
  140. /*
  141. * SWL and AWL are initially adjusted so that they are not less than
  142. * the initial Sequence Numbers received and sent, respectively:
  143. * SWL := max(GSR + 1 - floor(W/4), ISR),
  144. * AWL := max(GSS - W' + 1, ISS).
  145. * These adjustments MUST be applied only at the beginning of the
  146. * connection.
  147. */
  148. dccp_set_seqno(&newdp->dccps_swl,
  149. max48(newdp->dccps_swl, newdp->dccps_isr));
  150. dccp_set_seqno(&newdp->dccps_awl,
  151. max48(newdp->dccps_awl, newdp->dccps_iss));
  152. dccp_init_xmit_timers(newsk);
  153. DCCP_INC_STATS_BH(DCCP_MIB_PASSIVEOPENS);
  154. }
  155. return newsk;
  156. }
  157. EXPORT_SYMBOL_GPL(dccp_create_openreq_child);
  158. /*
  159. * Process an incoming packet for RESPOND sockets represented
  160. * as an request_sock.
  161. */
  162. struct sock *dccp_check_req(struct sock *sk, struct sk_buff *skb,
  163. struct request_sock *req,
  164. struct request_sock **prev)
  165. {
  166. struct sock *child = NULL;
  167. /* Check for retransmitted REQUEST */
  168. if (dccp_hdr(skb)->dccph_type == DCCP_PKT_REQUEST) {
  169. if (after48(DCCP_SKB_CB(skb)->dccpd_seq,
  170. dccp_rsk(req)->dreq_isr)) {
  171. struct dccp_request_sock *dreq = dccp_rsk(req);
  172. dccp_pr_debug("Retransmitted REQUEST\n");
  173. /* Send another RESPONSE packet */
  174. dccp_set_seqno(&dreq->dreq_iss, dreq->dreq_iss + 1);
  175. dccp_set_seqno(&dreq->dreq_isr,
  176. DCCP_SKB_CB(skb)->dccpd_seq);
  177. req->rsk_ops->rtx_syn_ack(sk, req, NULL);
  178. }
  179. /* Network Duplicate, discard packet */
  180. return NULL;
  181. }
  182. DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_PACKET_ERROR;
  183. if (dccp_hdr(skb)->dccph_type != DCCP_PKT_ACK &&
  184. dccp_hdr(skb)->dccph_type != DCCP_PKT_DATAACK)
  185. goto drop;
  186. /* Invalid ACK */
  187. if (DCCP_SKB_CB(skb)->dccpd_ack_seq != dccp_rsk(req)->dreq_iss) {
  188. dccp_pr_debug("Invalid ACK number: ack_seq=%llu, "
  189. "dreq_iss=%llu\n",
  190. (unsigned long long)
  191. DCCP_SKB_CB(skb)->dccpd_ack_seq,
  192. (unsigned long long)
  193. dccp_rsk(req)->dreq_iss);
  194. goto drop;
  195. }
  196. child = inet_csk(sk)->icsk_af_ops->syn_recv_sock(sk, skb, req, NULL);
  197. if (child == NULL)
  198. goto listen_overflow;
  199. /* FIXME: deal with options */
  200. inet_csk_reqsk_queue_unlink(sk, req, prev);
  201. inet_csk_reqsk_queue_removed(sk, req);
  202. inet_csk_reqsk_queue_add(sk, req, child);
  203. out:
  204. return child;
  205. listen_overflow:
  206. dccp_pr_debug("listen_overflow!\n");
  207. DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_TOO_BUSY;
  208. drop:
  209. if (dccp_hdr(skb)->dccph_type != DCCP_PKT_RESET)
  210. req->rsk_ops->send_reset(skb);
  211. inet_csk_reqsk_queue_drop(sk, req, prev);
  212. goto out;
  213. }
  214. EXPORT_SYMBOL_GPL(dccp_check_req);
  215. /*
  216. * Queue segment on the new socket if the new socket is active,
  217. * otherwise we just shortcircuit this and continue with
  218. * the new socket.
  219. */
  220. int dccp_child_process(struct sock *parent, struct sock *child,
  221. struct sk_buff *skb)
  222. {
  223. int ret = 0;
  224. const int state = child->sk_state;
  225. if (!sock_owned_by_user(child)) {
  226. ret = dccp_rcv_state_process(child, skb, dccp_hdr(skb),
  227. skb->len);
  228. /* Wakeup parent, send SIGIO */
  229. if (state == DCCP_RESPOND && child->sk_state != state)
  230. parent->sk_data_ready(parent, 0);
  231. } else {
  232. /* Alas, it is possible again, because we do lookup
  233. * in main socket hash table and lock on listening
  234. * socket does not protect us more.
  235. */
  236. sk_add_backlog(child, skb);
  237. }
  238. bh_unlock_sock(child);
  239. sock_put(child);
  240. return ret;
  241. }
  242. EXPORT_SYMBOL_GPL(dccp_child_process);