blob: 335e00e9631dd05644a97bfa2151d1b815c51a06 [file] [log] [blame]
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001/*
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/config.h>
14#include <linux/dccp.h>
15#include <linux/icmp.h>
16#include <linux/module.h>
17#include <linux/skbuff.h>
18#include <linux/random.h>
19
20#include <net/icmp.h>
21#include <net/inet_hashtables.h>
22#include <net/sock.h>
23#include <net/tcp_states.h>
24#include <net/xfrm.h>
25
26#include "ccid.h"
27#include "dccp.h"
28
29struct inet_hashinfo __cacheline_aligned dccp_hashinfo = {
30 .lhash_lock = RW_LOCK_UNLOCKED,
31 .lhash_users = ATOMIC_INIT(0),
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -030032 .lhash_wait = __WAIT_QUEUE_HEAD_INITIALIZER(dccp_hashinfo.lhash_wait),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070033 .portalloc_lock = SPIN_LOCK_UNLOCKED,
34 .port_rover = 1024 - 1,
35};
36
Arnaldo Carvalho de Melo540722f2005-08-10 05:54:28 -030037EXPORT_SYMBOL_GPL(dccp_hashinfo);
38
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070039static int dccp_v4_get_port(struct sock *sk, const unsigned short snum)
40{
41 return inet_csk_get_port(&dccp_hashinfo, sk, snum);
42}
43
44static void dccp_v4_hash(struct sock *sk)
45{
46 inet_hash(&dccp_hashinfo, sk);
47}
48
49static void dccp_v4_unhash(struct sock *sk)
50{
51 inet_unhash(&dccp_hashinfo, sk);
52}
53
54/* called with local bh disabled */
55static int __dccp_v4_check_established(struct sock *sk, const __u16 lport,
56 struct inet_timewait_sock **twp)
57{
58 struct inet_sock *inet = inet_sk(sk);
59 const u32 daddr = inet->rcv_saddr;
60 const u32 saddr = inet->daddr;
61 const int dif = sk->sk_bound_dev_if;
62 INET_ADDR_COOKIE(acookie, saddr, daddr)
63 const __u32 ports = INET_COMBINED_PORTS(inet->dport, lport);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -030064 const int hash = inet_ehashfn(daddr, lport, saddr, inet->dport,
65 dccp_hashinfo.ehash_size);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070066 struct inet_ehash_bucket *head = &dccp_hashinfo.ehash[hash];
67 const struct sock *sk2;
68 const struct hlist_node *node;
69 struct inet_timewait_sock *tw;
70
71 write_lock(&head->lock);
72
73 /* Check TIME-WAIT sockets first. */
74 sk_for_each(sk2, node, &(head + dccp_hashinfo.ehash_size)->chain) {
75 tw = inet_twsk(sk2);
76
77 if (INET_TW_MATCH(sk2, acookie, saddr, daddr, ports, dif))
78 goto not_unique;
79 }
80 tw = NULL;
81
82 /* And established part... */
83 sk_for_each(sk2, node, &head->chain) {
84 if (INET_MATCH(sk2, acookie, saddr, daddr, ports, dif))
85 goto not_unique;
86 }
87
88 /* Must record num and sport now. Otherwise we will see
89 * in hash table socket with a funny identity. */
90 inet->num = lport;
91 inet->sport = htons(lport);
92 sk->sk_hashent = hash;
93 BUG_TRAP(sk_unhashed(sk));
94 __sk_add_node(sk, &head->chain);
95 sock_prot_inc_use(sk->sk_prot);
96 write_unlock(&head->lock);
97
98 if (twp != NULL) {
99 *twp = tw;
100 NET_INC_STATS_BH(LINUX_MIB_TIMEWAITRECYCLED);
101 } else if (tw != NULL) {
102 /* Silly. Should hash-dance instead... */
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -0700103 inet_twsk_deschedule(tw, &dccp_death_row);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700104 NET_INC_STATS_BH(LINUX_MIB_TIMEWAITRECYCLED);
105
106 inet_twsk_put(tw);
107 }
108
109 return 0;
110
111not_unique:
112 write_unlock(&head->lock);
113 return -EADDRNOTAVAIL;
114}
115
116/*
117 * Bind a port for a connect operation and hash it.
118 */
119static int dccp_v4_hash_connect(struct sock *sk)
120{
121 const unsigned short snum = inet_sk(sk)->num;
122 struct inet_bind_hashbucket *head;
123 struct inet_bind_bucket *tb;
124 int ret;
125
126 if (snum == 0) {
127 int rover;
128 int low = sysctl_local_port_range[0];
129 int high = sysctl_local_port_range[1];
130 int remaining = (high - low) + 1;
131 struct hlist_node *node;
132 struct inet_timewait_sock *tw = NULL;
133
134 local_bh_disable();
135
136 /* TODO. Actually it is not so bad idea to remove
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300137 * dccp_hashinfo.portalloc_lock before next submission to
138 * Linus.
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700139 * As soon as we touch this place at all it is time to think.
140 *
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300141 * Now it protects single _advisory_ variable
142 * dccp_hashinfo.port_rover, hence it is mostly useless.
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700143 * Code will work nicely if we just delete it, but
144 * I am afraid in contented case it will work not better or
145 * even worse: another cpu just will hit the same bucket
146 * and spin there.
147 * So some cpu salt could remove both contention and
148 * memory pingpong. Any ideas how to do this in a nice way?
149 */
150 spin_lock(&dccp_hashinfo.portalloc_lock);
151 rover = dccp_hashinfo.port_rover;
152
153 do {
154 rover++;
155 if ((rover < low) || (rover > high))
156 rover = low;
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300157 head = &dccp_hashinfo.bhash[inet_bhashfn(rover,
158 dccp_hashinfo.bhash_size)];
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700159 spin_lock(&head->lock);
160
161 /* Does not bother with rcv_saddr checks,
162 * because the established check is already
163 * unique enough.
164 */
165 inet_bind_bucket_for_each(tb, node, &head->chain) {
166 if (tb->port == rover) {
167 BUG_TRAP(!hlist_empty(&tb->owners));
168 if (tb->fastreuse >= 0)
169 goto next_port;
170 if (!__dccp_v4_check_established(sk,
171 rover,
172 &tw))
173 goto ok;
174 goto next_port;
175 }
176 }
177
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300178 tb = inet_bind_bucket_create(dccp_hashinfo.bind_bucket_cachep,
179 head, rover);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700180 if (tb == NULL) {
181 spin_unlock(&head->lock);
182 break;
183 }
184 tb->fastreuse = -1;
185 goto ok;
186
187 next_port:
188 spin_unlock(&head->lock);
189 } while (--remaining > 0);
190 dccp_hashinfo.port_rover = rover;
191 spin_unlock(&dccp_hashinfo.portalloc_lock);
192
193 local_bh_enable();
194
195 return -EADDRNOTAVAIL;
196
197ok:
198 /* All locks still held and bhs disabled */
199 dccp_hashinfo.port_rover = rover;
200 spin_unlock(&dccp_hashinfo.portalloc_lock);
201
202 inet_bind_hash(sk, tb, rover);
203 if (sk_unhashed(sk)) {
204 inet_sk(sk)->sport = htons(rover);
205 __inet_hash(&dccp_hashinfo, sk, 0);
206 }
207 spin_unlock(&head->lock);
208
209 if (tw != NULL) {
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -0700210 inet_twsk_deschedule(tw, &dccp_death_row);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700211 inet_twsk_put(tw);
212 }
213
214 ret = 0;
215 goto out;
216 }
217
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300218 head = &dccp_hashinfo.bhash[inet_bhashfn(snum,
219 dccp_hashinfo.bhash_size)];
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700220 tb = inet_csk(sk)->icsk_bind_hash;
221 spin_lock_bh(&head->lock);
222 if (sk_head(&tb->owners) == sk && sk->sk_bind_node.next == NULL) {
223 __inet_hash(&dccp_hashinfo, sk, 0);
224 spin_unlock_bh(&head->lock);
225 return 0;
226 } else {
227 spin_unlock(&head->lock);
228 /* No definite answer... Walk to established hash table */
229 ret = __dccp_v4_check_established(sk, snum, NULL);
230out:
231 local_bh_enable();
232 return ret;
233 }
234}
235
236static int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr,
237 int addr_len)
238{
239 struct inet_sock *inet = inet_sk(sk);
240 struct dccp_sock *dp = dccp_sk(sk);
241 const struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
242 struct rtable *rt;
243 u32 daddr, nexthop;
244 int tmp;
245 int err;
246
247 dp->dccps_role = DCCP_ROLE_CLIENT;
248
249 if (addr_len < sizeof(struct sockaddr_in))
250 return -EINVAL;
251
252 if (usin->sin_family != AF_INET)
253 return -EAFNOSUPPORT;
254
255 nexthop = daddr = usin->sin_addr.s_addr;
256 if (inet->opt != NULL && inet->opt->srr) {
257 if (daddr == 0)
258 return -EINVAL;
259 nexthop = inet->opt->faddr;
260 }
261
262 tmp = ip_route_connect(&rt, nexthop, inet->saddr,
263 RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
264 IPPROTO_DCCP,
265 inet->sport, usin->sin_port, sk);
266 if (tmp < 0)
267 return tmp;
268
269 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
270 ip_rt_put(rt);
271 return -ENETUNREACH;
272 }
273
274 if (inet->opt == NULL || !inet->opt->srr)
275 daddr = rt->rt_dst;
276
277 if (inet->saddr == 0)
278 inet->saddr = rt->rt_src;
279 inet->rcv_saddr = inet->saddr;
280
281 inet->dport = usin->sin_port;
282 inet->daddr = daddr;
283
284 dp->dccps_ext_header_len = 0;
285 if (inet->opt != NULL)
286 dp->dccps_ext_header_len = inet->opt->optlen;
287 /*
288 * Socket identity is still unknown (sport may be zero).
289 * However we set state to DCCP_REQUESTING and not releasing socket
290 * lock select source port, enter ourselves into the hash tables and
291 * complete initialization after this.
292 */
293 dccp_set_state(sk, DCCP_REQUESTING);
294 err = dccp_v4_hash_connect(sk);
295 if (err != 0)
296 goto failure;
297
298 err = ip_route_newports(&rt, inet->sport, inet->dport, sk);
299 if (err != 0)
300 goto failure;
301
302 /* OK, now commit destination to socket. */
303 sk_setup_caps(sk, &rt->u.dst);
304
305 dp->dccps_gar =
306 dp->dccps_iss = secure_dccp_sequence_number(inet->saddr,
307 inet->daddr,
308 inet->sport,
309 usin->sin_port);
310 dccp_update_gss(sk, dp->dccps_iss);
311
312 inet->id = dp->dccps_iss ^ jiffies;
313
314 err = dccp_connect(sk);
315 rt = NULL;
316 if (err != 0)
317 goto failure;
318out:
319 return err;
320failure:
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300321 /*
322 * This unhashes the socket and releases the local port, if necessary.
323 */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700324 dccp_set_state(sk, DCCP_CLOSED);
325 ip_rt_put(rt);
326 sk->sk_route_caps = 0;
327 inet->dport = 0;
328 goto out;
329}
330
331/*
332 * This routine does path mtu discovery as defined in RFC1191.
333 */
334static inline void dccp_do_pmtu_discovery(struct sock *sk,
335 const struct iphdr *iph,
336 u32 mtu)
337{
338 struct dst_entry *dst;
339 const struct inet_sock *inet = inet_sk(sk);
340 const struct dccp_sock *dp = dccp_sk(sk);
341
342 /* We are not interested in DCCP_LISTEN and request_socks (RESPONSEs
343 * send out by Linux are always < 576bytes so they should go through
344 * unfragmented).
345 */
346 if (sk->sk_state == DCCP_LISTEN)
347 return;
348
349 /* We don't check in the destentry if pmtu discovery is forbidden
350 * on this route. We just assume that no packet_to_big packets
351 * are send back when pmtu discovery is not active.
352 * There is a small race when the user changes this flag in the
353 * route, but I think that's acceptable.
354 */
355 if ((dst = __sk_dst_check(sk, 0)) == NULL)
356 return;
357
358 dst->ops->update_pmtu(dst, mtu);
359
360 /* Something is about to be wrong... Remember soft error
361 * for the case, if this connection will not able to recover.
362 */
363 if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
364 sk->sk_err_soft = EMSGSIZE;
365
366 mtu = dst_mtu(dst);
367
368 if (inet->pmtudisc != IP_PMTUDISC_DONT &&
369 dp->dccps_pmtu_cookie > mtu) {
370 dccp_sync_mss(sk, mtu);
371
372 /*
373 * From: draft-ietf-dccp-spec-11.txt
374 *
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300375 * DCCP-Sync packets are the best choice for upward
376 * probing, since DCCP-Sync probes do not risk application
377 * data loss.
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700378 */
Arnaldo Carvalho de Meloe92ae932005-08-17 03:10:59 -0300379 dccp_send_sync(sk, dp->dccps_gsr, DCCP_PKT_SYNC);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700380 } /* else let the usual retransmit timer handle it */
381}
382
383static void dccp_v4_ctl_send_ack(struct sk_buff *rxskb)
384{
385 int err;
386 struct dccp_hdr *rxdh = dccp_hdr(rxskb), *dh;
387 const int dccp_hdr_ack_len = sizeof(struct dccp_hdr) +
388 sizeof(struct dccp_hdr_ext) +
389 sizeof(struct dccp_hdr_ack_bits);
390 struct sk_buff *skb;
391
392 if (((struct rtable *)rxskb->dst)->rt_type != RTN_LOCAL)
393 return;
394
395 skb = alloc_skb(MAX_DCCP_HEADER + 15, GFP_ATOMIC);
396 if (skb == NULL)
397 return;
398
399 /* Reserve space for headers. */
400 skb_reserve(skb, MAX_DCCP_HEADER);
401
402 skb->dst = dst_clone(rxskb->dst);
403
404 skb->h.raw = skb_push(skb, dccp_hdr_ack_len);
405 dh = dccp_hdr(skb);
406 memset(dh, 0, dccp_hdr_ack_len);
407
408 /* Build DCCP header and checksum it. */
409 dh->dccph_type = DCCP_PKT_ACK;
410 dh->dccph_sport = rxdh->dccph_dport;
411 dh->dccph_dport = rxdh->dccph_sport;
412 dh->dccph_doff = dccp_hdr_ack_len / 4;
413 dh->dccph_x = 1;
414
415 dccp_hdr_set_seq(dh, DCCP_SKB_CB(rxskb)->dccpd_ack_seq);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300416 dccp_hdr_set_ack(dccp_hdr_ack_bits(skb),
417 DCCP_SKB_CB(rxskb)->dccpd_seq);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700418
419 bh_lock_sock(dccp_ctl_socket->sk);
420 err = ip_build_and_send_pkt(skb, dccp_ctl_socket->sk,
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300421 rxskb->nh.iph->daddr,
422 rxskb->nh.iph->saddr, NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700423 bh_unlock_sock(dccp_ctl_socket->sk);
424
425 if (err == NET_XMIT_CN || err == 0) {
426 DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
427 DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
428 }
429}
430
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300431static void dccp_v4_reqsk_send_ack(struct sk_buff *skb,
432 struct request_sock *req)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700433{
434 dccp_v4_ctl_send_ack(skb);
435}
436
437static int dccp_v4_send_response(struct sock *sk, struct request_sock *req,
438 struct dst_entry *dst)
439{
440 int err = -1;
441 struct sk_buff *skb;
442
443 /* First, grab a route. */
444
445 if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
446 goto out;
447
448 skb = dccp_make_response(sk, dst, req);
449 if (skb != NULL) {
450 const struct inet_request_sock *ireq = inet_rsk(req);
451
452 err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
453 ireq->rmt_addr,
454 ireq->opt);
455 if (err == NET_XMIT_CN)
456 err = 0;
457 }
458
459out:
460 dst_release(dst);
461 return err;
462}
463
464/*
465 * This routine is called by the ICMP module when it gets some sort of error
466 * condition. If err < 0 then the socket should be closed and the error
467 * returned to the user. If err > 0 it's just the icmp type << 8 | icmp code.
468 * After adjustment header points to the first 8 bytes of the tcp header. We
469 * need to find the appropriate port.
470 *
471 * The locking strategy used here is very "optimistic". When someone else
472 * accesses the socket the ICMP is just dropped and for some paths there is no
473 * check at all. A more general error queue to queue errors for later handling
474 * is probably better.
475 */
476void dccp_v4_err(struct sk_buff *skb, u32 info)
477{
478 const struct iphdr *iph = (struct iphdr *)skb->data;
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300479 const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data +
480 (iph->ihl << 2));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700481 struct dccp_sock *dp;
482 struct inet_sock *inet;
483 const int type = skb->h.icmph->type;
484 const int code = skb->h.icmph->code;
485 struct sock *sk;
486 __u64 seq;
487 int err;
488
489 if (skb->len < (iph->ihl << 2) + 8) {
490 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
491 return;
492 }
493
494 sk = inet_lookup(&dccp_hashinfo, iph->daddr, dh->dccph_dport,
495 iph->saddr, dh->dccph_sport, inet_iif(skb));
496 if (sk == NULL) {
497 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
498 return;
499 }
500
501 if (sk->sk_state == DCCP_TIME_WAIT) {
502 inet_twsk_put((struct inet_timewait_sock *)sk);
503 return;
504 }
505
506 bh_lock_sock(sk);
507 /* If too many ICMPs get dropped on busy
508 * servers this needs to be solved differently.
509 */
510 if (sock_owned_by_user(sk))
511 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS);
512
513 if (sk->sk_state == DCCP_CLOSED)
514 goto out;
515
516 dp = dccp_sk(sk);
517 seq = dccp_hdr_seq(skb);
518 if (sk->sk_state != DCCP_LISTEN &&
519 !between48(seq, dp->dccps_swl, dp->dccps_swh)) {
520 NET_INC_STATS(LINUX_MIB_OUTOFWINDOWICMPS);
521 goto out;
522 }
523
524 switch (type) {
525 case ICMP_SOURCE_QUENCH:
526 /* Just silently ignore these. */
527 goto out;
528 case ICMP_PARAMETERPROB:
529 err = EPROTO;
530 break;
531 case ICMP_DEST_UNREACH:
532 if (code > NR_ICMP_UNREACH)
533 goto out;
534
535 if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
536 if (!sock_owned_by_user(sk))
537 dccp_do_pmtu_discovery(sk, iph, info);
538 goto out;
539 }
540
541 err = icmp_err_convert[code].errno;
542 break;
543 case ICMP_TIME_EXCEEDED:
544 err = EHOSTUNREACH;
545 break;
546 default:
547 goto out;
548 }
549
550 switch (sk->sk_state) {
551 struct request_sock *req , **prev;
552 case DCCP_LISTEN:
553 if (sock_owned_by_user(sk))
554 goto out;
555 req = inet_csk_search_req(sk, &prev, dh->dccph_dport,
556 iph->daddr, iph->saddr);
557 if (!req)
558 goto out;
559
560 /*
561 * ICMPs are not backlogged, hence we cannot get an established
562 * socket here.
563 */
564 BUG_TRAP(!req->sk);
565
566 if (seq != dccp_rsk(req)->dreq_iss) {
567 NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
568 goto out;
569 }
570 /*
571 * Still in RESPOND, just remove it silently.
572 * There is no good way to pass the error to the newly
573 * created socket, and POSIX does not want network
574 * errors returned from accept().
575 */
576 inet_csk_reqsk_queue_drop(sk, req, prev);
577 goto out;
578
579 case DCCP_REQUESTING:
580 case DCCP_RESPOND:
581 if (!sock_owned_by_user(sk)) {
582 DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
583 sk->sk_err = err;
584
585 sk->sk_error_report(sk);
586
587 dccp_done(sk);
588 } else
589 sk->sk_err_soft = err;
590 goto out;
591 }
592
593 /* If we've already connected we will keep trying
594 * until we time out, or the user gives up.
595 *
596 * rfc1122 4.2.3.9 allows to consider as hard errors
597 * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
598 * but it is obsoleted by pmtu discovery).
599 *
600 * Note, that in modern internet, where routing is unreliable
601 * and in each dark corner broken firewalls sit, sending random
602 * errors ordered by their masters even this two messages finally lose
603 * their original sense (even Linux sends invalid PORT_UNREACHs)
604 *
605 * Now we are in compliance with RFCs.
606 * --ANK (980905)
607 */
608
609 inet = inet_sk(sk);
610 if (!sock_owned_by_user(sk) && inet->recverr) {
611 sk->sk_err = err;
612 sk->sk_error_report(sk);
613 } else /* Only an error on timeout */
614 sk->sk_err_soft = err;
615out:
616 bh_unlock_sock(sk);
617 sock_put(sk);
618}
619
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700620int dccp_v4_send_reset(struct sock *sk, enum dccp_reset_codes code)
621{
622 struct sk_buff *skb;
623 /*
624 * FIXME: what if rebuild_header fails?
625 * Should we be doing a rebuild_header here?
626 */
627 int err = inet_sk_rebuild_header(sk);
628
629 if (err != 0)
630 return err;
631
632 skb = dccp_make_reset(sk, sk->sk_dst_cache, code);
633 if (skb != NULL) {
634 const struct dccp_sock *dp = dccp_sk(sk);
635 const struct inet_sock *inet = inet_sk(sk);
636
637 err = ip_build_and_send_pkt(skb, sk,
638 inet->saddr, inet->daddr, NULL);
639 if (err == NET_XMIT_CN)
640 err = 0;
641
642 ccid_hc_rx_exit(dp->dccps_hc_rx_ccid, sk);
643 ccid_hc_tx_exit(dp->dccps_hc_tx_ccid, sk);
644 }
645
646 return err;
647}
648
649static inline u64 dccp_v4_init_sequence(const struct sock *sk,
650 const struct sk_buff *skb)
651{
652 return secure_dccp_sequence_number(skb->nh.iph->daddr,
653 skb->nh.iph->saddr,
654 dccp_hdr(skb)->dccph_dport,
655 dccp_hdr(skb)->dccph_sport);
656}
657
658int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
659{
660 struct inet_request_sock *ireq;
661 struct dccp_sock dp;
662 struct request_sock *req;
663 struct dccp_request_sock *dreq;
664 const __u32 saddr = skb->nh.iph->saddr;
665 const __u32 daddr = skb->nh.iph->daddr;
666 struct dst_entry *dst = NULL;
667
668 /* Never answer to DCCP_PKT_REQUESTs send to broadcast or multicast */
669 if (((struct rtable *)skb->dst)->rt_flags &
670 (RTCF_BROADCAST | RTCF_MULTICAST))
671 goto drop;
672
673 /*
674 * TW buckets are converted to open requests without
675 * limitations, they conserve resources and peer is
676 * evidently real one.
677 */
678 if (inet_csk_reqsk_queue_is_full(sk))
679 goto drop;
680
681 /*
682 * Accept backlog is full. If we have already queued enough
683 * of warm entries in syn queue, drop request. It is better than
684 * clogging syn queue with openreqs with exponentially increasing
685 * timeout.
686 */
687 if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
688 goto drop;
689
690 req = reqsk_alloc(sk->sk_prot->rsk_prot);
691 if (req == NULL)
692 goto drop;
693
694 /* FIXME: process options */
695
696 dccp_openreq_init(req, &dp, skb);
697
698 ireq = inet_rsk(req);
699 ireq->loc_addr = daddr;
700 ireq->rmt_addr = saddr;
701 /* FIXME: Merge Aristeu's option parsing code when ready */
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300702 req->rcv_wnd = 100; /* Fake, option parsing will get the
703 right value */
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700704 ireq->opt = NULL;
705
706 /*
707 * Step 3: Process LISTEN state
708 *
709 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
710 *
711 * In fact we defer setting S.GSR, S.SWL, S.SWH to
712 * dccp_create_openreq_child.
713 */
714 dreq = dccp_rsk(req);
715 dreq->dreq_isr = DCCP_SKB_CB(skb)->dccpd_seq;
716 dreq->dreq_iss = dccp_v4_init_sequence(sk, skb);
717 dreq->dreq_service = dccp_hdr_request(skb)->dccph_req_service;
718
719 if (dccp_v4_send_response(sk, req, dst))
720 goto drop_and_free;
721
722 inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT);
723 return 0;
724
725drop_and_free:
726 /*
727 * FIXME: should be reqsk_free after implementing req->rsk_ops
728 */
729 __reqsk_free(req);
730drop:
731 DCCP_INC_STATS_BH(DCCP_MIB_ATTEMPTFAILS);
732 return -1;
733}
734
735/*
736 * The three way handshake has completed - we got a valid ACK or DATAACK -
737 * now create the new socket.
738 *
739 * This is the equivalent of TCP's tcp_v4_syn_recv_sock
740 */
741struct sock *dccp_v4_request_recv_sock(struct sock *sk, struct sk_buff *skb,
742 struct request_sock *req,
743 struct dst_entry *dst)
744{
745 struct inet_request_sock *ireq;
746 struct inet_sock *newinet;
747 struct dccp_sock *newdp;
748 struct sock *newsk;
749
750 if (sk_acceptq_is_full(sk))
751 goto exit_overflow;
752
753 if (dst == NULL && (dst = inet_csk_route_req(sk, req)) == NULL)
754 goto exit;
755
756 newsk = dccp_create_openreq_child(sk, req, skb);
757 if (newsk == NULL)
758 goto exit;
759
760 sk_setup_caps(newsk, dst);
761
762 newdp = dccp_sk(newsk);
763 newinet = inet_sk(newsk);
764 ireq = inet_rsk(req);
765 newinet->daddr = ireq->rmt_addr;
766 newinet->rcv_saddr = ireq->loc_addr;
767 newinet->saddr = ireq->loc_addr;
768 newinet->opt = ireq->opt;
769 ireq->opt = NULL;
770 newinet->mc_index = inet_iif(skb);
771 newinet->mc_ttl = skb->nh.iph->ttl;
772 newinet->id = jiffies;
773
774 dccp_sync_mss(newsk, dst_mtu(dst));
775
776 __inet_hash(&dccp_hashinfo, newsk, 0);
777 __inet_inherit_port(&dccp_hashinfo, sk, newsk);
778
779 return newsk;
780
781exit_overflow:
782 NET_INC_STATS_BH(LINUX_MIB_LISTENOVERFLOWS);
783exit:
784 NET_INC_STATS_BH(LINUX_MIB_LISTENDROPS);
785 dst_release(dst);
786 return NULL;
787}
788
789static struct sock *dccp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
790{
791 const struct dccp_hdr *dh = dccp_hdr(skb);
792 const struct iphdr *iph = skb->nh.iph;
793 struct sock *nsk;
794 struct request_sock **prev;
795 /* Find possible connection requests. */
796 struct request_sock *req = inet_csk_search_req(sk, &prev,
797 dh->dccph_sport,
798 iph->saddr, iph->daddr);
799 if (req != NULL)
800 return dccp_check_req(sk, skb, req, prev);
801
802 nsk = __inet_lookup_established(&dccp_hashinfo,
803 iph->saddr, dh->dccph_sport,
804 iph->daddr, ntohs(dh->dccph_dport),
805 inet_iif(skb));
806 if (nsk != NULL) {
807 if (nsk->sk_state != DCCP_TIME_WAIT) {
808 bh_lock_sock(nsk);
809 return nsk;
810 }
811 inet_twsk_put((struct inet_timewait_sock *)nsk);
812 return NULL;
813 }
814
815 return sk;
816}
817
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300818int dccp_v4_checksum(const struct sk_buff *skb, const u32 saddr,
819 const u32 daddr)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700820{
Yoshifumi Nishida95b81ef2005-08-09 20:15:35 -0700821 const struct dccp_hdr* dh = dccp_hdr(skb);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700822 int checksum_len;
823 u32 tmp;
824
825 if (dh->dccph_cscov == 0)
826 checksum_len = skb->len;
827 else {
828 checksum_len = (dh->dccph_cscov + dh->dccph_x) * sizeof(u32);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300829 checksum_len = checksum_len < skb->len ? checksum_len :
830 skb->len;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700831 }
832
833 tmp = csum_partial((unsigned char *)dh, checksum_len, 0);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300834 return csum_tcpudp_magic(saddr, daddr, checksum_len,
835 IPPROTO_DCCP, tmp);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700836}
837
Yoshifumi Nishida95b81ef2005-08-09 20:15:35 -0700838static int dccp_v4_verify_checksum(struct sk_buff *skb,
839 const u32 saddr, const u32 daddr)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700840{
Yoshifumi Nishida95b81ef2005-08-09 20:15:35 -0700841 struct dccp_hdr *dh = dccp_hdr(skb);
842 int checksum_len;
843 u32 tmp;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700844
Yoshifumi Nishida95b81ef2005-08-09 20:15:35 -0700845 if (dh->dccph_cscov == 0)
846 checksum_len = skb->len;
847 else {
848 checksum_len = (dh->dccph_cscov + dh->dccph_x) * sizeof(u32);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300849 checksum_len = checksum_len < skb->len ? checksum_len :
850 skb->len;
Yoshifumi Nishida95b81ef2005-08-09 20:15:35 -0700851 }
852 tmp = csum_partial((unsigned char *)dh, checksum_len, 0);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300853 return csum_tcpudp_magic(saddr, daddr, checksum_len,
854 IPPROTO_DCCP, tmp) == 0 ? 0 : -1;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700855}
856
857static struct dst_entry* dccp_v4_route_skb(struct sock *sk,
858 struct sk_buff *skb)
859{
860 struct rtable *rt;
861 struct flowi fl = { .oif = ((struct rtable *)skb->dst)->rt_iif,
862 .nl_u = { .ip4_u =
863 { .daddr = skb->nh.iph->saddr,
864 .saddr = skb->nh.iph->daddr,
865 .tos = RT_CONN_FLAGS(sk) } },
866 .proto = sk->sk_protocol,
867 .uli_u = { .ports =
868 { .sport = dccp_hdr(skb)->dccph_dport,
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300869 .dport = dccp_hdr(skb)->dccph_sport }
870 }
871 };
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700872
873 if (ip_route_output_flow(&rt, &fl, sk, 0)) {
874 IP_INC_STATS_BH(IPSTATS_MIB_OUTNOROUTES);
875 return NULL;
876 }
877
878 return &rt->u.dst;
879}
880
Arnaldo Carvalho de Meloa1d3a352005-08-13 22:42:25 -0300881static void dccp_v4_ctl_send_reset(struct sk_buff *rxskb)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700882{
883 int err;
884 struct dccp_hdr *rxdh = dccp_hdr(rxskb), *dh;
885 const int dccp_hdr_reset_len = sizeof(struct dccp_hdr) +
886 sizeof(struct dccp_hdr_ext) +
887 sizeof(struct dccp_hdr_reset);
888 struct sk_buff *skb;
889 struct dst_entry *dst;
890
891 /* Never send a reset in response to a reset. */
892 if (rxdh->dccph_type == DCCP_PKT_RESET)
893 return;
894
895 if (((struct rtable *)rxskb->dst)->rt_type != RTN_LOCAL)
896 return;
897
898 dst = dccp_v4_route_skb(dccp_ctl_socket->sk, rxskb);
899 if (dst == NULL)
900 return;
901
902 skb = alloc_skb(MAX_DCCP_HEADER + 15, GFP_ATOMIC);
903 if (skb == NULL)
904 goto out;
905
906 /* Reserve space for headers. */
907 skb_reserve(skb, MAX_DCCP_HEADER);
908 skb->dst = dst_clone(dst);
909
910 skb->h.raw = skb_push(skb, dccp_hdr_reset_len);
911 dh = dccp_hdr(skb);
912 memset(dh, 0, dccp_hdr_reset_len);
913
914 /* Build DCCP header and checksum it. */
915 dh->dccph_type = DCCP_PKT_RESET;
916 dh->dccph_sport = rxdh->dccph_dport;
917 dh->dccph_dport = rxdh->dccph_sport;
918 dh->dccph_doff = dccp_hdr_reset_len / 4;
919 dh->dccph_x = 1;
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300920 dccp_hdr_reset(skb)->dccph_reset_code =
921 DCCP_SKB_CB(rxskb)->dccpd_reset_code;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700922
923 dccp_hdr_set_seq(dh, DCCP_SKB_CB(rxskb)->dccpd_ack_seq);
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300924 dccp_hdr_set_ack(dccp_hdr_ack_bits(skb),
925 DCCP_SKB_CB(rxskb)->dccpd_seq);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700926
Yoshifumi Nishida95b81ef2005-08-09 20:15:35 -0700927 dh->dccph_checksum = dccp_v4_checksum(skb, rxskb->nh.iph->saddr,
928 rxskb->nh.iph->daddr);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700929
930 bh_lock_sock(dccp_ctl_socket->sk);
931 err = ip_build_and_send_pkt(skb, dccp_ctl_socket->sk,
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300932 rxskb->nh.iph->daddr,
933 rxskb->nh.iph->saddr, NULL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700934 bh_unlock_sock(dccp_ctl_socket->sk);
935
936 if (err == NET_XMIT_CN || err == 0) {
937 DCCP_INC_STATS_BH(DCCP_MIB_OUTSEGS);
938 DCCP_INC_STATS_BH(DCCP_MIB_OUTRSTS);
939 }
940out:
941 dst_release(dst);
942}
943
944int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
945{
946 struct dccp_hdr *dh = dccp_hdr(skb);
947
948 if (sk->sk_state == DCCP_OPEN) { /* Fast path */
949 if (dccp_rcv_established(sk, skb, dh, skb->len))
950 goto reset;
951 return 0;
952 }
953
954 /*
955 * Step 3: Process LISTEN state
956 * If S.state == LISTEN,
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300957 * If P.type == Request or P contains a valid Init Cookie
958 * option,
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700959 * * Must scan the packet's options to check for an Init
960 * Cookie. Only the Init Cookie is processed here,
961 * however; other options are processed in Step 8. This
962 * scan need only be performed if the endpoint uses Init
963 * Cookies *
964 * * Generate a new socket and switch to that socket *
965 * Set S := new socket for this port pair
966 * S.state = RESPOND
967 * Choose S.ISS (initial seqno) or set from Init Cookie
968 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
969 * Continue with S.state == RESPOND
970 * * A Response packet will be generated in Step 11 *
971 * Otherwise,
972 * Generate Reset(No Connection) unless P.type == Reset
973 * Drop packet and return
974 *
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -0300975 * NOTE: the check for the packet types is done in
976 * dccp_rcv_state_process
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700977 */
978 if (sk->sk_state == DCCP_LISTEN) {
979 struct sock *nsk = dccp_v4_hnd_req(sk, skb);
980
981 if (nsk == NULL)
982 goto discard;
983
984 if (nsk != sk) {
985 if (dccp_child_process(sk, nsk, skb))
986 goto reset;
987 return 0;
988 }
989 }
990
991 if (dccp_rcv_state_process(sk, skb, dh, skb->len))
992 goto reset;
993 return 0;
994
995reset:
996 DCCP_SKB_CB(skb)->dccpd_reset_code = DCCP_RESET_CODE_NO_CONNECTION;
997 dccp_v4_ctl_send_reset(skb);
998discard:
999 kfree_skb(skb);
1000 return 0;
1001}
1002
1003static inline int dccp_invalid_packet(struct sk_buff *skb)
1004{
1005 const struct dccp_hdr *dh;
1006
1007 if (skb->pkt_type != PACKET_HOST)
1008 return 1;
1009
1010 if (!pskb_may_pull(skb, sizeof(struct dccp_hdr))) {
Arnaldo Carvalho de Meloe92ae932005-08-17 03:10:59 -03001011 printk(KERN_WARNING "DCCP: pskb_may_pull failed\n");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001012 return 1;
1013 }
1014
1015 dh = dccp_hdr(skb);
1016
1017 /* If the packet type is not understood, drop packet and return */
1018 if (dh->dccph_type >= DCCP_PKT_INVALID) {
Arnaldo Carvalho de Meloe92ae932005-08-17 03:10:59 -03001019 printk(KERN_WARNING "DCCP: invalid packet type\n");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001020 return 1;
1021 }
1022
1023 /*
1024 * If P.Data Offset is too small for packet type, or too large for
1025 * packet, drop packet and return
1026 */
1027 if (dh->dccph_doff < dccp_hdr_len(skb) / sizeof(u32)) {
Arnaldo Carvalho de Meloe92ae932005-08-17 03:10:59 -03001028 printk(KERN_WARNING "DCCP: Offset(%u) too small 1\n",
1029 dh->dccph_doff);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001030 return 1;
1031 }
1032
1033 if (!pskb_may_pull(skb, dh->dccph_doff * sizeof(u32))) {
Arnaldo Carvalho de Meloe92ae932005-08-17 03:10:59 -03001034 printk(KERN_WARNING "DCCP: P.Data Offset(%u) too small 2\n",
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -03001035 dh->dccph_doff);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001036 return 1;
1037 }
1038
1039 dh = dccp_hdr(skb);
1040
1041 /*
1042 * If P.type is not Data, Ack, or DataAck and P.X == 0 (the packet
1043 * has short sequence numbers), drop packet and return
1044 */
1045 if (dh->dccph_x == 0 &&
1046 dh->dccph_type != DCCP_PKT_DATA &&
1047 dh->dccph_type != DCCP_PKT_ACK &&
1048 dh->dccph_type != DCCP_PKT_DATAACK) {
Arnaldo Carvalho de Meloe92ae932005-08-17 03:10:59 -03001049 printk(KERN_WARNING "DCCP: P.type (%s) not Data, Ack nor "
1050 "DataAck and P.X == 0\n",
1051 dccp_packet_name(dh->dccph_type));
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001052 return 1;
1053 }
1054
1055 /* If the header checksum is incorrect, drop packet and return */
Yoshifumi Nishida95b81ef2005-08-09 20:15:35 -07001056 if (dccp_v4_verify_checksum(skb, skb->nh.iph->saddr,
1057 skb->nh.iph->daddr) < 0) {
Arnaldo Carvalho de Meloe92ae932005-08-17 03:10:59 -03001058 printk(KERN_WARNING "DCCP: header checksum is incorrect\n");
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001059 return 1;
1060 }
1061
1062 return 0;
1063}
1064
1065/* this is called when real data arrives */
1066int dccp_v4_rcv(struct sk_buff *skb)
1067{
1068 const struct dccp_hdr *dh;
1069 struct sock *sk;
1070 int rc;
1071
1072 /* Step 1: Check header basics: */
1073
1074 if (dccp_invalid_packet(skb))
1075 goto discard_it;
1076
1077 dh = dccp_hdr(skb);
1078#if 0
1079 /*
1080 * Use something like this to simulate some DATA/DATAACK loss to test
1081 * dccp_ackpkts_add, you'll get something like this on a session that
1082 * sends 10 DATA/DATAACK packets:
1083 *
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -03001084 * ackpkts_print: 281473596467422 |0,0|3,0|0,0|3,0|0,0|3,0|0,0|3,0|0,1|
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001085 *
1086 * 0, 0 means: DCCP_ACKPKTS_STATE_RECEIVED, RLE == just this packet
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -03001087 * 0, 1 means: DCCP_ACKPKTS_STATE_RECEIVED, RLE == two adjacent packets
1088 * with the same state
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001089 * 3, 0 means: DCCP_ACKPKTS_STATE_NOT_RECEIVED, RLE == just this packet
1090 *
1091 * So...
1092 *
1093 * 281473596467422 was received
1094 * 281473596467421 was not received
1095 * 281473596467420 was received
1096 * 281473596467419 was not received
1097 * 281473596467418 was received
1098 * 281473596467417 was not received
1099 * 281473596467416 was received
1100 * 281473596467415 was not received
1101 * 281473596467414 was received
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -03001102 * 281473596467413 was received (this one was the 3way handshake
1103 * RESPONSE)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001104 *
1105 */
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -03001106 if (dh->dccph_type == DCCP_PKT_DATA ||
1107 dh->dccph_type == DCCP_PKT_DATAACK) {
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001108 static int discard = 0;
1109
1110 if (discard) {
1111 discard = 0;
1112 goto discard_it;
1113 }
1114 discard = 1;
1115 }
1116#endif
1117 DCCP_SKB_CB(skb)->dccpd_seq = dccp_hdr_seq(skb);
1118 DCCP_SKB_CB(skb)->dccpd_type = dh->dccph_type;
1119
1120 dccp_pr_debug("%8.8s "
1121 "src=%u.%u.%u.%u@%-5d "
1122 "dst=%u.%u.%u.%u@%-5d seq=%llu",
1123 dccp_packet_name(dh->dccph_type),
1124 NIPQUAD(skb->nh.iph->saddr), ntohs(dh->dccph_sport),
1125 NIPQUAD(skb->nh.iph->daddr), ntohs(dh->dccph_dport),
David S. Millerf6ccf552005-08-09 20:27:14 -07001126 (unsigned long long) DCCP_SKB_CB(skb)->dccpd_seq);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001127
1128 if (dccp_packet_without_ack(skb)) {
1129 DCCP_SKB_CB(skb)->dccpd_ack_seq = DCCP_PKT_WITHOUT_ACK_SEQ;
1130 dccp_pr_debug_cat("\n");
1131 } else {
1132 DCCP_SKB_CB(skb)->dccpd_ack_seq = dccp_hdr_ack_seq(skb);
David S. Millerf6ccf552005-08-09 20:27:14 -07001133 dccp_pr_debug_cat(", ack=%llu\n",
1134 (unsigned long long)
1135 DCCP_SKB_CB(skb)->dccpd_ack_seq);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001136 }
1137
1138 /* Step 2:
1139 * Look up flow ID in table and get corresponding socket */
1140 sk = __inet_lookup(&dccp_hashinfo,
1141 skb->nh.iph->saddr, dh->dccph_sport,
1142 skb->nh.iph->daddr, ntohs(dh->dccph_dport),
1143 inet_iif(skb));
1144
1145 /*
1146 * Step 2:
1147 * If no socket ...
1148 * Generate Reset(No Connection) unless P.type == Reset
1149 * Drop packet and return
1150 */
1151 if (sk == NULL) {
1152 dccp_pr_debug("failed to look up flow ID in table and "
1153 "get corresponding socket\n");
1154 goto no_dccp_socket;
1155 }
1156
1157 /*
1158 * Step 2:
1159 * ... or S.state == TIMEWAIT,
1160 * Generate Reset(No Connection) unless P.type == Reset
1161 * Drop packet and return
1162 */
1163
1164 if (sk->sk_state == DCCP_TIME_WAIT) {
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -07001165 dccp_pr_debug("sk->sk_state == DCCP_TIME_WAIT: "
1166 "do_time_wait\n");
1167 goto do_time_wait;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001168 }
1169
1170 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) {
1171 dccp_pr_debug("xfrm4_policy_check failed\n");
1172 goto discard_and_relse;
1173 }
1174
1175 if (sk_filter(sk, skb, 0)) {
1176 dccp_pr_debug("sk_filter failed\n");
1177 goto discard_and_relse;
1178 }
1179
1180 skb->dev = NULL;
1181
1182 bh_lock_sock(sk);
1183 rc = 0;
1184 if (!sock_owned_by_user(sk))
1185 rc = dccp_v4_do_rcv(sk, skb);
1186 else
1187 sk_add_backlog(sk, skb);
1188 bh_unlock_sock(sk);
1189
1190 sock_put(sk);
1191 return rc;
1192
1193no_dccp_socket:
1194 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1195 goto discard_it;
1196 /*
1197 * Step 2:
1198 * Generate Reset(No Connection) unless P.type == Reset
1199 * Drop packet and return
1200 */
1201 if (dh->dccph_type != DCCP_PKT_RESET) {
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -03001202 DCCP_SKB_CB(skb)->dccpd_reset_code =
1203 DCCP_RESET_CODE_NO_CONNECTION;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001204 dccp_v4_ctl_send_reset(skb);
1205 }
1206
1207discard_it:
1208 /* Discard frame. */
1209 kfree_skb(skb);
1210 return 0;
1211
1212discard_and_relse:
1213 sock_put(sk);
1214 goto discard_it;
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -07001215
1216do_time_wait:
1217 inet_twsk_put((struct inet_timewait_sock *)sk);
1218 goto no_dccp_socket;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001219}
1220
1221static int dccp_v4_init_sock(struct sock *sk)
1222{
1223 struct dccp_sock *dp = dccp_sk(sk);
1224 static int dccp_ctl_socket_init = 1;
1225
1226 dccp_options_init(&dp->dccps_options);
1227
1228 if (dp->dccps_options.dccpo_send_ack_vector) {
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -03001229 dp->dccps_hc_rx_ackpkts =
1230 dccp_ackpkts_alloc(DCCP_MAX_ACK_VECTOR_LEN,
1231 GFP_KERNEL);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001232
1233 if (dp->dccps_hc_rx_ackpkts == NULL)
1234 return -ENOMEM;
1235 }
1236
1237 /*
1238 * FIXME: We're hardcoding the CCID, and doing this at this point makes
1239 * the listening (master) sock get CCID control blocks, which is not
1240 * necessary, but for now, to not mess with the test userspace apps,
1241 * lets leave it here, later the real solution is to do this in a
1242 * setsockopt(CCIDs-I-want/accept). -acme
1243 */
1244 if (likely(!dccp_ctl_socket_init)) {
Arnaldo Carvalho de Melo7690af32005-08-13 20:34:54 -03001245 dp->dccps_hc_rx_ccid = ccid_init(dp->dccps_options.dccpo_ccid,
1246 sk);
1247 dp->dccps_hc_tx_ccid = ccid_init(dp->dccps_options.dccpo_ccid,
1248 sk);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001249 if (dp->dccps_hc_rx_ccid == NULL ||
1250 dp->dccps_hc_tx_ccid == NULL) {
1251 ccid_exit(dp->dccps_hc_rx_ccid, sk);
1252 ccid_exit(dp->dccps_hc_tx_ccid, sk);
1253 dccp_ackpkts_free(dp->dccps_hc_rx_ackpkts);
1254 dp->dccps_hc_rx_ackpkts = NULL;
1255 dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
1256 return -ENOMEM;
1257 }
1258 } else
1259 dccp_ctl_socket_init = 0;
1260
1261 dccp_init_xmit_timers(sk);
Arnaldo Carvalho de Melo0b4e03b2005-08-09 20:31:11 -07001262 inet_csk(sk)->icsk_rto = DCCP_TIMEOUT_INIT;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001263 sk->sk_state = DCCP_CLOSED;
1264 dp->dccps_mss_cache = 536;
1265 dp->dccps_role = DCCP_ROLE_UNDEFINED;
1266
1267 return 0;
1268}
1269
Arnaldo Carvalho de Meloa1d3a352005-08-13 22:42:25 -03001270static int dccp_v4_destroy_sock(struct sock *sk)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001271{
1272 struct dccp_sock *dp = dccp_sk(sk);
1273
1274 /*
1275 * DCCP doesn't use sk_qrite_queue, just sk_send_head
1276 * for retransmissions
1277 */
1278 if (sk->sk_send_head != NULL) {
1279 kfree_skb(sk->sk_send_head);
1280 sk->sk_send_head = NULL;
1281 }
1282
1283 /* Clean up a referenced DCCP bind bucket. */
1284 if (inet_csk(sk)->icsk_bind_hash != NULL)
1285 inet_put_port(&dccp_hashinfo, sk);
1286
1287 dccp_ackpkts_free(dp->dccps_hc_rx_ackpkts);
1288 dp->dccps_hc_rx_ackpkts = NULL;
1289 ccid_exit(dp->dccps_hc_rx_ccid, sk);
1290 ccid_exit(dp->dccps_hc_tx_ccid, sk);
1291 dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
1292
1293 return 0;
1294}
1295
1296static void dccp_v4_reqsk_destructor(struct request_sock *req)
1297{
1298 kfree(inet_rsk(req)->opt);
1299}
1300
1301static struct request_sock_ops dccp_request_sock_ops = {
1302 .family = PF_INET,
1303 .obj_size = sizeof(struct dccp_request_sock),
1304 .rtx_syn_ack = dccp_v4_send_response,
1305 .send_ack = dccp_v4_reqsk_send_ack,
1306 .destructor = dccp_v4_reqsk_destructor,
1307 .send_reset = dccp_v4_ctl_send_reset,
1308};
1309
1310struct proto dccp_v4_prot = {
1311 .name = "DCCP",
1312 .owner = THIS_MODULE,
1313 .close = dccp_close,
1314 .connect = dccp_v4_connect,
1315 .disconnect = dccp_disconnect,
1316 .ioctl = dccp_ioctl,
1317 .init = dccp_v4_init_sock,
1318 .setsockopt = dccp_setsockopt,
1319 .getsockopt = dccp_getsockopt,
1320 .sendmsg = dccp_sendmsg,
1321 .recvmsg = dccp_recvmsg,
1322 .backlog_rcv = dccp_v4_do_rcv,
1323 .hash = dccp_v4_hash,
1324 .unhash = dccp_v4_unhash,
1325 .accept = inet_csk_accept,
1326 .get_port = dccp_v4_get_port,
1327 .shutdown = dccp_shutdown,
1328 .destroy = dccp_v4_destroy_sock,
1329 .orphan_count = &dccp_orphan_count,
1330 .max_header = MAX_DCCP_HEADER,
1331 .obj_size = sizeof(struct dccp_sock),
1332 .rsk_prot = &dccp_request_sock_ops,
Arnaldo Carvalho de Melo64cf1e52005-08-09 20:45:21 -07001333 .twsk_obj_size = sizeof(struct inet_timewait_sock),
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001334};