4 * An implementation of the DCCP protocol
5 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
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.
13 #include <linux/config.h>
14 #include <linux/dccp.h>
15 #include <linux/icmp.h>
16 #include <linux/module.h>
17 #include <linux/skbuff.h>
18 #include <linux/random.h>
21 #include <net/inet_hashtables.h>
23 #include <net/tcp_states.h>
29 struct inet_hashinfo __cacheline_aligned dccp_hashinfo = {
30 .lhash_lock = RW_LOCK_UNLOCKED,
31 .lhash_users = ATOMIC_INIT(0),
32 .lhash_wait = __WAIT_QUEUE_HEAD_INITIALIZER(dccp_hashinfo.lhash_wait),
33 .portalloc_lock = SPIN_LOCK_UNLOCKED,
34 .port_rover = 1024 - 1,
37 EXPORT_SYMBOL_GPL(dccp_hashinfo);
39 static int dccp_v4_get_port(struct sock *sk, const unsigned short snum)
41 return inet_csk_get_port(&dccp_hashinfo, sk, snum);
44 static void dccp_v4_hash(struct sock *sk)
46 inet_hash(&dccp_hashinfo, sk);
49 static void dccp_v4_unhash(struct sock *sk)
51 inet_unhash(&dccp_hashinfo, sk);
54 /* called with local bh disabled */
55 static int __dccp_v4_check_established(struct sock *sk, const __u16 lport,
56 struct inet_timewait_sock **twp)
58 struct inet_sock *inet = inet_sk(sk);
59 const u32 daddr = inet->rcv_saddr;
60 const u32 saddr = inet->daddr;
61 const int dif = sk->sk_bound_dev_if;
62 INET_ADDR_COOKIE(acookie, saddr, daddr)
63 const __u32 ports = INET_COMBINED_PORTS(inet->dport, lport);
64 const int hash = inet_ehashfn(daddr, lport, saddr, inet->dport,
65 dccp_hashinfo.ehash_size);
66 struct inet_ehash_bucket *head = &dccp_hashinfo.ehash[hash];
67 const struct sock *sk2;
68 const struct hlist_node *node;
69 struct inet_timewait_sock *tw;
71 write_lock(&head->lock);
73 /* Check TIME-WAIT sockets first. */
74 sk_for_each(sk2, node, &(head + dccp_hashinfo.ehash_size)->chain) {
77 if (INET_TW_MATCH(sk2, acookie, saddr, daddr, ports, dif))
82 /* And established part... */
83 sk_for_each(sk2, node, &head->chain) {
84 if (INET_MATCH(sk2, acookie, saddr, daddr, ports, dif))
88 /* Must record num and sport now. Otherwise we will see
89 * in hash table socket with a funny identity. */
91 inet->sport = htons(lport);
92 sk->sk_hashent = hash;
93 BUG_TRAP(sk_unhashed(sk));
94 __sk_add_node(sk, &head->chain);
95 sock_prot_inc_use(sk->sk_prot);
96 write_unlock(&head->lock);
100 NET_INC_STATS_BH(LINUX_MIB_TIMEWAITRECYCLED);
101 } else if (tw != NULL) {
102 /* Silly. Should hash-dance instead... */
103 inet_twsk_deschedule(tw, &dccp_death_row);
104 NET_INC_STATS_BH(LINUX_MIB_TIMEWAITRECYCLED);
112 write_unlock(&head->lock);
113 return -EADDRNOTAVAIL;
117 * Bind a port for a connect operation and hash it.
119 static int dccp_v4_hash_connect(struct sock *sk)
121 const unsigned short snum = inet_sk(sk)->num;
122 struct inet_bind_hashbucket *head;
123 struct inet_bind_bucket *tb;
128 int low = sysctl_local_port_range[0];
129 int high = sysctl_local_port_range[1];
130 int remaining = (high - low) + 1;
131 struct hlist_node *node;
132 struct inet_timewait_sock *tw = NULL;
136 /* TODO. Actually it is not so bad idea to remove
137 * dccp_hashinfo.portalloc_lock before next submission to
139 * As soon as we touch this place at all it is time to think.
141 * Now it protects single _advisory_ variable
142 * dccp_hashinfo.port_rover, hence it is mostly useless.
143 * Code will work nicely if we just delete it, but
144 * I am afraid in contented case it will work not better or
145 * even worse: another cpu just will hit the same bucket
147 * So some cpu salt could remove both contention and
148 * memory pingpong. Any ideas how to do this in a nice way?
150 spin_lock(&dccp_hashinfo.portalloc_lock);
151 rover = dccp_hashinfo.port_rover;
155 if ((rover < low) || (rover > high))
157 head = &dccp_hashinfo.bhash[inet_bhashfn(rover,
158 dccp_hashinfo.bhash_size)];
159 spin_lock(&head->lock);
161 /* Does not bother with rcv_saddr checks,
162 * because the established check is already
165 inet_bind_bucket_for_each(tb, node, &head->chain) {
166 if (tb->port == rover) {
167 BUG_TRAP(!hlist_empty(&tb->owners));
168 if (tb->fastreuse >= 0)
170 if (!__dccp_v4_check_established(sk,
178 tb = inet_bind_bucket_create(dccp_hashinfo.bind_bucket_cachep,
181 spin_unlock(&head->lock);
188 spin_unlock(&head->lock);
189 } while (--remaining > 0);
190 dccp_hashinfo.port_rover = rover;
191 spin_unlock(&dccp_hashinfo.portalloc_lock);
195 return -EADDRNOTAVAIL;
198 /* All locks still held and bhs disabled */
199 dccp_hashinfo.port_rover = rover;
200 spin_unlock(&dccp_hashinfo.portalloc_lock);
202 inet_bind_hash(sk, tb, rover);
203 if (sk_unhashed(sk)) {
204 inet_sk(sk)->sport = htons(rover);
205 __inet_hash(&dccp_hashinfo, sk, 0);
207 spin_unlock(&head->lock);
210 inet_twsk_deschedule(tw, &dccp_death_row);
218 head = &dccp_hashinfo.bhash[inet_bhashfn(snum,
219 dccp_hashinfo.bhash_size)];
220 tb = inet_csk(sk)->icsk_bind_hash;
221 spin_lock_bh(&head->lock);
222 if (sk_head(&tb->owners) == sk && sk->sk_bind_node.next == NULL) {
223 __inet_hash(&dccp_hashinfo, sk, 0);
224 spin_unlock_bh(&head->lock);
227 spin_unlock(&head->lock);
228 /* No definite answer... Walk to established hash table */
229 ret = __dccp_v4_check_established(sk, snum, NULL);
236 static int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr,
239 struct inet_sock *inet = inet_sk(sk);
240 struct dccp_sock *dp = dccp_sk(sk);
241 const struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
247 dp->dccps_role = DCCP_ROLE_CLIENT;
249 if (dccp_service_not_initialized(sk))
252 if (addr_len < sizeof(struct sockaddr_in))
255 if (usin->sin_family != AF_INET)
256 return -EAFNOSUPPORT;
258 nexthop = daddr = usin->sin_addr.s_addr;
259 if (inet->opt != NULL && inet->opt->srr) {
262 nexthop = inet->opt->faddr;
265 tmp = ip_route_connect(&rt, nexthop, inet->saddr,
266 RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
268 inet->sport, usin->sin_port, sk);
272 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
277 if (inet->opt == NULL || !inet->opt->srr)
280 if (inet->saddr == 0)
281 inet->saddr = rt->rt_src;
282 inet->rcv_saddr = inet->saddr;
284 inet->dport = usin->sin_port;
287 dp->dccps_ext_header_len = 0;
288 if (inet->opt != NULL)
289 dp->dccps_ext_header_len = inet->opt->optlen;
291 * Socket identity is still unknown (sport may be zero).
292 * However we set state to DCCP_REQUESTING and not releasing socket
293 * lock select source port, enter ourselves into the hash tables and
294 * complete initialization after this.
296 dccp_set_state(sk, DCCP_REQUESTING);
297 err = dccp_v4_hash_connect(sk);
301 err = ip_route_newports(&rt, inet->sport, inet->dport, sk);
305 /* OK, now commit destination to socket. */
306 sk_setup_caps(sk, &rt->u.dst);
309 dp->dccps_iss = secure_dccp_sequence_number(inet->saddr,
313 dccp_update_gss(sk, dp->dccps_iss);
316 * SWL and AWL are initially adjusted so that they are not less than
317 * the initial Sequence Numbers received and sent, respectively:
318 * SWL := max(GSR + 1 - floor(W/4), ISR),
319 * AWL := max(GSS - W' + 1, ISS).
320 * These adjustments MUST be applied only at the beginning of the
323 dccp_set_seqno(&dp->dccps_awl, max48(dp->dccps_awl, dp->dccps_iss));
325 inet->id = dp->dccps_iss ^ jiffies;
327 err = dccp_connect(sk);
335 * This unhashes the socket and releases the local port, if necessary.
337 dccp_set_state(sk, DCCP_CLOSED);
339 sk->sk_route_caps = 0;
345 * This routine does path mtu discovery as defined in RFC1191.
347 static inline void dccp_do_pmtu_discovery(struct sock *sk,
348 const struct iphdr *iph,
351 struct dst_entry *dst;
352 const struct inet_sock *inet = inet_sk(sk);
353 const struct dccp_sock *dp = dccp_sk(sk);
355 /* We are not interested in DCCP_LISTEN and request_socks (RESPONSEs
356 * send out by Linux are always < 576bytes so they should go through
359 if (sk->sk_state == DCCP_LISTEN)
362 /* We don't check in the destentry if pmtu discovery is forbidden
363 * on this route. We just assume that no packet_to_big packets
364 * are send back when pmtu discovery is not active.
365 * There is a small race when the user changes this flag in the
366 * route, but I think that's acceptable.
368 if ((dst = __sk_dst_check(sk, 0)) == NULL)
371 dst->ops->update_pmtu(dst, mtu);
373 /* Something is about to be wrong... Remember soft error
374 * for the case, if this connection will not able to recover.
376 if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
377 sk->sk_err_soft = EMSGSIZE;
381 if (inet->pmtudisc != IP_PMTUDISC_DONT &&
382 dp->dccps_pmtu_cookie > mtu) {
383 dccp_sync_mss(sk, mtu);
386 * From: draft-ietf-dccp-spec-11.txt
388 * DCCP-Sync packets are the best choice for upward
389 * probing, since DCCP-Sync probes do not risk application
392 dccp_send_sync(sk, dp->dccps_gsr, DCCP_PKT_SYNC);
393 } /* else let the usual retransmit timer handle it */
396 static void dccp_v4_ctl_send_ack(struct sk_buff *rxskb)
399 struct dccp_hdr *rxdh = dccp_hdr(rxskb), *dh;
400 const int dccp_hdr_ack_len = sizeof(struct dccp_hdr) +
401 sizeof(struct dccp_hdr_ext) +
402 sizeof(struct dccp_hdr_ack_bits);
405 if (((struct rtable *)rxskb->dst)->rt_type != RTN_LOCAL)
408 skb = alloc_skb(MAX_DCCP_HEADER + 15, GFP_ATOMIC);
412 /* Reserve space for headers. */
413 skb_reserve(skb, MAX_DCCP_HEADER);
415 skb->dst = dst_clone(rxskb->dst);
417 skb->h.raw = skb_push(skb, dccp_hdr_ack_len);
419 memset(dh, 0, dccp_hdr_ack_len);
421 /* Build DCCP header and checksum it. */
422 dh->dccph_type = DCCP_PKT_ACK;
423 dh->dccph_sport = rxdh->dccph_dport;
424 dh->dccph_dport = rxdh->dccph_sport;
425 dh->dccph_doff = dccp_hdr_ack_len / 4;
428 dccp_hdr_set_seq(dh, DCCP_SKB_CB(rxskb)->dccpd_ack_seq);
429 dccp_hdr_set_ack(dccp_hdr_ack_bits(skb),
430 DCCP_SKB_CB(rxskb)->dccpd_seq);
432 bh_lock_sock(dccp_ctl_socket->sk);
433 err = ip_build_and_send_pkt(skb, dccp_ctl_socket->sk,
434 rxskb->nh.iph->daddr,
435 rxskb->nh.iph->saddr, NULL);
436 bh_unlock_sock(dccp_ctl_socket->sk);
438 if (err == NET_XMIT_CN || err == 0) {
439 DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
440 DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
444 static void dccp_v4_reqsk_send_ack(struct sk_buff *skb,
445 struct request_sock *req)
447 dccp_v4_ctl_send_ack(skb);
450 static int dccp_v4_send_response(struct sock *sk, struct request_sock *req,
451 struct dst_entry *dst)
456 /* First, grab a route. */
458 if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
461 skb = dccp_make_response(sk, dst, req);
463 const struct inet_request_sock *ireq = inet_rsk(req);
465 err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
468 if (err == NET_XMIT_CN)
478 * This routine is called by the ICMP module when it gets some sort of error
479 * condition. If err < 0 then the socket should be closed and the error
480 * returned to the user. If err > 0 it's just the icmp type << 8 | icmp code.
481 * After adjustment header points to the first 8 bytes of the tcp header. We
482 * need to find the appropriate port.
484 * The locking strategy used here is very "optimistic". When someone else
485 * accesses the socket the ICMP is just dropped and for some paths there is no
486 * check at all. A more general error queue to queue errors for later handling
487 * is probably better.
489 void dccp_v4_err(struct sk_buff *skb, u32 info)
491 const struct iphdr *iph = (struct iphdr *)skb->data;
492 const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data +
494 struct dccp_sock *dp;
495 struct inet_sock *inet;
496 const int type = skb->h.icmph->type;
497 const int code = skb->h.icmph->code;
502 if (skb->len < (iph->ihl << 2) + 8) {
503 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
507 sk = inet_lookup(&dccp_hashinfo, iph->daddr, dh->dccph_dport,
508 iph->saddr, dh->dccph_sport, inet_iif(skb));
510 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
514 if (sk->sk_state == DCCP_TIME_WAIT) {
515 inet_twsk_put((struct inet_timewait_sock *)sk);
520 /* If too many ICMPs get dropped on busy
521 * servers this needs to be solved differently.
523 if (sock_owned_by_user(sk))
524 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS);
526 if (sk->sk_state == DCCP_CLOSED)
530 seq = dccp_hdr_seq(skb);
531 if (sk->sk_state != DCCP_LISTEN &&
532 !between48(seq, dp->dccps_swl, dp->dccps_swh)) {
533 NET_INC_STATS(LINUX_MIB_OUTOFWINDOWICMPS);
538 case ICMP_SOURCE_QUENCH:
539 /* Just silently ignore these. */
541 case ICMP_PARAMETERPROB:
544 case ICMP_DEST_UNREACH:
545 if (code > NR_ICMP_UNREACH)
548 if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
549 if (!sock_owned_by_user(sk))
550 dccp_do_pmtu_discovery(sk, iph, info);
554 err = icmp_err_convert[code].errno;
556 case ICMP_TIME_EXCEEDED:
563 switch (sk->sk_state) {
564 struct request_sock *req , **prev;
566 if (sock_owned_by_user(sk))
568 req = inet_csk_search_req(sk, &prev, dh->dccph_dport,
569 iph->daddr, iph->saddr);
574 * ICMPs are not backlogged, hence we cannot get an established
579 if (seq != dccp_rsk(req)->dreq_iss) {
580 NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
584 * Still in RESPOND, just remove it silently.
585 * There is no good way to pass the error to the newly
586 * created socket, and POSIX does not want network
587 * errors returned from accept().
589 inet_csk_reqsk_queue_drop(sk, req, prev);
592 case DCCP_REQUESTING:
594 if (!sock_owned_by_user(sk)) {
595 DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
598 sk->sk_error_report(sk);
602 sk->sk_err_soft = err;
606 /* If we've already connected we will keep trying
607 * until we time out, or the user gives up.
609 * rfc1122 4.2.3.9 allows to consider as hard errors
610 * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
611 * but it is obsoleted by pmtu discovery).
613 * Note, that in modern internet, where routing is unreliable
614 * and in each dark corner broken firewalls sit, sending random
615 * errors ordered by their masters even this two messages finally lose
616 * their original sense (even Linux sends invalid PORT_UNREACHs)
618 * Now we are in compliance with RFCs.
623 if (!sock_owned_by_user(sk) && inet->recverr) {
625 sk->sk_error_report(sk);
626 } else /* Only an error on timeout */
627 sk->sk_err_soft = err;
633 int dccp_v4_send_reset(struct sock *sk, enum dccp_reset_codes code)
637 * FIXME: what if rebuild_header fails?
638 * Should we be doing a rebuild_header here?
640 int err = inet_sk_rebuild_header(sk);
645 skb = dccp_make_reset(sk, sk->sk_dst_cache, code);
647 const struct inet_sock *inet = inet_sk(sk);
649 err = ip_build_and_send_pkt(skb, sk,
650 inet->saddr, inet->daddr, NULL);
651 if (err == NET_XMIT_CN)
658 static inline u64 dccp_v4_init_sequence(const struct sock *sk,
659 const struct sk_buff *skb)
661 return secure_dccp_sequence_number(skb->nh.iph->daddr,
663 dccp_hdr(skb)->dccph_dport,
664 dccp_hdr(skb)->dccph_sport);
667 static inline int dccp_bad_service_code(const struct sock *sk,
670 const struct dccp_sock *dp = dccp_sk(sk);
672 if (dp->dccps_service == service)
674 return !dccp_list_has_service(dp->dccps_service_list, service);
677 int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
679 struct inet_request_sock *ireq;
681 struct request_sock *req;
682 struct dccp_request_sock *dreq;
683 const __u32 saddr = skb->nh.iph->saddr;
684 const __u32 daddr = skb->nh.iph->daddr;
685 const __u32 service = dccp_hdr_request(skb)->dccph_req_service;
686 struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
687 __u8 reset_code = DCCP_RESET_CODE_TOO_BUSY;
688 struct dst_entry *dst = NULL;
690 /* Never answer to DCCP_PKT_REQUESTs send to broadcast or multicast */
691 if (((struct rtable *)skb->dst)->rt_flags &
692 (RTCF_BROADCAST | RTCF_MULTICAST)) {
693 reset_code = DCCP_RESET_CODE_NO_CONNECTION;
697 if (dccp_bad_service_code(sk, service)) {
698 reset_code = DCCP_RESET_CODE_BAD_SERVICE_CODE;
702 * TW buckets are converted to open requests without
703 * limitations, they conserve resources and peer is
704 * evidently real one.
706 if (inet_csk_reqsk_queue_is_full(sk))
710 * Accept backlog is full. If we have already queued enough
711 * of warm entries in syn queue, drop request. It is better than
712 * clogging syn queue with openreqs with exponentially increasing
715 if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
718 req = reqsk_alloc(sk->sk_prot->rsk_prot);
722 /* FIXME: process options */
724 dccp_openreq_init(req, &dp, skb);
726 ireq = inet_rsk(req);
727 ireq->loc_addr = daddr;
728 ireq->rmt_addr = saddr;
729 /* FIXME: Merge Aristeu's option parsing code when ready */
730 req->rcv_wnd = 100; /* Fake, option parsing will get the
735 * Step 3: Process LISTEN state
737 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
739 * In fact we defer setting S.GSR, S.SWL, S.SWH to
740 * dccp_create_openreq_child.
742 dreq = dccp_rsk(req);
743 dreq->dreq_isr = dcb->dccpd_seq;
744 dreq->dreq_iss = dccp_v4_init_sequence(sk, skb);
745 dreq->dreq_service = service;
747 if (dccp_v4_send_response(sk, req, dst))
750 inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
755 * FIXME: should be reqsk_free after implementing req->rsk_ops
759 DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
760 dcb->dccpd_reset_code = reset_code;
765 * The three way handshake has completed - we got a valid ACK or DATAACK -
766 * now create the new socket.
768 * This is the equivalent of TCP's tcp_v4_syn_recv_sock
770 struct sock *dccp_v4_request_recv_sock(struct sock *sk, struct sk_buff *skb,
771 struct request_sock *req,
772 struct dst_entry *dst)
774 struct inet_request_sock *ireq;
775 struct inet_sock *newinet;
776 struct dccp_sock *newdp;
779 if (sk_acceptq_is_full(sk))
782 if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
785 newsk = dccp_create_openreq_child(sk, req, skb);
789 sk_setup_caps(newsk, dst);
791 newdp = dccp_sk(newsk);
792 newinet = inet_sk(newsk);
793 ireq = inet_rsk(req);
794 newinet->daddr = ireq->rmt_addr;
795 newinet->rcv_saddr = ireq->loc_addr;
796 newinet->saddr = ireq->loc_addr;
797 newinet->opt = ireq->opt;
799 newinet->mc_index = inet_iif(skb);
800 newinet->mc_ttl = skb->nh.iph->ttl;
801 newinet->id = jiffies;
803 dccp_sync_mss(newsk, dst_mtu(dst));
805 __inet_hash(&dccp_hashinfo, newsk, 0);
806 __inet_inherit_port(&dccp_hashinfo, sk, newsk);
811 NET_INC_STATS_BH(LINUX_MIB_LISTENOVERFLOWS);
813 NET_INC_STATS_BH(LINUX_MIB_LISTENDROPS);
818 static struct sock *dccp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
820 const struct dccp_hdr *dh = dccp_hdr(skb);
821 const struct iphdr *iph = skb->nh.iph;
823 struct request_sock **prev;
824 /* Find possible connection requests. */
825 struct request_sock *req = inet_csk_search_req(sk, &prev,
827 iph->saddr, iph->daddr);
829 return dccp_check_req(sk, skb, req, prev);
831 nsk = __inet_lookup_established(&dccp_hashinfo,
832 iph->saddr, dh->dccph_sport,
833 iph->daddr, ntohs(dh->dccph_dport),
836 if (nsk->sk_state != DCCP_TIME_WAIT) {
840 inet_twsk_put((struct inet_timewait_sock *)nsk);
847 int dccp_v4_checksum(const struct sk_buff *skb, const u32 saddr,
850 const struct dccp_hdr* dh = dccp_hdr(skb);
854 if (dh->dccph_cscov == 0)
855 checksum_len = skb->len;
857 checksum_len = (dh->dccph_cscov + dh->dccph_x) * sizeof(u32);
858 checksum_len = checksum_len < skb->len ? checksum_len :
862 tmp = csum_partial((unsigned char *)dh, checksum_len, 0);
863 return csum_tcpudp_magic(saddr, daddr, checksum_len,
867 static int dccp_v4_verify_checksum(struct sk_buff *skb,
868 const u32 saddr, const u32 daddr)
870 struct dccp_hdr *dh = dccp_hdr(skb);
874 if (dh->dccph_cscov == 0)
875 checksum_len = skb->len;
877 checksum_len = (dh->dccph_cscov + dh->dccph_x) * sizeof(u32);
878 checksum_len = checksum_len < skb->len ? checksum_len :
881 tmp = csum_partial((unsigned char *)dh, checksum_len, 0);
882 return csum_tcpudp_magic(saddr, daddr, checksum_len,
883 IPPROTO_DCCP, tmp) == 0 ? 0 : -1;
886 static struct dst_entry* dccp_v4_route_skb(struct sock *sk,
890 struct flowi fl = { .oif = ((struct rtable *)skb->dst)->rt_iif,
892 { .daddr = skb->nh.iph->saddr,
893 .saddr = skb->nh.iph->daddr,
894 .tos = RT_CONN_FLAGS(sk) } },
895 .proto = sk->sk_protocol,
897 { .sport = dccp_hdr(skb)->dccph_dport,
898 .dport = dccp_hdr(skb)->dccph_sport }
902 if (ip_route_output_flow(&rt, &fl, sk, 0)) {
903 IP_INC_STATS_BH(IPSTATS_MIB_OUTNOROUTES);
910 static void dccp_v4_ctl_send_reset(struct sk_buff *rxskb)
913 struct dccp_hdr *rxdh = dccp_hdr(rxskb), *dh;
914 const int dccp_hdr_reset_len = sizeof(struct dccp_hdr) +
915 sizeof(struct dccp_hdr_ext) +
916 sizeof(struct dccp_hdr_reset);
918 struct dst_entry *dst;
921 /* Never send a reset in response to a reset. */
922 if (rxdh->dccph_type == DCCP_PKT_RESET)
925 if (((struct rtable *)rxskb->dst)->rt_type != RTN_LOCAL)
928 dst = dccp_v4_route_skb(dccp_ctl_socket->sk, rxskb);
932 skb = alloc_skb(MAX_DCCP_HEADER + 15, GFP_ATOMIC);
936 /* Reserve space for headers. */
937 skb_reserve(skb, MAX_DCCP_HEADER);
938 skb->dst = dst_clone(dst);
940 skb->h.raw = skb_push(skb, dccp_hdr_reset_len);
942 memset(dh, 0, dccp_hdr_reset_len);
944 /* Build DCCP header and checksum it. */
945 dh->dccph_type = DCCP_PKT_RESET;
946 dh->dccph_sport = rxdh->dccph_dport;
947 dh->dccph_dport = rxdh->dccph_sport;
948 dh->dccph_doff = dccp_hdr_reset_len / 4;
950 dccp_hdr_reset(skb)->dccph_reset_code =
951 DCCP_SKB_CB(rxskb)->dccpd_reset_code;
953 /* See "8.3.1. Abnormal Termination" in draft-ietf-dccp-spec-11 */
955 if (DCCP_SKB_CB(rxskb)->dccpd_ack_seq != DCCP_PKT_WITHOUT_ACK_SEQ)
956 dccp_set_seqno(&seqno, DCCP_SKB_CB(rxskb)->dccpd_ack_seq + 1);
958 dccp_hdr_set_seq(dh, seqno);
959 dccp_hdr_set_ack(dccp_hdr_ack_bits(skb),
960 DCCP_SKB_CB(rxskb)->dccpd_seq);
962 dh->dccph_checksum = dccp_v4_checksum(skb, rxskb->nh.iph->saddr,
963 rxskb->nh.iph->daddr);
965 bh_lock_sock(dccp_ctl_socket->sk);
966 err = ip_build_and_send_pkt(skb, dccp_ctl_socket->sk,
967 rxskb->nh.iph->daddr,
968 rxskb->nh.iph->saddr, NULL);
969 bh_unlock_sock(dccp_ctl_socket->sk);
971 if (err == NET_XMIT_CN || err == 0) {
972 DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
973 DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
979 int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
981 struct dccp_hdr *dh = dccp_hdr(skb);
983 if (sk->sk_state == DCCP_OPEN) { /* Fast path */
984 if (dccp_rcv_established(sk, skb, dh, skb->len))
990 * Step 3: Process LISTEN state
991 * If S.state == LISTEN,
992 * If P.type == Request or P contains a valid Init Cookie
994 * * Must scan the packet's options to check for an Init
995 * Cookie. Only the Init Cookie is processed here,
996 * however; other options are processed in Step 8. This
997 * scan need only be performed if the endpoint uses Init
999 * * Generate a new socket and switch to that socket *
1000 * Set S := new socket for this port pair
1002 * Choose S.ISS (initial seqno) or set from Init Cookie
1003 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
1004 * Continue with S.state == RESPOND
1005 * * A Response packet will be generated in Step 11 *
1007 * Generate Reset(No Connection) unless P.type == Reset
1008 * Drop packet and return
1010 * NOTE: the check for the packet types is done in
1011 * dccp_rcv_state_process
1013 if (sk->sk_state == DCCP_LISTEN) {
1014 struct sock *nsk = dccp_v4_hnd_req(sk, skb);
1020 if (dccp_child_process(sk, nsk, skb))
1026 if (dccp_rcv_state_process(sk, skb, dh, skb->len))
1031 dccp_v4_ctl_send_reset(skb);
1037 static inline int dccp_invalid_packet(struct sk_buff *skb)
1039 const struct dccp_hdr *dh;
1041 if (skb->pkt_type != PACKET_HOST)
1044 if (!pskb_may_pull(skb, sizeof(struct dccp_hdr))) {
1045 LIMIT_NETDEBUG(KERN_WARNING "DCCP: pskb_may_pull failed\n");
1051 /* If the packet type is not understood, drop packet and return */
1052 if (dh->dccph_type >= DCCP_PKT_INVALID) {
1053 LIMIT_NETDEBUG(KERN_WARNING "DCCP: invalid packet type\n");
1058 * If P.Data Offset is too small for packet type, or too large for
1059 * packet, drop packet and return
1061 if (dh->dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) {
1062 LIMIT_NETDEBUG(KERN_WARNING "DCCP: P.Data Offset(%u) "
1068 if (!pskb_may_pull(skb, dh->dccph_doff * sizeof(u32))) {
1069 LIMIT_NETDEBUG(KERN_WARNING "DCCP: P.Data Offset(%u) "
1078 * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet
1079 * has short sequence numbers), drop packet and return
1081 if (dh->dccph_x == 0 &&
1082 dh->dccph_type != DCCP_PKT_DATA &&
1083 dh->dccph_type != DCCP_PKT_ACK &&
1084 dh->dccph_type != DCCP_PKT_DATAACK) {
1085 LIMIT_NETDEBUG(KERN_WARNING "DCCP: P.type (%s) not Data, Ack "
1086 "nor DataAck and P.X == 0\n",
1087 dccp_packet_name(dh->dccph_type));
1091 /* If the header checksum is incorrect, drop packet and return */
1092 if (dccp_v4_verify_checksum(skb, skb->nh.iph->saddr,
1093 skb->nh.iph->daddr) < 0) {
1094 LIMIT_NETDEBUG(KERN_WARNING "DCCP: header checksum is "
1102 /* this is called when real data arrives */
1103 int dccp_v4_rcv(struct sk_buff *skb)
1105 const struct dccp_hdr *dh;
1109 /* Step 1: Check header basics: */
1111 if (dccp_invalid_packet(skb))
1117 * Use something like this to simulate some DATA/DATAACK loss to test
1118 * dccp_ackpkts_add, you'll get something like this on a session that
1119 * sends 10 DATA/DATAACK packets:
1121 * ackpkts_print: 281473596467422 |0,0|3,0|0,0|3,0|0,0|3,0|0,0|3,0|0,1|
1123 * 0, 0 means: DCCP_ACKPKTS_STATE_RECEIVED, RLE == just this packet
1124 * 0, 1 means: DCCP_ACKPKTS_STATE_RECEIVED, RLE == two adjacent packets
1125 * with the same state
1126 * 3, 0 means: DCCP_ACKPKTS_STATE_NOT_RECEIVED, RLE == just this packet
1130 * 281473596467422 was received
1131 * 281473596467421 was not received
1132 * 281473596467420 was received
1133 * 281473596467419 was not received
1134 * 281473596467418 was received
1135 * 281473596467417 was not received
1136 * 281473596467416 was received
1137 * 281473596467415 was not received
1138 * 281473596467414 was received
1139 * 281473596467413 was received (this one was the 3way handshake
1143 if (dh->dccph_type == DCCP_PKT_DATA ||
1144 dh->dccph_type == DCCP_PKT_DATAACK) {
1145 static int discard = 0;
1154 DCCP_SKB_CB(skb)->dccpd_seq = dccp_hdr_seq(skb);
1155 DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
1157 dccp_pr_debug("%8.8s "
1158 "src=%u.%u.%u.%u@%-5d "
1159 "dst=%u.%u.%u.%u@%-5d seq=%llu",
1160 dccp_packet_name(dh->dccph_type),
1161 NIPQUAD(skb->nh.iph->saddr), ntohs(dh->dccph_sport),
1162 NIPQUAD(skb->nh.iph->daddr), ntohs(dh->dccph_dport),
1163 (unsigned long long) DCCP_SKB_CB(skb)->dccpd_seq);
1165 if (dccp_packet_without_ack(skb)) {
1166 DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
1167 dccp_pr_debug_cat("\n");
1169 DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
1170 dccp_pr_debug_cat(", ack=%llu\n",
1171 (unsigned long long)
1172 DCCP_SKB_CB(skb)->dccpd_ack_seq);
1176 * Look up flow ID in table and get corresponding socket */
1177 sk = __inet_lookup(&dccp_hashinfo,
1178 skb->nh.iph->saddr, dh->dccph_sport,
1179 skb->nh.iph->daddr, ntohs(dh->dccph_dport),
1185 * Generate Reset(No Connection) unless P.type == Reset
1186 * Drop packet and return
1189 dccp_pr_debug("failed to look up flow ID in table and "
1190 "get corresponding socket\n");
1191 goto no_dccp_socket;
1196 * ... or S.state == TIMEWAIT,
1197 * Generate Reset(No Connection) unless P.type == Reset
1198 * Drop packet and return
1201 if (sk->sk_state == DCCP_TIME_WAIT) {
1202 dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: "
1207 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) {
1208 dccp_pr_debug("xfrm4_policy_check failed\n");
1209 goto discard_and_relse;
1212 if (sk_filter(sk, skb, 0)) {
1213 dccp_pr_debug("sk_filter failed\n");
1214 goto discard_and_relse;
1221 if (!sock_owned_by_user(sk))
1222 rc = dccp_v4_do_rcv(sk, skb);
1224 sk_add_backlog(sk, skb);
1231 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1235 * Generate Reset(No Connection) unless P.type == Reset
1236 * Drop packet and return
1238 if (dh->dccph_type != DCCP_PKT_RESET) {
1239 DCCP_SKB_CB(skb)->dccpd_reset_code =
1240 DCCP_RESET_CODE_NO_CONNECTION;
1241 dccp_v4_ctl_send_reset(skb);
1245 /* Discard frame. */
1254 inet_twsk_put((struct inet_timewait_sock *)sk);
1255 goto no_dccp_socket;
1258 static int dccp_v4_init_sock(struct sock *sk)
1260 struct dccp_sock *dp = dccp_sk(sk);
1261 static int dccp_ctl_socket_init = 1;
1263 dccp_options_init(&dp->dccps_options);
1264 do_gettimeofday(&dp->dccps_epoch);
1266 if (dp->dccps_options.dccpo_send_ack_vector) {
1267 dp->dccps_hc_rx_ackpkts =
1268 dccp_ackpkts_alloc(DCCP_MAX_ACK_VECTOR_LEN,
1271 if (dp->dccps_hc_rx_ackpkts == NULL)
1276 * FIXME: We're hardcoding the CCID, and doing this at this point makes
1277 * the listening (master) sock get CCID control blocks, which is not
1278 * necessary, but for now, to not mess with the test userspace apps,
1279 * lets leave it here, later the real solution is to do this in a
1280 * setsockopt(CCIDs-I-want/accept). -acme
1282 if (likely(!dccp_ctl_socket_init)) {
1283 dp->dccps_hc_rx_ccid = ccid_init(dp->dccps_options.dccpo_ccid,
1285 dp->dccps_hc_tx_ccid = ccid_init(dp->dccps_options.dccpo_ccid,
1287 if (dp->dccps_hc_rx_ccid == NULL ||
1288 dp->dccps_hc_tx_ccid == NULL) {
1289 ccid_exit(dp->dccps_hc_rx_ccid, sk);
1290 ccid_exit(dp->dccps_hc_tx_ccid, sk);
1291 dccp_ackpkts_free(dp->dccps_hc_rx_ackpkts);
1292 dp->dccps_hc_rx_ackpkts = NULL;
1293 dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
1297 dccp_ctl_socket_init = 0;
1299 dccp_init_xmit_timers(sk);
1300 inet_csk(sk)->icsk_rto = DCCP_TIMEOUT_INIT;
1301 sk->sk_state = DCCP_CLOSED;
1302 sk->sk_write_space = dccp_write_space;
1303 dp->dccps_mss_cache = 536;
1304 dp->dccps_role = DCCP_ROLE_UNDEFINED;
1305 dp->dccps_service = DCCP_SERVICE_INVALID_VALUE;
1310 static int dccp_v4_destroy_sock(struct sock *sk)
1312 struct dccp_sock *dp = dccp_sk(sk);
1315 * DCCP doesn't use sk_qrite_queue, just sk_send_head
1316 * for retransmissions
1318 if (sk->sk_send_head != NULL) {
1319 kfree_skb(sk->sk_send_head);
1320 sk->sk_send_head = NULL;
1323 /* Clean up a referenced DCCP bind bucket. */
1324 if (inet_csk(sk)->icsk_bind_hash != NULL)
1325 inet_put_port(&dccp_hashinfo, sk);
1327 if (dp->dccps_service_list != NULL) {
1328 kfree(dp->dccps_service_list);
1329 dp->dccps_service_list = NULL;
1332 ccid_hc_rx_exit(dp->dccps_hc_rx_ccid, sk);
1333 ccid_hc_tx_exit(dp->dccps_hc_tx_ccid, sk);
1334 dccp_ackpkts_free(dp->dccps_hc_rx_ackpkts);
1335 dp->dccps_hc_rx_ackpkts = NULL;
1336 ccid_exit(dp->dccps_hc_rx_ccid, sk);
1337 ccid_exit(dp->dccps_hc_tx_ccid, sk);
1338 dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
1343 static void dccp_v4_reqsk_destructor(struct request_sock *req)
1345 kfree(inet_rsk(req)->opt);
1348 static struct request_sock_ops dccp_request_sock_ops = {
1350 .obj_size = sizeof(struct dccp_request_sock),
1351 .rtx_syn_ack = dccp_v4_send_response,
1352 .send_ack = dccp_v4_reqsk_send_ack,
1353 .destructor = dccp_v4_reqsk_destructor,
1354 .send_reset = dccp_v4_ctl_send_reset,
1357 struct proto dccp_v4_prot = {
1359 .owner = THIS_MODULE,
1360 .close = dccp_close,
1361 .connect = dccp_v4_connect,
1362 .disconnect = dccp_disconnect,
1363 .ioctl = dccp_ioctl,
1364 .init = dccp_v4_init_sock,
1365 .setsockopt = dccp_setsockopt,
1366 .getsockopt = dccp_getsockopt,
1367 .sendmsg = dccp_sendmsg,
1368 .recvmsg = dccp_recvmsg,
1369 .backlog_rcv = dccp_v4_do_rcv,
1370 .hash = dccp_v4_hash,
1371 .unhash = dccp_v4_unhash,
1372 .accept = inet_csk_accept,
1373 .get_port = dccp_v4_get_port,
1374 .shutdown = dccp_shutdown,
1375 .destroy = dccp_v4_destroy_sock,
1376 .orphan_count = &dccp_orphan_count,
1377 .max_header = MAX_DCCP_HEADER,
1378 .obj_size = sizeof(struct dccp_sock),
1379 .rsk_prot = &dccp_request_sock_ops,
1380 .twsk_obj_size = sizeof(struct inet_timewait_sock),