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/dccp.h>
13 #include <linux/module.h>
14 #include <linux/types.h>
15 #include <linux/sched.h>
16 #include <linux/kernel.h>
17 #include <linux/skbuff.h>
18 #include <linux/netdevice.h>
20 #include <linux/if_arp.h>
21 #include <linux/init.h>
22 #include <linux/random.h>
23 #include <net/checksum.h>
25 #include <net/inet_sock.h>
29 #include <asm/semaphore.h>
30 #include <linux/spinlock.h>
31 #include <linux/timer.h>
32 #include <linux/delay.h>
33 #include <linux/poll.h>
39 DEFINE_SNMP_STAT(struct dccp_mib, dccp_statistics) __read_mostly;
41 EXPORT_SYMBOL_GPL(dccp_statistics);
43 atomic_t dccp_orphan_count = ATOMIC_INIT(0);
45 EXPORT_SYMBOL_GPL(dccp_orphan_count);
47 struct inet_hashinfo __cacheline_aligned dccp_hashinfo = {
48 .lhash_lock = RW_LOCK_UNLOCKED,
49 .lhash_users = ATOMIC_INIT(0),
50 .lhash_wait = __WAIT_QUEUE_HEAD_INITIALIZER(dccp_hashinfo.lhash_wait),
53 EXPORT_SYMBOL_GPL(dccp_hashinfo);
55 /* the maximum queue length for tx in packets. 0 is no limit */
56 int sysctl_dccp_tx_qlen __read_mostly = 5;
58 void dccp_set_state(struct sock *sk, const int state)
60 const int oldstate = sk->sk_state;
62 dccp_pr_debug("%s(%p) %-10.10s -> %s\n",
64 dccp_state_name(oldstate), dccp_state_name(state));
65 WARN_ON(state == oldstate);
69 if (oldstate != DCCP_OPEN)
70 DCCP_INC_STATS(DCCP_MIB_CURRESTAB);
74 if (oldstate == DCCP_CLOSING || oldstate == DCCP_OPEN)
75 DCCP_INC_STATS(DCCP_MIB_ESTABRESETS);
77 sk->sk_prot->unhash(sk);
78 if (inet_csk(sk)->icsk_bind_hash != NULL &&
79 !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
80 inet_put_port(&dccp_hashinfo, sk);
83 if (oldstate == DCCP_OPEN)
84 DCCP_DEC_STATS(DCCP_MIB_CURRESTAB);
87 /* Change state AFTER socket is unhashed to avoid closed
88 * socket sitting in hash tables.
93 EXPORT_SYMBOL_GPL(dccp_set_state);
95 void dccp_done(struct sock *sk)
97 dccp_set_state(sk, DCCP_CLOSED);
98 dccp_clear_xmit_timers(sk);
100 sk->sk_shutdown = SHUTDOWN_MASK;
102 if (!sock_flag(sk, SOCK_DEAD))
103 sk->sk_state_change(sk);
105 inet_csk_destroy_sock(sk);
108 EXPORT_SYMBOL_GPL(dccp_done);
110 const char *dccp_packet_name(const int type)
112 static const char *dccp_packet_names[] = {
113 [DCCP_PKT_REQUEST] = "REQUEST",
114 [DCCP_PKT_RESPONSE] = "RESPONSE",
115 [DCCP_PKT_DATA] = "DATA",
116 [DCCP_PKT_ACK] = "ACK",
117 [DCCP_PKT_DATAACK] = "DATAACK",
118 [DCCP_PKT_CLOSEREQ] = "CLOSEREQ",
119 [DCCP_PKT_CLOSE] = "CLOSE",
120 [DCCP_PKT_RESET] = "RESET",
121 [DCCP_PKT_SYNC] = "SYNC",
122 [DCCP_PKT_SYNCACK] = "SYNCACK",
125 if (type >= DCCP_NR_PKT_TYPES)
128 return dccp_packet_names[type];
131 EXPORT_SYMBOL_GPL(dccp_packet_name);
133 const char *dccp_state_name(const int state)
135 static char *dccp_state_names[] = {
136 [DCCP_OPEN] = "OPEN",
137 [DCCP_REQUESTING] = "REQUESTING",
138 [DCCP_PARTOPEN] = "PARTOPEN",
139 [DCCP_LISTEN] = "LISTEN",
140 [DCCP_RESPOND] = "RESPOND",
141 [DCCP_CLOSING] = "CLOSING",
142 [DCCP_TIME_WAIT] = "TIME_WAIT",
143 [DCCP_CLOSED] = "CLOSED",
146 if (state >= DCCP_MAX_STATES)
147 return "INVALID STATE!";
149 return dccp_state_names[state];
152 EXPORT_SYMBOL_GPL(dccp_state_name);
154 void dccp_hash(struct sock *sk)
156 inet_hash(&dccp_hashinfo, sk);
159 EXPORT_SYMBOL_GPL(dccp_hash);
161 void dccp_unhash(struct sock *sk)
163 inet_unhash(&dccp_hashinfo, sk);
166 EXPORT_SYMBOL_GPL(dccp_unhash);
168 int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized)
170 struct dccp_sock *dp = dccp_sk(sk);
171 struct dccp_minisock *dmsk = dccp_msk(sk);
172 struct inet_connection_sock *icsk = inet_csk(sk);
174 dccp_minisock_init(&dp->dccps_minisock);
177 * FIXME: We're hardcoding the CCID, and doing this at this point makes
178 * the listening (master) sock get CCID control blocks, which is not
179 * necessary, but for now, to not mess with the test userspace apps,
180 * lets leave it here, later the real solution is to do this in a
181 * setsockopt(CCIDs-I-want/accept). -acme
183 if (likely(ctl_sock_initialized)) {
184 int rc = dccp_feat_init(dmsk);
189 if (dmsk->dccpms_send_ack_vector) {
190 dp->dccps_hc_rx_ackvec = dccp_ackvec_alloc(GFP_KERNEL);
191 if (dp->dccps_hc_rx_ackvec == NULL)
194 dp->dccps_hc_rx_ccid = ccid_hc_rx_new(dmsk->dccpms_rx_ccid,
196 dp->dccps_hc_tx_ccid = ccid_hc_tx_new(dmsk->dccpms_tx_ccid,
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 (dmsk->dccpms_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;
210 /* control socket doesn't need feat nego */
211 INIT_LIST_HEAD(&dmsk->dccpms_pending);
212 INIT_LIST_HEAD(&dmsk->dccpms_conf);
215 dccp_init_xmit_timers(sk);
216 icsk->icsk_rto = DCCP_TIMEOUT_INIT;
217 icsk->icsk_syn_retries = sysctl_dccp_request_retries;
218 sk->sk_state = DCCP_CLOSED;
219 sk->sk_write_space = dccp_write_space;
220 icsk->icsk_sync_mss = dccp_sync_mss;
221 dp->dccps_mss_cache = 536;
222 dp->dccps_role = DCCP_ROLE_UNDEFINED;
223 dp->dccps_service = DCCP_SERVICE_CODE_IS_ABSENT;
224 dp->dccps_l_ack_ratio = dp->dccps_r_ack_ratio = 1;
229 EXPORT_SYMBOL_GPL(dccp_init_sock);
231 int dccp_destroy_sock(struct sock *sk)
233 struct dccp_sock *dp = dccp_sk(sk);
234 struct dccp_minisock *dmsk = dccp_msk(sk);
237 * DCCP doesn't use sk_write_queue, just sk_send_head
238 * for retransmissions
240 if (sk->sk_send_head != NULL) {
241 kfree_skb(sk->sk_send_head);
242 sk->sk_send_head = NULL;
245 /* Clean up a referenced DCCP bind bucket. */
246 if (inet_csk(sk)->icsk_bind_hash != NULL)
247 inet_put_port(&dccp_hashinfo, sk);
249 kfree(dp->dccps_service_list);
250 dp->dccps_service_list = NULL;
252 if (dmsk->dccpms_send_ack_vector) {
253 dccp_ackvec_free(dp->dccps_hc_rx_ackvec);
254 dp->dccps_hc_rx_ackvec = NULL;
256 ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
257 ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
258 dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
260 /* clean up feature negotiation state */
261 dccp_feat_clean(dmsk);
266 EXPORT_SYMBOL_GPL(dccp_destroy_sock);
268 static inline int dccp_listen_start(struct sock *sk, int backlog)
270 struct dccp_sock *dp = dccp_sk(sk);
272 dp->dccps_role = DCCP_ROLE_LISTEN;
273 return inet_csk_listen_start(sk, backlog);
276 int dccp_disconnect(struct sock *sk, int flags)
278 struct inet_connection_sock *icsk = inet_csk(sk);
279 struct inet_sock *inet = inet_sk(sk);
281 const int old_state = sk->sk_state;
283 if (old_state != DCCP_CLOSED)
284 dccp_set_state(sk, DCCP_CLOSED);
286 /* ABORT function of RFC793 */
287 if (old_state == DCCP_LISTEN) {
288 inet_csk_listen_stop(sk);
289 /* FIXME: do the active reset thing */
290 } else if (old_state == DCCP_REQUESTING)
291 sk->sk_err = ECONNRESET;
293 dccp_clear_xmit_timers(sk);
294 __skb_queue_purge(&sk->sk_receive_queue);
295 if (sk->sk_send_head != NULL) {
296 __kfree_skb(sk->sk_send_head);
297 sk->sk_send_head = NULL;
302 if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
303 inet_reset_saddr(sk);
306 sock_reset_flag(sk, SOCK_DONE);
308 icsk->icsk_backoff = 0;
309 inet_csk_delack_init(sk);
312 BUG_TRAP(!inet->num || icsk->icsk_bind_hash);
314 sk->sk_error_report(sk);
318 EXPORT_SYMBOL_GPL(dccp_disconnect);
321 * Wait for a DCCP event.
323 * Note that we don't need to lock the socket, as the upper poll layers
324 * take care of normal races (between the test and the event) and we don't
325 * go look at any of the socket buffers directly.
327 unsigned int dccp_poll(struct file *file, struct socket *sock,
331 struct sock *sk = sock->sk;
333 poll_wait(file, sk->sk_sleep, wait);
334 if (sk->sk_state == DCCP_LISTEN)
335 return inet_csk_listen_poll(sk);
337 /* Socket is not locked. We are protected from async events
338 by poll logic and correct handling of state changes
339 made by another threads is impossible in any case.
346 if (sk->sk_shutdown == SHUTDOWN_MASK || sk->sk_state == DCCP_CLOSED)
348 if (sk->sk_shutdown & RCV_SHUTDOWN)
349 mask |= POLLIN | POLLRDNORM | POLLRDHUP;
352 if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_RESPOND)) {
353 if (atomic_read(&sk->sk_rmem_alloc) > 0)
354 mask |= POLLIN | POLLRDNORM;
356 if (!(sk->sk_shutdown & SEND_SHUTDOWN)) {
357 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
358 mask |= POLLOUT | POLLWRNORM;
359 } else { /* send SIGIO later */
360 set_bit(SOCK_ASYNC_NOSPACE,
361 &sk->sk_socket->flags);
362 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
364 /* Race breaker. If space is freed after
365 * wspace test but before the flags are set,
366 * IO signal will be lost.
368 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
369 mask |= POLLOUT | POLLWRNORM;
376 EXPORT_SYMBOL_GPL(dccp_poll);
378 int dccp_ioctl(struct sock *sk, int cmd, unsigned long arg)
380 dccp_pr_debug("entry\n");
384 EXPORT_SYMBOL_GPL(dccp_ioctl);
386 static int dccp_setsockopt_service(struct sock *sk, const __be32 service,
387 char __user *optval, int optlen)
389 struct dccp_sock *dp = dccp_sk(sk);
390 struct dccp_service_list *sl = NULL;
392 if (service == DCCP_SERVICE_INVALID_VALUE ||
393 optlen > DCCP_SERVICE_LIST_MAX_LEN * sizeof(u32))
396 if (optlen > sizeof(service)) {
397 sl = kmalloc(optlen, GFP_KERNEL);
401 sl->dccpsl_nr = optlen / sizeof(u32) - 1;
402 if (copy_from_user(sl->dccpsl_list,
403 optval + sizeof(service),
404 optlen - sizeof(service)) ||
405 dccp_list_has_service(sl, DCCP_SERVICE_INVALID_VALUE)) {
412 dp->dccps_service = service;
414 kfree(dp->dccps_service_list);
416 dp->dccps_service_list = sl;
421 /* byte 1 is feature. the rest is the preference list */
422 static int dccp_setsockopt_change(struct sock *sk, int type,
423 struct dccp_so_feat __user *optval)
425 struct dccp_so_feat opt;
429 if (copy_from_user(&opt, optval, sizeof(opt)))
432 val = kmalloc(opt.dccpsf_len, GFP_KERNEL);
436 if (copy_from_user(val, opt.dccpsf_val, opt.dccpsf_len)) {
441 rc = dccp_feat_change(dccp_msk(sk), type, opt.dccpsf_feat,
442 val, opt.dccpsf_len, GFP_KERNEL);
454 static int do_dccp_setsockopt(struct sock *sk, int level, int optname,
455 char __user *optval, int optlen)
457 struct dccp_sock *dp = dccp_sk(sk);
460 if (optlen < sizeof(int))
463 if (get_user(val, (int __user *)optval))
466 if (optname == DCCP_SOCKOPT_SERVICE)
467 return dccp_setsockopt_service(sk, val, optval, optlen);
471 case DCCP_SOCKOPT_PACKET_SIZE:
472 DCCP_WARN("sockopt(PACKET_SIZE) is deprecated: fix your app\n");
475 case DCCP_SOCKOPT_CHANGE_L:
476 if (optlen != sizeof(struct dccp_so_feat))
479 err = dccp_setsockopt_change(sk, DCCPO_CHANGE_L,
480 (struct dccp_so_feat __user *)
483 case DCCP_SOCKOPT_CHANGE_R:
484 if (optlen != sizeof(struct dccp_so_feat))
487 err = dccp_setsockopt_change(sk, DCCPO_CHANGE_R,
488 (struct dccp_so_feat __user *)
491 case DCCP_SOCKOPT_SEND_CSCOV: /* sender side, RFC 4340, sec. 9.2 */
492 if (val < 0 || val > 15)
495 dp->dccps_pcslen = val;
497 case DCCP_SOCKOPT_RECV_CSCOV: /* receiver side, RFC 4340 sec. 9.2.1 */
498 if (val < 0 || val > 15)
501 dp->dccps_pcrlen = val;
502 /* FIXME: add feature negotiation,
503 * ChangeL(MinimumChecksumCoverage, val) */
515 int dccp_setsockopt(struct sock *sk, int level, int optname,
516 char __user *optval, int optlen)
518 if (level != SOL_DCCP)
519 return inet_csk(sk)->icsk_af_ops->setsockopt(sk, level,
522 return do_dccp_setsockopt(sk, level, optname, optval, optlen);
525 EXPORT_SYMBOL_GPL(dccp_setsockopt);
528 int compat_dccp_setsockopt(struct sock *sk, int level, int optname,
529 char __user *optval, int optlen)
531 if (level != SOL_DCCP)
532 return inet_csk_compat_setsockopt(sk, level, optname,
534 return do_dccp_setsockopt(sk, level, optname, optval, optlen);
537 EXPORT_SYMBOL_GPL(compat_dccp_setsockopt);
540 static int dccp_getsockopt_service(struct sock *sk, int len,
541 __be32 __user *optval,
544 const struct dccp_sock *dp = dccp_sk(sk);
545 const struct dccp_service_list *sl;
546 int err = -ENOENT, slen = 0, total_len = sizeof(u32);
549 if ((sl = dp->dccps_service_list) != NULL) {
550 slen = sl->dccpsl_nr * sizeof(u32);
559 if (put_user(total_len, optlen) ||
560 put_user(dp->dccps_service, optval) ||
561 (sl != NULL && copy_to_user(optval + 1, sl->dccpsl_list, slen)))
568 static int do_dccp_getsockopt(struct sock *sk, int level, int optname,
569 char __user *optval, int __user *optlen)
571 struct dccp_sock *dp;
574 if (get_user(len, optlen))
577 if (len < (int)sizeof(int))
583 case DCCP_SOCKOPT_PACKET_SIZE:
584 DCCP_WARN("sockopt(PACKET_SIZE) is deprecated: fix your app\n");
586 case DCCP_SOCKOPT_SERVICE:
587 return dccp_getsockopt_service(sk, len,
588 (__be32 __user *)optval, optlen);
589 case DCCP_SOCKOPT_SEND_CSCOV:
590 val = dp->dccps_pcslen;
593 case DCCP_SOCKOPT_RECV_CSCOV:
594 val = dp->dccps_pcrlen;
598 return ccid_hc_rx_getsockopt(dp->dccps_hc_rx_ccid, sk, optname,
599 len, (u32 __user *)optval, optlen);
601 return ccid_hc_tx_getsockopt(dp->dccps_hc_tx_ccid, sk, optname,
602 len, (u32 __user *)optval, optlen);
607 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
613 int dccp_getsockopt(struct sock *sk, int level, int optname,
614 char __user *optval, int __user *optlen)
616 if (level != SOL_DCCP)
617 return inet_csk(sk)->icsk_af_ops->getsockopt(sk, level,
620 return do_dccp_getsockopt(sk, level, optname, optval, optlen);
623 EXPORT_SYMBOL_GPL(dccp_getsockopt);
626 int compat_dccp_getsockopt(struct sock *sk, int level, int optname,
627 char __user *optval, int __user *optlen)
629 if (level != SOL_DCCP)
630 return inet_csk_compat_getsockopt(sk, level, optname,
632 return do_dccp_getsockopt(sk, level, optname, optval, optlen);
635 EXPORT_SYMBOL_GPL(compat_dccp_getsockopt);
638 int dccp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
641 const struct dccp_sock *dp = dccp_sk(sk);
642 const int flags = msg->msg_flags;
643 const int noblock = flags & MSG_DONTWAIT;
648 if (len > dp->dccps_mss_cache)
653 if (sysctl_dccp_tx_qlen &&
654 (sk->sk_write_queue.qlen >= sysctl_dccp_tx_qlen)) {
659 timeo = sock_sndtimeo(sk, noblock);
662 * We have to use sk_stream_wait_connect here to set sk_write_pending,
663 * so that the trick in dccp_rcv_request_sent_state_process.
665 /* Wait for a connection to finish. */
666 if ((1 << sk->sk_state) & ~(DCCPF_OPEN | DCCPF_PARTOPEN | DCCPF_CLOSING))
667 if ((rc = sk_stream_wait_connect(sk, &timeo)) != 0)
670 size = sk->sk_prot->max_header + len;
672 skb = sock_alloc_send_skb(sk, size, noblock, &rc);
677 skb_reserve(skb, sk->sk_prot->max_header);
678 rc = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
682 skb_queue_tail(&sk->sk_write_queue, skb);
683 dccp_write_xmit(sk,0);
692 EXPORT_SYMBOL_GPL(dccp_sendmsg);
694 int dccp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
695 size_t len, int nonblock, int flags, int *addr_len)
697 const struct dccp_hdr *dh;
702 if (sk->sk_state == DCCP_LISTEN) {
707 timeo = sock_rcvtimeo(sk, nonblock);
710 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
713 goto verify_sock_status;
717 if (dh->dccph_type == DCCP_PKT_DATA ||
718 dh->dccph_type == DCCP_PKT_DATAACK)
721 if (dh->dccph_type == DCCP_PKT_RESET ||
722 dh->dccph_type == DCCP_PKT_CLOSE) {
723 dccp_pr_debug("found fin ok!\n");
727 dccp_pr_debug("packet_type=%s\n",
728 dccp_packet_name(dh->dccph_type));
729 sk_eat_skb(sk, skb, 0);
731 if (sock_flag(sk, SOCK_DONE)) {
737 len = sock_error(sk);
741 if (sk->sk_shutdown & RCV_SHUTDOWN) {
746 if (sk->sk_state == DCCP_CLOSED) {
747 if (!sock_flag(sk, SOCK_DONE)) {
748 /* This occurs when user tries to read
749 * from never connected socket.
763 if (signal_pending(current)) {
764 len = sock_intr_errno(timeo);
768 sk_wait_data(sk, &timeo);
773 else if (len < skb->len)
774 msg->msg_flags |= MSG_TRUNC;
776 if (skb_copy_datagram_iovec(skb, 0, msg->msg_iov, len)) {
777 /* Exception. Bailout! */
782 if (!(flags & MSG_PEEK))
783 sk_eat_skb(sk, skb, 0);
791 EXPORT_SYMBOL_GPL(dccp_recvmsg);
793 int inet_dccp_listen(struct socket *sock, int backlog)
795 struct sock *sk = sock->sk;
796 unsigned char old_state;
802 if (sock->state != SS_UNCONNECTED || sock->type != SOCK_DCCP)
805 old_state = sk->sk_state;
806 if (!((1 << old_state) & (DCCPF_CLOSED | DCCPF_LISTEN)))
809 /* Really, if the socket is already in listen state
810 * we can only allow the backlog to be adjusted.
812 if (old_state != DCCP_LISTEN) {
814 * FIXME: here it probably should be sk->sk_prot->listen_start
815 * see tcp_listen_start
817 err = dccp_listen_start(sk, backlog);
821 sk->sk_max_ack_backlog = backlog;
829 EXPORT_SYMBOL_GPL(inet_dccp_listen);
831 static const unsigned char dccp_new_state[] = {
832 /* current state: new state: action: */
834 [DCCP_OPEN] = DCCP_CLOSING | DCCP_ACTION_FIN,
835 [DCCP_REQUESTING] = DCCP_CLOSED,
836 [DCCP_PARTOPEN] = DCCP_CLOSING | DCCP_ACTION_FIN,
837 [DCCP_LISTEN] = DCCP_CLOSED,
838 [DCCP_RESPOND] = DCCP_CLOSED,
839 [DCCP_CLOSING] = DCCP_CLOSED,
840 [DCCP_TIME_WAIT] = DCCP_CLOSED,
841 [DCCP_CLOSED] = DCCP_CLOSED,
844 static int dccp_close_state(struct sock *sk)
846 const int next = dccp_new_state[sk->sk_state];
847 const int ns = next & DCCP_STATE_MASK;
849 if (ns != sk->sk_state)
850 dccp_set_state(sk, ns);
852 return next & DCCP_ACTION_FIN;
855 void dccp_close(struct sock *sk, long timeout)
857 struct dccp_sock *dp = dccp_sk(sk);
863 sk->sk_shutdown = SHUTDOWN_MASK;
865 if (sk->sk_state == DCCP_LISTEN) {
866 dccp_set_state(sk, DCCP_CLOSED);
869 inet_csk_listen_stop(sk);
871 goto adjudge_to_death;
874 sk_stop_timer(sk, &dp->dccps_xmit_timer);
877 * We need to flush the recv. buffs. We do this only on the
878 * descriptor close, not protocol-sourced closes, because the
879 *reader process may not have drained the data yet!
881 /* FIXME: check for unread data */
882 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
886 if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
887 /* Check zero linger _after_ checking for unread data. */
888 sk->sk_prot->disconnect(sk, 0);
889 } else if (dccp_close_state(sk)) {
890 dccp_send_close(sk, 1);
893 sk_stream_wait_close(sk, timeout);
896 state = sk->sk_state;
899 atomic_inc(sk->sk_prot->orphan_count);
902 * It is the last release_sock in its life. It will remove backlog.
906 * Now socket is owned by kernel and we acquire BH lock
907 * to finish close. No need to check for user refs.
911 BUG_TRAP(!sock_owned_by_user(sk));
913 /* Have we already been destroyed by a softirq or backlog? */
914 if (state != DCCP_CLOSED && sk->sk_state == DCCP_CLOSED)
918 * The last release_sock may have processed the CLOSE or RESET
919 * packet moving sock to CLOSED state, if not we have to fire
920 * the CLOSE/CLOSEREQ retransmission timer, see "8.3. Termination"
921 * in draft-ietf-dccp-spec-11. -acme
923 if (sk->sk_state == DCCP_CLOSING) {
924 /* FIXME: should start at 2 * RTT */
925 /* Timer for repeating the CLOSE/CLOSEREQ until an answer. */
926 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
927 inet_csk(sk)->icsk_rto,
930 /* Yeah, we should use sk->sk_prot->orphan_count, etc */
931 dccp_set_state(sk, DCCP_CLOSED);
935 if (sk->sk_state == DCCP_CLOSED)
936 inet_csk_destroy_sock(sk);
938 /* Otherwise, socket is reprieved until protocol close. */
946 EXPORT_SYMBOL_GPL(dccp_close);
948 void dccp_shutdown(struct sock *sk, int how)
950 dccp_pr_debug("entry\n");
953 EXPORT_SYMBOL_GPL(dccp_shutdown);
955 static int __init dccp_mib_init(void)
959 dccp_statistics[0] = alloc_percpu(struct dccp_mib);
960 if (dccp_statistics[0] == NULL)
963 dccp_statistics[1] = alloc_percpu(struct dccp_mib);
964 if (dccp_statistics[1] == NULL)
971 free_percpu(dccp_statistics[0]);
972 dccp_statistics[0] = NULL;
977 static void dccp_mib_exit(void)
979 free_percpu(dccp_statistics[0]);
980 free_percpu(dccp_statistics[1]);
981 dccp_statistics[0] = dccp_statistics[1] = NULL;
984 static int thash_entries;
985 module_param(thash_entries, int, 0444);
986 MODULE_PARM_DESC(thash_entries, "Number of ehash buckets");
988 #ifdef CONFIG_IP_DCCP_DEBUG
990 module_param(dccp_debug, int, 0444);
991 MODULE_PARM_DESC(dccp_debug, "Enable debug messages");
993 EXPORT_SYMBOL_GPL(dccp_debug);
996 static int __init dccp_init(void)
999 int ehash_order, bhash_order, i;
1002 dccp_hashinfo.bind_bucket_cachep =
1003 kmem_cache_create("dccp_bind_bucket",
1004 sizeof(struct inet_bind_bucket), 0,
1005 SLAB_HWCACHE_ALIGN, NULL);
1006 if (!dccp_hashinfo.bind_bucket_cachep)
1010 * Size and allocate the main established and bind bucket
1013 * The methodology is similar to that of the buffer cache.
1015 if (num_physpages >= (128 * 1024))
1016 goal = num_physpages >> (21 - PAGE_SHIFT);
1018 goal = num_physpages >> (23 - PAGE_SHIFT);
1021 goal = (thash_entries *
1022 sizeof(struct inet_ehash_bucket)) >> PAGE_SHIFT;
1023 for (ehash_order = 0; (1UL << ehash_order) < goal; ehash_order++)
1026 dccp_hashinfo.ehash_size = (1UL << ehash_order) * PAGE_SIZE /
1027 sizeof(struct inet_ehash_bucket);
1028 while (dccp_hashinfo.ehash_size &
1029 (dccp_hashinfo.ehash_size - 1))
1030 dccp_hashinfo.ehash_size--;
1031 dccp_hashinfo.ehash = (struct inet_ehash_bucket *)
1032 __get_free_pages(GFP_ATOMIC, ehash_order);
1033 } while (!dccp_hashinfo.ehash && --ehash_order > 0);
1035 if (!dccp_hashinfo.ehash) {
1036 DCCP_CRIT("Failed to allocate DCCP established hash table");
1037 goto out_free_bind_bucket_cachep;
1040 for (i = 0; i < dccp_hashinfo.ehash_size; i++) {
1041 rwlock_init(&dccp_hashinfo.ehash[i].lock);
1042 INIT_HLIST_HEAD(&dccp_hashinfo.ehash[i].chain);
1043 INIT_HLIST_HEAD(&dccp_hashinfo.ehash[i].twchain);
1046 bhash_order = ehash_order;
1049 dccp_hashinfo.bhash_size = (1UL << bhash_order) * PAGE_SIZE /
1050 sizeof(struct inet_bind_hashbucket);
1051 if ((dccp_hashinfo.bhash_size > (64 * 1024)) &&
1054 dccp_hashinfo.bhash = (struct inet_bind_hashbucket *)
1055 __get_free_pages(GFP_ATOMIC, bhash_order);
1056 } while (!dccp_hashinfo.bhash && --bhash_order >= 0);
1058 if (!dccp_hashinfo.bhash) {
1059 DCCP_CRIT("Failed to allocate DCCP bind hash table");
1060 goto out_free_dccp_ehash;
1063 for (i = 0; i < dccp_hashinfo.bhash_size; i++) {
1064 spin_lock_init(&dccp_hashinfo.bhash[i].lock);
1065 INIT_HLIST_HEAD(&dccp_hashinfo.bhash[i].chain);
1068 rc = dccp_mib_init();
1070 goto out_free_dccp_bhash;
1072 rc = dccp_ackvec_init();
1074 goto out_free_dccp_mib;
1076 rc = dccp_sysctl_init();
1078 goto out_ackvec_exit;
1080 dccp_timestamping_init();
1087 out_free_dccp_bhash:
1088 free_pages((unsigned long)dccp_hashinfo.bhash, bhash_order);
1089 dccp_hashinfo.bhash = NULL;
1090 out_free_dccp_ehash:
1091 free_pages((unsigned long)dccp_hashinfo.ehash, ehash_order);
1092 dccp_hashinfo.ehash = NULL;
1093 out_free_bind_bucket_cachep:
1094 kmem_cache_destroy(dccp_hashinfo.bind_bucket_cachep);
1095 dccp_hashinfo.bind_bucket_cachep = NULL;
1099 static void __exit dccp_fini(void)
1102 free_pages((unsigned long)dccp_hashinfo.bhash,
1103 get_order(dccp_hashinfo.bhash_size *
1104 sizeof(struct inet_bind_hashbucket)));
1105 free_pages((unsigned long)dccp_hashinfo.ehash,
1106 get_order(dccp_hashinfo.ehash_size *
1107 sizeof(struct inet_ehash_bucket)));
1108 kmem_cache_destroy(dccp_hashinfo.bind_bucket_cachep);
1113 module_init(dccp_init);
1114 module_exit(dccp_fini);
1116 MODULE_LICENSE("GPL");
1117 MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@conectiva.com.br>");
1118 MODULE_DESCRIPTION("DCCP - Datagram Congestion Controlled Protocol");