cfq: merge cooperating cfq_queues
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / dccp / ipv4.c
blobd14c0a3a114616449a1ed93a94ea1a001e7eebf9
1 /*
2 * net/dccp/ipv4.c
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/dccp.h>
14 #include <linux/icmp.h>
15 #include <linux/module.h>
16 #include <linux/skbuff.h>
17 #include <linux/random.h>
19 #include <net/icmp.h>
20 #include <net/inet_common.h>
21 #include <net/inet_hashtables.h>
22 #include <net/inet_sock.h>
23 #include <net/protocol.h>
24 #include <net/sock.h>
25 #include <net/timewait_sock.h>
26 #include <net/tcp_states.h>
27 #include <net/xfrm.h>
28 #include <net/secure_seq.h>
30 #include "ackvec.h"
31 #include "ccid.h"
32 #include "dccp.h"
33 #include "feat.h"
36 * The per-net dccp.v4_ctl_sk socket is used for responding to
37 * the Out-of-the-blue (OOTB) packets. A control sock will be created
38 * for this socket at the initialization time.
41 int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
43 struct inet_sock *inet = inet_sk(sk);
44 struct dccp_sock *dp = dccp_sk(sk);
45 const struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
46 struct rtable *rt;
47 __be32 daddr, nexthop;
48 int tmp;
49 int err;
51 dp->dccps_role = DCCP_ROLE_CLIENT;
53 if (addr_len < sizeof(struct sockaddr_in))
54 return -EINVAL;
56 if (usin->sin_family != AF_INET)
57 return -EAFNOSUPPORT;
59 nexthop = daddr = usin->sin_addr.s_addr;
60 if (inet->opt != NULL && inet->opt->srr) {
61 if (daddr == 0)
62 return -EINVAL;
63 nexthop = inet->opt->faddr;
66 tmp = ip_route_connect(&rt, nexthop, inet->saddr,
67 RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
68 IPPROTO_DCCP,
69 inet->sport, usin->sin_port, sk, 1);
70 if (tmp < 0)
71 return tmp;
73 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
74 ip_rt_put(rt);
75 return -ENETUNREACH;
78 if (inet->opt == NULL || !inet->opt->srr)
79 daddr = rt->rt_dst;
81 if (inet->saddr == 0)
82 inet->saddr = rt->rt_src;
83 inet->rcv_saddr = inet->saddr;
85 inet->dport = usin->sin_port;
86 inet->daddr = daddr;
88 inet_csk(sk)->icsk_ext_hdr_len = 0;
89 if (inet->opt != NULL)
90 inet_csk(sk)->icsk_ext_hdr_len = inet->opt->optlen;
92 * Socket identity is still unknown (sport may be zero).
93 * However we set state to DCCP_REQUESTING and not releasing socket
94 * lock select source port, enter ourselves into the hash tables and
95 * complete initialization after this.
97 dccp_set_state(sk, DCCP_REQUESTING);
98 err = inet_hash_connect(&dccp_death_row, sk);
99 if (err != 0)
100 goto failure;
102 err = ip_route_newports(&rt, IPPROTO_DCCP, inet->sport, inet->dport,
103 sk);
104 if (err != 0)
105 goto failure;
107 /* OK, now commit destination to socket. */
108 sk_setup_caps(sk, &rt->u.dst);
110 dp->dccps_iss = secure_dccp_sequence_number(inet->saddr, inet->daddr,
111 inet->sport, inet->dport);
112 inet->id = dp->dccps_iss ^ jiffies;
114 err = dccp_connect(sk);
115 rt = NULL;
116 if (err != 0)
117 goto failure;
118 out:
119 return err;
120 failure:
122 * This unhashes the socket and releases the local port, if necessary.
124 dccp_set_state(sk, DCCP_CLOSED);
125 ip_rt_put(rt);
126 sk->sk_route_caps = 0;
127 inet->dport = 0;
128 goto out;
131 EXPORT_SYMBOL_GPL(dccp_v4_connect);
134 * This routine does path mtu discovery as defined in RFC1191.
136 static inline void dccp_do_pmtu_discovery(struct sock *sk,
137 const struct iphdr *iph,
138 u32 mtu)
140 struct dst_entry *dst;
141 const struct inet_sock *inet = inet_sk(sk);
142 const struct dccp_sock *dp = dccp_sk(sk);
144 /* We are not interested in DCCP_LISTEN and request_socks (RESPONSEs
145 * send out by Linux are always < 576bytes so they should go through
146 * unfragmented).
148 if (sk->sk_state == DCCP_LISTEN)
149 return;
151 /* We don't check in the destentry if pmtu discovery is forbidden
152 * on this route. We just assume that no packet_to_big packets
153 * are send back when pmtu discovery is not active.
154 * There is a small race when the user changes this flag in the
155 * route, but I think that's acceptable.
157 if ((dst = __sk_dst_check(sk, 0)) == NULL)
158 return;
160 dst->ops->update_pmtu(dst, mtu);
162 /* Something is about to be wrong... Remember soft error
163 * for the case, if this connection will not able to recover.
165 if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
166 sk->sk_err_soft = EMSGSIZE;
168 mtu = dst_mtu(dst);
170 if (inet->pmtudisc != IP_PMTUDISC_DONT &&
171 inet_csk(sk)->icsk_pmtu_cookie > mtu) {
172 dccp_sync_mss(sk, mtu);
175 * From RFC 4340, sec. 14.1:
177 * DCCP-Sync packets are the best choice for upward
178 * probing, since DCCP-Sync probes do not risk application
179 * data loss.
181 dccp_send_sync(sk, dp->dccps_gsr, DCCP_PKT_SYNC);
182 } /* else let the usual retransmit timer handle it */
186 * This routine is called by the ICMP module when it gets some sort of error
187 * condition. If err < 0 then the socket should be closed and the error
188 * returned to the user. If err > 0 it's just the icmp type << 8 | icmp code.
189 * After adjustment header points to the first 8 bytes of the tcp header. We
190 * need to find the appropriate port.
192 * The locking strategy used here is very "optimistic". When someone else
193 * accesses the socket the ICMP is just dropped and for some paths there is no
194 * check at all. A more general error queue to queue errors for later handling
195 * is probably better.
197 static void dccp_v4_err(struct sk_buff *skb, u32 info)
199 const struct iphdr *iph = (struct iphdr *)skb->data;
200 const u8 offset = iph->ihl << 2;
201 const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + offset);
202 struct dccp_sock *dp;
203 struct inet_sock *inet;
204 const int type = icmp_hdr(skb)->type;
205 const int code = icmp_hdr(skb)->code;
206 struct sock *sk;
207 __u64 seq;
208 int err;
209 struct net *net = dev_net(skb->dev);
211 if (skb->len < offset + sizeof(*dh) ||
212 skb->len < offset + __dccp_basic_hdr_len(dh)) {
213 ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS);
214 return;
217 sk = inet_lookup(net, &dccp_hashinfo,
218 iph->daddr, dh->dccph_dport,
219 iph->saddr, dh->dccph_sport, inet_iif(skb));
220 if (sk == NULL) {
221 ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS);
222 return;
225 if (sk->sk_state == DCCP_TIME_WAIT) {
226 inet_twsk_put(inet_twsk(sk));
227 return;
230 bh_lock_sock(sk);
231 /* If too many ICMPs get dropped on busy
232 * servers this needs to be solved differently.
234 if (sock_owned_by_user(sk))
235 NET_INC_STATS_BH(net, LINUX_MIB_LOCKDROPPEDICMPS);
237 if (sk->sk_state == DCCP_CLOSED)
238 goto out;
240 dp = dccp_sk(sk);
241 seq = dccp_hdr_seq(dh);
242 if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_LISTEN) &&
243 !between48(seq, dp->dccps_awl, dp->dccps_awh)) {
244 NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS);
245 goto out;
248 switch (type) {
249 case ICMP_SOURCE_QUENCH:
250 /* Just silently ignore these. */
251 goto out;
252 case ICMP_PARAMETERPROB:
253 err = EPROTO;
254 break;
255 case ICMP_DEST_UNREACH:
256 if (code > NR_ICMP_UNREACH)
257 goto out;
259 if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
260 if (!sock_owned_by_user(sk))
261 dccp_do_pmtu_discovery(sk, iph, info);
262 goto out;
265 err = icmp_err_convert[code].errno;
266 break;
267 case ICMP_TIME_EXCEEDED:
268 err = EHOSTUNREACH;
269 break;
270 default:
271 goto out;
274 switch (sk->sk_state) {
275 struct request_sock *req , **prev;
276 case DCCP_LISTEN:
277 if (sock_owned_by_user(sk))
278 goto out;
279 req = inet_csk_search_req(sk, &prev, dh->dccph_dport,
280 iph->daddr, iph->saddr);
281 if (!req)
282 goto out;
285 * ICMPs are not backlogged, hence we cannot get an established
286 * socket here.
288 WARN_ON(req->sk);
290 if (seq != dccp_rsk(req)->dreq_iss) {
291 NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS);
292 goto out;
295 * Still in RESPOND, just remove it silently.
296 * There is no good way to pass the error to the newly
297 * created socket, and POSIX does not want network
298 * errors returned from accept().
300 inet_csk_reqsk_queue_drop(sk, req, prev);
301 goto out;
303 case DCCP_REQUESTING:
304 case DCCP_RESPOND:
305 if (!sock_owned_by_user(sk)) {
306 DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
307 sk->sk_err = err;
309 sk->sk_error_report(sk);
311 dccp_done(sk);
312 } else
313 sk->sk_err_soft = err;
314 goto out;
317 /* If we've already connected we will keep trying
318 * until we time out, or the user gives up.
320 * rfc1122 4.2.3.9 allows to consider as hard errors
321 * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
322 * but it is obsoleted by pmtu discovery).
324 * Note, that in modern internet, where routing is unreliable
325 * and in each dark corner broken firewalls sit, sending random
326 * errors ordered by their masters even this two messages finally lose
327 * their original sense (even Linux sends invalid PORT_UNREACHs)
329 * Now we are in compliance with RFCs.
330 * --ANK (980905)
333 inet = inet_sk(sk);
334 if (!sock_owned_by_user(sk) && inet->recverr) {
335 sk->sk_err = err;
336 sk->sk_error_report(sk);
337 } else /* Only an error on timeout */
338 sk->sk_err_soft = err;
339 out:
340 bh_unlock_sock(sk);
341 sock_put(sk);
344 static inline __sum16 dccp_v4_csum_finish(struct sk_buff *skb,
345 __be32 src, __be32 dst)
347 return csum_tcpudp_magic(src, dst, skb->len, IPPROTO_DCCP, skb->csum);
350 void dccp_v4_send_check(struct sock *sk, int unused, struct sk_buff *skb)
352 const struct inet_sock *inet = inet_sk(sk);
353 struct dccp_hdr *dh = dccp_hdr(skb);
355 dccp_csum_outgoing(skb);
356 dh->dccph_checksum = dccp_v4_csum_finish(skb, inet->saddr, inet->daddr);
359 EXPORT_SYMBOL_GPL(dccp_v4_send_check);
361 static inline u64 dccp_v4_init_sequence(const struct sk_buff *skb)
363 return secure_dccp_sequence_number(ip_hdr(skb)->daddr,
364 ip_hdr(skb)->saddr,
365 dccp_hdr(skb)->dccph_dport,
366 dccp_hdr(skb)->dccph_sport);
370 * The three way handshake has completed - we got a valid ACK or DATAACK -
371 * now create the new socket.
373 * This is the equivalent of TCP's tcp_v4_syn_recv_sock
375 struct sock *dccp_v4_request_recv_sock(struct sock *sk, struct sk_buff *skb,
376 struct request_sock *req,
377 struct dst_entry *dst)
379 struct inet_request_sock *ireq;
380 struct inet_sock *newinet;
381 struct sock *newsk;
383 if (sk_acceptq_is_full(sk))
384 goto exit_overflow;
386 if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
387 goto exit;
389 newsk = dccp_create_openreq_child(sk, req, skb);
390 if (newsk == NULL)
391 goto exit;
393 sk_setup_caps(newsk, dst);
395 newinet = inet_sk(newsk);
396 ireq = inet_rsk(req);
397 newinet->daddr = ireq->rmt_addr;
398 newinet->rcv_saddr = ireq->loc_addr;
399 newinet->saddr = ireq->loc_addr;
400 newinet->opt = ireq->opt;
401 ireq->opt = NULL;
402 newinet->mc_index = inet_iif(skb);
403 newinet->mc_ttl = ip_hdr(skb)->ttl;
404 newinet->id = jiffies;
406 dccp_sync_mss(newsk, dst_mtu(dst));
408 __inet_hash_nolisten(newsk);
409 __inet_inherit_port(sk, newsk);
411 return newsk;
413 exit_overflow:
414 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENOVERFLOWS);
415 exit:
416 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENDROPS);
417 dst_release(dst);
418 return NULL;
421 EXPORT_SYMBOL_GPL(dccp_v4_request_recv_sock);
423 static struct sock *dccp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
425 const struct dccp_hdr *dh = dccp_hdr(skb);
426 const struct iphdr *iph = ip_hdr(skb);
427 struct sock *nsk;
428 struct request_sock **prev;
429 /* Find possible connection requests. */
430 struct request_sock *req = inet_csk_search_req(sk, &prev,
431 dh->dccph_sport,
432 iph->saddr, iph->daddr);
433 if (req != NULL)
434 return dccp_check_req(sk, skb, req, prev);
436 nsk = inet_lookup_established(sock_net(sk), &dccp_hashinfo,
437 iph->saddr, dh->dccph_sport,
438 iph->daddr, dh->dccph_dport,
439 inet_iif(skb));
440 if (nsk != NULL) {
441 if (nsk->sk_state != DCCP_TIME_WAIT) {
442 bh_lock_sock(nsk);
443 return nsk;
445 inet_twsk_put(inet_twsk(nsk));
446 return NULL;
449 return sk;
452 static struct dst_entry* dccp_v4_route_skb(struct net *net, struct sock *sk,
453 struct sk_buff *skb)
455 struct rtable *rt;
456 struct flowi fl = { .oif = skb_rtable(skb)->rt_iif,
457 .nl_u = { .ip4_u =
458 { .daddr = ip_hdr(skb)->saddr,
459 .saddr = ip_hdr(skb)->daddr,
460 .tos = RT_CONN_FLAGS(sk) } },
461 .proto = sk->sk_protocol,
462 .uli_u = { .ports =
463 { .sport = dccp_hdr(skb)->dccph_dport,
464 .dport = dccp_hdr(skb)->dccph_sport }
468 security_skb_classify_flow(skb, &fl);
469 if (ip_route_output_flow(net, &rt, &fl, sk, 0)) {
470 IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES);
471 return NULL;
474 return &rt->u.dst;
477 static int dccp_v4_send_response(struct sock *sk, struct request_sock *req)
479 int err = -1;
480 struct sk_buff *skb;
481 struct dst_entry *dst;
483 dst = inet_csk_route_req(sk, req);
484 if (dst == NULL)
485 goto out;
487 skb = dccp_make_response(sk, dst, req);
488 if (skb != NULL) {
489 const struct inet_request_sock *ireq = inet_rsk(req);
490 struct dccp_hdr *dh = dccp_hdr(skb);
492 dh->dccph_checksum = dccp_v4_csum_finish(skb, ireq->loc_addr,
493 ireq->rmt_addr);
494 err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
495 ireq->rmt_addr,
496 ireq->opt);
497 err = net_xmit_eval(err);
500 out:
501 dst_release(dst);
502 return err;
505 static void dccp_v4_ctl_send_reset(struct sock *sk, struct sk_buff *rxskb)
507 int err;
508 const struct iphdr *rxiph;
509 struct sk_buff *skb;
510 struct dst_entry *dst;
511 struct net *net = dev_net(skb_dst(rxskb)->dev);
512 struct sock *ctl_sk = net->dccp.v4_ctl_sk;
514 /* Never send a reset in response to a reset. */
515 if (dccp_hdr(rxskb)->dccph_type == DCCP_PKT_RESET)
516 return;
518 if (skb_rtable(rxskb)->rt_type != RTN_LOCAL)
519 return;
521 dst = dccp_v4_route_skb(net, ctl_sk, rxskb);
522 if (dst == NULL)
523 return;
525 skb = dccp_ctl_make_reset(ctl_sk, rxskb);
526 if (skb == NULL)
527 goto out;
529 rxiph = ip_hdr(rxskb);
530 dccp_hdr(skb)->dccph_checksum = dccp_v4_csum_finish(skb, rxiph->saddr,
531 rxiph->daddr);
532 skb_dst_set(skb, dst_clone(dst));
534 bh_lock_sock(ctl_sk);
535 err = ip_build_and_send_pkt(skb, ctl_sk,
536 rxiph->daddr, rxiph->saddr, NULL);
537 bh_unlock_sock(ctl_sk);
539 if (net_xmit_eval(err) == 0) {
540 DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
541 DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
543 out:
544 dst_release(dst);
547 static void dccp_v4_reqsk_destructor(struct request_sock *req)
549 dccp_feat_list_purge(&dccp_rsk(req)->dreq_featneg);
550 kfree(inet_rsk(req)->opt);
553 static struct request_sock_ops dccp_request_sock_ops __read_mostly = {
554 .family = PF_INET,
555 .obj_size = sizeof(struct dccp_request_sock),
556 .rtx_syn_ack = dccp_v4_send_response,
557 .send_ack = dccp_reqsk_send_ack,
558 .destructor = dccp_v4_reqsk_destructor,
559 .send_reset = dccp_v4_ctl_send_reset,
562 int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
564 struct inet_request_sock *ireq;
565 struct request_sock *req;
566 struct dccp_request_sock *dreq;
567 const __be32 service = dccp_hdr_request(skb)->dccph_req_service;
568 struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
570 /* Never answer to DCCP_PKT_REQUESTs send to broadcast or multicast */
571 if (skb_rtable(skb)->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))
572 return 0; /* discard, don't send a reset here */
574 if (dccp_bad_service_code(sk, service)) {
575 dcb->dccpd_reset_code = DCCP_RESET_CODE_BAD_SERVICE_CODE;
576 goto drop;
579 * TW buckets are converted to open requests without
580 * limitations, they conserve resources and peer is
581 * evidently real one.
583 dcb->dccpd_reset_code = DCCP_RESET_CODE_TOO_BUSY;
584 if (inet_csk_reqsk_queue_is_full(sk))
585 goto drop;
588 * Accept backlog is full. If we have already queued enough
589 * of warm entries in syn queue, drop request. It is better than
590 * clogging syn queue with openreqs with exponentially increasing
591 * timeout.
593 if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
594 goto drop;
596 req = inet_reqsk_alloc(&dccp_request_sock_ops);
597 if (req == NULL)
598 goto drop;
600 if (dccp_reqsk_init(req, dccp_sk(sk), skb))
601 goto drop_and_free;
603 dreq = dccp_rsk(req);
604 if (dccp_parse_options(sk, dreq, skb))
605 goto drop_and_free;
607 if (security_inet_conn_request(sk, skb, req))
608 goto drop_and_free;
610 ireq = inet_rsk(req);
611 ireq->loc_addr = ip_hdr(skb)->daddr;
612 ireq->rmt_addr = ip_hdr(skb)->saddr;
615 * Step 3: Process LISTEN state
617 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
619 * In fact we defer setting S.GSR, S.SWL, S.SWH to
620 * dccp_create_openreq_child.
622 dreq->dreq_isr = dcb->dccpd_seq;
623 dreq->dreq_iss = dccp_v4_init_sequence(skb);
624 dreq->dreq_service = service;
626 if (dccp_v4_send_response(sk, req))
627 goto drop_and_free;
629 inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
630 return 0;
632 drop_and_free:
633 reqsk_free(req);
634 drop:
635 DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
636 return -1;
639 EXPORT_SYMBOL_GPL(dccp_v4_conn_request);
641 int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
643 struct dccp_hdr *dh = dccp_hdr(skb);
645 if (sk->sk_state == DCCP_OPEN) { /* Fast path */
646 if (dccp_rcv_established(sk, skb, dh, skb->len))
647 goto reset;
648 return 0;
652 * Step 3: Process LISTEN state
653 * If P.type == Request or P contains a valid Init Cookie option,
654 * (* Must scan the packet's options to check for Init
655 * Cookies. Only Init Cookies are processed here,
656 * however; other options are processed in Step 8. This
657 * scan need only be performed if the endpoint uses Init
658 * Cookies *)
659 * (* Generate a new socket and switch to that socket *)
660 * Set S := new socket for this port pair
661 * S.state = RESPOND
662 * Choose S.ISS (initial seqno) or set from Init Cookies
663 * Initialize S.GAR := S.ISS
664 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookies
665 * Continue with S.state == RESPOND
666 * (* A Response packet will be generated in Step 11 *)
667 * Otherwise,
668 * Generate Reset(No Connection) unless P.type == Reset
669 * Drop packet and return
671 * NOTE: the check for the packet types is done in
672 * dccp_rcv_state_process
674 if (sk->sk_state == DCCP_LISTEN) {
675 struct sock *nsk = dccp_v4_hnd_req(sk, skb);
677 if (nsk == NULL)
678 goto discard;
680 if (nsk != sk) {
681 if (dccp_child_process(sk, nsk, skb))
682 goto reset;
683 return 0;
687 if (dccp_rcv_state_process(sk, skb, dh, skb->len))
688 goto reset;
689 return 0;
691 reset:
692 dccp_v4_ctl_send_reset(sk, skb);
693 discard:
694 kfree_skb(skb);
695 return 0;
698 EXPORT_SYMBOL_GPL(dccp_v4_do_rcv);
701 * dccp_invalid_packet - check for malformed packets
702 * Implements RFC 4340, 8.5: Step 1: Check header basics
703 * Packets that fail these checks are ignored and do not receive Resets.
705 int dccp_invalid_packet(struct sk_buff *skb)
707 const struct dccp_hdr *dh;
708 unsigned int cscov;
710 if (skb->pkt_type != PACKET_HOST)
711 return 1;
713 /* If the packet is shorter than 12 bytes, drop packet and return */
714 if (!pskb_may_pull(skb, sizeof(struct dccp_hdr))) {
715 DCCP_WARN("pskb_may_pull failed\n");
716 return 1;
719 dh = dccp_hdr(skb);
721 /* If P.type is not understood, drop packet and return */
722 if (dh->dccph_type >= DCCP_PKT_INVALID) {
723 DCCP_WARN("invalid packet type\n");
724 return 1;
728 * If P.Data Offset is too small for packet type, drop packet and return
730 if (dh->dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) {
731 DCCP_WARN("P.Data Offset(%u) too small\n", dh->dccph_doff);
732 return 1;
735 * If P.Data Offset is too too large for packet, drop packet and return
737 if (!pskb_may_pull(skb, dh->dccph_doff * sizeof(u32))) {
738 DCCP_WARN("P.Data Offset(%u) too large\n", dh->dccph_doff);
739 return 1;
743 * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet
744 * has short sequence numbers), drop packet and return
746 if ((dh->dccph_type < DCCP_PKT_DATA ||
747 dh->dccph_type > DCCP_PKT_DATAACK) && dh->dccph_x == 0) {
748 DCCP_WARN("P.type (%s) not Data || [Data]Ack, while P.X == 0\n",
749 dccp_packet_name(dh->dccph_type));
750 return 1;
754 * If P.CsCov is too large for the packet size, drop packet and return.
755 * This must come _before_ checksumming (not as RFC 4340 suggests).
757 cscov = dccp_csum_coverage(skb);
758 if (cscov > skb->len) {
759 DCCP_WARN("P.CsCov %u exceeds packet length %d\n",
760 dh->dccph_cscov, skb->len);
761 return 1;
764 /* If header checksum is incorrect, drop packet and return.
765 * (This step is completed in the AF-dependent functions.) */
766 skb->csum = skb_checksum(skb, 0, cscov, 0);
768 return 0;
771 EXPORT_SYMBOL_GPL(dccp_invalid_packet);
773 /* this is called when real data arrives */
774 static int dccp_v4_rcv(struct sk_buff *skb)
776 const struct dccp_hdr *dh;
777 const struct iphdr *iph;
778 struct sock *sk;
779 int min_cov;
781 /* Step 1: Check header basics */
783 if (dccp_invalid_packet(skb))
784 goto discard_it;
786 iph = ip_hdr(skb);
787 /* Step 1: If header checksum is incorrect, drop packet and return */
788 if (dccp_v4_csum_finish(skb, iph->saddr, iph->daddr)) {
789 DCCP_WARN("dropped packet with invalid checksum\n");
790 goto discard_it;
793 dh = dccp_hdr(skb);
795 DCCP_SKB_CB(skb)->dccpd_seq = dccp_hdr_seq(dh);
796 DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
798 dccp_pr_debug("%8.8s src=%pI4@%-5d dst=%pI4@%-5d seq=%llu",
799 dccp_packet_name(dh->dccph_type),
800 &iph->saddr, ntohs(dh->dccph_sport),
801 &iph->daddr, ntohs(dh->dccph_dport),
802 (unsigned long long) DCCP_SKB_CB(skb)->dccpd_seq);
804 if (dccp_packet_without_ack(skb)) {
805 DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
806 dccp_pr_debug_cat("\n");
807 } else {
808 DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
809 dccp_pr_debug_cat(", ack=%llu\n", (unsigned long long)
810 DCCP_SKB_CB(skb)->dccpd_ack_seq);
813 /* Step 2:
814 * Look up flow ID in table and get corresponding socket */
815 sk = __inet_lookup_skb(&dccp_hashinfo, skb,
816 dh->dccph_sport, dh->dccph_dport);
818 * Step 2:
819 * If no socket ...
821 if (sk == NULL) {
822 dccp_pr_debug("failed to look up flow ID in table and "
823 "get corresponding socket\n");
824 goto no_dccp_socket;
828 * Step 2:
829 * ... or S.state == TIMEWAIT,
830 * Generate Reset(No Connection) unless P.type == Reset
831 * Drop packet and return
833 if (sk->sk_state == DCCP_TIME_WAIT) {
834 dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: do_time_wait\n");
835 inet_twsk_put(inet_twsk(sk));
836 goto no_dccp_socket;
840 * RFC 4340, sec. 9.2.1: Minimum Checksum Coverage
841 * o if MinCsCov = 0, only packets with CsCov = 0 are accepted
842 * o if MinCsCov > 0, also accept packets with CsCov >= MinCsCov
844 min_cov = dccp_sk(sk)->dccps_pcrlen;
845 if (dh->dccph_cscov && (min_cov == 0 || dh->dccph_cscov < min_cov)) {
846 dccp_pr_debug("Packet CsCov %d does not satisfy MinCsCov %d\n",
847 dh->dccph_cscov, min_cov);
848 /* FIXME: "Such packets SHOULD be reported using Data Dropped
849 * options (Section 11.7) with Drop Code 0, Protocol
850 * Constraints." */
851 goto discard_and_relse;
854 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
855 goto discard_and_relse;
856 nf_reset(skb);
858 return sk_receive_skb(sk, skb, 1);
860 no_dccp_socket:
861 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
862 goto discard_it;
864 * Step 2:
865 * If no socket ...
866 * Generate Reset(No Connection) unless P.type == Reset
867 * Drop packet and return
869 if (dh->dccph_type != DCCP_PKT_RESET) {
870 DCCP_SKB_CB(skb)->dccpd_reset_code =
871 DCCP_RESET_CODE_NO_CONNECTION;
872 dccp_v4_ctl_send_reset(sk, skb);
875 discard_it:
876 kfree_skb(skb);
877 return 0;
879 discard_and_relse:
880 sock_put(sk);
881 goto discard_it;
884 static const struct inet_connection_sock_af_ops dccp_ipv4_af_ops = {
885 .queue_xmit = ip_queue_xmit,
886 .send_check = dccp_v4_send_check,
887 .rebuild_header = inet_sk_rebuild_header,
888 .conn_request = dccp_v4_conn_request,
889 .syn_recv_sock = dccp_v4_request_recv_sock,
890 .net_header_len = sizeof(struct iphdr),
891 .setsockopt = ip_setsockopt,
892 .getsockopt = ip_getsockopt,
893 .addr2sockaddr = inet_csk_addr2sockaddr,
894 .sockaddr_len = sizeof(struct sockaddr_in),
895 .bind_conflict = inet_csk_bind_conflict,
896 #ifdef CONFIG_COMPAT
897 .compat_setsockopt = compat_ip_setsockopt,
898 .compat_getsockopt = compat_ip_getsockopt,
899 #endif
902 static int dccp_v4_init_sock(struct sock *sk)
904 static __u8 dccp_v4_ctl_sock_initialized;
905 int err = dccp_init_sock(sk, dccp_v4_ctl_sock_initialized);
907 if (err == 0) {
908 if (unlikely(!dccp_v4_ctl_sock_initialized))
909 dccp_v4_ctl_sock_initialized = 1;
910 inet_csk(sk)->icsk_af_ops = &dccp_ipv4_af_ops;
913 return err;
916 static struct timewait_sock_ops dccp_timewait_sock_ops = {
917 .twsk_obj_size = sizeof(struct inet_timewait_sock),
920 static struct proto dccp_v4_prot = {
921 .name = "DCCP",
922 .owner = THIS_MODULE,
923 .close = dccp_close,
924 .connect = dccp_v4_connect,
925 .disconnect = dccp_disconnect,
926 .ioctl = dccp_ioctl,
927 .init = dccp_v4_init_sock,
928 .setsockopt = dccp_setsockopt,
929 .getsockopt = dccp_getsockopt,
930 .sendmsg = dccp_sendmsg,
931 .recvmsg = dccp_recvmsg,
932 .backlog_rcv = dccp_v4_do_rcv,
933 .hash = inet_hash,
934 .unhash = inet_unhash,
935 .accept = inet_csk_accept,
936 .get_port = inet_csk_get_port,
937 .shutdown = dccp_shutdown,
938 .destroy = dccp_destroy_sock,
939 .orphan_count = &dccp_orphan_count,
940 .max_header = MAX_DCCP_HEADER,
941 .obj_size = sizeof(struct dccp_sock),
942 .slab_flags = SLAB_DESTROY_BY_RCU,
943 .rsk_prot = &dccp_request_sock_ops,
944 .twsk_prot = &dccp_timewait_sock_ops,
945 .h.hashinfo = &dccp_hashinfo,
946 #ifdef CONFIG_COMPAT
947 .compat_setsockopt = compat_dccp_setsockopt,
948 .compat_getsockopt = compat_dccp_getsockopt,
949 #endif
952 static const struct net_protocol dccp_v4_protocol = {
953 .handler = dccp_v4_rcv,
954 .err_handler = dccp_v4_err,
955 .no_policy = 1,
956 .netns_ok = 1,
959 static const struct proto_ops inet_dccp_ops = {
960 .family = PF_INET,
961 .owner = THIS_MODULE,
962 .release = inet_release,
963 .bind = inet_bind,
964 .connect = inet_stream_connect,
965 .socketpair = sock_no_socketpair,
966 .accept = inet_accept,
967 .getname = inet_getname,
968 /* FIXME: work on tcp_poll to rename it to inet_csk_poll */
969 .poll = dccp_poll,
970 .ioctl = inet_ioctl,
971 /* FIXME: work on inet_listen to rename it to sock_common_listen */
972 .listen = inet_dccp_listen,
973 .shutdown = inet_shutdown,
974 .setsockopt = sock_common_setsockopt,
975 .getsockopt = sock_common_getsockopt,
976 .sendmsg = inet_sendmsg,
977 .recvmsg = sock_common_recvmsg,
978 .mmap = sock_no_mmap,
979 .sendpage = sock_no_sendpage,
980 #ifdef CONFIG_COMPAT
981 .compat_setsockopt = compat_sock_common_setsockopt,
982 .compat_getsockopt = compat_sock_common_getsockopt,
983 #endif
986 static struct inet_protosw dccp_v4_protosw = {
987 .type = SOCK_DCCP,
988 .protocol = IPPROTO_DCCP,
989 .prot = &dccp_v4_prot,
990 .ops = &inet_dccp_ops,
991 .capability = -1,
992 .no_check = 0,
993 .flags = INET_PROTOSW_ICSK,
996 static int dccp_v4_init_net(struct net *net)
998 int err;
1000 err = inet_ctl_sock_create(&net->dccp.v4_ctl_sk, PF_INET,
1001 SOCK_DCCP, IPPROTO_DCCP, net);
1002 return err;
1005 static void dccp_v4_exit_net(struct net *net)
1007 inet_ctl_sock_destroy(net->dccp.v4_ctl_sk);
1010 static struct pernet_operations dccp_v4_ops = {
1011 .init = dccp_v4_init_net,
1012 .exit = dccp_v4_exit_net,
1015 static int __init dccp_v4_init(void)
1017 int err = proto_register(&dccp_v4_prot, 1);
1019 if (err != 0)
1020 goto out;
1022 err = inet_add_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
1023 if (err != 0)
1024 goto out_proto_unregister;
1026 inet_register_protosw(&dccp_v4_protosw);
1028 err = register_pernet_subsys(&dccp_v4_ops);
1029 if (err)
1030 goto out_destroy_ctl_sock;
1031 out:
1032 return err;
1033 out_destroy_ctl_sock:
1034 inet_unregister_protosw(&dccp_v4_protosw);
1035 inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
1036 out_proto_unregister:
1037 proto_unregister(&dccp_v4_prot);
1038 goto out;
1041 static void __exit dccp_v4_exit(void)
1043 unregister_pernet_subsys(&dccp_v4_ops);
1044 inet_unregister_protosw(&dccp_v4_protosw);
1045 inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
1046 proto_unregister(&dccp_v4_prot);
1049 module_init(dccp_v4_init);
1050 module_exit(dccp_v4_exit);
1053 * __stringify doesn't likes enums, so use SOCK_DCCP (6) and IPPROTO_DCCP (33)
1054 * values directly, Also cover the case where the protocol is not specified,
1055 * i.e. net-pf-PF_INET-proto-0-type-SOCK_DCCP
1057 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 33, 6);
1058 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 0, 6);
1059 MODULE_LICENSE("GPL");
1060 MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@mandriva.com>");
1061 MODULE_DESCRIPTION("DCCP - Datagram Congestion Controlled Protocol");