[IRDA] sem2mutex: drivers/net/irda
[linux-2.6/mini2440.git] / net / dccp / proto.c
blobbaccaf35ffbda1129690b6271d544c08ed9c59d6
1 /*
2 * net/dccp/proto.c
4 * An implementation of the DCCP protocol
5 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/config.h>
13 #include <linux/dccp.h>
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <linux/sched.h>
17 #include <linux/kernel.h>
18 #include <linux/skbuff.h>
19 #include <linux/netdevice.h>
20 #include <linux/in.h>
21 #include <linux/if_arp.h>
22 #include <linux/init.h>
23 #include <linux/random.h>
24 #include <net/checksum.h>
26 #include <net/inet_sock.h>
27 #include <net/sock.h>
28 #include <net/xfrm.h>
30 #include <asm/semaphore.h>
31 #include <linux/spinlock.h>
32 #include <linux/timer.h>
33 #include <linux/delay.h>
34 #include <linux/poll.h>
36 #include "ccid.h"
37 #include "dccp.h"
38 #include "feat.h"
40 DEFINE_SNMP_STAT(struct dccp_mib, dccp_statistics) __read_mostly;
42 EXPORT_SYMBOL_GPL(dccp_statistics);
44 atomic_t dccp_orphan_count = ATOMIC_INIT(0);
46 EXPORT_SYMBOL_GPL(dccp_orphan_count);
48 struct inet_hashinfo __cacheline_aligned dccp_hashinfo = {
49 .lhash_lock = RW_LOCK_UNLOCKED,
50 .lhash_users = ATOMIC_INIT(0),
51 .lhash_wait = __WAIT_QUEUE_HEAD_INITIALIZER(dccp_hashinfo.lhash_wait),
54 EXPORT_SYMBOL_GPL(dccp_hashinfo);
56 void dccp_set_state(struct sock *sk, const int state)
58 const int oldstate = sk->sk_state;
60 dccp_pr_debug("%s(%p) %-10.10s -> %s\n",
61 dccp_role(sk), sk,
62 dccp_state_name(oldstate), dccp_state_name(state));
63 WARN_ON(state == oldstate);
65 switch (state) {
66 case DCCP_OPEN:
67 if (oldstate != DCCP_OPEN)
68 DCCP_INC_STATS(DCCP_MIB_CURRESTAB);
69 break;
71 case DCCP_CLOSED:
72 if (oldstate == DCCP_CLOSING || oldstate == DCCP_OPEN)
73 DCCP_INC_STATS(DCCP_MIB_ESTABRESETS);
75 sk->sk_prot->unhash(sk);
76 if (inet_csk(sk)->icsk_bind_hash != NULL &&
77 !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
78 inet_put_port(&dccp_hashinfo, sk);
79 /* fall through */
80 default:
81 if (oldstate == DCCP_OPEN)
82 DCCP_DEC_STATS(DCCP_MIB_CURRESTAB);
85 /* Change state AFTER socket is unhashed to avoid closed
86 * socket sitting in hash tables.
88 sk->sk_state = state;
91 EXPORT_SYMBOL_GPL(dccp_set_state);
93 void dccp_done(struct sock *sk)
95 dccp_set_state(sk, DCCP_CLOSED);
96 dccp_clear_xmit_timers(sk);
98 sk->sk_shutdown = SHUTDOWN_MASK;
100 if (!sock_flag(sk, SOCK_DEAD))
101 sk->sk_state_change(sk);
102 else
103 inet_csk_destroy_sock(sk);
106 EXPORT_SYMBOL_GPL(dccp_done);
108 const char *dccp_packet_name(const int type)
110 static const char *dccp_packet_names[] = {
111 [DCCP_PKT_REQUEST] = "REQUEST",
112 [DCCP_PKT_RESPONSE] = "RESPONSE",
113 [DCCP_PKT_DATA] = "DATA",
114 [DCCP_PKT_ACK] = "ACK",
115 [DCCP_PKT_DATAACK] = "DATAACK",
116 [DCCP_PKT_CLOSEREQ] = "CLOSEREQ",
117 [DCCP_PKT_CLOSE] = "CLOSE",
118 [DCCP_PKT_RESET] = "RESET",
119 [DCCP_PKT_SYNC] = "SYNC",
120 [DCCP_PKT_SYNCACK] = "SYNCACK",
123 if (type >= DCCP_NR_PKT_TYPES)
124 return "INVALID";
125 else
126 return dccp_packet_names[type];
129 EXPORT_SYMBOL_GPL(dccp_packet_name);
131 const char *dccp_state_name(const int state)
133 static char *dccp_state_names[] = {
134 [DCCP_OPEN] = "OPEN",
135 [DCCP_REQUESTING] = "REQUESTING",
136 [DCCP_PARTOPEN] = "PARTOPEN",
137 [DCCP_LISTEN] = "LISTEN",
138 [DCCP_RESPOND] = "RESPOND",
139 [DCCP_CLOSING] = "CLOSING",
140 [DCCP_TIME_WAIT] = "TIME_WAIT",
141 [DCCP_CLOSED] = "CLOSED",
144 if (state >= DCCP_MAX_STATES)
145 return "INVALID STATE!";
146 else
147 return dccp_state_names[state];
150 EXPORT_SYMBOL_GPL(dccp_state_name);
152 void dccp_hash(struct sock *sk)
154 inet_hash(&dccp_hashinfo, sk);
157 EXPORT_SYMBOL_GPL(dccp_hash);
159 void dccp_unhash(struct sock *sk)
161 inet_unhash(&dccp_hashinfo, sk);
164 EXPORT_SYMBOL_GPL(dccp_unhash);
166 int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized)
168 struct dccp_sock *dp = dccp_sk(sk);
169 struct inet_connection_sock *icsk = inet_csk(sk);
171 dccp_options_init(&dp->dccps_options);
172 do_gettimeofday(&dp->dccps_epoch);
175 * FIXME: We're hardcoding the CCID, and doing this at this point makes
176 * the listening (master) sock get CCID control blocks, which is not
177 * necessary, but for now, to not mess with the test userspace apps,
178 * lets leave it here, later the real solution is to do this in a
179 * setsockopt(CCIDs-I-want/accept). -acme
181 if (likely(ctl_sock_initialized)) {
182 int rc = dccp_feat_init(sk);
184 if (rc)
185 return rc;
187 if (dp->dccps_options.dccpo_send_ack_vector) {
188 dp->dccps_hc_rx_ackvec = dccp_ackvec_alloc(GFP_KERNEL);
189 if (dp->dccps_hc_rx_ackvec == NULL)
190 return -ENOMEM;
192 dp->dccps_hc_rx_ccid =
193 ccid_hc_rx_new(dp->dccps_options.dccpo_rx_ccid,
194 sk, GFP_KERNEL);
195 dp->dccps_hc_tx_ccid =
196 ccid_hc_tx_new(dp->dccps_options.dccpo_tx_ccid,
197 sk, GFP_KERNEL);
198 if (unlikely(dp->dccps_hc_rx_ccid == NULL ||
199 dp->dccps_hc_tx_ccid == NULL)) {
200 ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
201 ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
202 if (dp->dccps_options.dccpo_send_ack_vector) {
203 dccp_ackvec_free(dp->dccps_hc_rx_ackvec);
204 dp->dccps_hc_rx_ackvec = NULL;
206 dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
207 return -ENOMEM;
209 } else {
210 /* control socket doesn't need feat nego */
211 INIT_LIST_HEAD(&dp->dccps_options.dccpo_pending);
212 INIT_LIST_HEAD(&dp->dccps_options.dccpo_conf);
215 dccp_init_xmit_timers(sk);
216 icsk->icsk_rto = DCCP_TIMEOUT_INIT;
217 sk->sk_state = DCCP_CLOSED;
218 sk->sk_write_space = dccp_write_space;
219 icsk->icsk_sync_mss = dccp_sync_mss;
220 dp->dccps_mss_cache = 536;
221 dp->dccps_role = DCCP_ROLE_UNDEFINED;
222 dp->dccps_service = DCCP_SERVICE_INVALID_VALUE;
223 dp->dccps_l_ack_ratio = dp->dccps_r_ack_ratio = 1;
225 return 0;
228 EXPORT_SYMBOL_GPL(dccp_init_sock);
230 int dccp_destroy_sock(struct sock *sk)
232 struct dccp_sock *dp = dccp_sk(sk);
235 * DCCP doesn't use sk_write_queue, just sk_send_head
236 * for retransmissions
238 if (sk->sk_send_head != NULL) {
239 kfree_skb(sk->sk_send_head);
240 sk->sk_send_head = NULL;
243 /* Clean up a referenced DCCP bind bucket. */
244 if (inet_csk(sk)->icsk_bind_hash != NULL)
245 inet_put_port(&dccp_hashinfo, sk);
247 kfree(dp->dccps_service_list);
248 dp->dccps_service_list = NULL;
250 if (dp->dccps_options.dccpo_send_ack_vector) {
251 dccp_ackvec_free(dp->dccps_hc_rx_ackvec);
252 dp->dccps_hc_rx_ackvec = NULL;
254 ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
255 ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
256 dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
258 /* clean up feature negotiation state */
259 dccp_feat_clean(sk);
261 return 0;
264 EXPORT_SYMBOL_GPL(dccp_destroy_sock);
266 static inline int dccp_listen_start(struct sock *sk)
268 struct dccp_sock *dp = dccp_sk(sk);
270 dp->dccps_role = DCCP_ROLE_LISTEN;
272 * Apps need to use setsockopt(DCCP_SOCKOPT_SERVICE)
273 * before calling listen()
275 if (dccp_service_not_initialized(sk))
276 return -EPROTO;
277 return inet_csk_listen_start(sk, TCP_SYNQ_HSIZE);
280 int dccp_disconnect(struct sock *sk, int flags)
282 struct inet_connection_sock *icsk = inet_csk(sk);
283 struct inet_sock *inet = inet_sk(sk);
284 int err = 0;
285 const int old_state = sk->sk_state;
287 if (old_state != DCCP_CLOSED)
288 dccp_set_state(sk, DCCP_CLOSED);
290 /* ABORT function of RFC793 */
291 if (old_state == DCCP_LISTEN) {
292 inet_csk_listen_stop(sk);
293 /* FIXME: do the active reset thing */
294 } else if (old_state == DCCP_REQUESTING)
295 sk->sk_err = ECONNRESET;
297 dccp_clear_xmit_timers(sk);
298 __skb_queue_purge(&sk->sk_receive_queue);
299 if (sk->sk_send_head != NULL) {
300 __kfree_skb(sk->sk_send_head);
301 sk->sk_send_head = NULL;
304 inet->dport = 0;
306 if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
307 inet_reset_saddr(sk);
309 sk->sk_shutdown = 0;
310 sock_reset_flag(sk, SOCK_DONE);
312 icsk->icsk_backoff = 0;
313 inet_csk_delack_init(sk);
314 __sk_dst_reset(sk);
316 BUG_TRAP(!inet->num || icsk->icsk_bind_hash);
318 sk->sk_error_report(sk);
319 return err;
322 EXPORT_SYMBOL_GPL(dccp_disconnect);
325 * Wait for a DCCP event.
327 * Note that we don't need to lock the socket, as the upper poll layers
328 * take care of normal races (between the test and the event) and we don't
329 * go look at any of the socket buffers directly.
331 unsigned int dccp_poll(struct file *file, struct socket *sock,
332 poll_table *wait)
334 unsigned int mask;
335 struct sock *sk = sock->sk;
337 poll_wait(file, sk->sk_sleep, wait);
338 if (sk->sk_state == DCCP_LISTEN)
339 return inet_csk_listen_poll(sk);
341 /* Socket is not locked. We are protected from async events
342 by poll logic and correct handling of state changes
343 made by another threads is impossible in any case.
346 mask = 0;
347 if (sk->sk_err)
348 mask = POLLERR;
350 if (sk->sk_shutdown == SHUTDOWN_MASK || sk->sk_state == DCCP_CLOSED)
351 mask |= POLLHUP;
352 if (sk->sk_shutdown & RCV_SHUTDOWN)
353 mask |= POLLIN | POLLRDNORM;
355 /* Connected? */
356 if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_RESPOND)) {
357 if (atomic_read(&sk->sk_rmem_alloc) > 0)
358 mask |= POLLIN | POLLRDNORM;
360 if (!(sk->sk_shutdown & SEND_SHUTDOWN)) {
361 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
362 mask |= POLLOUT | POLLWRNORM;
363 } else { /* send SIGIO later */
364 set_bit(SOCK_ASYNC_NOSPACE,
365 &sk->sk_socket->flags);
366 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
368 /* Race breaker. If space is freed after
369 * wspace test but before the flags are set,
370 * IO signal will be lost.
372 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
373 mask |= POLLOUT | POLLWRNORM;
377 return mask;
380 EXPORT_SYMBOL_GPL(dccp_poll);
382 int dccp_ioctl(struct sock *sk, int cmd, unsigned long arg)
384 dccp_pr_debug("entry\n");
385 return -ENOIOCTLCMD;
388 EXPORT_SYMBOL_GPL(dccp_ioctl);
390 static int dccp_setsockopt_service(struct sock *sk, const __be32 service,
391 char __user *optval, int optlen)
393 struct dccp_sock *dp = dccp_sk(sk);
394 struct dccp_service_list *sl = NULL;
396 if (service == DCCP_SERVICE_INVALID_VALUE ||
397 optlen > DCCP_SERVICE_LIST_MAX_LEN * sizeof(u32))
398 return -EINVAL;
400 if (optlen > sizeof(service)) {
401 sl = kmalloc(optlen, GFP_KERNEL);
402 if (sl == NULL)
403 return -ENOMEM;
405 sl->dccpsl_nr = optlen / sizeof(u32) - 1;
406 if (copy_from_user(sl->dccpsl_list,
407 optval + sizeof(service),
408 optlen - sizeof(service)) ||
409 dccp_list_has_service(sl, DCCP_SERVICE_INVALID_VALUE)) {
410 kfree(sl);
411 return -EFAULT;
415 lock_sock(sk);
416 dp->dccps_service = service;
418 kfree(dp->dccps_service_list);
420 dp->dccps_service_list = sl;
421 release_sock(sk);
422 return 0;
425 /* byte 1 is feature. the rest is the preference list */
426 static int dccp_setsockopt_change(struct sock *sk, int type,
427 struct dccp_so_feat __user *optval)
429 struct dccp_so_feat opt;
430 u8 *val;
431 int rc;
433 if (copy_from_user(&opt, optval, sizeof(opt)))
434 return -EFAULT;
436 val = kmalloc(opt.dccpsf_len, GFP_KERNEL);
437 if (!val)
438 return -ENOMEM;
440 if (copy_from_user(val, opt.dccpsf_val, opt.dccpsf_len)) {
441 rc = -EFAULT;
442 goto out_free_val;
445 rc = dccp_feat_change(sk, type, opt.dccpsf_feat, val, opt.dccpsf_len,
446 GFP_KERNEL);
447 if (rc)
448 goto out_free_val;
450 out:
451 return rc;
453 out_free_val:
454 kfree(val);
455 goto out;
458 int dccp_setsockopt(struct sock *sk, int level, int optname,
459 char __user *optval, int optlen)
461 struct dccp_sock *dp;
462 int err;
463 int val;
465 if (level != SOL_DCCP)
466 return inet_csk(sk)->icsk_af_ops->setsockopt(sk, level,
467 optname, optval,
468 optlen);
470 if (optlen < sizeof(int))
471 return -EINVAL;
473 if (get_user(val, (int __user *)optval))
474 return -EFAULT;
476 if (optname == DCCP_SOCKOPT_SERVICE)
477 return dccp_setsockopt_service(sk, val, optval, optlen);
479 lock_sock(sk);
480 dp = dccp_sk(sk);
481 err = 0;
483 switch (optname) {
484 case DCCP_SOCKOPT_PACKET_SIZE:
485 dp->dccps_packet_size = val;
486 break;
488 case DCCP_SOCKOPT_CHANGE_L:
489 if (optlen != sizeof(struct dccp_so_feat))
490 err = -EINVAL;
491 else
492 err = dccp_setsockopt_change(sk, DCCPO_CHANGE_L,
493 (struct dccp_so_feat *)
494 optval);
495 break;
497 case DCCP_SOCKOPT_CHANGE_R:
498 if (optlen != sizeof(struct dccp_so_feat))
499 err = -EINVAL;
500 else
501 err = dccp_setsockopt_change(sk, DCCPO_CHANGE_R,
502 (struct dccp_so_feat *)
503 optval);
504 break;
506 default:
507 err = -ENOPROTOOPT;
508 break;
511 release_sock(sk);
512 return err;
515 EXPORT_SYMBOL_GPL(dccp_setsockopt);
517 static int dccp_getsockopt_service(struct sock *sk, int len,
518 __be32 __user *optval,
519 int __user *optlen)
521 const struct dccp_sock *dp = dccp_sk(sk);
522 const struct dccp_service_list *sl;
523 int err = -ENOENT, slen = 0, total_len = sizeof(u32);
525 lock_sock(sk);
526 if (dccp_service_not_initialized(sk))
527 goto out;
529 if ((sl = dp->dccps_service_list) != NULL) {
530 slen = sl->dccpsl_nr * sizeof(u32);
531 total_len += slen;
534 err = -EINVAL;
535 if (total_len > len)
536 goto out;
538 err = 0;
539 if (put_user(total_len, optlen) ||
540 put_user(dp->dccps_service, optval) ||
541 (sl != NULL && copy_to_user(optval + 1, sl->dccpsl_list, slen)))
542 err = -EFAULT;
543 out:
544 release_sock(sk);
545 return err;
548 int dccp_getsockopt(struct sock *sk, int level, int optname,
549 char __user *optval, int __user *optlen)
551 struct dccp_sock *dp;
552 int val, len;
554 if (level != SOL_DCCP)
555 return inet_csk(sk)->icsk_af_ops->getsockopt(sk, level,
556 optname, optval,
557 optlen);
558 if (get_user(len, optlen))
559 return -EFAULT;
561 if (len < sizeof(int))
562 return -EINVAL;
564 dp = dccp_sk(sk);
566 switch (optname) {
567 case DCCP_SOCKOPT_PACKET_SIZE:
568 val = dp->dccps_packet_size;
569 len = sizeof(dp->dccps_packet_size);
570 break;
571 case DCCP_SOCKOPT_SERVICE:
572 return dccp_getsockopt_service(sk, len,
573 (__be32 __user *)optval, optlen);
574 case 128 ... 191:
575 return ccid_hc_rx_getsockopt(dp->dccps_hc_rx_ccid, sk, optname,
576 len, (u32 __user *)optval, optlen);
577 case 192 ... 255:
578 return ccid_hc_tx_getsockopt(dp->dccps_hc_tx_ccid, sk, optname,
579 len, (u32 __user *)optval, optlen);
580 default:
581 return -ENOPROTOOPT;
584 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
585 return -EFAULT;
587 return 0;
590 EXPORT_SYMBOL_GPL(dccp_getsockopt);
592 int dccp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
593 size_t len)
595 const struct dccp_sock *dp = dccp_sk(sk);
596 const int flags = msg->msg_flags;
597 const int noblock = flags & MSG_DONTWAIT;
598 struct sk_buff *skb;
599 int rc, size;
600 long timeo;
602 if (len > dp->dccps_mss_cache)
603 return -EMSGSIZE;
605 lock_sock(sk);
606 timeo = sock_sndtimeo(sk, noblock);
609 * We have to use sk_stream_wait_connect here to set sk_write_pending,
610 * so that the trick in dccp_rcv_request_sent_state_process.
612 /* Wait for a connection to finish. */
613 if ((1 << sk->sk_state) & ~(DCCPF_OPEN | DCCPF_PARTOPEN | DCCPF_CLOSING))
614 if ((rc = sk_stream_wait_connect(sk, &timeo)) != 0)
615 goto out_release;
617 size = sk->sk_prot->max_header + len;
618 release_sock(sk);
619 skb = sock_alloc_send_skb(sk, size, noblock, &rc);
620 lock_sock(sk);
621 if (skb == NULL)
622 goto out_release;
624 skb_reserve(skb, sk->sk_prot->max_header);
625 rc = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
626 if (rc != 0)
627 goto out_discard;
629 rc = dccp_write_xmit(sk, skb, &timeo);
631 * XXX we don't use sk_write_queue, so just discard the packet.
632 * Current plan however is to _use_ sk_write_queue with
633 * an algorith similar to tcp_sendmsg, where the main difference
634 * is that in DCCP we have to respect packet boundaries, so
635 * no coalescing of skbs.
637 * This bug was _quickly_ found & fixed by just looking at an OSTRA
638 * generated callgraph 8) -acme
640 out_release:
641 release_sock(sk);
642 return rc ? : len;
643 out_discard:
644 kfree_skb(skb);
645 goto out_release;
648 EXPORT_SYMBOL_GPL(dccp_sendmsg);
650 int dccp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
651 size_t len, int nonblock, int flags, int *addr_len)
653 const struct dccp_hdr *dh;
654 long timeo;
656 lock_sock(sk);
658 if (sk->sk_state == DCCP_LISTEN) {
659 len = -ENOTCONN;
660 goto out;
663 timeo = sock_rcvtimeo(sk, nonblock);
665 do {
666 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
668 if (skb == NULL)
669 goto verify_sock_status;
671 dh = dccp_hdr(skb);
673 if (dh->dccph_type == DCCP_PKT_DATA ||
674 dh->dccph_type == DCCP_PKT_DATAACK)
675 goto found_ok_skb;
677 if (dh->dccph_type == DCCP_PKT_RESET ||
678 dh->dccph_type == DCCP_PKT_CLOSE) {
679 dccp_pr_debug("found fin ok!\n");
680 len = 0;
681 goto found_fin_ok;
683 dccp_pr_debug("packet_type=%s\n",
684 dccp_packet_name(dh->dccph_type));
685 sk_eat_skb(sk, skb);
686 verify_sock_status:
687 if (sock_flag(sk, SOCK_DONE)) {
688 len = 0;
689 break;
692 if (sk->sk_err) {
693 len = sock_error(sk);
694 break;
697 if (sk->sk_shutdown & RCV_SHUTDOWN) {
698 len = 0;
699 break;
702 if (sk->sk_state == DCCP_CLOSED) {
703 if (!sock_flag(sk, SOCK_DONE)) {
704 /* This occurs when user tries to read
705 * from never connected socket.
707 len = -ENOTCONN;
708 break;
710 len = 0;
711 break;
714 if (!timeo) {
715 len = -EAGAIN;
716 break;
719 if (signal_pending(current)) {
720 len = sock_intr_errno(timeo);
721 break;
724 sk_wait_data(sk, &timeo);
725 continue;
726 found_ok_skb:
727 if (len > skb->len)
728 len = skb->len;
729 else if (len < skb->len)
730 msg->msg_flags |= MSG_TRUNC;
732 if (skb_copy_datagram_iovec(skb, 0, msg->msg_iov, len)) {
733 /* Exception. Bailout! */
734 len = -EFAULT;
735 break;
737 found_fin_ok:
738 if (!(flags & MSG_PEEK))
739 sk_eat_skb(sk, skb);
740 break;
741 } while (1);
742 out:
743 release_sock(sk);
744 return len;
747 EXPORT_SYMBOL_GPL(dccp_recvmsg);
749 int inet_dccp_listen(struct socket *sock, int backlog)
751 struct sock *sk = sock->sk;
752 unsigned char old_state;
753 int err;
755 lock_sock(sk);
757 err = -EINVAL;
758 if (sock->state != SS_UNCONNECTED || sock->type != SOCK_DCCP)
759 goto out;
761 old_state = sk->sk_state;
762 if (!((1 << old_state) & (DCCPF_CLOSED | DCCPF_LISTEN)))
763 goto out;
765 /* Really, if the socket is already in listen state
766 * we can only allow the backlog to be adjusted.
768 if (old_state != DCCP_LISTEN) {
770 * FIXME: here it probably should be sk->sk_prot->listen_start
771 * see tcp_listen_start
773 err = dccp_listen_start(sk);
774 if (err)
775 goto out;
777 sk->sk_max_ack_backlog = backlog;
778 err = 0;
780 out:
781 release_sock(sk);
782 return err;
785 EXPORT_SYMBOL_GPL(inet_dccp_listen);
787 static const unsigned char dccp_new_state[] = {
788 /* current state: new state: action: */
789 [0] = DCCP_CLOSED,
790 [DCCP_OPEN] = DCCP_CLOSING | DCCP_ACTION_FIN,
791 [DCCP_REQUESTING] = DCCP_CLOSED,
792 [DCCP_PARTOPEN] = DCCP_CLOSING | DCCP_ACTION_FIN,
793 [DCCP_LISTEN] = DCCP_CLOSED,
794 [DCCP_RESPOND] = DCCP_CLOSED,
795 [DCCP_CLOSING] = DCCP_CLOSED,
796 [DCCP_TIME_WAIT] = DCCP_CLOSED,
797 [DCCP_CLOSED] = DCCP_CLOSED,
800 static int dccp_close_state(struct sock *sk)
802 const int next = dccp_new_state[sk->sk_state];
803 const int ns = next & DCCP_STATE_MASK;
805 if (ns != sk->sk_state)
806 dccp_set_state(sk, ns);
808 return next & DCCP_ACTION_FIN;
811 void dccp_close(struct sock *sk, long timeout)
813 struct sk_buff *skb;
815 lock_sock(sk);
817 sk->sk_shutdown = SHUTDOWN_MASK;
819 if (sk->sk_state == DCCP_LISTEN) {
820 dccp_set_state(sk, DCCP_CLOSED);
822 /* Special case. */
823 inet_csk_listen_stop(sk);
825 goto adjudge_to_death;
829 * We need to flush the recv. buffs. We do this only on the
830 * descriptor close, not protocol-sourced closes, because the
831 *reader process may not have drained the data yet!
833 /* FIXME: check for unread data */
834 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
835 __kfree_skb(skb);
838 if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
839 /* Check zero linger _after_ checking for unread data. */
840 sk->sk_prot->disconnect(sk, 0);
841 } else if (dccp_close_state(sk)) {
842 dccp_send_close(sk, 1);
845 sk_stream_wait_close(sk, timeout);
847 adjudge_to_death:
849 * It is the last release_sock in its life. It will remove backlog.
851 release_sock(sk);
853 * Now socket is owned by kernel and we acquire BH lock
854 * to finish close. No need to check for user refs.
856 local_bh_disable();
857 bh_lock_sock(sk);
858 BUG_TRAP(!sock_owned_by_user(sk));
860 sock_hold(sk);
861 sock_orphan(sk);
864 * The last release_sock may have processed the CLOSE or RESET
865 * packet moving sock to CLOSED state, if not we have to fire
866 * the CLOSE/CLOSEREQ retransmission timer, see "8.3. Termination"
867 * in draft-ietf-dccp-spec-11. -acme
869 if (sk->sk_state == DCCP_CLOSING) {
870 /* FIXME: should start at 2 * RTT */
871 /* Timer for repeating the CLOSE/CLOSEREQ until an answer. */
872 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
873 inet_csk(sk)->icsk_rto,
874 DCCP_RTO_MAX);
875 #if 0
876 /* Yeah, we should use sk->sk_prot->orphan_count, etc */
877 dccp_set_state(sk, DCCP_CLOSED);
878 #endif
881 atomic_inc(sk->sk_prot->orphan_count);
882 if (sk->sk_state == DCCP_CLOSED)
883 inet_csk_destroy_sock(sk);
885 /* Otherwise, socket is reprieved until protocol close. */
887 bh_unlock_sock(sk);
888 local_bh_enable();
889 sock_put(sk);
892 EXPORT_SYMBOL_GPL(dccp_close);
894 void dccp_shutdown(struct sock *sk, int how)
896 dccp_pr_debug("entry\n");
899 EXPORT_SYMBOL_GPL(dccp_shutdown);
901 static int __init dccp_mib_init(void)
903 int rc = -ENOMEM;
905 dccp_statistics[0] = alloc_percpu(struct dccp_mib);
906 if (dccp_statistics[0] == NULL)
907 goto out;
909 dccp_statistics[1] = alloc_percpu(struct dccp_mib);
910 if (dccp_statistics[1] == NULL)
911 goto out_free_one;
913 rc = 0;
914 out:
915 return rc;
916 out_free_one:
917 free_percpu(dccp_statistics[0]);
918 dccp_statistics[0] = NULL;
919 goto out;
923 static void dccp_mib_exit(void)
925 free_percpu(dccp_statistics[0]);
926 free_percpu(dccp_statistics[1]);
927 dccp_statistics[0] = dccp_statistics[1] = NULL;
930 static int thash_entries;
931 module_param(thash_entries, int, 0444);
932 MODULE_PARM_DESC(thash_entries, "Number of ehash buckets");
934 #ifdef CONFIG_IP_DCCP_DEBUG
935 int dccp_debug;
936 module_param(dccp_debug, int, 0444);
937 MODULE_PARM_DESC(dccp_debug, "Enable debug messages");
939 EXPORT_SYMBOL_GPL(dccp_debug);
940 #endif
942 static int __init dccp_init(void)
944 unsigned long goal;
945 int ehash_order, bhash_order, i;
946 int rc = -ENOBUFS;
948 dccp_hashinfo.bind_bucket_cachep =
949 kmem_cache_create("dccp_bind_bucket",
950 sizeof(struct inet_bind_bucket), 0,
951 SLAB_HWCACHE_ALIGN, NULL, NULL);
952 if (!dccp_hashinfo.bind_bucket_cachep)
953 goto out;
956 * Size and allocate the main established and bind bucket
957 * hash tables.
959 * The methodology is similar to that of the buffer cache.
961 if (num_physpages >= (128 * 1024))
962 goal = num_physpages >> (21 - PAGE_SHIFT);
963 else
964 goal = num_physpages >> (23 - PAGE_SHIFT);
966 if (thash_entries)
967 goal = (thash_entries *
968 sizeof(struct inet_ehash_bucket)) >> PAGE_SHIFT;
969 for (ehash_order = 0; (1UL << ehash_order) < goal; ehash_order++)
971 do {
972 dccp_hashinfo.ehash_size = (1UL << ehash_order) * PAGE_SIZE /
973 sizeof(struct inet_ehash_bucket);
974 dccp_hashinfo.ehash_size >>= 1;
975 while (dccp_hashinfo.ehash_size &
976 (dccp_hashinfo.ehash_size - 1))
977 dccp_hashinfo.ehash_size--;
978 dccp_hashinfo.ehash = (struct inet_ehash_bucket *)
979 __get_free_pages(GFP_ATOMIC, ehash_order);
980 } while (!dccp_hashinfo.ehash && --ehash_order > 0);
982 if (!dccp_hashinfo.ehash) {
983 printk(KERN_CRIT "Failed to allocate DCCP "
984 "established hash table\n");
985 goto out_free_bind_bucket_cachep;
988 for (i = 0; i < (dccp_hashinfo.ehash_size << 1); i++) {
989 rwlock_init(&dccp_hashinfo.ehash[i].lock);
990 INIT_HLIST_HEAD(&dccp_hashinfo.ehash[i].chain);
993 bhash_order = ehash_order;
995 do {
996 dccp_hashinfo.bhash_size = (1UL << bhash_order) * PAGE_SIZE /
997 sizeof(struct inet_bind_hashbucket);
998 if ((dccp_hashinfo.bhash_size > (64 * 1024)) &&
999 bhash_order > 0)
1000 continue;
1001 dccp_hashinfo.bhash = (struct inet_bind_hashbucket *)
1002 __get_free_pages(GFP_ATOMIC, bhash_order);
1003 } while (!dccp_hashinfo.bhash && --bhash_order >= 0);
1005 if (!dccp_hashinfo.bhash) {
1006 printk(KERN_CRIT "Failed to allocate DCCP bind hash table\n");
1007 goto out_free_dccp_ehash;
1010 for (i = 0; i < dccp_hashinfo.bhash_size; i++) {
1011 spin_lock_init(&dccp_hashinfo.bhash[i].lock);
1012 INIT_HLIST_HEAD(&dccp_hashinfo.bhash[i].chain);
1015 rc = dccp_mib_init();
1016 if (rc)
1017 goto out_free_dccp_bhash;
1019 rc = dccp_ackvec_init();
1020 if (rc)
1021 goto out_free_dccp_mib;
1023 rc = dccp_sysctl_init();
1024 if (rc)
1025 goto out_ackvec_exit;
1026 out:
1027 return rc;
1028 out_ackvec_exit:
1029 dccp_ackvec_exit();
1030 out_free_dccp_mib:
1031 dccp_mib_exit();
1032 out_free_dccp_bhash:
1033 free_pages((unsigned long)dccp_hashinfo.bhash, bhash_order);
1034 dccp_hashinfo.bhash = NULL;
1035 out_free_dccp_ehash:
1036 free_pages((unsigned long)dccp_hashinfo.ehash, ehash_order);
1037 dccp_hashinfo.ehash = NULL;
1038 out_free_bind_bucket_cachep:
1039 kmem_cache_destroy(dccp_hashinfo.bind_bucket_cachep);
1040 dccp_hashinfo.bind_bucket_cachep = NULL;
1041 goto out;
1044 static void __exit dccp_fini(void)
1046 dccp_mib_exit();
1047 free_pages((unsigned long)dccp_hashinfo.bhash,
1048 get_order(dccp_hashinfo.bhash_size *
1049 sizeof(struct inet_bind_hashbucket)));
1050 free_pages((unsigned long)dccp_hashinfo.ehash,
1051 get_order(dccp_hashinfo.ehash_size *
1052 sizeof(struct inet_ehash_bucket)));
1053 kmem_cache_destroy(dccp_hashinfo.bind_bucket_cachep);
1054 dccp_ackvec_exit();
1055 dccp_sysctl_exit();
1058 module_init(dccp_init);
1059 module_exit(dccp_fini);
1061 MODULE_LICENSE("GPL");
1062 MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@conectiva.com.br>");
1063 MODULE_DESCRIPTION("DCCP - Datagram Congestion Controlled Protocol");