]> git.karo-electronics.de Git - mv-sheeva.git/blob - net/dccp/ipv4.c
[TCP/DCCP]: Introduce net_xmit_eval
[mv-sheeva.git] / net / dccp / ipv4.c
1 /*
2  *  net/dccp/ipv4.c
3  *
4  *  An implementation of the DCCP protocol
5  *  Arnaldo Carvalho de Melo <acme@conectiva.com.br>
6  *
7  *      This program is free software; you can redistribute it and/or
8  *      modify it under the terms of the GNU General Public License
9  *      as published by the Free Software Foundation; either version
10  *      2 of the License, or (at your option) any later version.
11  */
12
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>
18
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
29 #include "ackvec.h"
30 #include "ccid.h"
31 #include "dccp.h"
32 #include "feat.h"
33
34 /*
35  * This is the global socket data structure used for responding to
36  * the Out-of-the-blue (OOTB) packets. A control sock will be created
37  * for this socket at the initialization time.
38  */
39 static struct socket *dccp_v4_ctl_socket;
40
41 static int dccp_v4_get_port(struct sock *sk, const unsigned short snum)
42 {
43         return inet_csk_get_port(&dccp_hashinfo, sk, snum,
44                                  inet_csk_bind_conflict);
45 }
46
47 int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
48 {
49         struct inet_sock *inet = inet_sk(sk);
50         struct dccp_sock *dp = dccp_sk(sk);
51         const struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
52         struct rtable *rt;
53         __be32 daddr, nexthop;
54         int tmp;
55         int err;
56
57         dp->dccps_role = DCCP_ROLE_CLIENT;
58
59         if (addr_len < sizeof(struct sockaddr_in))
60                 return -EINVAL;
61
62         if (usin->sin_family != AF_INET)
63                 return -EAFNOSUPPORT;
64
65         nexthop = daddr = usin->sin_addr.s_addr;
66         if (inet->opt != NULL && inet->opt->srr) {
67                 if (daddr == 0)
68                         return -EINVAL;
69                 nexthop = inet->opt->faddr;
70         }
71
72         tmp = ip_route_connect(&rt, nexthop, inet->saddr,
73                                RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
74                                IPPROTO_DCCP,
75                                inet->sport, usin->sin_port, sk);
76         if (tmp < 0)
77                 return tmp;
78
79         if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
80                 ip_rt_put(rt);
81                 return -ENETUNREACH;
82         }
83
84         if (inet->opt == NULL || !inet->opt->srr)
85                 daddr = rt->rt_dst;
86
87         if (inet->saddr == 0)
88                 inet->saddr = rt->rt_src;
89         inet->rcv_saddr = inet->saddr;
90
91         inet->dport = usin->sin_port;
92         inet->daddr = daddr;
93
94         inet_csk(sk)->icsk_ext_hdr_len = 0;
95         if (inet->opt != NULL)
96                 inet_csk(sk)->icsk_ext_hdr_len = inet->opt->optlen;
97         /*
98          * Socket identity is still unknown (sport may be zero).
99          * However we set state to DCCP_REQUESTING and not releasing socket
100          * lock select source port, enter ourselves into the hash tables and
101          * complete initialization after this.
102          */
103         dccp_set_state(sk, DCCP_REQUESTING);
104         err = inet_hash_connect(&dccp_death_row, sk);
105         if (err != 0)
106                 goto failure;
107
108         err = ip_route_newports(&rt, IPPROTO_DCCP, inet->sport, inet->dport,
109                                 sk);
110         if (err != 0)
111                 goto failure;
112
113         /* OK, now commit destination to socket.  */
114         sk_setup_caps(sk, &rt->u.dst);
115
116         dp->dccps_iss = secure_dccp_sequence_number(inet->saddr, inet->daddr,
117                                                     inet->sport, inet->dport);
118         inet->id = dp->dccps_iss ^ jiffies;
119
120         err = dccp_connect(sk);
121         rt = NULL;
122         if (err != 0)
123                 goto failure;
124 out:
125         return err;
126 failure:
127         /*
128          * This unhashes the socket and releases the local port, if necessary.
129          */
130         dccp_set_state(sk, DCCP_CLOSED);
131         ip_rt_put(rt);
132         sk->sk_route_caps = 0;
133         inet->dport = 0;
134         goto out;
135 }
136
137 EXPORT_SYMBOL_GPL(dccp_v4_connect);
138
139 /*
140  * This routine does path mtu discovery as defined in RFC1191.
141  */
142 static inline void dccp_do_pmtu_discovery(struct sock *sk,
143                                           const struct iphdr *iph,
144                                           u32 mtu)
145 {
146         struct dst_entry *dst;
147         const struct inet_sock *inet = inet_sk(sk);
148         const struct dccp_sock *dp = dccp_sk(sk);
149
150         /* We are not interested in DCCP_LISTEN and request_socks (RESPONSEs
151          * send out by Linux are always < 576bytes so they should go through
152          * unfragmented).
153          */
154         if (sk->sk_state == DCCP_LISTEN)
155                 return;
156
157         /* We don't check in the destentry if pmtu discovery is forbidden
158          * on this route. We just assume that no packet_to_big packets
159          * are send back when pmtu discovery is not active.
160          * There is a small race when the user changes this flag in the
161          * route, but I think that's acceptable.
162          */
163         if ((dst = __sk_dst_check(sk, 0)) == NULL)
164                 return;
165
166         dst->ops->update_pmtu(dst, mtu);
167
168         /* Something is about to be wrong... Remember soft error
169          * for the case, if this connection will not able to recover.
170          */
171         if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
172                 sk->sk_err_soft = EMSGSIZE;
173
174         mtu = dst_mtu(dst);
175
176         if (inet->pmtudisc != IP_PMTUDISC_DONT &&
177             inet_csk(sk)->icsk_pmtu_cookie > mtu) {
178                 dccp_sync_mss(sk, mtu);
179
180                 /*
181                  * From RFC 4340, sec. 14.1:
182                  *
183                  *      DCCP-Sync packets are the best choice for upward
184                  *      probing, since DCCP-Sync probes do not risk application
185                  *      data loss.
186                  */
187                 dccp_send_sync(sk, dp->dccps_gsr, DCCP_PKT_SYNC);
188         } /* else let the usual retransmit timer handle it */
189 }
190
191 /*
192  * This routine is called by the ICMP module when it gets some sort of error
193  * condition. If err < 0 then the socket should be closed and the error
194  * returned to the user. If err > 0 it's just the icmp type << 8 | icmp code.
195  * After adjustment header points to the first 8 bytes of the tcp header. We
196  * need to find the appropriate port.
197  *
198  * The locking strategy used here is very "optimistic". When someone else
199  * accesses the socket the ICMP is just dropped and for some paths there is no
200  * check at all. A more general error queue to queue errors for later handling
201  * is probably better.
202  */
203 static void dccp_v4_err(struct sk_buff *skb, u32 info)
204 {
205         const struct iphdr *iph = (struct iphdr *)skb->data;
206         const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data +
207                                                         (iph->ihl << 2));
208         struct dccp_sock *dp;
209         struct inet_sock *inet;
210         const int type = skb->h.icmph->type;
211         const int code = skb->h.icmph->code;
212         struct sock *sk;
213         __u64 seq;
214         int err;
215
216         if (skb->len < (iph->ihl << 2) + 8) {
217                 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
218                 return;
219         }
220
221         sk = inet_lookup(&dccp_hashinfo, iph->daddr, dh->dccph_dport,
222                          iph->saddr, dh->dccph_sport, inet_iif(skb));
223         if (sk == NULL) {
224                 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
225                 return;
226         }
227
228         if (sk->sk_state == DCCP_TIME_WAIT) {
229                 inet_twsk_put(inet_twsk(sk));
230                 return;
231         }
232
233         bh_lock_sock(sk);
234         /* If too many ICMPs get dropped on busy
235          * servers this needs to be solved differently.
236          */
237         if (sock_owned_by_user(sk))
238                 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS);
239
240         if (sk->sk_state == DCCP_CLOSED)
241                 goto out;
242
243         dp = dccp_sk(sk);
244         seq = dccp_hdr_seq(skb);
245         if (sk->sk_state != DCCP_LISTEN &&
246             !between48(seq, dp->dccps_swl, dp->dccps_swh)) {
247                 NET_INC_STATS(LINUX_MIB_OUTOFWINDOWICMPS);
248                 goto out;
249         }
250
251         switch (type) {
252         case ICMP_SOURCE_QUENCH:
253                 /* Just silently ignore these. */
254                 goto out;
255         case ICMP_PARAMETERPROB:
256                 err = EPROTO;
257                 break;
258         case ICMP_DEST_UNREACH:
259                 if (code > NR_ICMP_UNREACH)
260                         goto out;
261
262                 if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
263                         if (!sock_owned_by_user(sk))
264                                 dccp_do_pmtu_discovery(sk, iph, info);
265                         goto out;
266                 }
267
268                 err = icmp_err_convert[code].errno;
269                 break;
270         case ICMP_TIME_EXCEEDED:
271                 err = EHOSTUNREACH;
272                 break;
273         default:
274                 goto out;
275         }
276
277         switch (sk->sk_state) {
278                 struct request_sock *req , **prev;
279         case DCCP_LISTEN:
280                 if (sock_owned_by_user(sk))
281                         goto out;
282                 req = inet_csk_search_req(sk, &prev, dh->dccph_dport,
283                                           iph->daddr, iph->saddr);
284                 if (!req)
285                         goto out;
286
287                 /*
288                  * ICMPs are not backlogged, hence we cannot get an established
289                  * socket here.
290                  */
291                 BUG_TRAP(!req->sk);
292
293                 if (seq != dccp_rsk(req)->dreq_iss) {
294                         NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
295                         goto out;
296                 }
297                 /*
298                  * Still in RESPOND, just remove it silently.
299                  * There is no good way to pass the error to the newly
300                  * created socket, and POSIX does not want network
301                  * errors returned from accept().
302                  */
303                 inet_csk_reqsk_queue_drop(sk, req, prev);
304                 goto out;
305
306         case DCCP_REQUESTING:
307         case DCCP_RESPOND:
308                 if (!sock_owned_by_user(sk)) {
309                         DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
310                         sk->sk_err = err;
311
312                         sk->sk_error_report(sk);
313
314                         dccp_done(sk);
315                 } else
316                         sk->sk_err_soft = err;
317                 goto out;
318         }
319
320         /* If we've already connected we will keep trying
321          * until we time out, or the user gives up.
322          *
323          * rfc1122 4.2.3.9 allows to consider as hard errors
324          * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
325          * but it is obsoleted by pmtu discovery).
326          *
327          * Note, that in modern internet, where routing is unreliable
328          * and in each dark corner broken firewalls sit, sending random
329          * errors ordered by their masters even this two messages finally lose
330          * their original sense (even Linux sends invalid PORT_UNREACHs)
331          *
332          * Now we are in compliance with RFCs.
333          *                                                      --ANK (980905)
334          */
335
336         inet = inet_sk(sk);
337         if (!sock_owned_by_user(sk) && inet->recverr) {
338                 sk->sk_err = err;
339                 sk->sk_error_report(sk);
340         } else /* Only an error on timeout */
341                 sk->sk_err_soft = err;
342 out:
343         bh_unlock_sock(sk);
344         sock_put(sk);
345 }
346
347 static inline u16 dccp_v4_csum_finish(struct sk_buff *skb,
348                                       __be32 src, __be32 dst)
349 {
350         return csum_tcpudp_magic(src, dst, skb->len, IPPROTO_DCCP, skb->csum);
351 }
352
353 void dccp_v4_send_check(struct sock *sk, int unused, struct sk_buff *skb)
354 {
355         const struct inet_sock *inet = inet_sk(sk);
356         struct dccp_hdr *dh = dccp_hdr(skb);
357
358         dccp_csum_outgoing(skb);
359         dh->dccph_checksum = dccp_v4_csum_finish(skb, inet->saddr, inet->daddr);
360 }
361
362 EXPORT_SYMBOL_GPL(dccp_v4_send_check);
363
364 static inline u64 dccp_v4_init_sequence(const struct sk_buff *skb)
365 {
366         return secure_dccp_sequence_number(skb->nh.iph->daddr,
367                                            skb->nh.iph->saddr,
368                                            dccp_hdr(skb)->dccph_dport,
369                                            dccp_hdr(skb)->dccph_sport);
370 }
371
372 /*
373  * The three way handshake has completed - we got a valid ACK or DATAACK -
374  * now create the new socket.
375  *
376  * This is the equivalent of TCP's tcp_v4_syn_recv_sock
377  */
378 struct sock *dccp_v4_request_recv_sock(struct sock *sk, struct sk_buff *skb,
379                                        struct request_sock *req,
380                                        struct dst_entry *dst)
381 {
382         struct inet_request_sock *ireq;
383         struct inet_sock *newinet;
384         struct dccp_sock *newdp;
385         struct sock *newsk;
386
387         if (sk_acceptq_is_full(sk))
388                 goto exit_overflow;
389
390         if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
391                 goto exit;
392
393         newsk = dccp_create_openreq_child(sk, req, skb);
394         if (newsk == NULL)
395                 goto exit;
396
397         sk_setup_caps(newsk, dst);
398
399         newdp              = dccp_sk(newsk);
400         newinet            = inet_sk(newsk);
401         ireq               = inet_rsk(req);
402         newinet->daddr     = ireq->rmt_addr;
403         newinet->rcv_saddr = ireq->loc_addr;
404         newinet->saddr     = ireq->loc_addr;
405         newinet->opt       = ireq->opt;
406         ireq->opt          = NULL;
407         newinet->mc_index  = inet_iif(skb);
408         newinet->mc_ttl    = skb->nh.iph->ttl;
409         newinet->id        = jiffies;
410
411         dccp_sync_mss(newsk, dst_mtu(dst));
412
413         __inet_hash(&dccp_hashinfo, newsk, 0);
414         __inet_inherit_port(&dccp_hashinfo, sk, newsk);
415
416         return newsk;
417
418 exit_overflow:
419         NET_INC_STATS_BH(LINUX_MIB_LISTENOVERFLOWS);
420 exit:
421         NET_INC_STATS_BH(LINUX_MIB_LISTENDROPS);
422         dst_release(dst);
423         return NULL;
424 }
425
426 EXPORT_SYMBOL_GPL(dccp_v4_request_recv_sock);
427
428 static struct sock *dccp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
429 {
430         const struct dccp_hdr *dh = dccp_hdr(skb);
431         const struct iphdr *iph = skb->nh.iph;
432         struct sock *nsk;
433         struct request_sock **prev;
434         /* Find possible connection requests. */
435         struct request_sock *req = inet_csk_search_req(sk, &prev,
436                                                        dh->dccph_sport,
437                                                        iph->saddr, iph->daddr);
438         if (req != NULL)
439                 return dccp_check_req(sk, skb, req, prev);
440
441         nsk = inet_lookup_established(&dccp_hashinfo,
442                                       iph->saddr, dh->dccph_sport,
443                                       iph->daddr, dh->dccph_dport,
444                                       inet_iif(skb));
445         if (nsk != NULL) {
446                 if (nsk->sk_state != DCCP_TIME_WAIT) {
447                         bh_lock_sock(nsk);
448                         return nsk;
449                 }
450                 inet_twsk_put(inet_twsk(nsk));
451                 return NULL;
452         }
453
454         return sk;
455 }
456
457 static struct dst_entry* dccp_v4_route_skb(struct sock *sk,
458                                            struct sk_buff *skb)
459 {
460         struct rtable *rt;
461         struct flowi fl = { .oif = ((struct rtable *)skb->dst)->rt_iif,
462                             .nl_u = { .ip4_u =
463                                       { .daddr = skb->nh.iph->saddr,
464                                         .saddr = skb->nh.iph->daddr,
465                                         .tos = RT_CONN_FLAGS(sk) } },
466                             .proto = sk->sk_protocol,
467                             .uli_u = { .ports =
468                                        { .sport = dccp_hdr(skb)->dccph_dport,
469                                          .dport = dccp_hdr(skb)->dccph_sport }
470                                      }
471                           };
472
473         security_skb_classify_flow(skb, &fl);
474         if (ip_route_output_flow(&rt, &fl, sk, 0)) {
475                 IP_INC_STATS_BH(IPSTATS_MIB_OUTNOROUTES);
476                 return NULL;
477         }
478
479         return &rt->u.dst;
480 }
481
482 static int dccp_v4_send_response(struct sock *sk, struct request_sock *req,
483                                  struct dst_entry *dst)
484 {
485         int err = -1;
486         struct sk_buff *skb;
487
488         /* First, grab a route. */
489         
490         if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
491                 goto out;
492
493         skb = dccp_make_response(sk, dst, req);
494         if (skb != NULL) {
495                 const struct inet_request_sock *ireq = inet_rsk(req);
496                 struct dccp_hdr *dh = dccp_hdr(skb);
497
498                 dh->dccph_checksum = dccp_v4_csum_finish(skb, ireq->loc_addr,
499                                                               ireq->rmt_addr);
500                 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
501                 err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
502                                             ireq->rmt_addr,
503                                             ireq->opt);
504                 err = net_xmit_eval(err);
505         }
506
507 out:
508         dst_release(dst);
509         return err;
510 }
511
512 static void dccp_v4_ctl_send_reset(struct sk_buff *rxskb)
513 {
514         int err;
515         struct dccp_hdr *rxdh = dccp_hdr(rxskb), *dh;
516         const int dccp_hdr_reset_len = sizeof(struct dccp_hdr) +
517                                        sizeof(struct dccp_hdr_ext) +
518                                        sizeof(struct dccp_hdr_reset);
519         struct sk_buff *skb;
520         struct dst_entry *dst;
521         u64 seqno;
522
523         /* Never send a reset in response to a reset. */
524         if (rxdh->dccph_type == DCCP_PKT_RESET)
525                 return;
526
527         if (((struct rtable *)rxskb->dst)->rt_type != RTN_LOCAL)
528                 return;
529
530         dst = dccp_v4_route_skb(dccp_v4_ctl_socket->sk, rxskb);
531         if (dst == NULL)
532                 return;
533
534         skb = alloc_skb(dccp_v4_ctl_socket->sk->sk_prot->max_header,
535                         GFP_ATOMIC);
536         if (skb == NULL)
537                 goto out;
538
539         /* Reserve space for headers. */
540         skb_reserve(skb, dccp_v4_ctl_socket->sk->sk_prot->max_header);
541         skb->dst = dst_clone(dst);
542
543         dh = dccp_zeroed_hdr(skb, dccp_hdr_reset_len);
544
545         /* Build DCCP header and checksum it. */
546         dh->dccph_type     = DCCP_PKT_RESET;
547         dh->dccph_sport    = rxdh->dccph_dport;
548         dh->dccph_dport    = rxdh->dccph_sport;
549         dh->dccph_doff     = dccp_hdr_reset_len / 4;
550         dh->dccph_x        = 1;
551         dccp_hdr_reset(skb)->dccph_reset_code =
552                                 DCCP_SKB_CB(rxskb)->dccpd_reset_code;
553
554         /* See "8.3.1. Abnormal Termination" in RFC 4340 */
555         seqno = 0;
556         if (DCCP_SKB_CB(rxskb)->dccpd_ack_seq != DCCP_PKT_WITHOUT_ACK_SEQ)
557                 dccp_set_seqno(&seqno, DCCP_SKB_CB(rxskb)->dccpd_ack_seq + 1);
558
559         dccp_hdr_set_seq(dh, seqno);
560         dccp_hdr_set_ack(dccp_hdr_ack_bits(skb),
561                          DCCP_SKB_CB(rxskb)->dccpd_seq);
562
563         dccp_csum_outgoing(skb);
564         dh->dccph_checksum = dccp_v4_csum_finish(skb, rxskb->nh.iph->saddr,
565                                                       rxskb->nh.iph->daddr);
566
567         bh_lock_sock(dccp_v4_ctl_socket->sk);
568         err = ip_build_and_send_pkt(skb, dccp_v4_ctl_socket->sk,
569                                     rxskb->nh.iph->daddr,
570                                     rxskb->nh.iph->saddr, NULL);
571         bh_unlock_sock(dccp_v4_ctl_socket->sk);
572
573         if (net_xmit_eval(err) == 0) {
574                 DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
575                 DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
576         }
577 out:
578          dst_release(dst);
579 }
580
581 static void dccp_v4_reqsk_destructor(struct request_sock *req)
582 {
583         kfree(inet_rsk(req)->opt);
584 }
585
586 static struct request_sock_ops dccp_request_sock_ops __read_mostly = {
587         .family         = PF_INET,
588         .obj_size       = sizeof(struct dccp_request_sock),
589         .rtx_syn_ack    = dccp_v4_send_response,
590         .send_ack       = dccp_reqsk_send_ack,
591         .destructor     = dccp_v4_reqsk_destructor,
592         .send_reset     = dccp_v4_ctl_send_reset,
593 };
594
595 int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
596 {
597         struct inet_request_sock *ireq;
598         struct request_sock *req;
599         struct dccp_request_sock *dreq;
600         const __be32 service = dccp_hdr_request(skb)->dccph_req_service;
601         struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
602         __u8 reset_code = DCCP_RESET_CODE_TOO_BUSY;
603
604         /* Never answer to DCCP_PKT_REQUESTs send to broadcast or multicast */
605         if (((struct rtable *)skb->dst)->rt_flags &
606             (RTCF_BROADCAST | RTCF_MULTICAST)) {
607                 reset_code = DCCP_RESET_CODE_NO_CONNECTION;
608                 goto drop;
609         }
610
611         if (dccp_bad_service_code(sk, service)) {
612                 reset_code = DCCP_RESET_CODE_BAD_SERVICE_CODE;
613                 goto drop;
614         }
615         /*
616          * TW buckets are converted to open requests without
617          * limitations, they conserve resources and peer is
618          * evidently real one.
619          */
620         if (inet_csk_reqsk_queue_is_full(sk))
621                 goto drop;
622
623         /*
624          * Accept backlog is full. If we have already queued enough
625          * of warm entries in syn queue, drop request. It is better than
626          * clogging syn queue with openreqs with exponentially increasing
627          * timeout.
628          */
629         if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
630                 goto drop;
631
632         req = reqsk_alloc(&dccp_request_sock_ops);
633         if (req == NULL)
634                 goto drop;
635
636         if (dccp_parse_options(sk, skb))
637                 goto drop_and_free;
638
639         dccp_reqsk_init(req, skb);
640
641         if (security_inet_conn_request(sk, skb, req))
642                 goto drop_and_free;
643
644         ireq = inet_rsk(req);
645         ireq->loc_addr = skb->nh.iph->daddr;
646         ireq->rmt_addr = skb->nh.iph->saddr;
647         ireq->opt       = NULL;
648
649         /* 
650          * Step 3: Process LISTEN state
651          *
652          * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
653          *
654          * In fact we defer setting S.GSR, S.SWL, S.SWH to
655          * dccp_create_openreq_child.
656          */
657         dreq = dccp_rsk(req);
658         dreq->dreq_isr     = dcb->dccpd_seq;
659         dreq->dreq_iss     = dccp_v4_init_sequence(skb);
660         dreq->dreq_service = service;
661
662         if (dccp_v4_send_response(sk, req, NULL))
663                 goto drop_and_free;
664
665         inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
666         return 0;
667
668 drop_and_free:
669         reqsk_free(req);
670 drop:
671         DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
672         dcb->dccpd_reset_code = reset_code;
673         return -1;
674 }
675
676 EXPORT_SYMBOL_GPL(dccp_v4_conn_request);
677
678 int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
679 {
680         struct dccp_hdr *dh = dccp_hdr(skb);
681
682         if (sk->sk_state == DCCP_OPEN) { /* Fast path */
683                 if (dccp_rcv_established(sk, skb, dh, skb->len))
684                         goto reset;
685                 return 0;
686         }
687
688         /*
689          *  Step 3: Process LISTEN state
690          *       If P.type == Request or P contains a valid Init Cookie option,
691          *            (* Must scan the packet's options to check for Init
692          *               Cookies.  Only Init Cookies are processed here,
693          *               however; other options are processed in Step 8.  This
694          *               scan need only be performed if the endpoint uses Init
695          *               Cookies *)
696          *            (* Generate a new socket and switch to that socket *)
697          *            Set S := new socket for this port pair
698          *            S.state = RESPOND
699          *            Choose S.ISS (initial seqno) or set from Init Cookies
700          *            Initialize S.GAR := S.ISS
701          *            Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookies
702          *            Continue with S.state == RESPOND
703          *            (* A Response packet will be generated in Step 11 *)
704          *       Otherwise,
705          *            Generate Reset(No Connection) unless P.type == Reset
706          *            Drop packet and return
707          *
708          * NOTE: the check for the packet types is done in
709          *       dccp_rcv_state_process
710          */
711         if (sk->sk_state == DCCP_LISTEN) {
712                 struct sock *nsk = dccp_v4_hnd_req(sk, skb);
713
714                 if (nsk == NULL)
715                         goto discard;
716
717                 if (nsk != sk) {
718                         if (dccp_child_process(sk, nsk, skb))
719                                 goto reset;
720                         return 0;
721                 }
722         }
723
724         if (dccp_rcv_state_process(sk, skb, dh, skb->len))
725                 goto reset;
726         return 0;
727
728 reset:
729         dccp_v4_ctl_send_reset(skb);
730 discard:
731         kfree_skb(skb);
732         return 0;
733 }
734
735 EXPORT_SYMBOL_GPL(dccp_v4_do_rcv);
736
737 int dccp_invalid_packet(struct sk_buff *skb)
738 {
739         const struct dccp_hdr *dh;
740         unsigned int cscov;
741
742         if (skb->pkt_type != PACKET_HOST)
743                 return 1;
744
745         if (!pskb_may_pull(skb, sizeof(struct dccp_hdr))) {
746                 LIMIT_NETDEBUG(KERN_WARNING "DCCP: pskb_may_pull failed\n");
747                 return 1;
748         }
749
750         dh = dccp_hdr(skb);
751
752         /* If the packet type is not understood, drop packet and return */
753         if (dh->dccph_type >= DCCP_PKT_INVALID) {
754                 LIMIT_NETDEBUG(KERN_WARNING "DCCP: invalid packet type\n");
755                 return 1;
756         }
757
758         /*
759          * If P.Data Offset is too small for packet type, or too large for
760          * packet, drop packet and return
761          */
762         if (dh->dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) {
763                 LIMIT_NETDEBUG(KERN_WARNING "DCCP: P.Data Offset(%u) "
764                                             "too small 1\n",
765                                dh->dccph_doff);
766                 return 1;
767         }
768
769         if (!pskb_may_pull(skb, dh->dccph_doff * sizeof(u32))) {
770                 LIMIT_NETDEBUG(KERN_WARNING "DCCP: P.Data Offset(%u) "
771                                             "too small 2\n",
772                                dh->dccph_doff);
773                 return 1;
774         }
775
776         dh = dccp_hdr(skb);
777
778         /*
779          * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet
780          * has short sequence numbers), drop packet and return
781          */
782         if (dh->dccph_x == 0 &&
783             dh->dccph_type != DCCP_PKT_DATA &&
784             dh->dccph_type != DCCP_PKT_ACK &&
785             dh->dccph_type != DCCP_PKT_DATAACK) {
786                 LIMIT_NETDEBUG(KERN_WARNING "DCCP: P.type (%s) not Data, Ack "
787                                             "nor DataAck and P.X == 0\n",
788                                dccp_packet_name(dh->dccph_type));
789                 return 1;
790         }
791
792         /*
793          * If P.CsCov is too large for the packet size, drop packet and return.
794          * This must come _before_ checksumming (not as RFC 4340 suggests).
795          */
796         cscov = dccp_csum_coverage(skb);
797         if (cscov > skb->len) {
798                 LIMIT_NETDEBUG(KERN_WARNING
799                                "DCCP: P.CsCov %u exceeds packet length %d\n",
800                                dh->dccph_cscov, skb->len);
801                 return 1;
802         }
803
804         /* If header checksum is incorrect, drop packet and return.
805          * (This step is completed in the AF-dependent functions.) */
806         skb->csum = skb_checksum(skb, 0, cscov, 0);
807
808         return 0;
809 }
810
811 EXPORT_SYMBOL_GPL(dccp_invalid_packet);
812
813 /* this is called when real data arrives */
814 static int dccp_v4_rcv(struct sk_buff *skb)
815 {
816         const struct dccp_hdr *dh;
817         struct sock *sk;
818         int min_cov;
819
820         /* Step 1: Check header basics */
821
822         if (dccp_invalid_packet(skb))
823                 goto discard_it;
824
825         /* Step 1: If header checksum is incorrect, drop packet and return */
826         if (dccp_v4_csum_finish(skb, skb->nh.iph->saddr, skb->nh.iph->daddr)) {
827                 LIMIT_NETDEBUG(KERN_WARNING
828                                "%s: dropped packet with invalid checksum\n",
829                                __FUNCTION__);
830                 goto discard_it;
831         }
832
833         dh = dccp_hdr(skb);
834
835         DCCP_SKB_CB(skb)->dccpd_seq  = dccp_hdr_seq(skb);
836         DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
837
838         dccp_pr_debug("%8.8s "
839                       "src=%u.%u.%u.%u@%-5d "
840                       "dst=%u.%u.%u.%u@%-5d seq=%llu",
841                       dccp_packet_name(dh->dccph_type),
842                       NIPQUAD(skb->nh.iph->saddr), ntohs(dh->dccph_sport),
843                       NIPQUAD(skb->nh.iph->daddr), ntohs(dh->dccph_dport),
844                       (unsigned long long) DCCP_SKB_CB(skb)->dccpd_seq);
845
846         if (dccp_packet_without_ack(skb)) {
847                 DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
848                 dccp_pr_debug_cat("\n");
849         } else {
850                 DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
851                 dccp_pr_debug_cat(", ack=%llu\n", (unsigned long long)
852                                   DCCP_SKB_CB(skb)->dccpd_ack_seq);
853         }
854
855         /* Step 2:
856          *      Look up flow ID in table and get corresponding socket */
857         sk = __inet_lookup(&dccp_hashinfo,
858                            skb->nh.iph->saddr, dh->dccph_sport,
859                            skb->nh.iph->daddr, dh->dccph_dport,
860                            inet_iif(skb));
861
862         /* 
863          * Step 2:
864          *      If no socket ...
865          */
866         if (sk == NULL) {
867                 dccp_pr_debug("failed to look up flow ID in table and "
868                               "get corresponding socket\n");
869                 goto no_dccp_socket;
870         }
871
872         /* 
873          * Step 2:
874          *      ... or S.state == TIMEWAIT,
875          *              Generate Reset(No Connection) unless P.type == Reset
876          *              Drop packet and return
877          */
878         if (sk->sk_state == DCCP_TIME_WAIT) {
879                 dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: do_time_wait\n");
880                 inet_twsk_put(inet_twsk(sk));
881                 goto no_dccp_socket;
882         }
883
884         /*
885          * RFC 4340, sec. 9.2.1: Minimum Checksum Coverage
886          *      o if MinCsCov = 0, only packets with CsCov = 0 are accepted
887          *      o if MinCsCov > 0, also accept packets with CsCov >= MinCsCov
888          */
889         min_cov = dccp_sk(sk)->dccps_pcrlen;
890         if (dh->dccph_cscov && (min_cov == 0 || dh->dccph_cscov < min_cov))  {
891                 dccp_pr_debug("Packet CsCov %d does not satisfy MinCsCov %d\n",
892                               dh->dccph_cscov, min_cov);
893                 /* FIXME: "Such packets SHOULD be reported using Data Dropped
894                  *         options (Section 11.7) with Drop Code 0, Protocol
895                  *         Constraints."                                     */
896                 goto discard_and_relse;
897         }
898
899         if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
900                 goto discard_and_relse;
901         nf_reset(skb);
902
903         return sk_receive_skb(sk, skb);
904
905 no_dccp_socket:
906         if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
907                 goto discard_it;
908         /*
909          * Step 2:
910          *      If no socket ...
911          *              Generate Reset(No Connection) unless P.type == Reset
912          *              Drop packet and return
913          */
914         if (dh->dccph_type != DCCP_PKT_RESET) {
915                 DCCP_SKB_CB(skb)->dccpd_reset_code =
916                                         DCCP_RESET_CODE_NO_CONNECTION;
917                 dccp_v4_ctl_send_reset(skb);
918         }
919
920 discard_it:
921         kfree_skb(skb);
922         return 0;
923
924 discard_and_relse:
925         sock_put(sk);
926         goto discard_it;
927 }
928
929 static struct inet_connection_sock_af_ops dccp_ipv4_af_ops = {
930         .queue_xmit        = ip_queue_xmit,
931         .send_check        = dccp_v4_send_check,
932         .rebuild_header    = inet_sk_rebuild_header,
933         .conn_request      = dccp_v4_conn_request,
934         .syn_recv_sock     = dccp_v4_request_recv_sock,
935         .net_header_len    = sizeof(struct iphdr),
936         .setsockopt        = ip_setsockopt,
937         .getsockopt        = ip_getsockopt,
938         .addr2sockaddr     = inet_csk_addr2sockaddr,
939         .sockaddr_len      = sizeof(struct sockaddr_in),
940 #ifdef CONFIG_COMPAT
941         .compat_setsockopt = compat_ip_setsockopt,
942         .compat_getsockopt = compat_ip_getsockopt,
943 #endif
944 };
945
946 static int dccp_v4_init_sock(struct sock *sk)
947 {
948         static __u8 dccp_v4_ctl_sock_initialized;
949         int err = dccp_init_sock(sk, dccp_v4_ctl_sock_initialized);
950
951         if (err == 0) {
952                 if (unlikely(!dccp_v4_ctl_sock_initialized))
953                         dccp_v4_ctl_sock_initialized = 1;
954                 inet_csk(sk)->icsk_af_ops = &dccp_ipv4_af_ops;
955         }
956
957         return err;
958 }
959
960 static struct timewait_sock_ops dccp_timewait_sock_ops = {
961         .twsk_obj_size  = sizeof(struct inet_timewait_sock),
962 };
963
964 static struct proto dccp_v4_prot = {
965         .name                   = "DCCP",
966         .owner                  = THIS_MODULE,
967         .close                  = dccp_close,
968         .connect                = dccp_v4_connect,
969         .disconnect             = dccp_disconnect,
970         .ioctl                  = dccp_ioctl,
971         .init                   = dccp_v4_init_sock,
972         .setsockopt             = dccp_setsockopt,
973         .getsockopt             = dccp_getsockopt,
974         .sendmsg                = dccp_sendmsg,
975         .recvmsg                = dccp_recvmsg,
976         .backlog_rcv            = dccp_v4_do_rcv,
977         .hash                   = dccp_hash,
978         .unhash                 = dccp_unhash,
979         .accept                 = inet_csk_accept,
980         .get_port               = dccp_v4_get_port,
981         .shutdown               = dccp_shutdown,
982         .destroy                = dccp_destroy_sock,
983         .orphan_count           = &dccp_orphan_count,
984         .max_header             = MAX_DCCP_HEADER,
985         .obj_size               = sizeof(struct dccp_sock),
986         .rsk_prot               = &dccp_request_sock_ops,
987         .twsk_prot              = &dccp_timewait_sock_ops,
988 #ifdef CONFIG_COMPAT
989         .compat_setsockopt      = compat_dccp_setsockopt,
990         .compat_getsockopt      = compat_dccp_getsockopt,
991 #endif
992 };
993
994 static struct net_protocol dccp_v4_protocol = {
995         .handler        = dccp_v4_rcv,
996         .err_handler    = dccp_v4_err,
997         .no_policy      = 1,
998 };
999
1000 static const struct proto_ops inet_dccp_ops = {
1001         .family            = PF_INET,
1002         .owner             = THIS_MODULE,
1003         .release           = inet_release,
1004         .bind              = inet_bind,
1005         .connect           = inet_stream_connect,
1006         .socketpair        = sock_no_socketpair,
1007         .accept            = inet_accept,
1008         .getname           = inet_getname,
1009         /* FIXME: work on tcp_poll to rename it to inet_csk_poll */
1010         .poll              = dccp_poll,
1011         .ioctl             = inet_ioctl,
1012         /* FIXME: work on inet_listen to rename it to sock_common_listen */
1013         .listen            = inet_dccp_listen,
1014         .shutdown          = inet_shutdown,
1015         .setsockopt        = sock_common_setsockopt,
1016         .getsockopt        = sock_common_getsockopt,
1017         .sendmsg           = inet_sendmsg,
1018         .recvmsg           = sock_common_recvmsg,
1019         .mmap              = sock_no_mmap,
1020         .sendpage          = sock_no_sendpage,
1021 #ifdef CONFIG_COMPAT
1022         .compat_setsockopt = compat_sock_common_setsockopt,
1023         .compat_getsockopt = compat_sock_common_getsockopt,
1024 #endif
1025 };
1026
1027 static struct inet_protosw dccp_v4_protosw = {
1028         .type           = SOCK_DCCP,
1029         .protocol       = IPPROTO_DCCP,
1030         .prot           = &dccp_v4_prot,
1031         .ops            = &inet_dccp_ops,
1032         .capability     = -1,
1033         .no_check       = 0,
1034         .flags          = INET_PROTOSW_ICSK,
1035 };
1036
1037 static int __init dccp_v4_init(void)
1038 {
1039         int err = proto_register(&dccp_v4_prot, 1);
1040
1041         if (err != 0)
1042                 goto out;
1043
1044         err = inet_add_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
1045         if (err != 0)
1046                 goto out_proto_unregister;
1047
1048         inet_register_protosw(&dccp_v4_protosw);
1049
1050         err = inet_csk_ctl_sock_create(&dccp_v4_ctl_socket, PF_INET,
1051                                        SOCK_DCCP, IPPROTO_DCCP);
1052         if (err)
1053                 goto out_unregister_protosw;
1054 out:
1055         return err;
1056 out_unregister_protosw:
1057         inet_unregister_protosw(&dccp_v4_protosw);
1058         inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
1059 out_proto_unregister:
1060         proto_unregister(&dccp_v4_prot);
1061         goto out;
1062 }
1063
1064 static void __exit dccp_v4_exit(void)
1065 {
1066         inet_unregister_protosw(&dccp_v4_protosw);
1067         inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
1068         proto_unregister(&dccp_v4_prot);
1069 }
1070
1071 module_init(dccp_v4_init);
1072 module_exit(dccp_v4_exit);
1073
1074 /*
1075  * __stringify doesn't likes enums, so use SOCK_DCCP (6) and IPPROTO_DCCP (33)
1076  * values directly, Also cover the case where the protocol is not specified,
1077  * i.e. net-pf-PF_INET-proto-0-type-SOCK_DCCP
1078  */
1079 MODULE_ALIAS("net-pf-" __stringify(PF_INET) "-proto-33-type-6");
1080 MODULE_ALIAS("net-pf-" __stringify(PF_INET) "-proto-0-type-6");
1081 MODULE_LICENSE("GPL");
1082 MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@mandriva.com>");
1083 MODULE_DESCRIPTION("DCCP - Datagram Congestion Controlled Protocol");