[DCCP]: Correct documentation
[linux-2.6-block.git] / net / dccp / ipv4.c
CommitLineData
7c657876
ACM
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
7c657876
ACM
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>
b61fafc4 20#include <net/inet_common.h>
7c657876 21#include <net/inet_hashtables.h>
14c85021 22#include <net/inet_sock.h>
b61fafc4 23#include <net/protocol.h>
7c657876 24#include <net/sock.h>
6d6ee43e 25#include <net/timewait_sock.h>
7c657876
ACM
26#include <net/tcp_states.h>
27#include <net/xfrm.h>
28
ae31c339 29#include "ackvec.h"
7c657876
ACM
30#include "ccid.h"
31#include "dccp.h"
afe00251 32#include "feat.h"
7c657876 33
72478873
ACM
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 */
39static struct socket *dccp_v4_ctl_socket;
40
7c657876
ACM
41static int dccp_v4_get_port(struct sock *sk, const unsigned short snum)
42{
971af18b
ACM
43 return inet_csk_get_port(&dccp_hashinfo, sk, snum,
44 inet_csk_bind_conflict);
7c657876
ACM
45}
46
f21e68ca 47int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
7c657876
ACM
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;
bada8adc 53 __be32 daddr, nexthop;
7c657876
ACM
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,
8eb9086f 75 inet->sport, usin->sin_port, sk, 1);
7c657876
ACM
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
d83d8461 94 inet_csk(sk)->icsk_ext_hdr_len = 0;
7c657876 95 if (inet->opt != NULL)
d83d8461 96 inet_csk(sk)->icsk_ext_hdr_len = inet->opt->optlen;
7c657876
ACM
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);
a7f5e7f1 104 err = inet_hash_connect(&dccp_death_row, sk);
7c657876
ACM
105 if (err != 0)
106 goto failure;
107
5d39a795 108 err = ip_route_newports(&rt, IPPROTO_DCCP, inet->sport, inet->dport,
c9eaf173 109 sk);
7c657876
ACM
110 if (err != 0)
111 goto failure;
112
113 /* OK, now commit destination to socket. */
114 sk_setup_caps(sk, &rt->u.dst);
115
d7f7365f
GR
116 dp->dccps_iss = secure_dccp_sequence_number(inet->saddr, inet->daddr,
117 inet->sport, inet->dport);
7c657876
ACM
118 inet->id = dp->dccps_iss ^ jiffies;
119
120 err = dccp_connect(sk);
121 rt = NULL;
122 if (err != 0)
123 goto failure;
124out:
125 return err;
126failure:
7690af3f
ACM
127 /*
128 * This unhashes the socket and releases the local port, if necessary.
129 */
7c657876
ACM
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
f21e68ca
ACM
137EXPORT_SYMBOL_GPL(dccp_v4_connect);
138
7c657876
ACM
139/*
140 * This routine does path mtu discovery as defined in RFC1191.
141 */
142static 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.
c9eaf173 160 * There is a small race when the user changes this flag in the
7c657876
ACM
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 &&
d83d8461 177 inet_csk(sk)->icsk_pmtu_cookie > mtu) {
7c657876
ACM
178 dccp_sync_mss(sk, mtu);
179
180 /*
0e64e94e 181 * From RFC 4340, sec. 14.1:
7c657876 182 *
7690af3f
ACM
183 * DCCP-Sync packets are the best choice for upward
184 * probing, since DCCP-Sync probes do not risk application
185 * data loss.
7c657876 186 */
e92ae93a 187 dccp_send_sync(sk, dp->dccps_gsr, DCCP_PKT_SYNC);
7c657876
ACM
188 } /* else let the usual retransmit timer handle it */
189}
190
7c657876
ACM
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 */
b61fafc4 203static void dccp_v4_err(struct sk_buff *skb, u32 info)
7c657876
ACM
204{
205 const struct iphdr *iph = (struct iphdr *)skb->data;
7690af3f
ACM
206 const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data +
207 (iph->ihl << 2));
7c657876
ACM
208 struct dccp_sock *dp;
209 struct inet_sock *inet;
88c7664f
ACM
210 const int type = icmp_hdr(skb)->type;
211 const int code = icmp_hdr(skb)->code;
7c657876
ACM
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) {
9469c7b4 229 inet_twsk_put(inet_twsk(sk));
7c657876
ACM
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)) {
e523a155 247 NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
7c657876
ACM
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;
342out:
343 bh_unlock_sock(sk);
344 sock_put(sk);
345}
346
2bda2853 347static inline __sum16 dccp_v4_csum_finish(struct sk_buff *skb,
6f4e5fff
GR
348 __be32 src, __be32 dst)
349{
350 return csum_tcpudp_magic(src, dst, skb->len, IPPROTO_DCCP, skb->csum);
351}
352
353void dccp_v4_send_check(struct sock *sk, int unused, struct sk_buff *skb)
57cca05a
ACM
354{
355 const struct inet_sock *inet = inet_sk(sk);
356 struct dccp_hdr *dh = dccp_hdr(skb);
357
6f4e5fff
GR
358 dccp_csum_outgoing(skb);
359 dh->dccph_checksum = dccp_v4_csum_finish(skb, inet->saddr, inet->daddr);
57cca05a
ACM
360}
361
f21e68ca
ACM
362EXPORT_SYMBOL_GPL(dccp_v4_send_check);
363
865e9022 364static inline u64 dccp_v4_init_sequence(const struct sk_buff *skb)
7c657876 365{
eddc9ec5
ACM
366 return secure_dccp_sequence_number(ip_hdr(skb)->daddr,
367 ip_hdr(skb)->saddr,
7c657876
ACM
368 dccp_hdr(skb)->dccph_dport,
369 dccp_hdr(skb)->dccph_sport);
370}
371
7c657876
ACM
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 */
378struct 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;
7c657876
ACM
384 struct sock *newsk;
385
386 if (sk_acceptq_is_full(sk))
387 goto exit_overflow;
388
389 if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
390 goto exit;
391
392 newsk = dccp_create_openreq_child(sk, req, skb);
393 if (newsk == NULL)
394 goto exit;
395
396 sk_setup_caps(newsk, dst);
397
7c657876
ACM
398 newinet = inet_sk(newsk);
399 ireq = inet_rsk(req);
400 newinet->daddr = ireq->rmt_addr;
401 newinet->rcv_saddr = ireq->loc_addr;
402 newinet->saddr = ireq->loc_addr;
403 newinet->opt = ireq->opt;
404 ireq->opt = NULL;
405 newinet->mc_index = inet_iif(skb);
eddc9ec5 406 newinet->mc_ttl = ip_hdr(skb)->ttl;
7c657876
ACM
407 newinet->id = jiffies;
408
409 dccp_sync_mss(newsk, dst_mtu(dst));
410
411 __inet_hash(&dccp_hashinfo, newsk, 0);
412 __inet_inherit_port(&dccp_hashinfo, sk, newsk);
413
414 return newsk;
415
416exit_overflow:
417 NET_INC_STATS_BH(LINUX_MIB_LISTENOVERFLOWS);
418exit:
419 NET_INC_STATS_BH(LINUX_MIB_LISTENDROPS);
420 dst_release(dst);
421 return NULL;
422}
423
f21e68ca
ACM
424EXPORT_SYMBOL_GPL(dccp_v4_request_recv_sock);
425
7c657876
ACM
426static struct sock *dccp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
427{
428 const struct dccp_hdr *dh = dccp_hdr(skb);
eddc9ec5 429 const struct iphdr *iph = ip_hdr(skb);
7c657876
ACM
430 struct sock *nsk;
431 struct request_sock **prev;
432 /* Find possible connection requests. */
433 struct request_sock *req = inet_csk_search_req(sk, &prev,
434 dh->dccph_sport,
435 iph->saddr, iph->daddr);
436 if (req != NULL)
437 return dccp_check_req(sk, skb, req, prev);
438
8f491069
HX
439 nsk = inet_lookup_established(&dccp_hashinfo,
440 iph->saddr, dh->dccph_sport,
441 iph->daddr, dh->dccph_dport,
442 inet_iif(skb));
7c657876
ACM
443 if (nsk != NULL) {
444 if (nsk->sk_state != DCCP_TIME_WAIT) {
445 bh_lock_sock(nsk);
446 return nsk;
447 }
9469c7b4 448 inet_twsk_put(inet_twsk(nsk));
7c657876
ACM
449 return NULL;
450 }
451
452 return sk;
453}
454
7c657876
ACM
455static struct dst_entry* dccp_v4_route_skb(struct sock *sk,
456 struct sk_buff *skb)
457{
458 struct rtable *rt;
459 struct flowi fl = { .oif = ((struct rtable *)skb->dst)->rt_iif,
460 .nl_u = { .ip4_u =
eddc9ec5
ACM
461 { .daddr = ip_hdr(skb)->saddr,
462 .saddr = ip_hdr(skb)->daddr,
7c657876
ACM
463 .tos = RT_CONN_FLAGS(sk) } },
464 .proto = sk->sk_protocol,
465 .uli_u = { .ports =
466 { .sport = dccp_hdr(skb)->dccph_dport,
7690af3f 467 .dport = dccp_hdr(skb)->dccph_sport }
8109b02b 468 }
7690af3f 469 };
7c657876 470
beb8d13b 471 security_skb_classify_flow(skb, &fl);
7c657876
ACM
472 if (ip_route_output_flow(&rt, &fl, sk, 0)) {
473 IP_INC_STATS_BH(IPSTATS_MIB_OUTNOROUTES);
474 return NULL;
475 }
476
477 return &rt->u.dst;
478}
479
3d2fe62b
GR
480static int dccp_v4_send_response(struct sock *sk, struct request_sock *req,
481 struct dst_entry *dst)
482{
483 int err = -1;
484 struct sk_buff *skb;
485
486 /* First, grab a route. */
c9eaf173 487
3d2fe62b
GR
488 if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
489 goto out;
490
491 skb = dccp_make_response(sk, dst, req);
492 if (skb != NULL) {
493 const struct inet_request_sock *ireq = inet_rsk(req);
494 struct dccp_hdr *dh = dccp_hdr(skb);
495
6f4e5fff
GR
496 dh->dccph_checksum = dccp_v4_csum_finish(skb, ireq->loc_addr,
497 ireq->rmt_addr);
3d2fe62b
GR
498 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
499 err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
500 ireq->rmt_addr,
501 ireq->opt);
b9df3cb8 502 err = net_xmit_eval(err);
3d2fe62b
GR
503 }
504
505out:
506 dst_release(dst);
507 return err;
508}
509
cfb6eeb4 510static void dccp_v4_ctl_send_reset(struct sock *sk, struct sk_buff *rxskb)
7c657876
ACM
511{
512 int err;
eddc9ec5 513 const struct iphdr *rxiph;
7c657876
ACM
514 struct sk_buff *skb;
515 struct dst_entry *dst;
516
517 /* Never send a reset in response to a reset. */
e356d37a 518 if (dccp_hdr(rxskb)->dccph_type == DCCP_PKT_RESET)
7c657876
ACM
519 return;
520
521 if (((struct rtable *)rxskb->dst)->rt_type != RTN_LOCAL)
522 return;
523
72478873 524 dst = dccp_v4_route_skb(dccp_v4_ctl_socket->sk, rxskb);
7c657876
ACM
525 if (dst == NULL)
526 return;
527
e356d37a 528 skb = dccp_ctl_make_reset(dccp_v4_ctl_socket, rxskb);
7c657876
ACM
529 if (skb == NULL)
530 goto out;
531
eddc9ec5 532 rxiph = ip_hdr(rxskb);
e356d37a
GR
533 dccp_hdr(skb)->dccph_checksum = dccp_v4_csum_finish(skb, rxiph->saddr,
534 rxiph->daddr);
535 skb->dst = dst_clone(dst);
7c657876 536
72478873
ACM
537 bh_lock_sock(dccp_v4_ctl_socket->sk);
538 err = ip_build_and_send_pkt(skb, dccp_v4_ctl_socket->sk,
eddc9ec5 539 rxiph->daddr, rxiph->saddr, NULL);
72478873 540 bh_unlock_sock(dccp_v4_ctl_socket->sk);
7c657876 541
b9df3cb8 542 if (net_xmit_eval(err) == 0) {
7c657876
ACM
543 DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
544 DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
545 }
546out:
547 dst_release(dst);
548}
549
3d2fe62b
GR
550static void dccp_v4_reqsk_destructor(struct request_sock *req)
551{
552 kfree(inet_rsk(req)->opt);
553}
554
555static struct request_sock_ops dccp_request_sock_ops __read_mostly = {
556 .family = PF_INET,
557 .obj_size = sizeof(struct dccp_request_sock),
558 .rtx_syn_ack = dccp_v4_send_response,
559 .send_ack = dccp_reqsk_send_ack,
560 .destructor = dccp_v4_reqsk_destructor,
561 .send_reset = dccp_v4_ctl_send_reset,
562};
563
564int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
565{
566 struct inet_request_sock *ireq;
3d2fe62b
GR
567 struct request_sock *req;
568 struct dccp_request_sock *dreq;
8109b02b 569 const __be32 service = dccp_hdr_request(skb)->dccph_req_service;
3d2fe62b
GR
570 struct dccp_skb_cb *dcb = DCCP_SKB_CB(skb);
571 __u8 reset_code = DCCP_RESET_CODE_TOO_BUSY;
572
573 /* Never answer to DCCP_PKT_REQUESTs send to broadcast or multicast */
574 if (((struct rtable *)skb->dst)->rt_flags &
575 (RTCF_BROADCAST | RTCF_MULTICAST)) {
576 reset_code = DCCP_RESET_CODE_NO_CONNECTION;
577 goto drop;
578 }
579
580 if (dccp_bad_service_code(sk, service)) {
581 reset_code = DCCP_RESET_CODE_BAD_SERVICE_CODE;
582 goto drop;
8109b02b 583 }
3d2fe62b
GR
584 /*
585 * TW buckets are converted to open requests without
586 * limitations, they conserve resources and peer is
587 * evidently real one.
588 */
589 if (inet_csk_reqsk_queue_is_full(sk))
590 goto drop;
591
592 /*
593 * Accept backlog is full. If we have already queued enough
594 * of warm entries in syn queue, drop request. It is better than
595 * clogging syn queue with openreqs with exponentially increasing
596 * timeout.
597 */
598 if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
599 goto drop;
600
601 req = reqsk_alloc(&dccp_request_sock_ops);
602 if (req == NULL)
603 goto drop;
604
605 if (dccp_parse_options(sk, skb))
606 goto drop_and_free;
607
cf557926 608 dccp_reqsk_init(req, skb);
3d2fe62b
GR
609
610 if (security_inet_conn_request(sk, skb, req))
611 goto drop_and_free;
612
613 ireq = inet_rsk(req);
eddc9ec5
ACM
614 ireq->loc_addr = ip_hdr(skb)->daddr;
615 ireq->rmt_addr = ip_hdr(skb)->saddr;
3d2fe62b
GR
616 ireq->opt = NULL;
617
8109b02b 618 /*
3d2fe62b
GR
619 * Step 3: Process LISTEN state
620 *
621 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
622 *
623 * In fact we defer setting S.GSR, S.SWL, S.SWH to
624 * dccp_create_openreq_child.
625 */
626 dreq = dccp_rsk(req);
627 dreq->dreq_isr = dcb->dccpd_seq;
865e9022 628 dreq->dreq_iss = dccp_v4_init_sequence(skb);
3d2fe62b
GR
629 dreq->dreq_service = service;
630
631 if (dccp_v4_send_response(sk, req, NULL))
632 goto drop_and_free;
633
634 inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
635 return 0;
636
637drop_and_free:
638 reqsk_free(req);
639drop:
640 DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
641 dcb->dccpd_reset_code = reset_code;
642 return -1;
643}
644
645EXPORT_SYMBOL_GPL(dccp_v4_conn_request);
646
7c657876
ACM
647int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
648{
649 struct dccp_hdr *dh = dccp_hdr(skb);
650
651 if (sk->sk_state == DCCP_OPEN) { /* Fast path */
652 if (dccp_rcv_established(sk, skb, dh, skb->len))
653 goto reset;
654 return 0;
655 }
656
657 /*
658 * Step 3: Process LISTEN state
d83ca5ac
GR
659 * If P.type == Request or P contains a valid Init Cookie option,
660 * (* Must scan the packet's options to check for Init
661 * Cookies. Only Init Cookies are processed here,
662 * however; other options are processed in Step 8. This
663 * scan need only be performed if the endpoint uses Init
664 * Cookies *)
665 * (* Generate a new socket and switch to that socket *)
666 * Set S := new socket for this port pair
667 * S.state = RESPOND
668 * Choose S.ISS (initial seqno) or set from Init Cookies
669 * Initialize S.GAR := S.ISS
670 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookies
671 * Continue with S.state == RESPOND
672 * (* A Response packet will be generated in Step 11 *)
673 * Otherwise,
674 * Generate Reset(No Connection) unless P.type == Reset
675 * Drop packet and return
7c657876 676 *
7690af3f
ACM
677 * NOTE: the check for the packet types is done in
678 * dccp_rcv_state_process
7c657876
ACM
679 */
680 if (sk->sk_state == DCCP_LISTEN) {
681 struct sock *nsk = dccp_v4_hnd_req(sk, skb);
682
683 if (nsk == NULL)
684 goto discard;
685
686 if (nsk != sk) {
687 if (dccp_child_process(sk, nsk, skb))
688 goto reset;
689 return 0;
690 }
691 }
692
693 if (dccp_rcv_state_process(sk, skb, dh, skb->len))
694 goto reset;
695 return 0;
696
697reset:
cfb6eeb4 698 dccp_v4_ctl_send_reset(sk, skb);
7c657876
ACM
699discard:
700 kfree_skb(skb);
701 return 0;
702}
703
f21e68ca
ACM
704EXPORT_SYMBOL_GPL(dccp_v4_do_rcv);
705
09dbc389
GR
706/**
707 * dccp_invalid_packet - check for malformed packets
708 * Implements RFC 4340, 8.5: Step 1: Check header basics
709 * Packets that fail these checks are ignored and do not receive Resets.
710 */
f21e68ca 711int dccp_invalid_packet(struct sk_buff *skb)
7c657876
ACM
712{
713 const struct dccp_hdr *dh;
6f4e5fff 714 unsigned int cscov;
7c657876
ACM
715
716 if (skb->pkt_type != PACKET_HOST)
717 return 1;
718
09dbc389 719 /* If the packet is shorter than 12 bytes, drop packet and return */
7c657876 720 if (!pskb_may_pull(skb, sizeof(struct dccp_hdr))) {
59348b19 721 DCCP_WARN("pskb_may_pull failed\n");
7c657876
ACM
722 return 1;
723 }
724
725 dh = dccp_hdr(skb);
726
09dbc389 727 /* If P.type is not understood, drop packet and return */
7c657876 728 if (dh->dccph_type >= DCCP_PKT_INVALID) {
59348b19 729 DCCP_WARN("invalid packet type\n");
7c657876
ACM
730 return 1;
731 }
732
733 /*
09dbc389 734 * If P.Data Offset is too small for packet type, drop packet and return
7c657876
ACM
735 */
736 if (dh->dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) {
59348b19 737 DCCP_WARN("P.Data Offset(%u) too small\n", dh->dccph_doff);
7c657876
ACM
738 return 1;
739 }
09dbc389
GR
740 /*
741 * If P.Data Offset is too too large for packet, drop packet and return
742 */
7c657876 743 if (!pskb_may_pull(skb, dh->dccph_doff * sizeof(u32))) {
59348b19 744 DCCP_WARN("P.Data Offset(%u) too large\n", dh->dccph_doff);
7c657876
ACM
745 return 1;
746 }
747
7c657876
ACM
748 /*
749 * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet
750 * has short sequence numbers), drop packet and return
751 */
09dbc389
GR
752 if (dh->dccph_type >= DCCP_PKT_DATA &&
753 dh->dccph_type <= DCCP_PKT_DATAACK && dh->dccph_x == 0) {
59348b19
GR
754 DCCP_WARN("P.type (%s) not Data || [Data]Ack, while P.X == 0\n",
755 dccp_packet_name(dh->dccph_type));
7c657876
ACM
756 return 1;
757 }
758
6f4e5fff
GR
759 /*
760 * If P.CsCov is too large for the packet size, drop packet and return.
761 * This must come _before_ checksumming (not as RFC 4340 suggests).
762 */
763 cscov = dccp_csum_coverage(skb);
764 if (cscov > skb->len) {
59348b19
GR
765 DCCP_WARN("P.CsCov %u exceeds packet length %d\n",
766 dh->dccph_cscov, skb->len);
6f4e5fff
GR
767 return 1;
768 }
769
770 /* If header checksum is incorrect, drop packet and return.
771 * (This step is completed in the AF-dependent functions.) */
772 skb->csum = skb_checksum(skb, 0, cscov, 0);
773
7c657876
ACM
774 return 0;
775}
776
f21e68ca
ACM
777EXPORT_SYMBOL_GPL(dccp_invalid_packet);
778
7c657876 779/* this is called when real data arrives */
b61fafc4 780static int dccp_v4_rcv(struct sk_buff *skb)
7c657876
ACM
781{
782 const struct dccp_hdr *dh;
eddc9ec5 783 const struct iphdr *iph;
7c657876 784 struct sock *sk;
6f4e5fff 785 int min_cov;
7c657876 786
6f4e5fff 787 /* Step 1: Check header basics */
7c657876
ACM
788
789 if (dccp_invalid_packet(skb))
790 goto discard_it;
791
eddc9ec5 792 iph = ip_hdr(skb);
6f4e5fff 793 /* Step 1: If header checksum is incorrect, drop packet and return */
eddc9ec5 794 if (dccp_v4_csum_finish(skb, iph->saddr, iph->daddr)) {
59348b19 795 DCCP_WARN("dropped packet with invalid checksum\n");
f21e68ca
ACM
796 goto discard_it;
797 }
798
7c657876 799 dh = dccp_hdr(skb);
7c657876 800
7c657876
ACM
801 DCCP_SKB_CB(skb)->dccpd_seq = dccp_hdr_seq(skb);
802 DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
803
804 dccp_pr_debug("%8.8s "
805 "src=%u.%u.%u.%u@%-5d "
806 "dst=%u.%u.%u.%u@%-5d seq=%llu",
807 dccp_packet_name(dh->dccph_type),
eddc9ec5
ACM
808 NIPQUAD(iph->saddr), ntohs(dh->dccph_sport),
809 NIPQUAD(iph->daddr), ntohs(dh->dccph_dport),
f6ccf554 810 (unsigned long long) DCCP_SKB_CB(skb)->dccpd_seq);
7c657876
ACM
811
812 if (dccp_packet_without_ack(skb)) {
813 DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
814 dccp_pr_debug_cat("\n");
815 } else {
816 DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
d23c7107 817 dccp_pr_debug_cat(", ack=%llu\n", (unsigned long long)
f6ccf554 818 DCCP_SKB_CB(skb)->dccpd_ack_seq);
7c657876
ACM
819 }
820
821 /* Step 2:
8109b02b 822 * Look up flow ID in table and get corresponding socket */
7c657876 823 sk = __inet_lookup(&dccp_hashinfo,
eddc9ec5
ACM
824 iph->saddr, dh->dccph_sport,
825 iph->daddr, dh->dccph_dport, inet_iif(skb));
8109b02b 826 /*
7c657876 827 * Step 2:
8109b02b 828 * If no socket ...
7c657876
ACM
829 */
830 if (sk == NULL) {
831 dccp_pr_debug("failed to look up flow ID in table and "
832 "get corresponding socket\n");
833 goto no_dccp_socket;
834 }
835
8109b02b 836 /*
7c657876 837 * Step 2:
8109b02b 838 * ... or S.state == TIMEWAIT,
7c657876
ACM
839 * Generate Reset(No Connection) unless P.type == Reset
840 * Drop packet and return
841 */
7c657876 842 if (sk->sk_state == DCCP_TIME_WAIT) {
d23c7107
GR
843 dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: do_time_wait\n");
844 inet_twsk_put(inet_twsk(sk));
845 goto no_dccp_socket;
7c657876
ACM
846 }
847
6f4e5fff
GR
848 /*
849 * RFC 4340, sec. 9.2.1: Minimum Checksum Coverage
8109b02b
ACM
850 * o if MinCsCov = 0, only packets with CsCov = 0 are accepted
851 * o if MinCsCov > 0, also accept packets with CsCov >= MinCsCov
6f4e5fff
GR
852 */
853 min_cov = dccp_sk(sk)->dccps_pcrlen;
854 if (dh->dccph_cscov && (min_cov == 0 || dh->dccph_cscov < min_cov)) {
855 dccp_pr_debug("Packet CsCov %d does not satisfy MinCsCov %d\n",
856 dh->dccph_cscov, min_cov);
857 /* FIXME: "Such packets SHOULD be reported using Data Dropped
858 * options (Section 11.7) with Drop Code 0, Protocol
859 * Constraints." */
860 goto discard_and_relse;
861 }
862
25995ff5 863 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
7c657876 864 goto discard_and_relse;
eb9c7ebe 865 nf_reset(skb);
7c657876 866
58a5a7b9 867 return sk_receive_skb(sk, skb, 1);
7c657876
ACM
868
869no_dccp_socket:
870 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
871 goto discard_it;
872 /*
873 * Step 2:
8109b02b 874 * If no socket ...
7c657876
ACM
875 * Generate Reset(No Connection) unless P.type == Reset
876 * Drop packet and return
877 */
878 if (dh->dccph_type != DCCP_PKT_RESET) {
7690af3f
ACM
879 DCCP_SKB_CB(skb)->dccpd_reset_code =
880 DCCP_RESET_CODE_NO_CONNECTION;
cfb6eeb4 881 dccp_v4_ctl_send_reset(sk, skb);
7c657876
ACM
882 }
883
884discard_it:
7c657876
ACM
885 kfree_skb(skb);
886 return 0;
887
888discard_and_relse:
889 sock_put(sk);
890 goto discard_it;
891}
892
b61fafc4 893static struct inet_connection_sock_af_ops dccp_ipv4_af_ops = {
543d9cfe
ACM
894 .queue_xmit = ip_queue_xmit,
895 .send_check = dccp_v4_send_check,
896 .rebuild_header = inet_sk_rebuild_header,
897 .conn_request = dccp_v4_conn_request,
898 .syn_recv_sock = dccp_v4_request_recv_sock,
899 .net_header_len = sizeof(struct iphdr),
900 .setsockopt = ip_setsockopt,
901 .getsockopt = ip_getsockopt,
902 .addr2sockaddr = inet_csk_addr2sockaddr,
903 .sockaddr_len = sizeof(struct sockaddr_in),
3fdadf7d 904#ifdef CONFIG_COMPAT
543d9cfe
ACM
905 .compat_setsockopt = compat_ip_setsockopt,
906 .compat_getsockopt = compat_ip_getsockopt,
3fdadf7d 907#endif
57cca05a
ACM
908};
909
3e0fadc5 910static int dccp_v4_init_sock(struct sock *sk)
7c657876 911{
72478873
ACM
912 static __u8 dccp_v4_ctl_sock_initialized;
913 int err = dccp_init_sock(sk, dccp_v4_ctl_sock_initialized);
f21e68ca 914
72478873
ACM
915 if (err == 0) {
916 if (unlikely(!dccp_v4_ctl_sock_initialized))
917 dccp_v4_ctl_sock_initialized = 1;
3e0fadc5 918 inet_csk(sk)->icsk_af_ops = &dccp_ipv4_af_ops;
72478873
ACM
919 }
920
3e0fadc5 921 return err;
7c657876
ACM
922}
923
6d6ee43e
ACM
924static struct timewait_sock_ops dccp_timewait_sock_ops = {
925 .twsk_obj_size = sizeof(struct inet_timewait_sock),
926};
927
5e0817f8 928static struct proto dccp_v4_prot = {
7c657876
ACM
929 .name = "DCCP",
930 .owner = THIS_MODULE,
931 .close = dccp_close,
932 .connect = dccp_v4_connect,
933 .disconnect = dccp_disconnect,
934 .ioctl = dccp_ioctl,
935 .init = dccp_v4_init_sock,
936 .setsockopt = dccp_setsockopt,
937 .getsockopt = dccp_getsockopt,
938 .sendmsg = dccp_sendmsg,
939 .recvmsg = dccp_recvmsg,
940 .backlog_rcv = dccp_v4_do_rcv,
c985ed70 941 .hash = dccp_hash,
f21e68ca 942 .unhash = dccp_unhash,
7c657876
ACM
943 .accept = inet_csk_accept,
944 .get_port = dccp_v4_get_port,
945 .shutdown = dccp_shutdown,
3e0fadc5 946 .destroy = dccp_destroy_sock,
7c657876
ACM
947 .orphan_count = &dccp_orphan_count,
948 .max_header = MAX_DCCP_HEADER,
949 .obj_size = sizeof(struct dccp_sock),
950 .rsk_prot = &dccp_request_sock_ops,
6d6ee43e 951 .twsk_prot = &dccp_timewait_sock_ops,
543d9cfe
ACM
952#ifdef CONFIG_COMPAT
953 .compat_setsockopt = compat_dccp_setsockopt,
954 .compat_getsockopt = compat_dccp_getsockopt,
955#endif
7c657876 956};
6d6ee43e 957
b61fafc4
ACM
958static struct net_protocol dccp_v4_protocol = {
959 .handler = dccp_v4_rcv,
960 .err_handler = dccp_v4_err,
961 .no_policy = 1,
962};
963
964static const struct proto_ops inet_dccp_ops = {
543d9cfe
ACM
965 .family = PF_INET,
966 .owner = THIS_MODULE,
967 .release = inet_release,
968 .bind = inet_bind,
969 .connect = inet_stream_connect,
970 .socketpair = sock_no_socketpair,
971 .accept = inet_accept,
972 .getname = inet_getname,
b61fafc4 973 /* FIXME: work on tcp_poll to rename it to inet_csk_poll */
543d9cfe
ACM
974 .poll = dccp_poll,
975 .ioctl = inet_ioctl,
b61fafc4 976 /* FIXME: work on inet_listen to rename it to sock_common_listen */
543d9cfe
ACM
977 .listen = inet_dccp_listen,
978 .shutdown = inet_shutdown,
979 .setsockopt = sock_common_setsockopt,
980 .getsockopt = sock_common_getsockopt,
981 .sendmsg = inet_sendmsg,
982 .recvmsg = sock_common_recvmsg,
983 .mmap = sock_no_mmap,
984 .sendpage = sock_no_sendpage,
3fdadf7d 985#ifdef CONFIG_COMPAT
543d9cfe
ACM
986 .compat_setsockopt = compat_sock_common_setsockopt,
987 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 988#endif
b61fafc4
ACM
989};
990
991static struct inet_protosw dccp_v4_protosw = {
992 .type = SOCK_DCCP,
993 .protocol = IPPROTO_DCCP,
994 .prot = &dccp_v4_prot,
995 .ops = &inet_dccp_ops,
996 .capability = -1,
997 .no_check = 0,
998 .flags = INET_PROTOSW_ICSK,
999};
1000
b61fafc4
ACM
1001static int __init dccp_v4_init(void)
1002{
1003 int err = proto_register(&dccp_v4_prot, 1);
1004
1005 if (err != 0)
1006 goto out;
1007
1008 err = inet_add_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
1009 if (err != 0)
1010 goto out_proto_unregister;
1011
1012 inet_register_protosw(&dccp_v4_protosw);
1013
c4d93909
ACM
1014 err = inet_csk_ctl_sock_create(&dccp_v4_ctl_socket, PF_INET,
1015 SOCK_DCCP, IPPROTO_DCCP);
b61fafc4
ACM
1016 if (err)
1017 goto out_unregister_protosw;
1018out:
1019 return err;
1020out_unregister_protosw:
1021 inet_unregister_protosw(&dccp_v4_protosw);
1022 inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
1023out_proto_unregister:
1024 proto_unregister(&dccp_v4_prot);
1025 goto out;
1026}
1027
1028static void __exit dccp_v4_exit(void)
1029{
1030 inet_unregister_protosw(&dccp_v4_protosw);
1031 inet_del_protocol(&dccp_v4_protocol, IPPROTO_DCCP);
1032 proto_unregister(&dccp_v4_prot);
1033}
1034
1035module_init(dccp_v4_init);
1036module_exit(dccp_v4_exit);
1037
1038/*
1039 * __stringify doesn't likes enums, so use SOCK_DCCP (6) and IPPROTO_DCCP (33)
1040 * values directly, Also cover the case where the protocol is not specified,
1041 * i.e. net-pf-PF_INET-proto-0-type-SOCK_DCCP
1042 */
1043MODULE_ALIAS("net-pf-" __stringify(PF_INET) "-proto-33-type-6");
1044MODULE_ALIAS("net-pf-" __stringify(PF_INET) "-proto-0-type-6");
1045MODULE_LICENSE("GPL");
1046MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@mandriva.com>");
1047MODULE_DESCRIPTION("DCCP - Datagram Congestion Controlled Protocol");