minisocks.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  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/gfp.h>
  14. #include <linux/kernel.h>
  15. #include <linux/skbuff.h>
  16. #include <linux/timer.h>
  17. #include <net/sock.h>
  18. #include <net/xfrm.h>
  19. #include <net/inet_timewait_sock.h>
  20. #include "ackvec.h"
  21. #include "ccid.h"
  22. #include "dccp.h"
  23. #include "feat.h"
  24. struct inet_timewait_death_row dccp_death_row = {
  25. .sysctl_max_tw_buckets = NR_FILE * 2,
  26. .period = DCCP_TIMEWAIT_LEN / INET_TWDR_TWKILL_SLOTS,
  27. .death_lock = __SPIN_LOCK_UNLOCKED(dccp_death_row.death_lock),
  28. .hashinfo = &dccp_hashinfo,
  29. .tw_timer = TIMER_INITIALIZER(inet_twdr_hangman, 0,
  30. (unsigned long)&dccp_death_row),
  31. .twkill_work = __WORK_INITIALIZER(dccp_death_row.twkill_work,
  32. inet_twdr_twkill_work),
  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 IS_ENABLED(CONFIG_IPV6)
  48. if (tw->tw_family == PF_INET6) {
  49. const struct ipv6_pinfo *np = inet6_sk(sk);
  50. tw->tw_v6_daddr = sk->sk_v6_daddr;
  51. tw->tw_v6_rcv_saddr = sk->sk_v6_rcv_saddr;
  52. tw->tw_ipv6only = np->ipv6only;
  53. }
  54. #endif
  55. /* Linkage updates. */
  56. __inet_twsk_hashdance(tw, sk, &dccp_hashinfo);
  57. /* Get the TIME_WAIT timeout firing. */
  58. if (timeo < rto)
  59. timeo = rto;
  60. tw->tw_timeout = DCCP_TIMEWAIT_LEN;
  61. if (state == DCCP_TIME_WAIT)
  62. timeo = DCCP_TIMEWAIT_LEN;
  63. inet_twsk_schedule(tw, &dccp_death_row, timeo,
  64. DCCP_TIMEWAIT_LEN);
  65. inet_twsk_put(tw);
  66. } else {
  67. /* Sorry, if we're out of memory, just CLOSE this
  68. * socket up. We've got bigger problems than
  69. * non-graceful socket closings.
  70. */
  71. DCCP_WARN("time wait bucket table overflow\n");
  72. }
  73. dccp_done(sk);
  74. }
  75. struct sock *dccp_create_openreq_child(struct sock *sk,
  76. const struct request_sock *req,
  77. const struct sk_buff *skb)
  78. {
  79. /*
  80. * Step 3: Process LISTEN state
  81. *
  82. * (* Generate a new socket and switch to that socket *)
  83. * Set S := new socket for this port pair
  84. */
  85. struct sock *newsk = inet_csk_clone_lock(sk, req, GFP_ATOMIC);
  86. if (newsk != NULL) {
  87. struct dccp_request_sock *dreq = dccp_rsk(req);
  88. struct inet_connection_sock *newicsk = inet_csk(newsk);
  89. struct dccp_sock *newdp = dccp_sk(newsk);
  90. newdp->dccps_role = DCCP_ROLE_SERVER;
  91. newdp->dccps_hc_rx_ackvec = NULL;
  92. newdp->dccps_service_list = NULL;
  93. newdp->dccps_service = dreq->dreq_service;
  94. newdp->dccps_timestamp_echo = dreq->dreq_timestamp_echo;
  95. newdp->dccps_timestamp_time = dreq->dreq_timestamp_time;
  96. newicsk->icsk_rto = DCCP_TIMEOUT_INIT;
  97. INIT_LIST_HEAD(&newdp->dccps_featneg);
  98. /*
  99. * Step 3: Process LISTEN state
  100. *
  101. * Choose S.ISS (initial seqno) or set from Init Cookies
  102. * Initialize S.GAR := S.ISS
  103. * Set S.ISR, S.GSR from packet (or Init Cookies)
  104. *
  105. * Setting AWL/AWH and SWL/SWH happens as part of the feature
  106. * activation below, as these windows all depend on the local
  107. * and remote Sequence Window feature values (7.5.2).
  108. */
  109. newdp->dccps_iss = dreq->dreq_iss;
  110. newdp->dccps_gss = dreq->dreq_gss;
  111. newdp->dccps_gar = newdp->dccps_iss;
  112. newdp->dccps_isr = dreq->dreq_isr;
  113. newdp->dccps_gsr = dreq->dreq_gsr;
  114. /*
  115. * Activate features: initialise CCIDs, sequence windows etc.
  116. */
  117. if (dccp_feat_activate_values(newsk, &dreq->dreq_featneg)) {
  118. /* It is still raw copy of parent, so invalidate
  119. * destructor and make plain sk_free() */
  120. newsk->sk_destruct = NULL;
  121. sk_free(newsk);
  122. return NULL;
  123. }
  124. dccp_init_xmit_timers(newsk);
  125. DCCP_INC_STATS_BH(DCCP_MIB_PASSIVEOPENS);
  126. }
  127. return newsk;
  128. }
  129. EXPORT_SYMBOL_GPL(dccp_create_openreq_child);
  130. /*
  131. * Process an incoming packet for RESPOND sockets represented
  132. * as an request_sock.
  133. */
  134. struct sock *dccp_check_req(struct sock *sk, struct sk_buff *skb,
  135. struct request_sock *req,
  136. struct request_sock **prev)
  137. {
  138. struct sock *child = NULL;
  139. struct dccp_request_sock *dreq = dccp_rsk(req);
  140. /* Check for retransmitted REQUEST */
  141. if (dccp_hdr(skb)->dccph_type == DCCP_PKT_REQUEST) {
  142. if (after48(DCCP_SKB_CB(skb)->dccpd_seq, dreq->dreq_gsr)) {
  143. dccp_pr_debug("Retransmitted REQUEST\n");
  144. dreq->dreq_gsr = DCCP_SKB_CB(skb)->dccpd_seq;
  145. /*
  146. * Send another RESPONSE packet
  147. * To protect against Request floods, increment retrans
  148. * counter (backoff, monitored by dccp_response_timer).
  149. */
  150. inet_rtx_syn_ack(sk, req);
  151. }
  152. /* Network Duplicate, discard packet */
  153. return NULL;
  154. }
  155. DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_PACKET_ERROR;
  156. if (dccp_hdr(skb)->dccph_type != DCCP_PKT_ACK &&
  157. dccp_hdr(skb)->dccph_type != DCCP_PKT_DATAACK)
  158. goto drop;
  159. /* Invalid ACK */
  160. if (!between48(DCCP_SKB_CB(skb)->dccpd_ack_seq,
  161. dreq->dreq_iss, dreq->dreq_gss)) {
  162. dccp_pr_debug("Invalid ACK number: ack_seq=%llu, "
  163. "dreq_iss=%llu, dreq_gss=%llu\n",
  164. (unsigned long long)
  165. DCCP_SKB_CB(skb)->dccpd_ack_seq,
  166. (unsigned long long) dreq->dreq_iss,
  167. (unsigned long long) dreq->dreq_gss);
  168. goto drop;
  169. }
  170. if (dccp_parse_options(sk, dreq, skb))
  171. goto drop;
  172. child = inet_csk(sk)->icsk_af_ops->syn_recv_sock(sk, skb, req, NULL);
  173. if (child == NULL)
  174. goto listen_overflow;
  175. inet_csk_reqsk_queue_unlink(sk, req, prev);
  176. inet_csk_reqsk_queue_removed(sk, req);
  177. inet_csk_reqsk_queue_add(sk, req, child);
  178. out:
  179. return child;
  180. listen_overflow:
  181. dccp_pr_debug("listen_overflow!\n");
  182. DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_TOO_BUSY;
  183. drop:
  184. if (dccp_hdr(skb)->dccph_type != DCCP_PKT_RESET)
  185. req->rsk_ops->send_reset(sk, skb);
  186. inet_csk_reqsk_queue_drop(sk, req, prev);
  187. goto out;
  188. }
  189. EXPORT_SYMBOL_GPL(dccp_check_req);
  190. /*
  191. * Queue segment on the new socket if the new socket is active,
  192. * otherwise we just shortcircuit this and continue with
  193. * the new socket.
  194. */
  195. int dccp_child_process(struct sock *parent, struct sock *child,
  196. struct sk_buff *skb)
  197. {
  198. int ret = 0;
  199. const int state = child->sk_state;
  200. if (!sock_owned_by_user(child)) {
  201. ret = dccp_rcv_state_process(child, skb, dccp_hdr(skb),
  202. skb->len);
  203. /* Wakeup parent, send SIGIO */
  204. if (state == DCCP_RESPOND && child->sk_state != state)
  205. parent->sk_data_ready(parent, 0);
  206. } else {
  207. /* Alas, it is possible again, because we do lookup
  208. * in main socket hash table and lock on listening
  209. * socket does not protect us more.
  210. */
  211. __sk_add_backlog(child, skb);
  212. }
  213. bh_unlock_sock(child);
  214. sock_put(child);
  215. return ret;
  216. }
  217. EXPORT_SYMBOL_GPL(dccp_child_process);
  218. void dccp_reqsk_send_ack(struct sock *sk, struct sk_buff *skb,
  219. struct request_sock *rsk)
  220. {
  221. DCCP_BUG("DCCP-ACK packets are never sent in LISTEN/RESPOND state");
  222. }
  223. EXPORT_SYMBOL_GPL(dccp_reqsk_send_ack);
  224. int dccp_reqsk_init(struct request_sock *req,
  225. struct dccp_sock const *dp, struct sk_buff const *skb)
  226. {
  227. struct dccp_request_sock *dreq = dccp_rsk(req);
  228. inet_rsk(req)->ir_rmt_port = dccp_hdr(skb)->dccph_sport;
  229. inet_rsk(req)->ir_num = ntohs(dccp_hdr(skb)->dccph_dport);
  230. inet_rsk(req)->acked = 0;
  231. dreq->dreq_timestamp_echo = 0;
  232. /* inherit feature negotiation options from listening socket */
  233. return dccp_feat_clone_list(&dp->dccps_featneg, &dreq->dreq_featneg);
  234. }
  235. EXPORT_SYMBOL_GPL(dccp_reqsk_init);