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/ioctls.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 struct percpu_counter dccp_orphan_count;
44 EXPORT_SYMBOL_GPL(dccp_orphan_count);
46 struct inet_hashinfo dccp_hashinfo;
47 EXPORT_SYMBOL_GPL(dccp_hashinfo);
49 /* the maximum queue length for tx in packets. 0 is no limit */
50 int sysctl_dccp_tx_qlen __read_mostly = 5;
52 void dccp_set_state(struct sock *sk, const int state)
54 const int oldstate = sk->sk_state;
56 dccp_pr_debug("%s(%p) %s --> %s\n", dccp_role(sk), sk,
57 dccp_state_name(oldstate), dccp_state_name(state));
58 WARN_ON(state == oldstate);
62 if (oldstate != DCCP_OPEN)
63 DCCP_INC_STATS(DCCP_MIB_CURRESTAB);
64 /* Client retransmits all Confirm options until entering OPEN */
65 if (oldstate == DCCP_PARTOPEN)
66 dccp_feat_list_purge(&dccp_sk(sk)->dccps_featneg);
70 if (oldstate == DCCP_OPEN || oldstate == DCCP_ACTIVE_CLOSEREQ ||
71 oldstate == DCCP_CLOSING)
72 DCCP_INC_STATS(DCCP_MIB_ESTABRESETS);
74 sk->sk_prot->unhash(sk);
75 if (inet_csk(sk)->icsk_bind_hash != NULL &&
76 !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
80 if (oldstate == DCCP_OPEN)
81 DCCP_DEC_STATS(DCCP_MIB_CURRESTAB);
84 /* Change state AFTER socket is unhashed to avoid closed
85 * socket sitting in hash tables.
90 EXPORT_SYMBOL_GPL(dccp_set_state);
92 static void dccp_finish_passive_close(struct sock *sk)
94 switch (sk->sk_state) {
95 case DCCP_PASSIVE_CLOSE:
96 /* Node (client or server) has received Close packet. */
97 dccp_send_reset(sk, DCCP_RESET_CODE_CLOSED);
98 dccp_set_state(sk, DCCP_CLOSED);
100 case DCCP_PASSIVE_CLOSEREQ:
102 * Client received CloseReq. We set the `active' flag so that
103 * dccp_send_close() retransmits the Close as per RFC 4340, 8.3.
105 dccp_send_close(sk, 1);
106 dccp_set_state(sk, DCCP_CLOSING);
110 void dccp_done(struct sock *sk)
112 dccp_set_state(sk, DCCP_CLOSED);
113 dccp_clear_xmit_timers(sk);
115 sk->sk_shutdown = SHUTDOWN_MASK;
117 if (!sock_flag(sk, SOCK_DEAD))
118 sk->sk_state_change(sk);
120 inet_csk_destroy_sock(sk);
123 EXPORT_SYMBOL_GPL(dccp_done);
125 const char *dccp_packet_name(const int type)
127 static const char *dccp_packet_names[] = {
128 [DCCP_PKT_REQUEST] = "REQUEST",
129 [DCCP_PKT_RESPONSE] = "RESPONSE",
130 [DCCP_PKT_DATA] = "DATA",
131 [DCCP_PKT_ACK] = "ACK",
132 [DCCP_PKT_DATAACK] = "DATAACK",
133 [DCCP_PKT_CLOSEREQ] = "CLOSEREQ",
134 [DCCP_PKT_CLOSE] = "CLOSE",
135 [DCCP_PKT_RESET] = "RESET",
136 [DCCP_PKT_SYNC] = "SYNC",
137 [DCCP_PKT_SYNCACK] = "SYNCACK",
140 if (type >= DCCP_NR_PKT_TYPES)
143 return dccp_packet_names[type];
146 EXPORT_SYMBOL_GPL(dccp_packet_name);
148 const char *dccp_state_name(const int state)
150 static char *dccp_state_names[] = {
151 [DCCP_OPEN] = "OPEN",
152 [DCCP_REQUESTING] = "REQUESTING",
153 [DCCP_PARTOPEN] = "PARTOPEN",
154 [DCCP_LISTEN] = "LISTEN",
155 [DCCP_RESPOND] = "RESPOND",
156 [DCCP_CLOSING] = "CLOSING",
157 [DCCP_ACTIVE_CLOSEREQ] = "CLOSEREQ",
158 [DCCP_PASSIVE_CLOSE] = "PASSIVE_CLOSE",
159 [DCCP_PASSIVE_CLOSEREQ] = "PASSIVE_CLOSEREQ",
160 [DCCP_TIME_WAIT] = "TIME_WAIT",
161 [DCCP_CLOSED] = "CLOSED",
164 if (state >= DCCP_MAX_STATES)
165 return "INVALID STATE!";
167 return dccp_state_names[state];
170 EXPORT_SYMBOL_GPL(dccp_state_name);
172 int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized)
174 struct dccp_sock *dp = dccp_sk(sk);
175 struct inet_connection_sock *icsk = inet_csk(sk);
177 dccp_minisock_init(&dp->dccps_minisock);
179 icsk->icsk_rto = DCCP_TIMEOUT_INIT;
180 icsk->icsk_syn_retries = sysctl_dccp_request_retries;
181 sk->sk_state = DCCP_CLOSED;
182 sk->sk_write_space = dccp_write_space;
183 icsk->icsk_sync_mss = dccp_sync_mss;
184 dp->dccps_mss_cache = 536;
185 dp->dccps_rate_last = jiffies;
186 dp->dccps_role = DCCP_ROLE_UNDEFINED;
187 dp->dccps_service = DCCP_SERVICE_CODE_IS_ABSENT;
188 dp->dccps_l_ack_ratio = dp->dccps_r_ack_ratio = 1;
190 dccp_init_xmit_timers(sk);
192 INIT_LIST_HEAD(&dp->dccps_featneg);
193 /* control socket doesn't need feat nego */
194 if (likely(ctl_sock_initialized))
195 return dccp_feat_init(sk);
199 EXPORT_SYMBOL_GPL(dccp_init_sock);
201 void dccp_destroy_sock(struct sock *sk)
203 struct dccp_sock *dp = dccp_sk(sk);
206 * DCCP doesn't use sk_write_queue, just sk_send_head
207 * for retransmissions
209 if (sk->sk_send_head != NULL) {
210 kfree_skb(sk->sk_send_head);
211 sk->sk_send_head = NULL;
214 /* Clean up a referenced DCCP bind bucket. */
215 if (inet_csk(sk)->icsk_bind_hash != NULL)
218 kfree(dp->dccps_service_list);
219 dp->dccps_service_list = NULL;
221 if (dp->dccps_hc_rx_ackvec != NULL) {
222 dccp_ackvec_free(dp->dccps_hc_rx_ackvec);
223 dp->dccps_hc_rx_ackvec = NULL;
225 ccid_hc_rx_delete(dp->dccps_hc_rx_ccid, sk);
226 ccid_hc_tx_delete(dp->dccps_hc_tx_ccid, sk);
227 dp->dccps_hc_rx_ccid = dp->dccps_hc_tx_ccid = NULL;
229 /* clean up feature negotiation state */
230 dccp_feat_list_purge(&dp->dccps_featneg);
233 EXPORT_SYMBOL_GPL(dccp_destroy_sock);
235 static inline int dccp_listen_start(struct sock *sk, int backlog)
237 struct dccp_sock *dp = dccp_sk(sk);
239 dp->dccps_role = DCCP_ROLE_LISTEN;
240 /* do not start to listen if feature negotiation setup fails */
241 if (dccp_feat_finalise_settings(dp))
243 return inet_csk_listen_start(sk, backlog);
246 static inline int dccp_need_reset(int state)
248 return state != DCCP_CLOSED && state != DCCP_LISTEN &&
249 state != DCCP_REQUESTING;
252 int dccp_disconnect(struct sock *sk, int flags)
254 struct inet_connection_sock *icsk = inet_csk(sk);
255 struct inet_sock *inet = inet_sk(sk);
257 const int old_state = sk->sk_state;
259 if (old_state != DCCP_CLOSED)
260 dccp_set_state(sk, DCCP_CLOSED);
263 * This corresponds to the ABORT function of RFC793, sec. 3.8
264 * TCP uses a RST segment, DCCP a Reset packet with Code 2, "Aborted".
266 if (old_state == DCCP_LISTEN) {
267 inet_csk_listen_stop(sk);
268 } else if (dccp_need_reset(old_state)) {
269 dccp_send_reset(sk, DCCP_RESET_CODE_ABORTED);
270 sk->sk_err = ECONNRESET;
271 } else if (old_state == DCCP_REQUESTING)
272 sk->sk_err = ECONNRESET;
274 dccp_clear_xmit_timers(sk);
276 __skb_queue_purge(&sk->sk_receive_queue);
277 __skb_queue_purge(&sk->sk_write_queue);
278 if (sk->sk_send_head != NULL) {
279 __kfree_skb(sk->sk_send_head);
280 sk->sk_send_head = NULL;
285 if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
286 inet_reset_saddr(sk);
289 sock_reset_flag(sk, SOCK_DONE);
291 icsk->icsk_backoff = 0;
292 inet_csk_delack_init(sk);
295 WARN_ON(inet->num && !icsk->icsk_bind_hash);
297 sk->sk_error_report(sk);
301 EXPORT_SYMBOL_GPL(dccp_disconnect);
304 * Wait for a DCCP event.
306 * Note that we don't need to lock the socket, as the upper poll layers
307 * take care of normal races (between the test and the event) and we don't
308 * go look at any of the socket buffers directly.
310 unsigned int dccp_poll(struct file *file, struct socket *sock,
314 struct sock *sk = sock->sk;
316 poll_wait(file, sk->sk_sleep, wait);
317 if (sk->sk_state == DCCP_LISTEN)
318 return inet_csk_listen_poll(sk);
320 /* Socket is not locked. We are protected from async events
321 by poll logic and correct handling of state changes
322 made by another threads is impossible in any case.
329 if (sk->sk_shutdown == SHUTDOWN_MASK || sk->sk_state == DCCP_CLOSED)
331 if (sk->sk_shutdown & RCV_SHUTDOWN)
332 mask |= POLLIN | POLLRDNORM | POLLRDHUP;
335 if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_RESPOND)) {
336 if (atomic_read(&sk->sk_rmem_alloc) > 0)
337 mask |= POLLIN | POLLRDNORM;
339 if (!(sk->sk_shutdown & SEND_SHUTDOWN)) {
340 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
341 mask |= POLLOUT | POLLWRNORM;
342 } else { /* send SIGIO later */
343 set_bit(SOCK_ASYNC_NOSPACE,
344 &sk->sk_socket->flags);
345 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
347 /* Race breaker. If space is freed after
348 * wspace test but before the flags are set,
349 * IO signal will be lost.
351 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
352 mask |= POLLOUT | POLLWRNORM;
359 EXPORT_SYMBOL_GPL(dccp_poll);
361 int dccp_ioctl(struct sock *sk, int cmd, unsigned long arg)
367 if (sk->sk_state == DCCP_LISTEN)
373 unsigned long amount = 0;
375 skb = skb_peek(&sk->sk_receive_queue);
378 * We will only return the amount of this packet since
379 * that is all that will be read.
383 rc = put_user(amount, (int __user *)arg);
395 EXPORT_SYMBOL_GPL(dccp_ioctl);
397 static int dccp_setsockopt_service(struct sock *sk, const __be32 service,
398 char __user *optval, int optlen)
400 struct dccp_sock *dp = dccp_sk(sk);
401 struct dccp_service_list *sl = NULL;
403 if (service == DCCP_SERVICE_INVALID_VALUE ||
404 optlen > DCCP_SERVICE_LIST_MAX_LEN * sizeof(u32))
407 if (optlen > sizeof(service)) {
408 sl = kmalloc(optlen, GFP_KERNEL);
412 sl->dccpsl_nr = optlen / sizeof(u32) - 1;
413 if (copy_from_user(sl->dccpsl_list,
414 optval + sizeof(service),
415 optlen - sizeof(service)) ||
416 dccp_list_has_service(sl, DCCP_SERVICE_INVALID_VALUE)) {
423 dp->dccps_service = service;
425 kfree(dp->dccps_service_list);
427 dp->dccps_service_list = sl;
432 static int dccp_setsockopt_cscov(struct sock *sk, int cscov, bool rx)
437 if (cscov < 0 || cscov > 15)
440 * Populate a list of permissible values, in the range cscov...15. This
441 * is necessary since feature negotiation of single values only works if
442 * both sides incidentally choose the same value. Since the list starts
443 * lowest-value first, negotiation will pick the smallest shared value.
449 list = kmalloc(len, GFP_KERNEL);
453 for (i = 0; i < len; i++)
456 rc = dccp_feat_register_sp(sk, DCCPF_MIN_CSUM_COVER, rx, list, len);
460 dccp_sk(sk)->dccps_pcrlen = cscov;
462 dccp_sk(sk)->dccps_pcslen = cscov;
468 static int dccp_setsockopt_ccid(struct sock *sk, int type,
469 char __user *optval, int optlen)
474 if (optlen < 1 || optlen > DCCP_FEAT_MAX_SP_VALS)
477 val = kmalloc(optlen, GFP_KERNEL);
481 if (copy_from_user(val, optval, optlen)) {
487 if (type == DCCP_SOCKOPT_TX_CCID || type == DCCP_SOCKOPT_CCID)
488 rc = dccp_feat_register_sp(sk, DCCPF_CCID, 1, val, optlen);
490 if (!rc && (type == DCCP_SOCKOPT_RX_CCID || type == DCCP_SOCKOPT_CCID))
491 rc = dccp_feat_register_sp(sk, DCCPF_CCID, 0, val, optlen);
498 static int do_dccp_setsockopt(struct sock *sk, int level, int optname,
499 char __user *optval, int optlen)
501 struct dccp_sock *dp = dccp_sk(sk);
505 case DCCP_SOCKOPT_PACKET_SIZE:
506 DCCP_WARN("sockopt(PACKET_SIZE) is deprecated: fix your app\n");
508 case DCCP_SOCKOPT_CHANGE_L:
509 case DCCP_SOCKOPT_CHANGE_R:
510 DCCP_WARN("sockopt(CHANGE_L/R) is deprecated: fix your app\n");
512 case DCCP_SOCKOPT_CCID:
513 case DCCP_SOCKOPT_RX_CCID:
514 case DCCP_SOCKOPT_TX_CCID:
515 return dccp_setsockopt_ccid(sk, optname, optval, optlen);
518 if (optlen < (int)sizeof(int))
521 if (get_user(val, (int __user *)optval))
524 if (optname == DCCP_SOCKOPT_SERVICE)
525 return dccp_setsockopt_service(sk, val, optval, optlen);
529 case DCCP_SOCKOPT_SERVER_TIMEWAIT:
530 if (dp->dccps_role != DCCP_ROLE_SERVER)
533 dp->dccps_server_timewait = (val != 0);
535 case DCCP_SOCKOPT_SEND_CSCOV:
536 err = dccp_setsockopt_cscov(sk, val, false);
538 case DCCP_SOCKOPT_RECV_CSCOV:
539 err = dccp_setsockopt_cscov(sk, val, true);
550 int dccp_setsockopt(struct sock *sk, int level, int optname,
551 char __user *optval, int optlen)
553 if (level != SOL_DCCP)
554 return inet_csk(sk)->icsk_af_ops->setsockopt(sk, level,
557 return do_dccp_setsockopt(sk, level, optname, optval, optlen);
560 EXPORT_SYMBOL_GPL(dccp_setsockopt);
563 int compat_dccp_setsockopt(struct sock *sk, int level, int optname,
564 char __user *optval, int optlen)
566 if (level != SOL_DCCP)
567 return inet_csk_compat_setsockopt(sk, level, optname,
569 return do_dccp_setsockopt(sk, level, optname, optval, optlen);
572 EXPORT_SYMBOL_GPL(compat_dccp_setsockopt);
575 static int dccp_getsockopt_service(struct sock *sk, int len,
576 __be32 __user *optval,
579 const struct dccp_sock *dp = dccp_sk(sk);
580 const struct dccp_service_list *sl;
581 int err = -ENOENT, slen = 0, total_len = sizeof(u32);
584 if ((sl = dp->dccps_service_list) != NULL) {
585 slen = sl->dccpsl_nr * sizeof(u32);
594 if (put_user(total_len, optlen) ||
595 put_user(dp->dccps_service, optval) ||
596 (sl != NULL && copy_to_user(optval + 1, sl->dccpsl_list, slen)))
603 static int do_dccp_getsockopt(struct sock *sk, int level, int optname,
604 char __user *optval, int __user *optlen)
606 struct dccp_sock *dp;
609 if (get_user(len, optlen))
612 if (len < (int)sizeof(int))
618 case DCCP_SOCKOPT_PACKET_SIZE:
619 DCCP_WARN("sockopt(PACKET_SIZE) is deprecated: fix your app\n");
621 case DCCP_SOCKOPT_SERVICE:
622 return dccp_getsockopt_service(sk, len,
623 (__be32 __user *)optval, optlen);
624 case DCCP_SOCKOPT_GET_CUR_MPS:
625 val = dp->dccps_mss_cache;
627 case DCCP_SOCKOPT_AVAILABLE_CCIDS:
628 return ccid_getsockopt_builtin_ccids(sk, len, optval, optlen);
629 case DCCP_SOCKOPT_TX_CCID:
630 val = ccid_get_current_tx_ccid(dp);
634 case DCCP_SOCKOPT_RX_CCID:
635 val = ccid_get_current_rx_ccid(dp);
639 case DCCP_SOCKOPT_SERVER_TIMEWAIT:
640 val = dp->dccps_server_timewait;
642 case DCCP_SOCKOPT_SEND_CSCOV:
643 val = dp->dccps_pcslen;
645 case DCCP_SOCKOPT_RECV_CSCOV:
646 val = dp->dccps_pcrlen;
649 return ccid_hc_rx_getsockopt(dp->dccps_hc_rx_ccid, sk, optname,
650 len, (u32 __user *)optval, optlen);
652 return ccid_hc_tx_getsockopt(dp->dccps_hc_tx_ccid, sk, optname,
653 len, (u32 __user *)optval, optlen);
659 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
665 int dccp_getsockopt(struct sock *sk, int level, int optname,
666 char __user *optval, int __user *optlen)
668 if (level != SOL_DCCP)
669 return inet_csk(sk)->icsk_af_ops->getsockopt(sk, level,
672 return do_dccp_getsockopt(sk, level, optname, optval, optlen);
675 EXPORT_SYMBOL_GPL(dccp_getsockopt);
678 int compat_dccp_getsockopt(struct sock *sk, int level, int optname,
679 char __user *optval, int __user *optlen)
681 if (level != SOL_DCCP)
682 return inet_csk_compat_getsockopt(sk, level, optname,
684 return do_dccp_getsockopt(sk, level, optname, optval, optlen);
687 EXPORT_SYMBOL_GPL(compat_dccp_getsockopt);
690 int dccp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
693 const struct dccp_sock *dp = dccp_sk(sk);
694 const int flags = msg->msg_flags;
695 const int noblock = flags & MSG_DONTWAIT;
700 if (len > dp->dccps_mss_cache)
705 if (sysctl_dccp_tx_qlen &&
706 (sk->sk_write_queue.qlen >= sysctl_dccp_tx_qlen)) {
711 timeo = sock_sndtimeo(sk, noblock);
714 * We have to use sk_stream_wait_connect here to set sk_write_pending,
715 * so that the trick in dccp_rcv_request_sent_state_process.
717 /* Wait for a connection to finish. */
718 if ((1 << sk->sk_state) & ~(DCCPF_OPEN | DCCPF_PARTOPEN))
719 if ((rc = sk_stream_wait_connect(sk, &timeo)) != 0)
722 size = sk->sk_prot->max_header + len;
724 skb = sock_alloc_send_skb(sk, size, noblock, &rc);
729 skb_reserve(skb, sk->sk_prot->max_header);
730 rc = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
734 skb_queue_tail(&sk->sk_write_queue, skb);
735 dccp_write_xmit(sk,0);
744 EXPORT_SYMBOL_GPL(dccp_sendmsg);
746 int dccp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
747 size_t len, int nonblock, int flags, int *addr_len)
749 const struct dccp_hdr *dh;
754 if (sk->sk_state == DCCP_LISTEN) {
759 timeo = sock_rcvtimeo(sk, nonblock);
762 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
765 goto verify_sock_status;
769 switch (dh->dccph_type) {
771 case DCCP_PKT_DATAACK:
775 case DCCP_PKT_CLOSEREQ:
776 if (!(flags & MSG_PEEK))
777 dccp_finish_passive_close(sk);
780 dccp_pr_debug("found fin (%s) ok!\n",
781 dccp_packet_name(dh->dccph_type));
785 dccp_pr_debug("packet_type=%s\n",
786 dccp_packet_name(dh->dccph_type));
787 sk_eat_skb(sk, skb, 0);
790 if (sock_flag(sk, SOCK_DONE)) {
796 len = sock_error(sk);
800 if (sk->sk_shutdown & RCV_SHUTDOWN) {
805 if (sk->sk_state == DCCP_CLOSED) {
806 if (!sock_flag(sk, SOCK_DONE)) {
807 /* This occurs when user tries to read
808 * from never connected socket.
822 if (signal_pending(current)) {
823 len = sock_intr_errno(timeo);
827 sk_wait_data(sk, &timeo);
832 else if (len < skb->len)
833 msg->msg_flags |= MSG_TRUNC;
835 if (skb_copy_datagram_iovec(skb, 0, msg->msg_iov, len)) {
836 /* Exception. Bailout! */
841 if (!(flags & MSG_PEEK))
842 sk_eat_skb(sk, skb, 0);
850 EXPORT_SYMBOL_GPL(dccp_recvmsg);
852 int inet_dccp_listen(struct socket *sock, int backlog)
854 struct sock *sk = sock->sk;
855 unsigned char old_state;
861 if (sock->state != SS_UNCONNECTED || sock->type != SOCK_DCCP)
864 old_state = sk->sk_state;
865 if (!((1 << old_state) & (DCCPF_CLOSED | DCCPF_LISTEN)))
868 /* Really, if the socket is already in listen state
869 * we can only allow the backlog to be adjusted.
871 if (old_state != DCCP_LISTEN) {
873 * FIXME: here it probably should be sk->sk_prot->listen_start
874 * see tcp_listen_start
876 err = dccp_listen_start(sk, backlog);
880 sk->sk_max_ack_backlog = backlog;
888 EXPORT_SYMBOL_GPL(inet_dccp_listen);
890 static void dccp_terminate_connection(struct sock *sk)
892 u8 next_state = DCCP_CLOSED;
894 switch (sk->sk_state) {
895 case DCCP_PASSIVE_CLOSE:
896 case DCCP_PASSIVE_CLOSEREQ:
897 dccp_finish_passive_close(sk);
900 dccp_pr_debug("Stop PARTOPEN timer (%p)\n", sk);
901 inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK);
904 dccp_send_close(sk, 1);
906 if (dccp_sk(sk)->dccps_role == DCCP_ROLE_SERVER &&
907 !dccp_sk(sk)->dccps_server_timewait)
908 next_state = DCCP_ACTIVE_CLOSEREQ;
910 next_state = DCCP_CLOSING;
913 dccp_set_state(sk, next_state);
917 void dccp_close(struct sock *sk, long timeout)
919 struct dccp_sock *dp = dccp_sk(sk);
921 u32 data_was_unread = 0;
926 sk->sk_shutdown = SHUTDOWN_MASK;
928 if (sk->sk_state == DCCP_LISTEN) {
929 dccp_set_state(sk, DCCP_CLOSED);
932 inet_csk_listen_stop(sk);
934 goto adjudge_to_death;
937 sk_stop_timer(sk, &dp->dccps_xmit_timer);
940 * We need to flush the recv. buffs. We do this only on the
941 * descriptor close, not protocol-sourced closes, because the
942 *reader process may not have drained the data yet!
944 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
945 data_was_unread += skb->len;
949 if (data_was_unread) {
950 /* Unread data was tossed, send an appropriate Reset Code */
951 DCCP_WARN("DCCP: ABORT -- %u bytes unread\n", data_was_unread);
952 dccp_send_reset(sk, DCCP_RESET_CODE_ABORTED);
953 dccp_set_state(sk, DCCP_CLOSED);
954 } else if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
955 /* Check zero linger _after_ checking for unread data. */
956 sk->sk_prot->disconnect(sk, 0);
957 } else if (sk->sk_state != DCCP_CLOSED) {
958 dccp_terminate_connection(sk);
961 sk_stream_wait_close(sk, timeout);
964 state = sk->sk_state;
967 percpu_counter_inc(sk->sk_prot->orphan_count);
970 * It is the last release_sock in its life. It will remove backlog.
974 * Now socket is owned by kernel and we acquire BH lock
975 * to finish close. No need to check for user refs.
979 WARN_ON(sock_owned_by_user(sk));
981 /* Have we already been destroyed by a softirq or backlog? */
982 if (state != DCCP_CLOSED && sk->sk_state == DCCP_CLOSED)
985 if (sk->sk_state == DCCP_CLOSED)
986 inet_csk_destroy_sock(sk);
988 /* Otherwise, socket is reprieved until protocol close. */
996 EXPORT_SYMBOL_GPL(dccp_close);
998 void dccp_shutdown(struct sock *sk, int how)
1000 dccp_pr_debug("called shutdown(%x)\n", how);
1003 EXPORT_SYMBOL_GPL(dccp_shutdown);
1005 static inline int dccp_mib_init(void)
1007 return snmp_mib_init((void**)dccp_statistics, sizeof(struct dccp_mib));
1010 static inline void dccp_mib_exit(void)
1012 snmp_mib_free((void**)dccp_statistics);
1015 static int thash_entries;
1016 module_param(thash_entries, int, 0444);
1017 MODULE_PARM_DESC(thash_entries, "Number of ehash buckets");
1019 #ifdef CONFIG_IP_DCCP_DEBUG
1021 module_param(dccp_debug, bool, 0644);
1022 MODULE_PARM_DESC(dccp_debug, "Enable debug messages");
1024 EXPORT_SYMBOL_GPL(dccp_debug);
1027 static int __init dccp_init(void)
1030 int ehash_order, bhash_order, i;
1033 BUILD_BUG_ON(sizeof(struct dccp_skb_cb) >
1034 FIELD_SIZEOF(struct sk_buff, cb));
1035 rc = percpu_counter_init(&dccp_orphan_count, 0);
1039 inet_hashinfo_init(&dccp_hashinfo);
1040 dccp_hashinfo.bind_bucket_cachep =
1041 kmem_cache_create("dccp_bind_bucket",
1042 sizeof(struct inet_bind_bucket), 0,
1043 SLAB_HWCACHE_ALIGN, NULL);
1044 if (!dccp_hashinfo.bind_bucket_cachep)
1045 goto out_free_percpu;
1048 * Size and allocate the main established and bind bucket
1051 * The methodology is similar to that of the buffer cache.
1053 if (num_physpages >= (128 * 1024))
1054 goal = num_physpages >> (21 - PAGE_SHIFT);
1056 goal = num_physpages >> (23 - PAGE_SHIFT);
1059 goal = (thash_entries *
1060 sizeof(struct inet_ehash_bucket)) >> PAGE_SHIFT;
1061 for (ehash_order = 0; (1UL << ehash_order) < goal; ehash_order++)
1064 dccp_hashinfo.ehash_size = (1UL << ehash_order) * PAGE_SIZE /
1065 sizeof(struct inet_ehash_bucket);
1066 while (dccp_hashinfo.ehash_size &
1067 (dccp_hashinfo.ehash_size - 1))
1068 dccp_hashinfo.ehash_size--;
1069 dccp_hashinfo.ehash = (struct inet_ehash_bucket *)
1070 __get_free_pages(GFP_ATOMIC, ehash_order);
1071 } while (!dccp_hashinfo.ehash && --ehash_order > 0);
1073 if (!dccp_hashinfo.ehash) {
1074 DCCP_CRIT("Failed to allocate DCCP established hash table");
1075 goto out_free_bind_bucket_cachep;
1078 for (i = 0; i < dccp_hashinfo.ehash_size; i++) {
1079 INIT_HLIST_NULLS_HEAD(&dccp_hashinfo.ehash[i].chain, i);
1080 INIT_HLIST_NULLS_HEAD(&dccp_hashinfo.ehash[i].twchain, i);
1083 if (inet_ehash_locks_alloc(&dccp_hashinfo))
1084 goto out_free_dccp_ehash;
1086 bhash_order = ehash_order;
1089 dccp_hashinfo.bhash_size = (1UL << bhash_order) * PAGE_SIZE /
1090 sizeof(struct inet_bind_hashbucket);
1091 if ((dccp_hashinfo.bhash_size > (64 * 1024)) &&
1094 dccp_hashinfo.bhash = (struct inet_bind_hashbucket *)
1095 __get_free_pages(GFP_ATOMIC, bhash_order);
1096 } while (!dccp_hashinfo.bhash && --bhash_order >= 0);
1098 if (!dccp_hashinfo.bhash) {
1099 DCCP_CRIT("Failed to allocate DCCP bind hash table");
1100 goto out_free_dccp_locks;
1103 for (i = 0; i < dccp_hashinfo.bhash_size; i++) {
1104 spin_lock_init(&dccp_hashinfo.bhash[i].lock);
1105 INIT_HLIST_HEAD(&dccp_hashinfo.bhash[i].chain);
1108 rc = dccp_mib_init();
1110 goto out_free_dccp_bhash;
1112 rc = dccp_ackvec_init();
1114 goto out_free_dccp_mib;
1116 rc = dccp_sysctl_init();
1118 goto out_ackvec_exit;
1120 dccp_timestamping_init();
1127 out_free_dccp_bhash:
1128 free_pages((unsigned long)dccp_hashinfo.bhash, bhash_order);
1129 dccp_hashinfo.bhash = NULL;
1130 out_free_dccp_locks:
1131 inet_ehash_locks_free(&dccp_hashinfo);
1132 out_free_dccp_ehash:
1133 free_pages((unsigned long)dccp_hashinfo.ehash, ehash_order);
1134 dccp_hashinfo.ehash = NULL;
1135 out_free_bind_bucket_cachep:
1136 kmem_cache_destroy(dccp_hashinfo.bind_bucket_cachep);
1137 dccp_hashinfo.bind_bucket_cachep = NULL;
1139 percpu_counter_destroy(&dccp_orphan_count);
1143 static void __exit dccp_fini(void)
1146 free_pages((unsigned long)dccp_hashinfo.bhash,
1147 get_order(dccp_hashinfo.bhash_size *
1148 sizeof(struct inet_bind_hashbucket)));
1149 free_pages((unsigned long)dccp_hashinfo.ehash,
1150 get_order(dccp_hashinfo.ehash_size *
1151 sizeof(struct inet_ehash_bucket)));
1152 inet_ehash_locks_free(&dccp_hashinfo);
1153 kmem_cache_destroy(dccp_hashinfo.bind_bucket_cachep);
1158 module_init(dccp_init);
1159 module_exit(dccp_fini);
1161 MODULE_LICENSE("GPL");
1162 MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@conectiva.com.br>");
1163 MODULE_DESCRIPTION("DCCP - Datagram Congestion Controlled Protocol");