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