blob: 62522b8d2f9715d28ce019aaeaf901875eaceed9 [file] [log] [blame]
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001/*
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
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070013#include <linux/dccp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Gerrit Renker8a73cd02006-11-10 12:32:01 -020015#include <linux/kernel.h>
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070016#include <linux/skbuff.h>
17#include <linux/timer.h>
18
19#include <net/sock.h>
20#include <net/xfrm.h>
21#include <net/inet_timewait_sock.h>
22
Arnaldo Carvalho de Meloae31c332005-09-18 00:17:51 -070023#include "ackvec.h"
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070024#include "ccid.h"
25#include "dccp.h"
Andrea Bittauafe00252006-03-20 17:43:56 -080026#include "feat.h"
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070027
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -070028struct inet_timewait_death_row dccp_death_row = {
29 .sysctl_max_tw_buckets = NR_FILE * 2,
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -070030 .hashinfo = &dccp_hashinfo,
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -070031};
32
Arnaldo Carvalho de Melof21e68c2005-12-13 23:24:16 -080033EXPORT_SYMBOL_GPL(dccp_death_row);
34
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070035void dccp_time_wait(struct sock *sk, int state, int timeo)
36{
Eric Dumazet789f5582015-04-12 18:51:09 -070037 struct inet_timewait_sock *tw;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070038
Eric Dumazet789f5582015-04-12 18:51:09 -070039 tw = inet_twsk_alloc(sk, &dccp_death_row, state);
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -070040
41 if (tw != NULL) {
42 const struct inet_connection_sock *icsk = inet_csk(sk);
43 const int rto = (icsk->icsk_rto << 2) - (icsk->icsk_rto >> 1);
Eric Dumazetdfd56b82011-12-10 09:48:31 +000044#if IS_ENABLED(CONFIG_IPV6)
Arnaldo Carvalho de Melo3df80d92005-12-13 23:24:53 -080045 if (tw->tw_family == PF_INET6) {
Eric Dumazetefe42082013-10-03 15:42:29 -070046 tw->tw_v6_daddr = sk->sk_v6_daddr;
47 tw->tw_v6_rcv_saddr = sk->sk_v6_rcv_saddr;
Eric Dumazet9fe516b2014-06-27 08:36:16 -070048 tw->tw_ipv6only = sk->sk_ipv6only;
Arnaldo Carvalho de Melo3df80d92005-12-13 23:24:53 -080049 }
50#endif
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -070051
52 /* Get the TIME_WAIT timeout firing. */
53 if (timeo < rto)
54 timeo = rto;
55
56 tw->tw_timeout = DCCP_TIMEWAIT_LEN;
57 if (state == DCCP_TIME_WAIT)
58 timeo = DCCP_TIMEWAIT_LEN;
59
Eric Dumazetaa0080f2017-12-01 10:06:56 -080060 /* tw_timer is pinned, so we need to make sure BH are disabled
61 * in following section, otherwise timer handler could run before
62 * we complete the initialization.
63 */
64 local_bh_disable();
Eric Dumazet789f5582015-04-12 18:51:09 -070065 inet_twsk_schedule(tw, timeo);
Eric Dumazeted2e9232015-09-19 09:08:34 -070066 /* Linkage updates. */
67 __inet_twsk_hashdance(tw, sk, &dccp_hashinfo);
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -070068 inet_twsk_put(tw);
Eric Dumazetaa0080f2017-12-01 10:06:56 -080069 local_bh_enable();
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -070070 } else {
71 /* Sorry, if we're out of memory, just CLOSE this
72 * socket up. We've got bigger problems than
73 * non-graceful socket closings.
74 */
Gerrit Renker59348b12006-11-20 18:39:23 -020075 DCCP_WARN("time wait bucket table overflow\n");
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -070076 }
77
78 dccp_done(sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070079}
80
Eric Dumazet54105f92015-09-29 07:42:46 -070081struct sock *dccp_create_openreq_child(const struct sock *sk,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070082 const struct request_sock *req,
83 const struct sk_buff *skb)
84{
85 /*
86 * Step 3: Process LISTEN state
87 *
Gerrit Renkerd83ca5a2006-11-10 16:29:14 -020088 * (* Generate a new socket and switch to that socket *)
89 * Set S := new socket for this port pair
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070090 */
Eric Dumazete56c57d2011-11-08 17:07:07 -050091 struct sock *newsk = inet_csk_clone_lock(sk, req, GFP_ATOMIC);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070092
93 if (newsk != NULL) {
Gerrit Renker192b27f2008-12-08 01:15:55 -080094 struct dccp_request_sock *dreq = dccp_rsk(req);
Gerrit Renker99c72ce2007-03-06 14:24:44 -080095 struct inet_connection_sock *newicsk = inet_csk(newsk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070096 struct dccp_sock *newdp = dccp_sk(newsk);
97
Gerrit Renkerb4d4f7c2007-12-13 12:37:19 -020098 newdp->dccps_role = DCCP_ROLE_SERVER;
99 newdp->dccps_hc_rx_ackvec = NULL;
100 newdp->dccps_service_list = NULL;
101 newdp->dccps_service = dreq->dreq_service;
102 newdp->dccps_timestamp_echo = dreq->dreq_timestamp_echo;
103 newdp->dccps_timestamp_time = dreq->dreq_timestamp_time;
104 newicsk->icsk_rto = DCCP_TIMEOUT_INIT;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700105
Gerrit Renkerac757732008-11-04 23:55:49 -0800106 INIT_LIST_HEAD(&newdp->dccps_featneg);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700107 /*
108 * Step 3: Process LISTEN state
109 *
Gerrit Renkerd83ca5a2006-11-10 16:29:14 -0200110 * Choose S.ISS (initial seqno) or set from Init Cookies
111 * Initialize S.GAR := S.ISS
Gerrit Renker0b53d462010-10-11 20:35:40 +0200112 * Set S.ISR, S.GSR from packet (or Init Cookies)
113 *
114 * Setting AWL/AWH and SWL/SWH happens as part of the feature
115 * activation below, as these windows all depend on the local
116 * and remote Sequence Window feature values (7.5.2).
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700117 */
Samuel Jerof541fb72012-02-26 18:22:02 -0700118 newdp->dccps_iss = dreq->dreq_iss;
119 newdp->dccps_gss = dreq->dreq_gss;
Gerrit Renker0b53d462010-10-11 20:35:40 +0200120 newdp->dccps_gar = newdp->dccps_iss;
Samuel Jerof541fb72012-02-26 18:22:02 -0700121 newdp->dccps_isr = dreq->dreq_isr;
122 newdp->dccps_gsr = dreq->dreq_gsr;
Gerrit Renkerbe4c7982008-06-11 11:19:10 +0100123
Arnaldo Carvalho de Melo03ace392005-08-21 05:36:45 -0300124 /*
Gerrit Renker0b53d462010-10-11 20:35:40 +0200125 * Activate features: initialise CCIDs, sequence windows etc.
Gerrit Renker192b27f2008-12-08 01:15:55 -0800126 */
127 if (dccp_feat_activate_values(newsk, &dreq->dreq_featneg)) {
128 /* It is still raw copy of parent, so invalidate
129 * destructor and make plain sk_free() */
130 newsk->sk_destruct = NULL;
Arnaldo Carvalho de Melo51ae1fb2017-03-01 16:35:07 -0300131 bh_unlock_sock(newsk);
Gerrit Renker192b27f2008-12-08 01:15:55 -0800132 sk_free(newsk);
133 return NULL;
134 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700135 dccp_init_xmit_timers(newsk);
136
Eric Dumazetaa62d762016-04-27 16:44:28 -0700137 __DCCP_INC_STATS(DCCP_MIB_PASSIVEOPENS);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700138 }
139 return newsk;
140}
141
Arnaldo Carvalho de Melof21e68c2005-12-13 23:24:16 -0800142EXPORT_SYMBOL_GPL(dccp_create_openreq_child);
143
Arnaldo Carvalho de Melo8109b022006-12-10 16:01:18 -0200144/*
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700145 * Process an incoming packet for RESPOND sockets represented
146 * as an request_sock.
147 */
148struct sock *dccp_check_req(struct sock *sk, struct sk_buff *skb,
Eric Dumazet52452c52015-03-19 19:04:19 -0700149 struct request_sock *req)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700150{
151 struct sock *child = NULL;
Gerrit Renker81096162007-12-13 12:31:26 -0200152 struct dccp_request_sock *dreq = dccp_rsk(req);
Eric Dumazet5e0724d2015-10-22 08:20:46 -0700153 bool own_req;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700154
Eric Dumazet7c0eaee2017-03-05 10:52:16 -0800155 /* TCP/DCCP listeners became lockless.
156 * DCCP stores complex state in its request_sock, so we need
157 * a protection for them, now this code runs without being protected
158 * by the parent (listener) lock.
159 */
160 spin_lock_bh(&dreq->dreq_lock);
161
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700162 /* Check for retransmitted REQUEST */
163 if (dccp_hdr(skb)->dccph_type == DCCP_PKT_REQUEST) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700164
Samuel Jerof541fb72012-02-26 18:22:02 -0700165 if (after48(DCCP_SKB_CB(skb)->dccpd_seq, dreq->dreq_gsr)) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700166 dccp_pr_debug("Retransmitted REQUEST\n");
Samuel Jerof541fb72012-02-26 18:22:02 -0700167 dreq->dreq_gsr = DCCP_SKB_CB(skb)->dccpd_seq;
Gerrit Renkere11d9d32006-11-13 13:12:07 -0200168 /*
169 * Send another RESPONSE packet
170 * To protect against Request floods, increment retrans
171 * counter (backoff, monitored by dccp_response_timer).
172 */
Eric Dumazete6c022a2012-10-27 23:16:46 +0000173 inet_rtx_syn_ack(sk, req);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700174 }
175 /* Network Duplicate, discard packet */
Eric Dumazet7c0eaee2017-03-05 10:52:16 -0800176 goto out;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700177 }
178
179 DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_PACKET_ERROR;
180
181 if (dccp_hdr(skb)->dccph_type != DCCP_PKT_ACK &&
182 dccp_hdr(skb)->dccph_type != DCCP_PKT_DATAACK)
183 goto drop;
184
185 /* Invalid ACK */
Samuel Jerof541fb72012-02-26 18:22:02 -0700186 if (!between48(DCCP_SKB_CB(skb)->dccpd_ack_seq,
187 dreq->dreq_iss, dreq->dreq_gss)) {
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300188 dccp_pr_debug("Invalid ACK number: ack_seq=%llu, "
Samuel Jerof541fb72012-02-26 18:22:02 -0700189 "dreq_iss=%llu, dreq_gss=%llu\n",
David S. Millerf6ccf552005-08-09 20:27:14 -0700190 (unsigned long long)
191 DCCP_SKB_CB(skb)->dccpd_ack_seq,
Samuel Jerof541fb72012-02-26 18:22:02 -0700192 (unsigned long long) dreq->dreq_iss,
193 (unsigned long long) dreq->dreq_gss);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700194 goto drop;
195 }
196
Gerrit Renker81096162007-12-13 12:31:26 -0200197 if (dccp_parse_options(sk, dreq, skb))
198 goto drop;
199
Eric Dumazet5e0724d2015-10-22 08:20:46 -0700200 child = inet_csk(sk)->icsk_af_ops->syn_recv_sock(sk, skb, req, NULL,
201 req, &own_req);
Eric Dumazet7c0eaee2017-03-05 10:52:16 -0800202 if (child) {
203 child = inet_csk_complete_hashdance(sk, child, req, own_req);
204 goto out;
205 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700206
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700207 DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_TOO_BUSY;
208drop:
209 if (dccp_hdr(skb)->dccph_type != DCCP_PKT_RESET)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800210 req->rsk_ops->send_reset(sk, skb);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700211
Eric Dumazet52452c52015-03-19 19:04:19 -0700212 inet_csk_reqsk_queue_drop(sk, req);
Eric Dumazet7c0eaee2017-03-05 10:52:16 -0800213out:
214 spin_unlock_bh(&dreq->dreq_lock);
215 return child;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700216}
217
Arnaldo Carvalho de Melof21e68c2005-12-13 23:24:16 -0800218EXPORT_SYMBOL_GPL(dccp_check_req);
219
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700220/*
221 * Queue segment on the new socket if the new socket is active,
222 * otherwise we just shortcircuit this and continue with
223 * the new socket.
224 */
225int dccp_child_process(struct sock *parent, struct sock *child,
226 struct sk_buff *skb)
227{
228 int ret = 0;
229 const int state = child->sk_state;
230
231 if (!sock_owned_by_user(child)) {
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300232 ret = dccp_rcv_state_process(child, skb, dccp_hdr(skb),
233 skb->len);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700234
235 /* Wakeup parent, send SIGIO */
236 if (state == DCCP_RESPOND && child->sk_state != state)
David S. Miller676d2362014-04-11 16:15:36 -0400237 parent->sk_data_ready(parent);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700238 } else {
239 /* Alas, it is possible again, because we do lookup
240 * in main socket hash table and lock on listening
241 * socket does not protect us more.
242 */
Zhu Yia3a858f2010-03-04 18:01:47 +0000243 __sk_add_backlog(child, skb);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700244 }
245
246 bh_unlock_sock(child);
247 sock_put(child);
248 return ret;
249}
Arnaldo Carvalho de Melof21e68c2005-12-13 23:24:16 -0800250
251EXPORT_SYMBOL_GPL(dccp_child_process);
Gerrit Renker8a73cd02006-11-10 12:32:01 -0200252
Eric Dumazeta00e7442015-09-29 07:42:39 -0700253void dccp_reqsk_send_ack(const struct sock *sk, struct sk_buff *skb,
Gui Jianfeng6edafaa2008-08-06 23:50:04 -0700254 struct request_sock *rsk)
Gerrit Renker8a73cd02006-11-10 12:32:01 -0200255{
Gerrit Renker59348b12006-11-20 18:39:23 -0200256 DCCP_BUG("DCCP-ACK packets are never sent in LISTEN/RESPOND state");
Gerrit Renker8a73cd02006-11-10 12:32:01 -0200257}
258
259EXPORT_SYMBOL_GPL(dccp_reqsk_send_ack);
Gerrit Renkercf557922006-11-10 16:08:37 -0200260
Gerrit Renkerac757732008-11-04 23:55:49 -0800261int dccp_reqsk_init(struct request_sock *req,
262 struct dccp_sock const *dp, struct sk_buff const *skb)
Gerrit Renkercf557922006-11-10 16:08:37 -0200263{
Gerrit Renkerb4d4f7c2007-12-13 12:37:19 -0200264 struct dccp_request_sock *dreq = dccp_rsk(req);
265
Eric Dumazet7c0eaee2017-03-05 10:52:16 -0800266 spin_lock_init(&dreq->dreq_lock);
Eric Dumazetb44084c2013-10-10 00:04:37 -0700267 inet_rsk(req)->ir_rmt_port = dccp_hdr(skb)->dccph_sport;
268 inet_rsk(req)->ir_num = ntohs(dccp_hdr(skb)->dccph_dport);
269 inet_rsk(req)->acked = 0;
270 dreq->dreq_timestamp_echo = 0;
Gerrit Renkerac757732008-11-04 23:55:49 -0800271
272 /* inherit feature negotiation options from listening socket */
273 return dccp_feat_clone_list(&dp->dccps_featneg, &dreq->dreq_featneg);
Gerrit Renkercf557922006-11-10 16:08:37 -0200274}
275
276EXPORT_SYMBOL_GPL(dccp_reqsk_init);