1
2
3
4
5
6
7
8
9
10
11
12
13#include <linux/dccp.h>
14#include <linux/skbuff.h>
15#include <linux/slab.h>
16
17#include <net/sock.h>
18
19#include "ackvec.h"
20#include "ccid.h"
21#include "dccp.h"
22
23
24int sysctl_dccp_sync_ratelimit __read_mostly = HZ / 8;
25
26static void dccp_enqueue_skb(struct sock *sk, struct sk_buff *skb)
27{
28 __skb_pull(skb, dccp_hdr(skb)->dccph_doff * 4);
29 __skb_queue_tail(&sk->sk_receive_queue, skb);
30 skb_set_owner_r(skb, sk);
31 sk->sk_data_ready(sk);
32}
33
34static void dccp_fin(struct sock *sk, struct sk_buff *skb)
35{
36
37
38
39
40
41
42 sk->sk_shutdown = SHUTDOWN_MASK;
43 sock_set_flag(sk, SOCK_DONE);
44 dccp_enqueue_skb(sk, skb);
45}
46
47static int dccp_rcv_close(struct sock *sk, struct sk_buff *skb)
48{
49 int queued = 0;
50
51 switch (sk->sk_state) {
52
53
54
55
56
57
58 case DCCP_CLOSING:
59
60
61
62
63
64
65
66
67
68
69 if (dccp_sk(sk)->dccps_role != DCCP_ROLE_CLIENT)
70 break;
71
72 case DCCP_REQUESTING:
73 case DCCP_ACTIVE_CLOSEREQ:
74 dccp_send_reset(sk, DCCP_RESET_CODE_CLOSED);
75 dccp_done(sk);
76 break;
77 case DCCP_OPEN:
78 case DCCP_PARTOPEN:
79
80 queued = 1;
81 dccp_fin(sk, skb);
82 dccp_set_state(sk, DCCP_PASSIVE_CLOSE);
83
84 case DCCP_PASSIVE_CLOSE:
85
86
87
88 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_HUP);
89 }
90 return queued;
91}
92
93static int dccp_rcv_closereq(struct sock *sk, struct sk_buff *skb)
94{
95 int queued = 0;
96
97
98
99
100
101
102
103 if (dccp_sk(sk)->dccps_role != DCCP_ROLE_CLIENT) {
104 dccp_send_sync(sk, DCCP_SKB_CB(skb)->dccpd_seq, DCCP_PKT_SYNC);
105 return queued;
106 }
107
108
109 switch (sk->sk_state) {
110 case DCCP_REQUESTING:
111 dccp_send_close(sk, 0);
112 dccp_set_state(sk, DCCP_CLOSING);
113 break;
114 case DCCP_OPEN:
115 case DCCP_PARTOPEN:
116
117 queued = 1;
118 dccp_fin(sk, skb);
119 dccp_set_state(sk, DCCP_PASSIVE_CLOSEREQ);
120
121 case DCCP_PASSIVE_CLOSEREQ:
122 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_HUP);
123 }
124 return queued;
125}
126
127static u16 dccp_reset_code_convert(const u8 code)
128{
129 static const u16 error_code[] = {
130 [DCCP_RESET_CODE_CLOSED] = 0,
131 [DCCP_RESET_CODE_UNSPECIFIED] = 0,
132 [DCCP_RESET_CODE_ABORTED] = ECONNRESET,
133
134 [DCCP_RESET_CODE_NO_CONNECTION] = ECONNREFUSED,
135 [DCCP_RESET_CODE_CONNECTION_REFUSED] = ECONNREFUSED,
136 [DCCP_RESET_CODE_TOO_BUSY] = EUSERS,
137 [DCCP_RESET_CODE_AGGRESSION_PENALTY] = EDQUOT,
138
139 [DCCP_RESET_CODE_PACKET_ERROR] = ENOMSG,
140 [DCCP_RESET_CODE_BAD_INIT_COOKIE] = EBADR,
141 [DCCP_RESET_CODE_BAD_SERVICE_CODE] = EBADRQC,
142 [DCCP_RESET_CODE_OPTION_ERROR] = EILSEQ,
143 [DCCP_RESET_CODE_MANDATORY_ERROR] = EOPNOTSUPP,
144 };
145
146 return code >= DCCP_MAX_RESET_CODES ? 0 : error_code[code];
147}
148
149static void dccp_rcv_reset(struct sock *sk, struct sk_buff *skb)
150{
151 u16 err = dccp_reset_code_convert(dccp_hdr_reset(skb)->dccph_reset_code);
152
153 sk->sk_err = err;
154
155
156 dccp_fin(sk, skb);
157
158 if (err && !sock_flag(sk, SOCK_DEAD))
159 sk_wake_async(sk, SOCK_WAKE_IO, POLL_ERR);
160 dccp_time_wait(sk, DCCP_TIME_WAIT, 0);
161}
162
163static void dccp_handle_ackvec_processing(struct sock *sk, struct sk_buff *skb)
164{
165 struct dccp_ackvec *av = dccp_sk(sk)->dccps_hc_rx_ackvec;
166
167 if (av == NULL)
168 return;
169 if (DCCP_SKB_CB(skb)->dccpd_ack_seq != DCCP_PKT_WITHOUT_ACK_SEQ)
170 dccp_ackvec_clear_state(av, DCCP_SKB_CB(skb)->dccpd_ack_seq);
171 dccp_ackvec_input(av, skb);
172}
173
174static void dccp_deliver_input_to_ccids(struct sock *sk, struct sk_buff *skb)
175{
176 const struct dccp_sock *dp = dccp_sk(sk);
177
178
179 if (!(sk->sk_shutdown & RCV_SHUTDOWN))
180 ccid_hc_rx_packet_recv(dp->dccps_hc_rx_ccid, sk, skb);
181
182
183
184
185 if (sk->sk_write_queue.qlen > 0 || !(sk->sk_shutdown & SEND_SHUTDOWN))
186 ccid_hc_tx_packet_recv(dp->dccps_hc_tx_ccid, sk, skb);
187}
188
189static int dccp_check_seqno(struct sock *sk, struct sk_buff *skb)
190{
191 const struct dccp_hdr *dh = dccp_hdr(skb);
192 struct dccp_sock *dp = dccp_sk(sk);
193 u64 lswl, lawl, seqno = DCCP_SKB_CB(skb)->dccpd_seq,
194 ackno = DCCP_SKB_CB(skb)->dccpd_ack_seq;
195
196
197
198
199
200
201
202
203
204
205
206
207
208 if (dh->dccph_type == DCCP_PKT_SYNC ||
209 dh->dccph_type == DCCP_PKT_SYNCACK) {
210 if (between48(ackno, dp->dccps_awl, dp->dccps_awh) &&
211 dccp_delta_seqno(dp->dccps_swl, seqno) >= 0)
212 dccp_update_gsr(sk, seqno);
213 else
214 return -1;
215 }
216
217
218
219
220
221
222
223
224
225
226
227
228 lswl = dp->dccps_swl;
229 lawl = dp->dccps_awl;
230
231 if (dh->dccph_type == DCCP_PKT_CLOSEREQ ||
232 dh->dccph_type == DCCP_PKT_CLOSE ||
233 dh->dccph_type == DCCP_PKT_RESET) {
234 lswl = ADD48(dp->dccps_gsr, 1);
235 lawl = dp->dccps_gar;
236 }
237
238 if (between48(seqno, lswl, dp->dccps_swh) &&
239 (ackno == DCCP_PKT_WITHOUT_ACK_SEQ ||
240 between48(ackno, lawl, dp->dccps_awh))) {
241 dccp_update_gsr(sk, seqno);
242
243 if (dh->dccph_type != DCCP_PKT_SYNC &&
244 ackno != DCCP_PKT_WITHOUT_ACK_SEQ &&
245 after48(ackno, dp->dccps_gar))
246 dp->dccps_gar = ackno;
247 } else {
248 unsigned long now = jiffies;
249
250
251
252
253
254
255
256
257
258
259
260
261 if (time_before(now, (dp->dccps_rate_last +
262 sysctl_dccp_sync_ratelimit)))
263 return -1;
264
265 DCCP_WARN("Step 6 failed for %s packet, "
266 "(LSWL(%llu) <= P.seqno(%llu) <= S.SWH(%llu)) and "
267 "(P.ackno %s or LAWL(%llu) <= P.ackno(%llu) <= S.AWH(%llu), "
268 "sending SYNC...\n", dccp_packet_name(dh->dccph_type),
269 (unsigned long long) lswl, (unsigned long long) seqno,
270 (unsigned long long) dp->dccps_swh,
271 (ackno == DCCP_PKT_WITHOUT_ACK_SEQ) ? "doesn't exist"
272 : "exists",
273 (unsigned long long) lawl, (unsigned long long) ackno,
274 (unsigned long long) dp->dccps_awh);
275
276 dp->dccps_rate_last = now;
277
278 if (dh->dccph_type == DCCP_PKT_RESET)
279 seqno = dp->dccps_gsr;
280 dccp_send_sync(sk, seqno, DCCP_PKT_SYNC);
281 return -1;
282 }
283
284 return 0;
285}
286
287static int __dccp_rcv_established(struct sock *sk, struct sk_buff *skb,
288 const struct dccp_hdr *dh, const unsigned int len)
289{
290 struct dccp_sock *dp = dccp_sk(sk);
291
292 switch (dccp_hdr(skb)->dccph_type) {
293 case DCCP_PKT_DATAACK:
294 case DCCP_PKT_DATA:
295
296
297
298
299
300 dccp_enqueue_skb(sk, skb);
301 return 0;
302 case DCCP_PKT_ACK:
303 goto discard;
304 case DCCP_PKT_RESET:
305
306
307
308
309
310
311
312
313 dccp_rcv_reset(sk, skb);
314 return 0;
315 case DCCP_PKT_CLOSEREQ:
316 if (dccp_rcv_closereq(sk, skb))
317 return 0;
318 goto discard;
319 case DCCP_PKT_CLOSE:
320 if (dccp_rcv_close(sk, skb))
321 return 0;
322 goto discard;
323 case DCCP_PKT_REQUEST:
324
325
326
327
328
329
330
331
332
333
334
335 if (dp->dccps_role != DCCP_ROLE_LISTEN)
336 goto send_sync;
337 goto check_seq;
338 case DCCP_PKT_RESPONSE:
339 if (dp->dccps_role != DCCP_ROLE_CLIENT)
340 goto send_sync;
341check_seq:
342 if (dccp_delta_seqno(dp->dccps_osr,
343 DCCP_SKB_CB(skb)->dccpd_seq) >= 0) {
344send_sync:
345 dccp_send_sync(sk, DCCP_SKB_CB(skb)->dccpd_seq,
346 DCCP_PKT_SYNC);
347 }
348 break;
349 case DCCP_PKT_SYNC:
350 dccp_send_sync(sk, DCCP_SKB_CB(skb)->dccpd_seq,
351 DCCP_PKT_SYNCACK);
352
353
354
355
356
357
358
359 goto discard;
360 }
361
362 DCCP_INC_STATS(DCCP_MIB_INERRS);
363discard:
364 __kfree_skb(skb);
365 return 0;
366}
367
368int dccp_rcv_established(struct sock *sk, struct sk_buff *skb,
369 const struct dccp_hdr *dh, const unsigned int len)
370{
371 if (dccp_check_seqno(sk, skb))
372 goto discard;
373
374 if (dccp_parse_options(sk, NULL, skb))
375 return 1;
376
377 dccp_handle_ackvec_processing(sk, skb);
378 dccp_deliver_input_to_ccids(sk, skb);
379
380 return __dccp_rcv_established(sk, skb, dh, len);
381discard:
382 __kfree_skb(skb);
383 return 0;
384}
385
386EXPORT_SYMBOL_GPL(dccp_rcv_established);
387
388static int dccp_rcv_request_sent_state_process(struct sock *sk,
389 struct sk_buff *skb,
390 const struct dccp_hdr *dh,
391 const unsigned int len)
392{
393
394
395
396
397
398
399
400
401
402
403
404 if (dh->dccph_type == DCCP_PKT_RESPONSE) {
405 const struct inet_connection_sock *icsk = inet_csk(sk);
406 struct dccp_sock *dp = dccp_sk(sk);
407 long tstamp = dccp_timestamp();
408
409 if (!between48(DCCP_SKB_CB(skb)->dccpd_ack_seq,
410 dp->dccps_awl, dp->dccps_awh)) {
411 dccp_pr_debug("invalid ackno: S.AWL=%llu, "
412 "P.ackno=%llu, S.AWH=%llu\n",
413 (unsigned long long)dp->dccps_awl,
414 (unsigned long long)DCCP_SKB_CB(skb)->dccpd_ack_seq,
415 (unsigned long long)dp->dccps_awh);
416 goto out_invalid_packet;
417 }
418
419
420
421
422
423
424 if (dccp_parse_options(sk, NULL, skb))
425 return 1;
426
427
428 if (likely(dp->dccps_options_received.dccpor_timestamp_echo))
429 dp->dccps_syn_rtt = dccp_sample_rtt(sk, 10 * (tstamp -
430 dp->dccps_options_received.dccpor_timestamp_echo));
431
432
433 inet_csk_clear_xmit_timer(sk, ICSK_TIME_RETRANS);
434 WARN_ON(sk->sk_send_head == NULL);
435 kfree_skb(sk->sk_send_head);
436 sk->sk_send_head = NULL;
437
438
439
440
441
442
443
444
445 dp->dccps_gsr = dp->dccps_isr = DCCP_SKB_CB(skb)->dccpd_seq;
446
447 dccp_sync_mss(sk, icsk->icsk_pmtu_cookie);
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464 dccp_set_state(sk, DCCP_PARTOPEN);
465
466
467
468
469
470
471
472 if (dccp_feat_activate_values(sk, &dp->dccps_featneg))
473 goto unable_to_proceed;
474
475
476 icsk->icsk_af_ops->rebuild_header(sk);
477
478 if (!sock_flag(sk, SOCK_DEAD)) {
479 sk->sk_state_change(sk);
480 sk_wake_async(sk, SOCK_WAKE_IO, POLL_OUT);
481 }
482
483 if (sk->sk_write_pending || icsk->icsk_ack.pingpong ||
484 icsk->icsk_accept_queue.rskq_defer_accept) {
485
486
487
488
489
490
491
492
493
494
495
496
497
498 __kfree_skb(skb);
499 return 0;
500 }
501 dccp_send_ack(sk);
502 return -1;
503 }
504
505out_invalid_packet:
506
507 DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_PACKET_ERROR;
508 return 1;
509
510unable_to_proceed:
511 DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_ABORTED;
512
513
514
515
516 dccp_set_state(sk, DCCP_CLOSED);
517 sk->sk_err = ECOMM;
518 return 1;
519}
520
521static int dccp_rcv_respond_partopen_state_process(struct sock *sk,
522 struct sk_buff *skb,
523 const struct dccp_hdr *dh,
524 const unsigned int len)
525{
526 struct dccp_sock *dp = dccp_sk(sk);
527 u32 sample = dp->dccps_options_received.dccpor_timestamp_echo;
528 int queued = 0;
529
530 switch (dh->dccph_type) {
531 case DCCP_PKT_RESET:
532 inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK);
533 break;
534 case DCCP_PKT_DATA:
535 if (sk->sk_state == DCCP_RESPOND)
536 break;
537 case DCCP_PKT_DATAACK:
538 case DCCP_PKT_ACK:
539
540
541
542
543
544
545
546
547
548
549 if (sk->sk_state == DCCP_PARTOPEN)
550 inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK);
551
552
553 if (likely(sample)) {
554 long delta = dccp_timestamp() - sample;
555
556 dp->dccps_syn_rtt = dccp_sample_rtt(sk, 10 * delta);
557 }
558
559 dp->dccps_osr = DCCP_SKB_CB(skb)->dccpd_seq;
560 dccp_set_state(sk, DCCP_OPEN);
561
562 if (dh->dccph_type == DCCP_PKT_DATAACK ||
563 dh->dccph_type == DCCP_PKT_DATA) {
564 __dccp_rcv_established(sk, skb, dh, len);
565 queued = 1;
566
567 }
568 break;
569 }
570
571 return queued;
572}
573
574int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
575 struct dccp_hdr *dh, unsigned int len)
576{
577 struct dccp_sock *dp = dccp_sk(sk);
578 struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
579 const int old_state = sk->sk_state;
580 bool acceptable;
581 int queued = 0;
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605 if (sk->sk_state == DCCP_LISTEN) {
606 if (dh->dccph_type == DCCP_PKT_REQUEST) {
607
608
609
610 local_bh_disable();
611 acceptable = inet_csk(sk)->icsk_af_ops->conn_request(sk, skb) >= 0;
612 local_bh_enable();
613 if (!acceptable)
614 return 1;
615 consume_skb(skb);
616 return 0;
617 }
618 if (dh->dccph_type == DCCP_PKT_RESET)
619 goto discard;
620
621
622 dcb->dccpd_reset_code = DCCP_RESET_CODE_NO_CONNECTION;
623 return 1;
624 } else if (sk->sk_state == DCCP_CLOSED) {
625 dcb->dccpd_reset_code = DCCP_RESET_CODE_NO_CONNECTION;
626 return 1;
627 }
628
629
630 if (sk->sk_state != DCCP_REQUESTING && dccp_check_seqno(sk, skb))
631 goto discard;
632
633
634
635
636
637
638
639
640
641 if ((dp->dccps_role != DCCP_ROLE_CLIENT &&
642 dh->dccph_type == DCCP_PKT_RESPONSE) ||
643 (dp->dccps_role == DCCP_ROLE_CLIENT &&
644 dh->dccph_type == DCCP_PKT_REQUEST) ||
645 (sk->sk_state == DCCP_RESPOND && dh->dccph_type == DCCP_PKT_DATA)) {
646 dccp_send_sync(sk, dcb->dccpd_seq, DCCP_PKT_SYNC);
647 goto discard;
648 }
649
650
651 if (dccp_parse_options(sk, NULL, skb))
652 return 1;
653
654
655
656
657
658
659
660
661
662 if (dh->dccph_type == DCCP_PKT_RESET) {
663 dccp_rcv_reset(sk, skb);
664 return 0;
665 } else if (dh->dccph_type == DCCP_PKT_CLOSEREQ) {
666 if (dccp_rcv_closereq(sk, skb))
667 return 0;
668 goto discard;
669 } else if (dh->dccph_type == DCCP_PKT_CLOSE) {
670 if (dccp_rcv_close(sk, skb))
671 return 0;
672 goto discard;
673 }
674
675 switch (sk->sk_state) {
676 case DCCP_REQUESTING:
677 queued = dccp_rcv_request_sent_state_process(sk, skb, dh, len);
678 if (queued >= 0)
679 return queued;
680
681 __kfree_skb(skb);
682 return 0;
683
684 case DCCP_PARTOPEN:
685
686 dccp_handle_ackvec_processing(sk, skb);
687 dccp_deliver_input_to_ccids(sk, skb);
688
689 case DCCP_RESPOND:
690 queued = dccp_rcv_respond_partopen_state_process(sk, skb,
691 dh, len);
692 break;
693 }
694
695 if (dh->dccph_type == DCCP_PKT_ACK ||
696 dh->dccph_type == DCCP_PKT_DATAACK) {
697 switch (old_state) {
698 case DCCP_PARTOPEN:
699 sk->sk_state_change(sk);
700 sk_wake_async(sk, SOCK_WAKE_IO, POLL_OUT);
701 break;
702 }
703 } else if (unlikely(dh->dccph_type == DCCP_PKT_SYNC)) {
704 dccp_send_sync(sk, dcb->dccpd_seq, DCCP_PKT_SYNCACK);
705 goto discard;
706 }
707
708 if (!queued) {
709discard:
710 __kfree_skb(skb);
711 }
712 return 0;
713}
714
715EXPORT_SYMBOL_GPL(dccp_rcv_state_process);
716
717
718
719
720
721
722
723
724u32 dccp_sample_rtt(struct sock *sk, long delta)
725{
726
727 delta -= dccp_sk(sk)->dccps_options_received.dccpor_elapsed_time * 10;
728
729 if (unlikely(delta <= 0)) {
730 DCCP_WARN("unusable RTT sample %ld, using min\n", delta);
731 return DCCP_SANE_RTT_MIN;
732 }
733 if (unlikely(delta > DCCP_SANE_RTT_MAX)) {
734 DCCP_WARN("RTT sample %ld too large, using max\n", delta);
735 return DCCP_SANE_RTT_MAX;
736 }
737
738 return delta;
739}
740