minisocks.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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/dccp.h>
  13. #include <linux/kernel.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(dccp_death_row.death_lock),
  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. /* Short-time timewait calendar */
  33. .twcal_hand = -1,
  34. .twcal_timer = TIMER_INITIALIZER(inet_twdr_twcal_tick, 0,
  35. (unsigned long)&dccp_death_row),
  36. };
  37. EXPORT_SYMBOL_GPL(dccp_death_row);
  38. void dccp_minisock_init(struct dccp_minisock *dmsk)
  39. {
  40. dmsk->dccpms_sequence_window = sysctl_dccp_feat_sequence_window;
  41. }
  42. void dccp_time_wait(struct sock *sk, int state, int timeo)
  43. {
  44. struct inet_timewait_sock *tw = NULL;
  45. if (dccp_death_row.tw_count < dccp_death_row.sysctl_max_tw_buckets)
  46. tw = inet_twsk_alloc(sk, state);
  47. if (tw != NULL) {
  48. const struct inet_connection_sock *icsk = inet_csk(sk);
  49. const int rto = (icsk->icsk_rto << 2) - (icsk->icsk_rto >> 1);
  50. #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
  51. if (tw->tw_family == PF_INET6) {
  52. const struct ipv6_pinfo *np = inet6_sk(sk);
  53. struct inet6_timewait_sock *tw6;
  54. tw->tw_ipv6_offset = inet6_tw_offset(sk->sk_prot);
  55. tw6 = inet6_twsk((struct sock *)tw);
  56. ipv6_addr_copy(&tw6->tw_v6_daddr, &np->daddr);
  57. ipv6_addr_copy(&tw6->tw_v6_rcv_saddr, &np->rcv_saddr);
  58. tw->tw_ipv6only = np->ipv6only;
  59. }
  60. #endif
  61. /* Linkage updates. */
  62. __inet_twsk_hashdance(tw, sk, &dccp_hashinfo);
  63. /* Get the TIME_WAIT timeout firing. */
  64. if (timeo < rto)
  65. timeo = rto;
  66. tw->tw_timeout = DCCP_TIMEWAIT_LEN;
  67. if (state == DCCP_TIME_WAIT)
  68. timeo = DCCP_TIMEWAIT_LEN;
  69. inet_twsk_schedule(tw, &dccp_death_row, timeo,
  70. DCCP_TIMEWAIT_LEN);
  71. inet_twsk_put(tw);
  72. } else {
  73. /* Sorry, if we're out of memory, just CLOSE this
  74. * socket up. We've got bigger problems than
  75. * non-graceful socket closings.
  76. */
  77. DCCP_WARN("time wait bucket table overflow\n");
  78. }
  79. dccp_done(sk);
  80. }
  81. struct sock *dccp_create_openreq_child(struct sock *sk,
  82. const struct request_sock *req,
  83. const struct sk_buff *skb)
  84. {
  85. /*
  86. * Step 3: Process LISTEN state
  87. *
  88. * (* Generate a new socket and switch to that socket *)
  89. * Set S := new socket for this port pair
  90. */
  91. struct sock *newsk = inet_csk_clone(sk, req, GFP_ATOMIC);
  92. if (newsk != NULL) {
  93. struct dccp_request_sock *dreq = dccp_rsk(req);
  94. struct inet_connection_sock *newicsk = inet_csk(newsk);
  95. struct dccp_sock *newdp = dccp_sk(newsk);
  96. struct dccp_minisock *newdmsk = dccp_msk(newsk);
  97. newdp->dccps_role = DCCP_ROLE_SERVER;
  98. newdp->dccps_hc_rx_ackvec = NULL;
  99. newdp->dccps_service_list = NULL;
  100. newdp->dccps_service = dreq->dreq_service;
  101. newdp->dccps_timestamp_echo = dreq->dreq_timestamp_echo;
  102. newdp->dccps_timestamp_time = dreq->dreq_timestamp_time;
  103. newicsk->icsk_rto = DCCP_TIMEOUT_INIT;
  104. INIT_LIST_HEAD(&newdp->dccps_featneg);
  105. /*
  106. * Step 3: Process LISTEN state
  107. *
  108. * Choose S.ISS (initial seqno) or set from Init Cookies
  109. * Initialize S.GAR := S.ISS
  110. * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookies
  111. */
  112. /* See dccp_v4_conn_request */
  113. newdmsk->dccpms_sequence_window = req->rcv_wnd;
  114. newdp->dccps_gar = newdp->dccps_iss = dreq->dreq_iss;
  115. dccp_update_gss(newsk, dreq->dreq_iss);
  116. newdp->dccps_isr = dreq->dreq_isr;
  117. dccp_update_gsr(newsk, dreq->dreq_isr);
  118. /*
  119. * SWL and AWL are initially adjusted so that they are not less than
  120. * the initial Sequence Numbers received and sent, respectively:
  121. * SWL := max(GSR + 1 - floor(W/4), ISR),
  122. * AWL := max(GSS - W' + 1, ISS).
  123. * These adjustments MUST be applied only at the beginning of the
  124. * connection.
  125. */
  126. dccp_set_seqno(&newdp->dccps_swl,
  127. max48(newdp->dccps_swl, newdp->dccps_isr));
  128. dccp_set_seqno(&newdp->dccps_awl,
  129. max48(newdp->dccps_awl, newdp->dccps_iss));
  130. /*
  131. * Activate features after initialising the sequence numbers,
  132. * since CCID initialisation may depend on GSS, ISR, ISS etc.
  133. */
  134. if (dccp_feat_activate_values(newsk, &dreq->dreq_featneg)) {
  135. /* It is still raw copy of parent, so invalidate
  136. * destructor and make plain sk_free() */
  137. newsk->sk_destruct = NULL;
  138. sk_free(newsk);
  139. return NULL;
  140. }
  141. dccp_init_xmit_timers(newsk);
  142. DCCP_INC_STATS_BH(DCCP_MIB_PASSIVEOPENS);
  143. }
  144. return newsk;
  145. }
  146. EXPORT_SYMBOL_GPL(dccp_create_openreq_child);
  147. /*
  148. * Process an incoming packet for RESPOND sockets represented
  149. * as an request_sock.
  150. */
  151. struct sock *dccp_check_req(struct sock *sk, struct sk_buff *skb,
  152. struct request_sock *req,
  153. struct request_sock **prev)
  154. {
  155. struct sock *child = NULL;
  156. struct dccp_request_sock *dreq = dccp_rsk(req);
  157. /* Check for retransmitted REQUEST */
  158. if (dccp_hdr(skb)->dccph_type == DCCP_PKT_REQUEST) {
  159. if (after48(DCCP_SKB_CB(skb)->dccpd_seq, dreq->dreq_isr)) {
  160. dccp_pr_debug("Retransmitted REQUEST\n");
  161. dreq->dreq_isr = DCCP_SKB_CB(skb)->dccpd_seq;
  162. /*
  163. * Send another RESPONSE packet
  164. * To protect against Request floods, increment retrans
  165. * counter (backoff, monitored by dccp_response_timer).
  166. */
  167. req->retrans++;
  168. req->rsk_ops->rtx_syn_ack(sk, req);
  169. }
  170. /* Network Duplicate, discard packet */
  171. return NULL;
  172. }
  173. DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_PACKET_ERROR;
  174. if (dccp_hdr(skb)->dccph_type != DCCP_PKT_ACK &&
  175. dccp_hdr(skb)->dccph_type != DCCP_PKT_DATAACK)
  176. goto drop;
  177. /* Invalid ACK */
  178. if (DCCP_SKB_CB(skb)->dccpd_ack_seq != dreq->dreq_iss) {
  179. dccp_pr_debug("Invalid ACK number: ack_seq=%llu, "
  180. "dreq_iss=%llu\n",
  181. (unsigned long long)
  182. DCCP_SKB_CB(skb)->dccpd_ack_seq,
  183. (unsigned long long) dreq->dreq_iss);
  184. goto drop;
  185. }
  186. if (dccp_parse_options(sk, dreq, skb))
  187. goto drop;
  188. child = inet_csk(sk)->icsk_af_ops->syn_recv_sock(sk, skb, req, NULL);
  189. if (child == NULL)
  190. goto listen_overflow;
  191. inet_csk_reqsk_queue_unlink(sk, req, prev);
  192. inet_csk_reqsk_queue_removed(sk, req);
  193. inet_csk_reqsk_queue_add(sk, req, child);
  194. out:
  195. return child;
  196. listen_overflow:
  197. dccp_pr_debug("listen_overflow!\n");
  198. DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_TOO_BUSY;
  199. drop:
  200. if (dccp_hdr(skb)->dccph_type != DCCP_PKT_RESET)
  201. req->rsk_ops->send_reset(sk, skb);
  202. inet_csk_reqsk_queue_drop(sk, req, prev);
  203. goto out;
  204. }
  205. EXPORT_SYMBOL_GPL(dccp_check_req);
  206. /*
  207. * Queue segment on the new socket if the new socket is active,
  208. * otherwise we just shortcircuit this and continue with
  209. * the new socket.
  210. */
  211. int dccp_child_process(struct sock *parent, struct sock *child,
  212. struct sk_buff *skb)
  213. {
  214. int ret = 0;
  215. const int state = child->sk_state;
  216. if (!sock_owned_by_user(child)) {
  217. ret = dccp_rcv_state_process(child, skb, dccp_hdr(skb),
  218. skb->len);
  219. /* Wakeup parent, send SIGIO */
  220. if (state == DCCP_RESPOND && child->sk_state != state)
  221. parent->sk_data_ready(parent, 0);
  222. } else {
  223. /* Alas, it is possible again, because we do lookup
  224. * in main socket hash table and lock on listening
  225. * socket does not protect us more.
  226. */
  227. sk_add_backlog(child, skb);
  228. }
  229. bh_unlock_sock(child);
  230. sock_put(child);
  231. return ret;
  232. }
  233. EXPORT_SYMBOL_GPL(dccp_child_process);
  234. void dccp_reqsk_send_ack(struct sock *sk, struct sk_buff *skb,
  235. struct request_sock *rsk)
  236. {
  237. DCCP_BUG("DCCP-ACK packets are never sent in LISTEN/RESPOND state");
  238. }
  239. EXPORT_SYMBOL_GPL(dccp_reqsk_send_ack);
  240. int dccp_reqsk_init(struct request_sock *req,
  241. struct dccp_sock const *dp, struct sk_buff const *skb)
  242. {
  243. struct dccp_request_sock *dreq = dccp_rsk(req);
  244. inet_rsk(req)->rmt_port = dccp_hdr(skb)->dccph_sport;
  245. inet_rsk(req)->loc_port = dccp_hdr(skb)->dccph_dport;
  246. inet_rsk(req)->acked = 0;
  247. req->rcv_wnd = sysctl_dccp_feat_sequence_window;
  248. dreq->dreq_timestamp_echo = 0;
  249. /* inherit feature negotiation options from listening socket */
  250. return dccp_feat_clone_list(&dp->dccps_featneg, &dreq->dreq_featneg);
  251. }
  252. EXPORT_SYMBOL_GPL(dccp_reqsk_init);