xref: /OK3568_Linux_fs/kernel/net/netfilter/nf_conntrack_proto_dccp.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * DCCP connection tracking protocol helper
4  *
5  * Copyright (c) 2005, 2006, 2008 Patrick McHardy <kaber@trash.net>
6  */
7 #include <linux/kernel.h>
8 #include <linux/init.h>
9 #include <linux/sysctl.h>
10 #include <linux/spinlock.h>
11 #include <linux/skbuff.h>
12 #include <linux/dccp.h>
13 #include <linux/slab.h>
14 
15 #include <net/net_namespace.h>
16 #include <net/netns/generic.h>
17 
18 #include <linux/netfilter/nfnetlink_conntrack.h>
19 #include <net/netfilter/nf_conntrack.h>
20 #include <net/netfilter/nf_conntrack_l4proto.h>
21 #include <net/netfilter/nf_conntrack_ecache.h>
22 #include <net/netfilter/nf_conntrack_timeout.h>
23 #include <net/netfilter/nf_log.h>
24 
25 /* Timeouts are based on values from RFC4340:
26  *
27  * - REQUEST:
28  *
29  *   8.1.2. Client Request
30  *
31  *   A client MAY give up on its DCCP-Requests after some time
32  *   (3 minutes, for example).
33  *
34  * - RESPOND:
35  *
36  *   8.1.3. Server Response
37  *
38  *   It MAY also leave the RESPOND state for CLOSED after a timeout of
39  *   not less than 4MSL (8 minutes);
40  *
41  * - PARTOPEN:
42  *
43  *   8.1.5. Handshake Completion
44  *
45  *   If the client remains in PARTOPEN for more than 4MSL (8 minutes),
46  *   it SHOULD reset the connection with Reset Code 2, "Aborted".
47  *
48  * - OPEN:
49  *
50  *   The DCCP timestamp overflows after 11.9 hours. If the connection
51  *   stays idle this long the sequence number won't be recognized
52  *   as valid anymore.
53  *
54  * - CLOSEREQ/CLOSING:
55  *
56  *   8.3. Termination
57  *
58  *   The retransmission timer should initially be set to go off in two
59  *   round-trip times and should back off to not less than once every
60  *   64 seconds ...
61  *
62  * - TIMEWAIT:
63  *
64  *   4.3. States
65  *
66  *   A server or client socket remains in this state for 2MSL (4 minutes)
67  *   after the connection has been town down, ...
68  */
69 
70 #define DCCP_MSL (2 * 60 * HZ)
71 
72 static const char * const dccp_state_names[] = {
73 	[CT_DCCP_NONE]		= "NONE",
74 	[CT_DCCP_REQUEST]	= "REQUEST",
75 	[CT_DCCP_RESPOND]	= "RESPOND",
76 	[CT_DCCP_PARTOPEN]	= "PARTOPEN",
77 	[CT_DCCP_OPEN]		= "OPEN",
78 	[CT_DCCP_CLOSEREQ]	= "CLOSEREQ",
79 	[CT_DCCP_CLOSING]	= "CLOSING",
80 	[CT_DCCP_TIMEWAIT]	= "TIMEWAIT",
81 	[CT_DCCP_IGNORE]	= "IGNORE",
82 	[CT_DCCP_INVALID]	= "INVALID",
83 };
84 
85 #define sNO	CT_DCCP_NONE
86 #define sRQ	CT_DCCP_REQUEST
87 #define sRS	CT_DCCP_RESPOND
88 #define sPO	CT_DCCP_PARTOPEN
89 #define sOP	CT_DCCP_OPEN
90 #define sCR	CT_DCCP_CLOSEREQ
91 #define sCG	CT_DCCP_CLOSING
92 #define sTW	CT_DCCP_TIMEWAIT
93 #define sIG	CT_DCCP_IGNORE
94 #define sIV	CT_DCCP_INVALID
95 
96 /*
97  * DCCP state transition table
98  *
99  * The assumption is the same as for TCP tracking:
100  *
101  * We are the man in the middle. All the packets go through us but might
102  * get lost in transit to the destination. It is assumed that the destination
103  * can't receive segments we haven't seen.
104  *
105  * The following states exist:
106  *
107  * NONE:	Initial state, expecting Request
108  * REQUEST:	Request seen, waiting for Response from server
109  * RESPOND:	Response from server seen, waiting for Ack from client
110  * PARTOPEN:	Ack after Response seen, waiting for packet other than Response,
111  * 		Reset or Sync from server
112  * OPEN:	Packet other than Response, Reset or Sync seen
113  * CLOSEREQ:	CloseReq from server seen, expecting Close from client
114  * CLOSING:	Close seen, expecting Reset
115  * TIMEWAIT:	Reset seen
116  * IGNORE:	Not determinable whether packet is valid
117  *
118  * Some states exist only on one side of the connection: REQUEST, RESPOND,
119  * PARTOPEN, CLOSEREQ. For the other side these states are equivalent to
120  * the one it was in before.
121  *
122  * Packets are marked as ignored (sIG) if we don't know if they're valid
123  * (for example a reincarnation of a connection we didn't notice is dead
124  * already) and the server may send back a connection closing Reset or a
125  * Response. They're also used for Sync/SyncAck packets, which we don't
126  * care about.
127  */
128 static const u_int8_t
129 dccp_state_table[CT_DCCP_ROLE_MAX + 1][DCCP_PKT_SYNCACK + 1][CT_DCCP_MAX + 1] = {
130 	[CT_DCCP_ROLE_CLIENT] = {
131 		[DCCP_PKT_REQUEST] = {
132 		/*
133 		 * sNO -> sRQ		Regular Request
134 		 * sRQ -> sRQ		Retransmitted Request or reincarnation
135 		 * sRS -> sRS		Retransmitted Request (apparently Response
136 		 * 			got lost after we saw it) or reincarnation
137 		 * sPO -> sIG		Ignore, conntrack might be out of sync
138 		 * sOP -> sIG		Ignore, conntrack might be out of sync
139 		 * sCR -> sIG		Ignore, conntrack might be out of sync
140 		 * sCG -> sIG		Ignore, conntrack might be out of sync
141 		 * sTW -> sRQ		Reincarnation
142 		 *
143 		 *	sNO, sRQ, sRS, sPO. sOP, sCR, sCG, sTW, */
144 			sRQ, sRQ, sRS, sIG, sIG, sIG, sIG, sRQ,
145 		},
146 		[DCCP_PKT_RESPONSE] = {
147 		/*
148 		 * sNO -> sIV		Invalid
149 		 * sRQ -> sIG		Ignore, might be response to ignored Request
150 		 * sRS -> sIG		Ignore, might be response to ignored Request
151 		 * sPO -> sIG		Ignore, might be response to ignored Request
152 		 * sOP -> sIG		Ignore, might be response to ignored Request
153 		 * sCR -> sIG		Ignore, might be response to ignored Request
154 		 * sCG -> sIG		Ignore, might be response to ignored Request
155 		 * sTW -> sIV		Invalid, reincarnation in reverse direction
156 		 *			goes through sRQ
157 		 *
158 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
159 			sIV, sIG, sIG, sIG, sIG, sIG, sIG, sIV,
160 		},
161 		[DCCP_PKT_ACK] = {
162 		/*
163 		 * sNO -> sIV		No connection
164 		 * sRQ -> sIV		No connection
165 		 * sRS -> sPO		Ack for Response, move to PARTOPEN (8.1.5.)
166 		 * sPO -> sPO		Retransmitted Ack for Response, remain in PARTOPEN
167 		 * sOP -> sOP		Regular ACK, remain in OPEN
168 		 * sCR -> sCR		Ack in CLOSEREQ MAY be processed (8.3.)
169 		 * sCG -> sCG		Ack in CLOSING MAY be processed (8.3.)
170 		 * sTW -> sIV
171 		 *
172 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
173 			sIV, sIV, sPO, sPO, sOP, sCR, sCG, sIV
174 		},
175 		[DCCP_PKT_DATA] = {
176 		/*
177 		 * sNO -> sIV		No connection
178 		 * sRQ -> sIV		No connection
179 		 * sRS -> sIV		No connection
180 		 * sPO -> sIV		MUST use DataAck in PARTOPEN state (8.1.5.)
181 		 * sOP -> sOP		Regular Data packet
182 		 * sCR -> sCR		Data in CLOSEREQ MAY be processed (8.3.)
183 		 * sCG -> sCG		Data in CLOSING MAY be processed (8.3.)
184 		 * sTW -> sIV
185 		 *
186 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
187 			sIV, sIV, sIV, sIV, sOP, sCR, sCG, sIV,
188 		},
189 		[DCCP_PKT_DATAACK] = {
190 		/*
191 		 * sNO -> sIV		No connection
192 		 * sRQ -> sIV		No connection
193 		 * sRS -> sPO		Ack for Response, move to PARTOPEN (8.1.5.)
194 		 * sPO -> sPO		Remain in PARTOPEN state
195 		 * sOP -> sOP		Regular DataAck packet in OPEN state
196 		 * sCR -> sCR		DataAck in CLOSEREQ MAY be processed (8.3.)
197 		 * sCG -> sCG		DataAck in CLOSING MAY be processed (8.3.)
198 		 * sTW -> sIV
199 		 *
200 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
201 			sIV, sIV, sPO, sPO, sOP, sCR, sCG, sIV
202 		},
203 		[DCCP_PKT_CLOSEREQ] = {
204 		/*
205 		 * CLOSEREQ may only be sent by the server.
206 		 *
207 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
208 			sIV, sIV, sIV, sIV, sIV, sIV, sIV, sIV
209 		},
210 		[DCCP_PKT_CLOSE] = {
211 		/*
212 		 * sNO -> sIV		No connection
213 		 * sRQ -> sIV		No connection
214 		 * sRS -> sIV		No connection
215 		 * sPO -> sCG		Client-initiated close
216 		 * sOP -> sCG		Client-initiated close
217 		 * sCR -> sCG		Close in response to CloseReq (8.3.)
218 		 * sCG -> sCG		Retransmit
219 		 * sTW -> sIV		Late retransmit, already in TIME_WAIT
220 		 *
221 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
222 			sIV, sIV, sIV, sCG, sCG, sCG, sIV, sIV
223 		},
224 		[DCCP_PKT_RESET] = {
225 		/*
226 		 * sNO -> sIV		No connection
227 		 * sRQ -> sTW		Sync received or timeout, SHOULD send Reset (8.1.1.)
228 		 * sRS -> sTW		Response received without Request
229 		 * sPO -> sTW		Timeout, SHOULD send Reset (8.1.5.)
230 		 * sOP -> sTW		Connection reset
231 		 * sCR -> sTW		Connection reset
232 		 * sCG -> sTW		Connection reset
233 		 * sTW -> sIG		Ignore (don't refresh timer)
234 		 *
235 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
236 			sIV, sTW, sTW, sTW, sTW, sTW, sTW, sIG
237 		},
238 		[DCCP_PKT_SYNC] = {
239 		/*
240 		 * We currently ignore Sync packets
241 		 *
242 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
243 			sIV, sIG, sIG, sIG, sIG, sIG, sIG, sIG,
244 		},
245 		[DCCP_PKT_SYNCACK] = {
246 		/*
247 		 * We currently ignore SyncAck packets
248 		 *
249 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
250 			sIV, sIG, sIG, sIG, sIG, sIG, sIG, sIG,
251 		},
252 	},
253 	[CT_DCCP_ROLE_SERVER] = {
254 		[DCCP_PKT_REQUEST] = {
255 		/*
256 		 * sNO -> sIV		Invalid
257 		 * sRQ -> sIG		Ignore, conntrack might be out of sync
258 		 * sRS -> sIG		Ignore, conntrack might be out of sync
259 		 * sPO -> sIG		Ignore, conntrack might be out of sync
260 		 * sOP -> sIG		Ignore, conntrack might be out of sync
261 		 * sCR -> sIG		Ignore, conntrack might be out of sync
262 		 * sCG -> sIG		Ignore, conntrack might be out of sync
263 		 * sTW -> sRQ		Reincarnation, must reverse roles
264 		 *
265 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
266 			sIV, sIG, sIG, sIG, sIG, sIG, sIG, sRQ
267 		},
268 		[DCCP_PKT_RESPONSE] = {
269 		/*
270 		 * sNO -> sIV		Response without Request
271 		 * sRQ -> sRS		Response to clients Request
272 		 * sRS -> sRS		Retransmitted Response (8.1.3. SHOULD NOT)
273 		 * sPO -> sIG		Response to an ignored Request or late retransmit
274 		 * sOP -> sIG		Ignore, might be response to ignored Request
275 		 * sCR -> sIG		Ignore, might be response to ignored Request
276 		 * sCG -> sIG		Ignore, might be response to ignored Request
277 		 * sTW -> sIV		Invalid, Request from client in sTW moves to sRQ
278 		 *
279 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
280 			sIV, sRS, sRS, sIG, sIG, sIG, sIG, sIV
281 		},
282 		[DCCP_PKT_ACK] = {
283 		/*
284 		 * sNO -> sIV		No connection
285 		 * sRQ -> sIV		No connection
286 		 * sRS -> sIV		No connection
287 		 * sPO -> sOP		Enter OPEN state (8.1.5.)
288 		 * sOP -> sOP		Regular Ack in OPEN state
289 		 * sCR -> sIV		Waiting for Close from client
290 		 * sCG -> sCG		Ack in CLOSING MAY be processed (8.3.)
291 		 * sTW -> sIV
292 		 *
293 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
294 			sIV, sIV, sIV, sOP, sOP, sIV, sCG, sIV
295 		},
296 		[DCCP_PKT_DATA] = {
297 		/*
298 		 * sNO -> sIV		No connection
299 		 * sRQ -> sIV		No connection
300 		 * sRS -> sIV		No connection
301 		 * sPO -> sOP		Enter OPEN state (8.1.5.)
302 		 * sOP -> sOP		Regular Data packet in OPEN state
303 		 * sCR -> sIV		Waiting for Close from client
304 		 * sCG -> sCG		Data in CLOSING MAY be processed (8.3.)
305 		 * sTW -> sIV
306 		 *
307 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
308 			sIV, sIV, sIV, sOP, sOP, sIV, sCG, sIV
309 		},
310 		[DCCP_PKT_DATAACK] = {
311 		/*
312 		 * sNO -> sIV		No connection
313 		 * sRQ -> sIV		No connection
314 		 * sRS -> sIV		No connection
315 		 * sPO -> sOP		Enter OPEN state (8.1.5.)
316 		 * sOP -> sOP		Regular DataAck in OPEN state
317 		 * sCR -> sIV		Waiting for Close from client
318 		 * sCG -> sCG		Data in CLOSING MAY be processed (8.3.)
319 		 * sTW -> sIV
320 		 *
321 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
322 			sIV, sIV, sIV, sOP, sOP, sIV, sCG, sIV
323 		},
324 		[DCCP_PKT_CLOSEREQ] = {
325 		/*
326 		 * sNO -> sIV		No connection
327 		 * sRQ -> sIV		No connection
328 		 * sRS -> sIV		No connection
329 		 * sPO -> sOP -> sCR	Move directly to CLOSEREQ (8.1.5.)
330 		 * sOP -> sCR		CloseReq in OPEN state
331 		 * sCR -> sCR		Retransmit
332 		 * sCG -> sCR		Simultaneous close, client sends another Close
333 		 * sTW -> sIV		Already closed
334 		 *
335 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
336 			sIV, sIV, sIV, sCR, sCR, sCR, sCR, sIV
337 		},
338 		[DCCP_PKT_CLOSE] = {
339 		/*
340 		 * sNO -> sIV		No connection
341 		 * sRQ -> sIV		No connection
342 		 * sRS -> sIV		No connection
343 		 * sPO -> sOP -> sCG	Move direcly to CLOSING
344 		 * sOP -> sCG		Move to CLOSING
345 		 * sCR -> sIV		Close after CloseReq is invalid
346 		 * sCG -> sCG		Retransmit
347 		 * sTW -> sIV		Already closed
348 		 *
349 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
350 			sIV, sIV, sIV, sCG, sCG, sIV, sCG, sIV
351 		},
352 		[DCCP_PKT_RESET] = {
353 		/*
354 		 * sNO -> sIV		No connection
355 		 * sRQ -> sTW		Reset in response to Request
356 		 * sRS -> sTW		Timeout, SHOULD send Reset (8.1.3.)
357 		 * sPO -> sTW		Timeout, SHOULD send Reset (8.1.3.)
358 		 * sOP -> sTW
359 		 * sCR -> sTW
360 		 * sCG -> sTW
361 		 * sTW -> sIG		Ignore (don't refresh timer)
362 		 *
363 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW, sTW */
364 			sIV, sTW, sTW, sTW, sTW, sTW, sTW, sTW, sIG
365 		},
366 		[DCCP_PKT_SYNC] = {
367 		/*
368 		 * We currently ignore Sync packets
369 		 *
370 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
371 			sIV, sIG, sIG, sIG, sIG, sIG, sIG, sIG,
372 		},
373 		[DCCP_PKT_SYNCACK] = {
374 		/*
375 		 * We currently ignore SyncAck packets
376 		 *
377 		 *	sNO, sRQ, sRS, sPO, sOP, sCR, sCG, sTW */
378 			sIV, sIG, sIG, sIG, sIG, sIG, sIG, sIG,
379 		},
380 	},
381 };
382 
383 static noinline bool
dccp_new(struct nf_conn * ct,const struct sk_buff * skb,const struct dccp_hdr * dh)384 dccp_new(struct nf_conn *ct, const struct sk_buff *skb,
385 	 const struct dccp_hdr *dh)
386 {
387 	struct net *net = nf_ct_net(ct);
388 	struct nf_dccp_net *dn;
389 	const char *msg;
390 	u_int8_t state;
391 
392 	state = dccp_state_table[CT_DCCP_ROLE_CLIENT][dh->dccph_type][CT_DCCP_NONE];
393 	switch (state) {
394 	default:
395 		dn = nf_dccp_pernet(net);
396 		if (dn->dccp_loose == 0) {
397 			msg = "not picking up existing connection ";
398 			goto out_invalid;
399 		}
400 		break;
401 	case CT_DCCP_REQUEST:
402 		break;
403 	case CT_DCCP_INVALID:
404 		msg = "invalid state transition ";
405 		goto out_invalid;
406 	}
407 
408 	ct->proto.dccp.role[IP_CT_DIR_ORIGINAL] = CT_DCCP_ROLE_CLIENT;
409 	ct->proto.dccp.role[IP_CT_DIR_REPLY] = CT_DCCP_ROLE_SERVER;
410 	ct->proto.dccp.state = CT_DCCP_NONE;
411 	ct->proto.dccp.last_pkt = DCCP_PKT_REQUEST;
412 	ct->proto.dccp.last_dir = IP_CT_DIR_ORIGINAL;
413 	ct->proto.dccp.handshake_seq = 0;
414 	return true;
415 
416 out_invalid:
417 	nf_ct_l4proto_log_invalid(skb, ct, "%s", msg);
418 	return false;
419 }
420 
dccp_ack_seq(const struct dccp_hdr * dh)421 static u64 dccp_ack_seq(const struct dccp_hdr *dh)
422 {
423 	const struct dccp_hdr_ack_bits *dhack;
424 
425 	dhack = (void *)dh + __dccp_basic_hdr_len(dh);
426 	return ((u64)ntohs(dhack->dccph_ack_nr_high) << 32) +
427 		     ntohl(dhack->dccph_ack_nr_low);
428 }
429 
dccp_error(const struct dccp_hdr * dh,struct sk_buff * skb,unsigned int dataoff,const struct nf_hook_state * state)430 static bool dccp_error(const struct dccp_hdr *dh,
431 		       struct sk_buff *skb, unsigned int dataoff,
432 		       const struct nf_hook_state *state)
433 {
434 	unsigned int dccp_len = skb->len - dataoff;
435 	unsigned int cscov;
436 	const char *msg;
437 
438 	if (dh->dccph_doff * 4 < sizeof(struct dccp_hdr) ||
439 	    dh->dccph_doff * 4 > dccp_len) {
440 		msg = "nf_ct_dccp: truncated/malformed packet ";
441 		goto out_invalid;
442 	}
443 
444 	cscov = dccp_len;
445 	if (dh->dccph_cscov) {
446 		cscov = (dh->dccph_cscov - 1) * 4;
447 		if (cscov > dccp_len) {
448 			msg = "nf_ct_dccp: bad checksum coverage ";
449 			goto out_invalid;
450 		}
451 	}
452 
453 	if (state->hook == NF_INET_PRE_ROUTING &&
454 	    state->net->ct.sysctl_checksum &&
455 	    nf_checksum_partial(skb, state->hook, dataoff, cscov,
456 				IPPROTO_DCCP, state->pf)) {
457 		msg = "nf_ct_dccp: bad checksum ";
458 		goto out_invalid;
459 	}
460 
461 	if (dh->dccph_type >= DCCP_PKT_INVALID) {
462 		msg = "nf_ct_dccp: reserved packet type ";
463 		goto out_invalid;
464 	}
465 	return false;
466 out_invalid:
467 	nf_l4proto_log_invalid(skb, state->net, state->pf,
468 			       IPPROTO_DCCP, "%s", msg);
469 	return true;
470 }
471 
nf_conntrack_dccp_packet(struct nf_conn * ct,struct sk_buff * skb,unsigned int dataoff,enum ip_conntrack_info ctinfo,const struct nf_hook_state * state)472 int nf_conntrack_dccp_packet(struct nf_conn *ct, struct sk_buff *skb,
473 			     unsigned int dataoff,
474 			     enum ip_conntrack_info ctinfo,
475 			     const struct nf_hook_state *state)
476 {
477 	enum ip_conntrack_dir dir = CTINFO2DIR(ctinfo);
478 	struct dccp_hdr _dh, *dh;
479 	u_int8_t type, old_state, new_state;
480 	enum ct_dccp_roles role;
481 	unsigned int *timeouts;
482 
483 	dh = skb_header_pointer(skb, dataoff, sizeof(_dh), &_dh);
484 	if (!dh)
485 		return NF_DROP;
486 
487 	if (dccp_error(dh, skb, dataoff, state))
488 		return -NF_ACCEPT;
489 
490 	type = dh->dccph_type;
491 	if (!nf_ct_is_confirmed(ct) && !dccp_new(ct, skb, dh))
492 		return -NF_ACCEPT;
493 
494 	if (type == DCCP_PKT_RESET &&
495 	    !test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
496 		/* Tear down connection immediately if only reply is a RESET */
497 		nf_ct_kill_acct(ct, ctinfo, skb);
498 		return NF_ACCEPT;
499 	}
500 
501 	spin_lock_bh(&ct->lock);
502 
503 	role = ct->proto.dccp.role[dir];
504 	old_state = ct->proto.dccp.state;
505 	new_state = dccp_state_table[role][type][old_state];
506 
507 	switch (new_state) {
508 	case CT_DCCP_REQUEST:
509 		if (old_state == CT_DCCP_TIMEWAIT &&
510 		    role == CT_DCCP_ROLE_SERVER) {
511 			/* Reincarnation in the reverse direction: reopen and
512 			 * reverse client/server roles. */
513 			ct->proto.dccp.role[dir] = CT_DCCP_ROLE_CLIENT;
514 			ct->proto.dccp.role[!dir] = CT_DCCP_ROLE_SERVER;
515 		}
516 		break;
517 	case CT_DCCP_RESPOND:
518 		if (old_state == CT_DCCP_REQUEST)
519 			ct->proto.dccp.handshake_seq = dccp_hdr_seq(dh);
520 		break;
521 	case CT_DCCP_PARTOPEN:
522 		if (old_state == CT_DCCP_RESPOND &&
523 		    type == DCCP_PKT_ACK &&
524 		    dccp_ack_seq(dh) == ct->proto.dccp.handshake_seq)
525 			set_bit(IPS_ASSURED_BIT, &ct->status);
526 		break;
527 	case CT_DCCP_IGNORE:
528 		/*
529 		 * Connection tracking might be out of sync, so we ignore
530 		 * packets that might establish a new connection and resync
531 		 * if the server responds with a valid Response.
532 		 */
533 		if (ct->proto.dccp.last_dir == !dir &&
534 		    ct->proto.dccp.last_pkt == DCCP_PKT_REQUEST &&
535 		    type == DCCP_PKT_RESPONSE) {
536 			ct->proto.dccp.role[!dir] = CT_DCCP_ROLE_CLIENT;
537 			ct->proto.dccp.role[dir] = CT_DCCP_ROLE_SERVER;
538 			ct->proto.dccp.handshake_seq = dccp_hdr_seq(dh);
539 			new_state = CT_DCCP_RESPOND;
540 			break;
541 		}
542 		ct->proto.dccp.last_dir = dir;
543 		ct->proto.dccp.last_pkt = type;
544 
545 		spin_unlock_bh(&ct->lock);
546 		nf_ct_l4proto_log_invalid(skb, ct, "%s", "invalid packet");
547 		return NF_ACCEPT;
548 	case CT_DCCP_INVALID:
549 		spin_unlock_bh(&ct->lock);
550 		nf_ct_l4proto_log_invalid(skb, ct, "%s", "invalid state transition");
551 		return -NF_ACCEPT;
552 	}
553 
554 	ct->proto.dccp.last_dir = dir;
555 	ct->proto.dccp.last_pkt = type;
556 	ct->proto.dccp.state = new_state;
557 	spin_unlock_bh(&ct->lock);
558 
559 	if (new_state != old_state)
560 		nf_conntrack_event_cache(IPCT_PROTOINFO, ct);
561 
562 	timeouts = nf_ct_timeout_lookup(ct);
563 	if (!timeouts)
564 		timeouts = nf_dccp_pernet(nf_ct_net(ct))->dccp_timeout;
565 	nf_ct_refresh_acct(ct, ctinfo, skb, timeouts[new_state]);
566 
567 	return NF_ACCEPT;
568 }
569 
dccp_can_early_drop(const struct nf_conn * ct)570 static bool dccp_can_early_drop(const struct nf_conn *ct)
571 {
572 	switch (ct->proto.dccp.state) {
573 	case CT_DCCP_CLOSEREQ:
574 	case CT_DCCP_CLOSING:
575 	case CT_DCCP_TIMEWAIT:
576 		return true;
577 	default:
578 		break;
579 	}
580 
581 	return false;
582 }
583 
584 #ifdef CONFIG_NF_CONNTRACK_PROCFS
dccp_print_conntrack(struct seq_file * s,struct nf_conn * ct)585 static void dccp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
586 {
587 	seq_printf(s, "%s ", dccp_state_names[ct->proto.dccp.state]);
588 }
589 #endif
590 
591 #if IS_ENABLED(CONFIG_NF_CT_NETLINK)
dccp_to_nlattr(struct sk_buff * skb,struct nlattr * nla,struct nf_conn * ct)592 static int dccp_to_nlattr(struct sk_buff *skb, struct nlattr *nla,
593 			  struct nf_conn *ct)
594 {
595 	struct nlattr *nest_parms;
596 
597 	spin_lock_bh(&ct->lock);
598 	nest_parms = nla_nest_start(skb, CTA_PROTOINFO_DCCP);
599 	if (!nest_parms)
600 		goto nla_put_failure;
601 	if (nla_put_u8(skb, CTA_PROTOINFO_DCCP_STATE, ct->proto.dccp.state) ||
602 	    nla_put_u8(skb, CTA_PROTOINFO_DCCP_ROLE,
603 		       ct->proto.dccp.role[IP_CT_DIR_ORIGINAL]) ||
604 	    nla_put_be64(skb, CTA_PROTOINFO_DCCP_HANDSHAKE_SEQ,
605 			 cpu_to_be64(ct->proto.dccp.handshake_seq),
606 			 CTA_PROTOINFO_DCCP_PAD))
607 		goto nla_put_failure;
608 	nla_nest_end(skb, nest_parms);
609 	spin_unlock_bh(&ct->lock);
610 	return 0;
611 
612 nla_put_failure:
613 	spin_unlock_bh(&ct->lock);
614 	return -1;
615 }
616 
617 static const struct nla_policy dccp_nla_policy[CTA_PROTOINFO_DCCP_MAX + 1] = {
618 	[CTA_PROTOINFO_DCCP_STATE]	= { .type = NLA_U8 },
619 	[CTA_PROTOINFO_DCCP_ROLE]	= { .type = NLA_U8 },
620 	[CTA_PROTOINFO_DCCP_HANDSHAKE_SEQ] = { .type = NLA_U64 },
621 	[CTA_PROTOINFO_DCCP_PAD]	= { .type = NLA_UNSPEC },
622 };
623 
624 #define DCCP_NLATTR_SIZE ( \
625 	NLA_ALIGN(NLA_HDRLEN + 1) + \
626 	NLA_ALIGN(NLA_HDRLEN + 1) + \
627 	NLA_ALIGN(NLA_HDRLEN + sizeof(u64)) + \
628 	NLA_ALIGN(NLA_HDRLEN + 0))
629 
nlattr_to_dccp(struct nlattr * cda[],struct nf_conn * ct)630 static int nlattr_to_dccp(struct nlattr *cda[], struct nf_conn *ct)
631 {
632 	struct nlattr *attr = cda[CTA_PROTOINFO_DCCP];
633 	struct nlattr *tb[CTA_PROTOINFO_DCCP_MAX + 1];
634 	int err;
635 
636 	if (!attr)
637 		return 0;
638 
639 	err = nla_parse_nested_deprecated(tb, CTA_PROTOINFO_DCCP_MAX, attr,
640 					  dccp_nla_policy, NULL);
641 	if (err < 0)
642 		return err;
643 
644 	if (!tb[CTA_PROTOINFO_DCCP_STATE] ||
645 	    !tb[CTA_PROTOINFO_DCCP_ROLE] ||
646 	    nla_get_u8(tb[CTA_PROTOINFO_DCCP_ROLE]) > CT_DCCP_ROLE_MAX ||
647 	    nla_get_u8(tb[CTA_PROTOINFO_DCCP_STATE]) >= CT_DCCP_IGNORE) {
648 		return -EINVAL;
649 	}
650 
651 	spin_lock_bh(&ct->lock);
652 	ct->proto.dccp.state = nla_get_u8(tb[CTA_PROTOINFO_DCCP_STATE]);
653 	if (nla_get_u8(tb[CTA_PROTOINFO_DCCP_ROLE]) == CT_DCCP_ROLE_CLIENT) {
654 		ct->proto.dccp.role[IP_CT_DIR_ORIGINAL] = CT_DCCP_ROLE_CLIENT;
655 		ct->proto.dccp.role[IP_CT_DIR_REPLY] = CT_DCCP_ROLE_SERVER;
656 	} else {
657 		ct->proto.dccp.role[IP_CT_DIR_ORIGINAL] = CT_DCCP_ROLE_SERVER;
658 		ct->proto.dccp.role[IP_CT_DIR_REPLY] = CT_DCCP_ROLE_CLIENT;
659 	}
660 	if (tb[CTA_PROTOINFO_DCCP_HANDSHAKE_SEQ]) {
661 		ct->proto.dccp.handshake_seq =
662 		be64_to_cpu(nla_get_be64(tb[CTA_PROTOINFO_DCCP_HANDSHAKE_SEQ]));
663 	}
664 	spin_unlock_bh(&ct->lock);
665 	return 0;
666 }
667 #endif
668 
669 #ifdef CONFIG_NF_CONNTRACK_TIMEOUT
670 
671 #include <linux/netfilter/nfnetlink.h>
672 #include <linux/netfilter/nfnetlink_cttimeout.h>
673 
dccp_timeout_nlattr_to_obj(struct nlattr * tb[],struct net * net,void * data)674 static int dccp_timeout_nlattr_to_obj(struct nlattr *tb[],
675 				      struct net *net, void *data)
676 {
677 	struct nf_dccp_net *dn = nf_dccp_pernet(net);
678 	unsigned int *timeouts = data;
679 	int i;
680 
681 	if (!timeouts)
682 		 timeouts = dn->dccp_timeout;
683 
684 	/* set default DCCP timeouts. */
685 	for (i=0; i<CT_DCCP_MAX; i++)
686 		timeouts[i] = dn->dccp_timeout[i];
687 
688 	/* there's a 1:1 mapping between attributes and protocol states. */
689 	for (i=CTA_TIMEOUT_DCCP_UNSPEC+1; i<CTA_TIMEOUT_DCCP_MAX+1; i++) {
690 		if (tb[i]) {
691 			timeouts[i] = ntohl(nla_get_be32(tb[i])) * HZ;
692 		}
693 	}
694 
695 	timeouts[CTA_TIMEOUT_DCCP_UNSPEC] = timeouts[CTA_TIMEOUT_DCCP_REQUEST];
696 	return 0;
697 }
698 
699 static int
dccp_timeout_obj_to_nlattr(struct sk_buff * skb,const void * data)700 dccp_timeout_obj_to_nlattr(struct sk_buff *skb, const void *data)
701 {
702         const unsigned int *timeouts = data;
703 	int i;
704 
705 	for (i=CTA_TIMEOUT_DCCP_UNSPEC+1; i<CTA_TIMEOUT_DCCP_MAX+1; i++) {
706 		if (nla_put_be32(skb, i, htonl(timeouts[i] / HZ)))
707 			goto nla_put_failure;
708 	}
709 	return 0;
710 
711 nla_put_failure:
712 	return -ENOSPC;
713 }
714 
715 static const struct nla_policy
716 dccp_timeout_nla_policy[CTA_TIMEOUT_DCCP_MAX+1] = {
717 	[CTA_TIMEOUT_DCCP_REQUEST]	= { .type = NLA_U32 },
718 	[CTA_TIMEOUT_DCCP_RESPOND]	= { .type = NLA_U32 },
719 	[CTA_TIMEOUT_DCCP_PARTOPEN]	= { .type = NLA_U32 },
720 	[CTA_TIMEOUT_DCCP_OPEN]		= { .type = NLA_U32 },
721 	[CTA_TIMEOUT_DCCP_CLOSEREQ]	= { .type = NLA_U32 },
722 	[CTA_TIMEOUT_DCCP_CLOSING]	= { .type = NLA_U32 },
723 	[CTA_TIMEOUT_DCCP_TIMEWAIT]	= { .type = NLA_U32 },
724 };
725 #endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
726 
nf_conntrack_dccp_init_net(struct net * net)727 void nf_conntrack_dccp_init_net(struct net *net)
728 {
729 	struct nf_dccp_net *dn = nf_dccp_pernet(net);
730 
731 	/* default values */
732 	dn->dccp_loose = 1;
733 	dn->dccp_timeout[CT_DCCP_REQUEST]	= 2 * DCCP_MSL;
734 	dn->dccp_timeout[CT_DCCP_RESPOND]	= 4 * DCCP_MSL;
735 	dn->dccp_timeout[CT_DCCP_PARTOPEN]	= 4 * DCCP_MSL;
736 	dn->dccp_timeout[CT_DCCP_OPEN]		= 12 * 3600 * HZ;
737 	dn->dccp_timeout[CT_DCCP_CLOSEREQ]	= 64 * HZ;
738 	dn->dccp_timeout[CT_DCCP_CLOSING]	= 64 * HZ;
739 	dn->dccp_timeout[CT_DCCP_TIMEWAIT]	= 2 * DCCP_MSL;
740 
741 	/* timeouts[0] is unused, make it same as SYN_SENT so
742 	 * ->timeouts[0] contains 'new' timeout, like udp or icmp.
743 	 */
744 	dn->dccp_timeout[CT_DCCP_NONE] = dn->dccp_timeout[CT_DCCP_REQUEST];
745 }
746 
747 const struct nf_conntrack_l4proto nf_conntrack_l4proto_dccp = {
748 	.l4proto		= IPPROTO_DCCP,
749 	.can_early_drop		= dccp_can_early_drop,
750 #ifdef CONFIG_NF_CONNTRACK_PROCFS
751 	.print_conntrack	= dccp_print_conntrack,
752 #endif
753 #if IS_ENABLED(CONFIG_NF_CT_NETLINK)
754 	.nlattr_size		= DCCP_NLATTR_SIZE,
755 	.to_nlattr		= dccp_to_nlattr,
756 	.from_nlattr		= nlattr_to_dccp,
757 	.tuple_to_nlattr	= nf_ct_port_tuple_to_nlattr,
758 	.nlattr_tuple_size	= nf_ct_port_nlattr_tuple_size,
759 	.nlattr_to_tuple	= nf_ct_port_nlattr_to_tuple,
760 	.nla_policy		= nf_ct_port_nla_policy,
761 #endif
762 #ifdef CONFIG_NF_CONNTRACK_TIMEOUT
763 	.ctnl_timeout		= {
764 		.nlattr_to_obj	= dccp_timeout_nlattr_to_obj,
765 		.obj_to_nlattr	= dccp_timeout_obj_to_nlattr,
766 		.nlattr_max	= CTA_TIMEOUT_DCCP_MAX,
767 		.obj_size	= sizeof(unsigned int) * CT_DCCP_MAX,
768 		.nla_policy	= dccp_timeout_nla_policy,
769 	},
770 #endif /* CONFIG_NF_CONNTRACK_TIMEOUT */
771 };
772