1 /* SCTP kernel implementation
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2003 Intel Corp.
6 * Copyright (c) 2001-2002 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
9 * This file is part of the SCTP kernel implementation
11 * These functions interface with the sockets layer to implement the
12 * SCTP Extensions for the Sockets API.
14 * Note that the descriptions from the specification are USER level
15 * functions--this file is the functions which populate the struct proto
16 * for SCTP which is the BOTTOM of the sockets interface.
18 * This SCTP implementation is free software;
19 * you can redistribute it and/or modify it under the terms of
20 * the GNU General Public License as published by
21 * the Free Software Foundation; either version 2, or (at your option)
24 * This SCTP implementation is distributed in the hope that it
25 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
26 * ************************
27 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28 * See the GNU General Public License for more details.
30 * You should have received a copy of the GNU General Public License
31 * along with GNU CC; see the file COPYING. If not, write to
32 * the Free Software Foundation, 59 Temple Place - Suite 330,
33 * Boston, MA 02111-1307, USA.
35 * Please send any bug reports or fixes you make to the
37 * lksctp developers <lksctp-developers@lists.sourceforge.net>
39 * Or submit a bug report through the following website:
40 * http://www.sf.net/projects/lksctp
42 * Written or modified by:
43 * La Monte H.P. Yarroll <piggy@acm.org>
44 * Narasimha Budihal <narsi@refcode.org>
45 * Karl Knutson <karl@athena.chicago.il.us>
46 * Jon Grimm <jgrimm@us.ibm.com>
47 * Xingang Guo <xingang.guo@intel.com>
48 * Daisy Chang <daisyc@us.ibm.com>
49 * Sridhar Samudrala <samudrala@us.ibm.com>
50 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
51 * Ardelle Fan <ardelle.fan@intel.com>
52 * Ryan Layer <rmlayer@us.ibm.com>
53 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
54 * Kevin Gao <kevin.gao@intel.com>
56 * Any bugs reported given to us we will try to fix... any fixes shared will
57 * be incorporated into the next SCTP release.
60 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
62 #include <linux/types.h>
63 #include <linux/kernel.h>
64 #include <linux/wait.h>
65 #include <linux/time.h>
67 #include <linux/capability.h>
68 #include <linux/fcntl.h>
69 #include <linux/poll.h>
70 #include <linux/init.h>
71 #include <linux/crypto.h>
72 #include <linux/slab.h>
73 #include <linux/compat.h>
77 #include <net/route.h>
79 #include <net/inet_common.h>
81 #include <linux/socket.h> /* for sa_family_t */
82 #include <linux/export.h>
84 #include <net/sctp/sctp.h>
85 #include <net/sctp/sm.h>
87 /* WARNING: Please do not remove the SCTP_STATIC attribute to
88 * any of the functions below as they are used to export functions
89 * used by a project regression testsuite.
92 /* Forward declarations for internal helper functions. */
93 static int sctp_writeable(struct sock *sk);
94 static void sctp_wfree(struct sk_buff *skb);
95 static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p,
97 static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p);
98 static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
99 static int sctp_wait_for_accept(struct sock *sk, long timeo);
100 static void sctp_wait_for_close(struct sock *sk, long timeo);
101 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
102 union sctp_addr *addr, int len);
103 static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
104 static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
105 static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
106 static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
107 static int sctp_send_asconf(struct sctp_association *asoc,
108 struct sctp_chunk *chunk);
109 static int sctp_do_bind(struct sock *, union sctp_addr *, int);
110 static int sctp_autobind(struct sock *sk);
111 static void sctp_sock_migrate(struct sock *, struct sock *,
112 struct sctp_association *, sctp_socket_type_t);
113 static char *sctp_hmac_alg = SCTP_COOKIE_HMAC_ALG;
115 extern struct kmem_cache *sctp_bucket_cachep;
116 extern long sysctl_sctp_mem[3];
117 extern int sysctl_sctp_rmem[3];
118 extern int sysctl_sctp_wmem[3];
120 static int sctp_memory_pressure;
121 static atomic_long_t sctp_memory_allocated;
122 struct percpu_counter sctp_sockets_allocated;
124 static void sctp_enter_memory_pressure(struct sock *sk)
126 sctp_memory_pressure = 1;
130 /* Get the sndbuf space available at the time on the association. */
131 static inline int sctp_wspace(struct sctp_association *asoc)
135 if (asoc->ep->sndbuf_policy)
136 amt = asoc->sndbuf_used;
138 amt = sk_wmem_alloc_get(asoc->base.sk);
140 if (amt >= asoc->base.sk->sk_sndbuf) {
141 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
144 amt = sk_stream_wspace(asoc->base.sk);
149 amt = asoc->base.sk->sk_sndbuf - amt;
154 /* Increment the used sndbuf space count of the corresponding association by
155 * the size of the outgoing data chunk.
156 * Also, set the skb destructor for sndbuf accounting later.
158 * Since it is always 1-1 between chunk and skb, and also a new skb is always
159 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
160 * destructor in the data chunk skb for the purpose of the sndbuf space
163 static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
165 struct sctp_association *asoc = chunk->asoc;
166 struct sock *sk = asoc->base.sk;
168 /* The sndbuf space is tracked per association. */
169 sctp_association_hold(asoc);
171 skb_set_owner_w(chunk->skb, sk);
173 chunk->skb->destructor = sctp_wfree;
174 /* Save the chunk pointer in skb for sctp_wfree to use later. */
175 *((struct sctp_chunk **)(chunk->skb->cb)) = chunk;
177 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
178 sizeof(struct sk_buff) +
179 sizeof(struct sctp_chunk);
181 atomic_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
182 sk->sk_wmem_queued += chunk->skb->truesize;
183 sk_mem_charge(sk, chunk->skb->truesize);
186 /* Verify that this is a valid address. */
187 static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
192 /* Verify basic sockaddr. */
193 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
197 /* Is this a valid SCTP address? */
198 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
201 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
207 /* Look up the association by its id. If this is not a UDP-style
208 * socket, the ID field is always ignored.
210 struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
212 struct sctp_association *asoc = NULL;
214 /* If this is not a UDP-style socket, assoc id should be ignored. */
215 if (!sctp_style(sk, UDP)) {
216 /* Return NULL if the socket state is not ESTABLISHED. It
217 * could be a TCP-style listening socket or a socket which
218 * hasn't yet called connect() to establish an association.
220 if (!sctp_sstate(sk, ESTABLISHED))
223 /* Get the first and the only association from the list. */
224 if (!list_empty(&sctp_sk(sk)->ep->asocs))
225 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
226 struct sctp_association, asocs);
230 /* Otherwise this is a UDP-style socket. */
231 if (!id || (id == (sctp_assoc_t)-1))
234 spin_lock_bh(&sctp_assocs_id_lock);
235 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
236 spin_unlock_bh(&sctp_assocs_id_lock);
238 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
244 /* Look up the transport from an address and an assoc id. If both address and
245 * id are specified, the associations matching the address and the id should be
248 static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
249 struct sockaddr_storage *addr,
252 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
253 struct sctp_transport *transport;
254 union sctp_addr *laddr = (union sctp_addr *)addr;
256 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
263 id_asoc = sctp_id2assoc(sk, id);
264 if (id_asoc && (id_asoc != addr_asoc))
267 sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk),
268 (union sctp_addr *)addr);
273 /* API 3.1.2 bind() - UDP Style Syntax
274 * The syntax of bind() is,
276 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
278 * sd - the socket descriptor returned by socket().
279 * addr - the address structure (struct sockaddr_in or struct
280 * sockaddr_in6 [RFC 2553]),
281 * addr_len - the size of the address structure.
283 SCTP_STATIC int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
289 SCTP_DEBUG_PRINTK("sctp_bind(sk: %p, addr: %p, addr_len: %d)\n",
292 /* Disallow binding twice. */
293 if (!sctp_sk(sk)->ep->base.bind_addr.port)
294 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
299 sctp_release_sock(sk);
304 static long sctp_get_port_local(struct sock *, union sctp_addr *);
306 /* Verify this is a valid sockaddr. */
307 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
308 union sctp_addr *addr, int len)
312 /* Check minimum size. */
313 if (len < sizeof (struct sockaddr))
316 /* V4 mapped address are really of AF_INET family */
317 if (addr->sa.sa_family == AF_INET6 &&
318 ipv6_addr_v4mapped(&addr->v6.sin6_addr)) {
319 if (!opt->pf->af_supported(AF_INET, opt))
322 /* Does this PF support this AF? */
323 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
327 /* If we get this far, af is valid. */
328 af = sctp_get_af_specific(addr->sa.sa_family);
330 if (len < af->sockaddr_len)
336 /* Bind a local address either to an endpoint or to an association. */
337 SCTP_STATIC int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
339 struct sctp_sock *sp = sctp_sk(sk);
340 struct sctp_endpoint *ep = sp->ep;
341 struct sctp_bind_addr *bp = &ep->base.bind_addr;
346 /* Common sockaddr verification. */
347 af = sctp_sockaddr_af(sp, addr, len);
349 SCTP_DEBUG_PRINTK("sctp_do_bind(sk: %p, newaddr: %p, len: %d) EINVAL\n",
354 snum = ntohs(addr->v4.sin_port);
356 SCTP_DEBUG_PRINTK_IPADDR("sctp_do_bind(sk: %p, new addr: ",
357 ", port: %d, new port: %d, len: %d)\n",
363 /* PF specific bind() address verification. */
364 if (!sp->pf->bind_verify(sp, addr))
365 return -EADDRNOTAVAIL;
367 /* We must either be unbound, or bind to the same port.
368 * It's OK to allow 0 ports if we are already bound.
369 * We'll just inhert an already bound port in this case
374 else if (snum != bp->port) {
375 SCTP_DEBUG_PRINTK("sctp_do_bind:"
376 " New port %d does not match existing port "
377 "%d.\n", snum, bp->port);
382 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
385 /* See if the address matches any of the addresses we may have
386 * already bound before checking against other endpoints.
388 if (sctp_bind_addr_match(bp, addr, sp))
391 /* Make sure we are allowed to bind here.
392 * The function sctp_get_port_local() does duplicate address
395 addr->v4.sin_port = htons(snum);
396 if ((ret = sctp_get_port_local(sk, addr))) {
400 /* Refresh ephemeral port. */
402 bp->port = inet_sk(sk)->inet_num;
404 /* Add the address to the bind address list.
405 * Use GFP_ATOMIC since BHs will be disabled.
407 ret = sctp_add_bind_addr(bp, addr, SCTP_ADDR_SRC, GFP_ATOMIC);
409 /* Copy back into socket for getsockname() use. */
411 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
412 af->to_sk_saddr(addr, sk);
418 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
420 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
421 * at any one time. If a sender, after sending an ASCONF chunk, decides
422 * it needs to transfer another ASCONF Chunk, it MUST wait until the
423 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
424 * subsequent ASCONF. Note this restriction binds each side, so at any
425 * time two ASCONF may be in-transit on any given association (one sent
426 * from each endpoint).
428 static int sctp_send_asconf(struct sctp_association *asoc,
429 struct sctp_chunk *chunk)
433 /* If there is an outstanding ASCONF chunk, queue it for later
436 if (asoc->addip_last_asconf) {
437 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
441 /* Hold the chunk until an ASCONF_ACK is received. */
442 sctp_chunk_hold(chunk);
443 retval = sctp_primitive_ASCONF(asoc, chunk);
445 sctp_chunk_free(chunk);
447 asoc->addip_last_asconf = chunk;
453 /* Add a list of addresses as bind addresses to local endpoint or
456 * Basically run through each address specified in the addrs/addrcnt
457 * array/length pair, determine if it is IPv6 or IPv4 and call
458 * sctp_do_bind() on it.
460 * If any of them fails, then the operation will be reversed and the
461 * ones that were added will be removed.
463 * Only sctp_setsockopt_bindx() is supposed to call this function.
465 static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
470 struct sockaddr *sa_addr;
473 SCTP_DEBUG_PRINTK("sctp_bindx_add (sk: %p, addrs: %p, addrcnt: %d)\n",
477 for (cnt = 0; cnt < addrcnt; cnt++) {
478 /* The list may contain either IPv4 or IPv6 address;
479 * determine the address length for walking thru the list.
482 af = sctp_get_af_specific(sa_addr->sa_family);
488 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
491 addr_buf += af->sockaddr_len;
495 /* Failed. Cleanup the ones that have been added */
497 sctp_bindx_rem(sk, addrs, cnt);
505 /* Send an ASCONF chunk with Add IP address parameters to all the peers of the
506 * associations that are part of the endpoint indicating that a list of local
507 * addresses are added to the endpoint.
509 * If any of the addresses is already in the bind address list of the
510 * association, we do not send the chunk for that association. But it will not
511 * affect other associations.
513 * Only sctp_setsockopt_bindx() is supposed to call this function.
515 static int sctp_send_asconf_add_ip(struct sock *sk,
516 struct sockaddr *addrs,
519 struct sctp_sock *sp;
520 struct sctp_endpoint *ep;
521 struct sctp_association *asoc;
522 struct sctp_bind_addr *bp;
523 struct sctp_chunk *chunk;
524 struct sctp_sockaddr_entry *laddr;
525 union sctp_addr *addr;
526 union sctp_addr saveaddr;
533 if (!sctp_addip_enable)
539 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
540 __func__, sk, addrs, addrcnt);
542 list_for_each_entry(asoc, &ep->asocs, asocs) {
544 if (!asoc->peer.asconf_capable)
547 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
550 if (!sctp_state(asoc, ESTABLISHED))
553 /* Check if any address in the packed array of addresses is
554 * in the bind address list of the association. If so,
555 * do not send the asconf chunk to its peer, but continue with
556 * other associations.
559 for (i = 0; i < addrcnt; i++) {
561 af = sctp_get_af_specific(addr->v4.sin_family);
567 if (sctp_assoc_lookup_laddr(asoc, addr))
570 addr_buf += af->sockaddr_len;
575 /* Use the first valid address in bind addr list of
576 * association as Address Parameter of ASCONF CHUNK.
578 bp = &asoc->base.bind_addr;
579 p = bp->address_list.next;
580 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
581 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
582 addrcnt, SCTP_PARAM_ADD_IP);
588 /* Add the new addresses to the bind address list with
589 * use_as_src set to 0.
592 for (i = 0; i < addrcnt; i++) {
594 af = sctp_get_af_specific(addr->v4.sin_family);
595 memcpy(&saveaddr, addr, af->sockaddr_len);
596 retval = sctp_add_bind_addr(bp, &saveaddr,
597 SCTP_ADDR_NEW, GFP_ATOMIC);
598 addr_buf += af->sockaddr_len;
600 if (asoc->src_out_of_asoc_ok) {
601 struct sctp_transport *trans;
603 list_for_each_entry(trans,
604 &asoc->peer.transport_addr_list, transports) {
605 /* Clear the source and route cache */
606 dst_release(trans->dst);
607 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
608 2*asoc->pathmtu, 4380));
609 trans->ssthresh = asoc->peer.i.a_rwnd;
610 trans->rto = asoc->rto_initial;
611 trans->rtt = trans->srtt = trans->rttvar = 0;
612 sctp_transport_route(trans, NULL,
613 sctp_sk(asoc->base.sk));
616 retval = sctp_send_asconf(asoc, chunk);
623 /* Remove a list of addresses from bind addresses list. Do not remove the
626 * Basically run through each address specified in the addrs/addrcnt
627 * array/length pair, determine if it is IPv6 or IPv4 and call
628 * sctp_del_bind() on it.
630 * If any of them fails, then the operation will be reversed and the
631 * ones that were removed will be added back.
633 * At least one address has to be left; if only one address is
634 * available, the operation will return -EBUSY.
636 * Only sctp_setsockopt_bindx() is supposed to call this function.
638 static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
640 struct sctp_sock *sp = sctp_sk(sk);
641 struct sctp_endpoint *ep = sp->ep;
643 struct sctp_bind_addr *bp = &ep->base.bind_addr;
646 union sctp_addr *sa_addr;
649 SCTP_DEBUG_PRINTK("sctp_bindx_rem (sk: %p, addrs: %p, addrcnt: %d)\n",
653 for (cnt = 0; cnt < addrcnt; cnt++) {
654 /* If the bind address list is empty or if there is only one
655 * bind address, there is nothing more to be removed (we need
656 * at least one address here).
658 if (list_empty(&bp->address_list) ||
659 (sctp_list_single_entry(&bp->address_list))) {
665 af = sctp_get_af_specific(sa_addr->sa.sa_family);
671 if (!af->addr_valid(sa_addr, sp, NULL)) {
672 retval = -EADDRNOTAVAIL;
676 if (sa_addr->v4.sin_port &&
677 sa_addr->v4.sin_port != htons(bp->port)) {
682 if (!sa_addr->v4.sin_port)
683 sa_addr->v4.sin_port = htons(bp->port);
685 /* FIXME - There is probably a need to check if sk->sk_saddr and
686 * sk->sk_rcv_addr are currently set to one of the addresses to
687 * be removed. This is something which needs to be looked into
688 * when we are fixing the outstanding issues with multi-homing
689 * socket routing and failover schemes. Refer to comments in
690 * sctp_do_bind(). -daisy
692 retval = sctp_del_bind_addr(bp, sa_addr);
694 addr_buf += af->sockaddr_len;
697 /* Failed. Add the ones that has been removed back */
699 sctp_bindx_add(sk, addrs, cnt);
707 /* Send an ASCONF chunk with Delete IP address parameters to all the peers of
708 * the associations that are part of the endpoint indicating that a list of
709 * local addresses are removed from the endpoint.
711 * If any of the addresses is already in the bind address list of the
712 * association, we do not send the chunk for that association. But it will not
713 * affect other associations.
715 * Only sctp_setsockopt_bindx() is supposed to call this function.
717 static int sctp_send_asconf_del_ip(struct sock *sk,
718 struct sockaddr *addrs,
721 struct sctp_sock *sp;
722 struct sctp_endpoint *ep;
723 struct sctp_association *asoc;
724 struct sctp_transport *transport;
725 struct sctp_bind_addr *bp;
726 struct sctp_chunk *chunk;
727 union sctp_addr *laddr;
730 struct sctp_sockaddr_entry *saddr;
736 if (!sctp_addip_enable)
742 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
743 __func__, sk, addrs, addrcnt);
745 list_for_each_entry(asoc, &ep->asocs, asocs) {
747 if (!asoc->peer.asconf_capable)
750 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
753 if (!sctp_state(asoc, ESTABLISHED))
756 /* Check if any address in the packed array of addresses is
757 * not present in the bind address list of the association.
758 * If so, do not send the asconf chunk to its peer, but
759 * continue with other associations.
762 for (i = 0; i < addrcnt; i++) {
764 af = sctp_get_af_specific(laddr->v4.sin_family);
770 if (!sctp_assoc_lookup_laddr(asoc, laddr))
773 addr_buf += af->sockaddr_len;
778 /* Find one address in the association's bind address list
779 * that is not in the packed array of addresses. This is to
780 * make sure that we do not delete all the addresses in the
783 bp = &asoc->base.bind_addr;
784 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
786 if ((laddr == NULL) && (addrcnt == 1)) {
787 if (asoc->asconf_addr_del_pending)
789 asoc->asconf_addr_del_pending =
790 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
791 if (asoc->asconf_addr_del_pending == NULL) {
795 asoc->asconf_addr_del_pending->sa.sa_family =
797 asoc->asconf_addr_del_pending->v4.sin_port =
799 if (addrs->sa_family == AF_INET) {
800 struct sockaddr_in *sin;
802 sin = (struct sockaddr_in *)addrs;
803 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
804 } else if (addrs->sa_family == AF_INET6) {
805 struct sockaddr_in6 *sin6;
807 sin6 = (struct sockaddr_in6 *)addrs;
808 ipv6_addr_copy(&asoc->asconf_addr_del_pending->v6.sin6_addr, &sin6->sin6_addr);
810 SCTP_DEBUG_PRINTK_IPADDR("send_asconf_del_ip: keep the last address asoc: %p ",
811 " at %p\n", asoc, asoc->asconf_addr_del_pending,
812 asoc->asconf_addr_del_pending);
813 asoc->src_out_of_asoc_ok = 1;
821 /* We do not need RCU protection throughout this loop
822 * because this is done under a socket lock from the
825 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
833 /* Reset use_as_src flag for the addresses in the bind address
834 * list that are to be deleted.
837 for (i = 0; i < addrcnt; i++) {
839 af = sctp_get_af_specific(laddr->v4.sin_family);
840 list_for_each_entry(saddr, &bp->address_list, list) {
841 if (sctp_cmp_addr_exact(&saddr->a, laddr))
842 saddr->state = SCTP_ADDR_DEL;
844 addr_buf += af->sockaddr_len;
847 /* Update the route and saddr entries for all the transports
848 * as some of the addresses in the bind address list are
849 * about to be deleted and cannot be used as source addresses.
851 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
853 dst_release(transport->dst);
854 sctp_transport_route(transport, NULL,
855 sctp_sk(asoc->base.sk));
859 /* We don't need to transmit ASCONF */
861 retval = sctp_send_asconf(asoc, chunk);
867 /* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
868 int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
870 struct sock *sk = sctp_opt2sk(sp);
871 union sctp_addr *addr;
874 /* It is safe to write port space in caller. */
876 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
877 af = sctp_get_af_specific(addr->sa.sa_family);
880 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
883 if (addrw->state == SCTP_ADDR_NEW)
884 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
886 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
889 /* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
892 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
895 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
896 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
899 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
900 * Section 3.1.2 for this usage.
902 * addrs is a pointer to an array of one or more socket addresses. Each
903 * address is contained in its appropriate structure (i.e. struct
904 * sockaddr_in or struct sockaddr_in6) the family of the address type
905 * must be used to distinguish the address length (note that this
906 * representation is termed a "packed array" of addresses). The caller
907 * specifies the number of addresses in the array with addrcnt.
909 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
910 * -1, and sets errno to the appropriate error code.
912 * For SCTP, the port given in each socket address must be the same, or
913 * sctp_bindx() will fail, setting errno to EINVAL.
915 * The flags parameter is formed from the bitwise OR of zero or more of
916 * the following currently defined flags:
918 * SCTP_BINDX_ADD_ADDR
920 * SCTP_BINDX_REM_ADDR
922 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
923 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
924 * addresses from the association. The two flags are mutually exclusive;
925 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
926 * not remove all addresses from an association; sctp_bindx() will
927 * reject such an attempt with EINVAL.
929 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
930 * additional addresses with an endpoint after calling bind(). Or use
931 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
932 * socket is associated with so that no new association accepted will be
933 * associated with those addresses. If the endpoint supports dynamic
934 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
935 * endpoint to send the appropriate message to the peer to change the
936 * peers address lists.
938 * Adding and removing addresses from a connected association is
939 * optional functionality. Implementations that do not support this
940 * functionality should return EOPNOTSUPP.
942 * Basically do nothing but copying the addresses from user to kernel
943 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
944 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
947 * We don't use copy_from_user() for optimization: we first do the
948 * sanity checks (buffer size -fast- and access check-healthy
949 * pointer); if all of those succeed, then we can alloc the memory
950 * (expensive operation) needed to copy the data to kernel. Then we do
951 * the copying without checking the user space area
952 * (__copy_from_user()).
954 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
957 * sk The sk of the socket
958 * addrs The pointer to the addresses in user land
959 * addrssize Size of the addrs buffer
960 * op Operation to perform (add or remove, see the flags of
963 * Returns 0 if ok, <0 errno code on error.
965 SCTP_STATIC int sctp_setsockopt_bindx(struct sock* sk,
966 struct sockaddr __user *addrs,
967 int addrs_size, int op)
969 struct sockaddr *kaddrs;
973 struct sockaddr *sa_addr;
977 SCTP_DEBUG_PRINTK("sctp_setsocktopt_bindx: sk %p addrs %p"
978 " addrs_size %d opt %d\n", sk, addrs, addrs_size, op);
980 if (unlikely(addrs_size <= 0))
983 /* Check the user passed a healthy pointer. */
984 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
987 /* Alloc space for the address array in kernel memory. */
988 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
989 if (unlikely(!kaddrs))
992 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
997 /* Walk through the addrs buffer and count the number of addresses. */
999 while (walk_size < addrs_size) {
1000 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1006 af = sctp_get_af_specific(sa_addr->sa_family);
1008 /* If the address family is not supported or if this address
1009 * causes the address buffer to overflow return EINVAL.
1011 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1016 addr_buf += af->sockaddr_len;
1017 walk_size += af->sockaddr_len;
1022 case SCTP_BINDX_ADD_ADDR:
1023 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1026 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1029 case SCTP_BINDX_REM_ADDR:
1030 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1033 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1047 /* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1049 * Common routine for handling connect() and sctp_connectx().
1050 * Connect will come in with just a single address.
1052 static int __sctp_connect(struct sock* sk,
1053 struct sockaddr *kaddrs,
1055 sctp_assoc_t *assoc_id)
1057 struct sctp_sock *sp;
1058 struct sctp_endpoint *ep;
1059 struct sctp_association *asoc = NULL;
1060 struct sctp_association *asoc2;
1061 struct sctp_transport *transport;
1069 union sctp_addr *sa_addr = NULL;
1071 unsigned short port;
1072 unsigned int f_flags = 0;
1077 /* connect() cannot be done on a socket that is already in ESTABLISHED
1078 * state - UDP-style peeled off socket or a TCP-style socket that
1079 * is already connected.
1080 * It cannot be done even on a TCP-style listening socket.
1082 if (sctp_sstate(sk, ESTABLISHED) ||
1083 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1088 /* Walk through the addrs buffer and count the number of addresses. */
1090 while (walk_size < addrs_size) {
1091 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1097 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1099 /* If the address family is not supported or if this address
1100 * causes the address buffer to overflow return EINVAL.
1102 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1107 port = ntohs(sa_addr->v4.sin_port);
1109 /* Save current address so we can work with it */
1110 memcpy(&to, sa_addr, af->sockaddr_len);
1112 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
1116 /* Make sure the destination port is correctly set
1119 if (asoc && asoc->peer.port && asoc->peer.port != port)
1123 /* Check if there already is a matching association on the
1124 * endpoint (other than the one created here).
1126 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
1127 if (asoc2 && asoc2 != asoc) {
1128 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1135 /* If we could not find a matching association on the endpoint,
1136 * make sure that there is no peeled-off association matching
1137 * the peer address even on another socket.
1139 if (sctp_endpoint_is_peeled_off(ep, &to)) {
1140 err = -EADDRNOTAVAIL;
1145 /* If a bind() or sctp_bindx() is not called prior to
1146 * an sctp_connectx() call, the system picks an
1147 * ephemeral port and will choose an address set
1148 * equivalent to binding with a wildcard address.
1150 if (!ep->base.bind_addr.port) {
1151 if (sctp_autobind(sk)) {
1157 * If an unprivileged user inherits a 1-many
1158 * style socket with open associations on a
1159 * privileged port, it MAY be permitted to
1160 * accept new associations, but it SHOULD NOT
1161 * be permitted to open new associations.
1163 if (ep->base.bind_addr.port < PROT_SOCK &&
1164 !capable(CAP_NET_BIND_SERVICE)) {
1170 scope = sctp_scope(&to);
1171 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1177 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1185 /* Prime the peer's transport structures. */
1186 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
1194 addr_buf += af->sockaddr_len;
1195 walk_size += af->sockaddr_len;
1198 /* In case the user of sctp_connectx() wants an association
1199 * id back, assign one now.
1202 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1207 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1212 /* Initialize sk's dport and daddr for getpeername() */
1213 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
1214 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1215 af->to_sk_daddr(sa_addr, sk);
1218 /* in-kernel sockets don't generally have a file allocated to them
1219 * if all they do is call sock_create_kern().
1221 if (sk->sk_socket->file)
1222 f_flags = sk->sk_socket->file->f_flags;
1224 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1227 *assoc_id = asoc->assoc_id;
1228 err = sctp_wait_for_connect(asoc, &timeo);
1229 /* Note: the asoc may be freed after the return of
1230 * sctp_wait_for_connect.
1233 /* Don't free association on exit. */
1238 SCTP_DEBUG_PRINTK("About to exit __sctp_connect() free asoc: %p"
1239 " kaddrs: %p err: %d\n",
1242 /* sctp_primitive_ASSOCIATE may have added this association
1243 * To the hash table, try to unhash it, just in case, its a noop
1244 * if it wasn't hashed so we're safe
1246 sctp_unhash_established(asoc);
1247 sctp_association_free(asoc);
1252 /* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1255 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1256 * sctp_assoc_t *asoc);
1258 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1259 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1260 * or IPv6 addresses.
1262 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1263 * Section 3.1.2 for this usage.
1265 * addrs is a pointer to an array of one or more socket addresses. Each
1266 * address is contained in its appropriate structure (i.e. struct
1267 * sockaddr_in or struct sockaddr_in6) the family of the address type
1268 * must be used to distengish the address length (note that this
1269 * representation is termed a "packed array" of addresses). The caller
1270 * specifies the number of addresses in the array with addrcnt.
1272 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1273 * the association id of the new association. On failure, sctp_connectx()
1274 * returns -1, and sets errno to the appropriate error code. The assoc_id
1275 * is not touched by the kernel.
1277 * For SCTP, the port given in each socket address must be the same, or
1278 * sctp_connectx() will fail, setting errno to EINVAL.
1280 * An application can use sctp_connectx to initiate an association with
1281 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1282 * allows a caller to specify multiple addresses at which a peer can be
1283 * reached. The way the SCTP stack uses the list of addresses to set up
1284 * the association is implementation dependent. This function only
1285 * specifies that the stack will try to make use of all the addresses in
1286 * the list when needed.
1288 * Note that the list of addresses passed in is only used for setting up
1289 * the association. It does not necessarily equal the set of addresses
1290 * the peer uses for the resulting association. If the caller wants to
1291 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1292 * retrieve them after the association has been set up.
1294 * Basically do nothing but copying the addresses from user to kernel
1295 * land and invoking either sctp_connectx(). This is used for tunneling
1296 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1298 * We don't use copy_from_user() for optimization: we first do the
1299 * sanity checks (buffer size -fast- and access check-healthy
1300 * pointer); if all of those succeed, then we can alloc the memory
1301 * (expensive operation) needed to copy the data to kernel. Then we do
1302 * the copying without checking the user space area
1303 * (__copy_from_user()).
1305 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1308 * sk The sk of the socket
1309 * addrs The pointer to the addresses in user land
1310 * addrssize Size of the addrs buffer
1312 * Returns >=0 if ok, <0 errno code on error.
1314 SCTP_STATIC int __sctp_setsockopt_connectx(struct sock* sk,
1315 struct sockaddr __user *addrs,
1317 sctp_assoc_t *assoc_id)
1320 struct sockaddr *kaddrs;
1322 SCTP_DEBUG_PRINTK("%s - sk %p addrs %p addrs_size %d\n",
1323 __func__, sk, addrs, addrs_size);
1325 if (unlikely(addrs_size <= 0))
1328 /* Check the user passed a healthy pointer. */
1329 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
1332 /* Alloc space for the address array in kernel memory. */
1333 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
1334 if (unlikely(!kaddrs))
1337 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
1340 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
1349 * This is an older interface. It's kept for backward compatibility
1350 * to the option that doesn't provide association id.
1352 SCTP_STATIC int sctp_setsockopt_connectx_old(struct sock* sk,
1353 struct sockaddr __user *addrs,
1356 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1360 * New interface for the API. The since the API is done with a socket
1361 * option, to make it simple we feed back the association id is as a return
1362 * indication to the call. Error is always negative and association id is
1365 SCTP_STATIC int sctp_setsockopt_connectx(struct sock* sk,
1366 struct sockaddr __user *addrs,
1369 sctp_assoc_t assoc_id = 0;
1372 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1381 * New (hopefully final) interface for the API.
1382 * We use the sctp_getaddrs_old structure so that use-space library
1383 * can avoid any unnecessary allocations. The only different part
1384 * is that we store the actual length of the address buffer into the
1385 * addrs_num structure member. That way we can re-use the existing
1388 #ifdef CONFIG_COMPAT
1389 struct compat_sctp_getaddrs_old {
1390 sctp_assoc_t assoc_id;
1392 compat_uptr_t addrs; /* struct sockaddr * */
1396 SCTP_STATIC int sctp_getsockopt_connectx3(struct sock* sk, int len,
1397 char __user *optval,
1400 struct sctp_getaddrs_old param;
1401 sctp_assoc_t assoc_id = 0;
1404 #ifdef CONFIG_COMPAT
1405 if (is_compat_task()) {
1406 struct compat_sctp_getaddrs_old param32;
1408 if (len < sizeof(param32))
1410 if (copy_from_user(¶m32, optval, sizeof(param32)))
1413 param.assoc_id = param32.assoc_id;
1414 param.addr_num = param32.addr_num;
1415 param.addrs = compat_ptr(param32.addrs);
1419 if (len < sizeof(param))
1421 if (copy_from_user(¶m, optval, sizeof(param)))
1425 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1426 param.addrs, param.addr_num,
1428 if (err == 0 || err == -EINPROGRESS) {
1429 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1431 if (put_user(sizeof(assoc_id), optlen))
1438 /* API 3.1.4 close() - UDP Style Syntax
1439 * Applications use close() to perform graceful shutdown (as described in
1440 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1441 * by a UDP-style socket.
1445 * ret = close(int sd);
1447 * sd - the socket descriptor of the associations to be closed.
1449 * To gracefully shutdown a specific association represented by the
1450 * UDP-style socket, an application should use the sendmsg() call,
1451 * passing no user data, but including the appropriate flag in the
1452 * ancillary data (see Section xxxx).
1454 * If sd in the close() call is a branched-off socket representing only
1455 * one association, the shutdown is performed on that association only.
1457 * 4.1.6 close() - TCP Style Syntax
1459 * Applications use close() to gracefully close down an association.
1463 * int close(int sd);
1465 * sd - the socket descriptor of the association to be closed.
1467 * After an application calls close() on a socket descriptor, no further
1468 * socket operations will succeed on that descriptor.
1470 * API 7.1.4 SO_LINGER
1472 * An application using the TCP-style socket can use this option to
1473 * perform the SCTP ABORT primitive. The linger option structure is:
1476 * int l_onoff; // option on/off
1477 * int l_linger; // linger time
1480 * To enable the option, set l_onoff to 1. If the l_linger value is set
1481 * to 0, calling close() is the same as the ABORT primitive. If the
1482 * value is set to a negative value, the setsockopt() call will return
1483 * an error. If the value is set to a positive value linger_time, the
1484 * close() can be blocked for at most linger_time ms. If the graceful
1485 * shutdown phase does not finish during this period, close() will
1486 * return but the graceful shutdown phase continues in the system.
1488 SCTP_STATIC void sctp_close(struct sock *sk, long timeout)
1490 struct sctp_endpoint *ep;
1491 struct sctp_association *asoc;
1492 struct list_head *pos, *temp;
1493 unsigned int data_was_unread;
1495 SCTP_DEBUG_PRINTK("sctp_close(sk: 0x%p, timeout:%ld)\n", sk, timeout);
1498 sk->sk_shutdown = SHUTDOWN_MASK;
1499 sk->sk_state = SCTP_SS_CLOSING;
1501 ep = sctp_sk(sk)->ep;
1503 /* Clean up any skbs sitting on the receive queue. */
1504 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1505 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1507 /* Walk all associations on an endpoint. */
1508 list_for_each_safe(pos, temp, &ep->asocs) {
1509 asoc = list_entry(pos, struct sctp_association, asocs);
1511 if (sctp_style(sk, TCP)) {
1512 /* A closed association can still be in the list if
1513 * it belongs to a TCP-style listening socket that is
1514 * not yet accepted. If so, free it. If not, send an
1515 * ABORT or SHUTDOWN based on the linger options.
1517 if (sctp_state(asoc, CLOSED)) {
1518 sctp_unhash_established(asoc);
1519 sctp_association_free(asoc);
1524 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1525 !skb_queue_empty(&asoc->ulpq.reasm) ||
1526 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
1527 struct sctp_chunk *chunk;
1529 chunk = sctp_make_abort_user(asoc, NULL, 0);
1530 sctp_primitive_ABORT(asoc, chunk);
1532 sctp_primitive_SHUTDOWN(asoc, NULL);
1535 /* On a TCP-style socket, block for at most linger_time if set. */
1536 if (sctp_style(sk, TCP) && timeout)
1537 sctp_wait_for_close(sk, timeout);
1539 /* This will run the backlog queue. */
1540 sctp_release_sock(sk);
1542 /* Supposedly, no process has access to the socket, but
1543 * the net layers still may.
1544 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1545 * held and that should be grabbed before socket lock.
1547 spin_lock_bh(&sctp_globals.addr_wq_lock);
1548 sctp_bh_lock_sock(sk);
1550 /* Hold the sock, since sk_common_release() will put sock_put()
1551 * and we have just a little more cleanup.
1554 sk_common_release(sk);
1556 sctp_bh_unlock_sock(sk);
1557 spin_unlock_bh(&sctp_globals.addr_wq_lock);
1561 SCTP_DBG_OBJCNT_DEC(sock);
1564 /* Handle EPIPE error. */
1565 static int sctp_error(struct sock *sk, int flags, int err)
1568 err = sock_error(sk) ? : -EPIPE;
1569 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1570 send_sig(SIGPIPE, current, 0);
1574 /* API 3.1.3 sendmsg() - UDP Style Syntax
1576 * An application uses sendmsg() and recvmsg() calls to transmit data to
1577 * and receive data from its peer.
1579 * ssize_t sendmsg(int socket, const struct msghdr *message,
1582 * socket - the socket descriptor of the endpoint.
1583 * message - pointer to the msghdr structure which contains a single
1584 * user message and possibly some ancillary data.
1586 * See Section 5 for complete description of the data
1589 * flags - flags sent or received with the user message, see Section
1590 * 5 for complete description of the flags.
1592 * Note: This function could use a rewrite especially when explicit
1593 * connect support comes in.
1595 /* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1597 SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *, sctp_cmsgs_t *);
1599 SCTP_STATIC int sctp_sendmsg(struct kiocb *iocb, struct sock *sk,
1600 struct msghdr *msg, size_t msg_len)
1602 struct sctp_sock *sp;
1603 struct sctp_endpoint *ep;
1604 struct sctp_association *new_asoc=NULL, *asoc=NULL;
1605 struct sctp_transport *transport, *chunk_tp;
1606 struct sctp_chunk *chunk;
1608 struct sockaddr *msg_name = NULL;
1609 struct sctp_sndrcvinfo default_sinfo;
1610 struct sctp_sndrcvinfo *sinfo;
1611 struct sctp_initmsg *sinit;
1612 sctp_assoc_t associd = 0;
1613 sctp_cmsgs_t cmsgs = { NULL };
1617 __u16 sinfo_flags = 0;
1618 bool wait_connect = false;
1619 struct sctp_datamsg *datamsg;
1620 int msg_flags = msg->msg_flags;
1622 SCTP_DEBUG_PRINTK("sctp_sendmsg(sk: %p, msg: %p, msg_len: %zu)\n",
1629 SCTP_DEBUG_PRINTK("Using endpoint: %p.\n", ep);
1631 /* We cannot send a message over a TCP-style listening socket. */
1632 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1637 /* Parse out the SCTP CMSGs. */
1638 err = sctp_msghdr_parse(msg, &cmsgs);
1641 SCTP_DEBUG_PRINTK("msghdr parse err = %x\n", err);
1645 /* Fetch the destination address for this packet. This
1646 * address only selects the association--it is not necessarily
1647 * the address we will send to.
1648 * For a peeled-off socket, msg_name is ignored.
1650 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1651 int msg_namelen = msg->msg_namelen;
1653 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1658 if (msg_namelen > sizeof(to))
1659 msg_namelen = sizeof(to);
1660 memcpy(&to, msg->msg_name, msg_namelen);
1661 msg_name = msg->msg_name;
1667 /* Did the user specify SNDRCVINFO? */
1669 sinfo_flags = sinfo->sinfo_flags;
1670 associd = sinfo->sinfo_assoc_id;
1673 SCTP_DEBUG_PRINTK("msg_len: %zu, sinfo_flags: 0x%x\n",
1674 msg_len, sinfo_flags);
1676 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1677 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
1682 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1683 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1684 * If SCTP_ABORT is set, the message length could be non zero with
1685 * the msg_iov set to the user abort reason.
1687 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1688 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
1693 /* If SCTP_ADDR_OVER is set, there must be an address
1694 * specified in msg_name.
1696 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
1703 SCTP_DEBUG_PRINTK("About to look up association.\n");
1707 /* If a msg_name has been specified, assume this is to be used. */
1709 /* Look for a matching association on the endpoint. */
1710 asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport);
1712 /* If we could not find a matching association on the
1713 * endpoint, make sure that it is not a TCP-style
1714 * socket that already has an association or there is
1715 * no peeled-off association on another socket.
1717 if ((sctp_style(sk, TCP) &&
1718 sctp_sstate(sk, ESTABLISHED)) ||
1719 sctp_endpoint_is_peeled_off(ep, &to)) {
1720 err = -EADDRNOTAVAIL;
1725 asoc = sctp_id2assoc(sk, associd);
1733 SCTP_DEBUG_PRINTK("Just looked up association: %p.\n", asoc);
1735 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1736 * socket that has an association in CLOSED state. This can
1737 * happen when an accepted socket has an association that is
1740 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1745 if (sinfo_flags & SCTP_EOF) {
1746 SCTP_DEBUG_PRINTK("Shutting down association: %p\n",
1748 sctp_primitive_SHUTDOWN(asoc, NULL);
1752 if (sinfo_flags & SCTP_ABORT) {
1754 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1760 SCTP_DEBUG_PRINTK("Aborting association: %p\n", asoc);
1761 sctp_primitive_ABORT(asoc, chunk);
1767 /* Do we need to create the association? */
1769 SCTP_DEBUG_PRINTK("There is no association yet.\n");
1771 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
1776 /* Check for invalid stream against the stream counts,
1777 * either the default or the user specified stream counts.
1780 if (!sinit || (sinit && !sinit->sinit_num_ostreams)) {
1781 /* Check against the defaults. */
1782 if (sinfo->sinfo_stream >=
1783 sp->initmsg.sinit_num_ostreams) {
1788 /* Check against the requested. */
1789 if (sinfo->sinfo_stream >=
1790 sinit->sinit_num_ostreams) {
1798 * API 3.1.2 bind() - UDP Style Syntax
1799 * If a bind() or sctp_bindx() is not called prior to a
1800 * sendmsg() call that initiates a new association, the
1801 * system picks an ephemeral port and will choose an address
1802 * set equivalent to binding with a wildcard address.
1804 if (!ep->base.bind_addr.port) {
1805 if (sctp_autobind(sk)) {
1811 * If an unprivileged user inherits a one-to-many
1812 * style socket with open associations on a privileged
1813 * port, it MAY be permitted to accept new associations,
1814 * but it SHOULD NOT be permitted to open new
1817 if (ep->base.bind_addr.port < PROT_SOCK &&
1818 !capable(CAP_NET_BIND_SERVICE)) {
1824 scope = sctp_scope(&to);
1825 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1831 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1837 /* If the SCTP_INIT ancillary data is specified, set all
1838 * the association init values accordingly.
1841 if (sinit->sinit_num_ostreams) {
1842 asoc->c.sinit_num_ostreams =
1843 sinit->sinit_num_ostreams;
1845 if (sinit->sinit_max_instreams) {
1846 asoc->c.sinit_max_instreams =
1847 sinit->sinit_max_instreams;
1849 if (sinit->sinit_max_attempts) {
1850 asoc->max_init_attempts
1851 = sinit->sinit_max_attempts;
1853 if (sinit->sinit_max_init_timeo) {
1854 asoc->max_init_timeo =
1855 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1859 /* Prime the peer's transport structures. */
1860 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN);
1867 /* ASSERT: we have a valid association at this point. */
1868 SCTP_DEBUG_PRINTK("We have a valid association.\n");
1871 /* If the user didn't specify SNDRCVINFO, make up one with
1874 memset(&default_sinfo, 0, sizeof(default_sinfo));
1875 default_sinfo.sinfo_stream = asoc->default_stream;
1876 default_sinfo.sinfo_flags = asoc->default_flags;
1877 default_sinfo.sinfo_ppid = asoc->default_ppid;
1878 default_sinfo.sinfo_context = asoc->default_context;
1879 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1880 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
1881 sinfo = &default_sinfo;
1884 /* API 7.1.7, the sndbuf size per association bounds the
1885 * maximum size of data that can be sent in a single send call.
1887 if (msg_len > sk->sk_sndbuf) {
1892 if (asoc->pmtu_pending)
1893 sctp_assoc_pending_pmtu(asoc);
1895 /* If fragmentation is disabled and the message length exceeds the
1896 * association fragmentation point, return EMSGSIZE. The I-D
1897 * does not specify what this error is, but this looks like
1900 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1905 /* Check for invalid stream. */
1906 if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) {
1911 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1912 if (!sctp_wspace(asoc)) {
1913 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1918 /* If an address is passed with the sendto/sendmsg call, it is used
1919 * to override the primary destination address in the TCP model, or
1920 * when SCTP_ADDR_OVER flag is set in the UDP model.
1922 if ((sctp_style(sk, TCP) && msg_name) ||
1923 (sinfo_flags & SCTP_ADDR_OVER)) {
1924 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
1932 /* Auto-connect, if we aren't connected already. */
1933 if (sctp_state(asoc, CLOSED)) {
1934 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1937 wait_connect = true;
1938 SCTP_DEBUG_PRINTK("We associated primitively.\n");
1941 /* Break the message into multiple chunks of maximum size. */
1942 datamsg = sctp_datamsg_from_user(asoc, sinfo, msg, msg_len);
1943 if (IS_ERR(datamsg)) {
1944 err = PTR_ERR(datamsg);
1948 /* Now send the (possibly) fragmented message. */
1949 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1950 sctp_chunk_hold(chunk);
1952 /* Do accounting for the write space. */
1953 sctp_set_owner_w(chunk);
1955 chunk->transport = chunk_tp;
1958 /* Send it to the lower layers. Note: all chunks
1959 * must either fail or succeed. The lower layer
1960 * works that way today. Keep it that way or this
1963 err = sctp_primitive_SEND(asoc, datamsg);
1964 /* Did the lower layer accept the chunk? */
1966 sctp_datamsg_free(datamsg);
1968 sctp_datamsg_put(datamsg);
1970 SCTP_DEBUG_PRINTK("We sent primitively.\n");
1977 if (unlikely(wait_connect)) {
1978 timeo = sock_sndtimeo(sk, msg_flags & MSG_DONTWAIT);
1979 sctp_wait_for_connect(asoc, &timeo);
1982 /* If we are already past ASSOCIATE, the lower
1983 * layers are responsible for association cleanup.
1989 sctp_unhash_established(asoc);
1990 sctp_association_free(asoc);
1993 sctp_release_sock(sk);
1996 return sctp_error(sk, msg_flags, err);
2003 err = sock_error(sk);
2013 /* This is an extended version of skb_pull() that removes the data from the
2014 * start of a skb even when data is spread across the list of skb's in the
2015 * frag_list. len specifies the total amount of data that needs to be removed.
2016 * when 'len' bytes could be removed from the skb, it returns 0.
2017 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2018 * could not be removed.
2020 static int sctp_skb_pull(struct sk_buff *skb, int len)
2022 struct sk_buff *list;
2023 int skb_len = skb_headlen(skb);
2026 if (len <= skb_len) {
2027 __skb_pull(skb, len);
2031 __skb_pull(skb, skb_len);
2033 skb_walk_frags(skb, list) {
2034 rlen = sctp_skb_pull(list, len);
2035 skb->len -= (len-rlen);
2036 skb->data_len -= (len-rlen);
2047 /* API 3.1.3 recvmsg() - UDP Style Syntax
2049 * ssize_t recvmsg(int socket, struct msghdr *message,
2052 * socket - the socket descriptor of the endpoint.
2053 * message - pointer to the msghdr structure which contains a single
2054 * user message and possibly some ancillary data.
2056 * See Section 5 for complete description of the data
2059 * flags - flags sent or received with the user message, see Section
2060 * 5 for complete description of the flags.
2062 static struct sk_buff *sctp_skb_recv_datagram(struct sock *, int, int, int *);
2064 SCTP_STATIC int sctp_recvmsg(struct kiocb *iocb, struct sock *sk,
2065 struct msghdr *msg, size_t len, int noblock,
2066 int flags, int *addr_len)
2068 struct sctp_ulpevent *event = NULL;
2069 struct sctp_sock *sp = sctp_sk(sk);
2070 struct sk_buff *skb;
2075 SCTP_DEBUG_PRINTK("sctp_recvmsg(%s: %p, %s: %p, %s: %zd, %s: %d, %s: "
2076 "0x%x, %s: %p)\n", "sk", sk, "msghdr", msg,
2077 "len", len, "knoblauch", noblock,
2078 "flags", flags, "addr_len", addr_len);
2082 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED)) {
2087 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2091 /* Get the total length of the skb including any skb's in the
2100 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2102 event = sctp_skb2event(skb);
2107 sock_recv_ts_and_drops(msg, sk, skb);
2108 if (sctp_ulpevent_is_notification(event)) {
2109 msg->msg_flags |= MSG_NOTIFICATION;
2110 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2112 sp->pf->skb_msgname(skb, msg->msg_name, addr_len);
2115 /* Check if we allow SCTP_SNDRCVINFO. */
2116 if (sp->subscribe.sctp_data_io_event)
2117 sctp_ulpevent_read_sndrcvinfo(event, msg);
2119 /* FIXME: we should be calling IP/IPv6 layers. */
2120 if (sk->sk_protinfo.af_inet.cmsg_flags)
2121 ip_cmsg_recv(msg, skb);
2126 /* If skb's length exceeds the user's buffer, update the skb and
2127 * push it back to the receive_queue so that the next call to
2128 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2130 if (skb_len > copied) {
2131 msg->msg_flags &= ~MSG_EOR;
2132 if (flags & MSG_PEEK)
2134 sctp_skb_pull(skb, copied);
2135 skb_queue_head(&sk->sk_receive_queue, skb);
2137 /* When only partial message is copied to the user, increase
2138 * rwnd by that amount. If all the data in the skb is read,
2139 * rwnd is updated when the event is freed.
2141 if (!sctp_ulpevent_is_notification(event))
2142 sctp_assoc_rwnd_increase(event->asoc, copied);
2144 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2145 (event->msg_flags & MSG_EOR))
2146 msg->msg_flags |= MSG_EOR;
2148 msg->msg_flags &= ~MSG_EOR;
2151 if (flags & MSG_PEEK) {
2152 /* Release the skb reference acquired after peeking the skb in
2153 * sctp_skb_recv_datagram().
2157 /* Free the event which includes releasing the reference to
2158 * the owner of the skb, freeing the skb and updating the
2161 sctp_ulpevent_free(event);
2164 sctp_release_sock(sk);
2168 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2170 * This option is a on/off flag. If enabled no SCTP message
2171 * fragmentation will be performed. Instead if a message being sent
2172 * exceeds the current PMTU size, the message will NOT be sent and
2173 * instead a error will be indicated to the user.
2175 static int sctp_setsockopt_disable_fragments(struct sock *sk,
2176 char __user *optval,
2177 unsigned int optlen)
2181 if (optlen < sizeof(int))
2184 if (get_user(val, (int __user *)optval))
2187 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2192 static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
2193 unsigned int optlen)
2195 struct sctp_association *asoc;
2196 struct sctp_ulpevent *event;
2198 if (optlen > sizeof(struct sctp_event_subscribe))
2200 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2204 * At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2205 * if there is no data to be sent or retransmit, the stack will
2206 * immediately send up this notification.
2208 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2209 &sctp_sk(sk)->subscribe)) {
2210 asoc = sctp_id2assoc(sk, 0);
2212 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2213 event = sctp_ulpevent_make_sender_dry_event(asoc,
2218 sctp_ulpq_tail_event(&asoc->ulpq, event);
2225 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2227 * This socket option is applicable to the UDP-style socket only. When
2228 * set it will cause associations that are idle for more than the
2229 * specified number of seconds to automatically close. An association
2230 * being idle is defined an association that has NOT sent or received
2231 * user data. The special value of '0' indicates that no automatic
2232 * close of any associations should be performed. The option expects an
2233 * integer defining the number of seconds of idle time before an
2234 * association is closed.
2236 static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
2237 unsigned int optlen)
2239 struct sctp_sock *sp = sctp_sk(sk);
2241 /* Applicable to UDP-style socket only */
2242 if (sctp_style(sk, TCP))
2244 if (optlen != sizeof(int))
2246 if (copy_from_user(&sp->autoclose, optval, optlen))
2252 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2254 * Applications can enable or disable heartbeats for any peer address of
2255 * an association, modify an address's heartbeat interval, force a
2256 * heartbeat to be sent immediately, and adjust the address's maximum
2257 * number of retransmissions sent before an address is considered
2258 * unreachable. The following structure is used to access and modify an
2259 * address's parameters:
2261 * struct sctp_paddrparams {
2262 * sctp_assoc_t spp_assoc_id;
2263 * struct sockaddr_storage spp_address;
2264 * uint32_t spp_hbinterval;
2265 * uint16_t spp_pathmaxrxt;
2266 * uint32_t spp_pathmtu;
2267 * uint32_t spp_sackdelay;
2268 * uint32_t spp_flags;
2271 * spp_assoc_id - (one-to-many style socket) This is filled in the
2272 * application, and identifies the association for
2274 * spp_address - This specifies which address is of interest.
2275 * spp_hbinterval - This contains the value of the heartbeat interval,
2276 * in milliseconds. If a value of zero
2277 * is present in this field then no changes are to
2278 * be made to this parameter.
2279 * spp_pathmaxrxt - This contains the maximum number of
2280 * retransmissions before this address shall be
2281 * considered unreachable. If a value of zero
2282 * is present in this field then no changes are to
2283 * be made to this parameter.
2284 * spp_pathmtu - When Path MTU discovery is disabled the value
2285 * specified here will be the "fixed" path mtu.
2286 * Note that if the spp_address field is empty
2287 * then all associations on this address will
2288 * have this fixed path mtu set upon them.
2290 * spp_sackdelay - When delayed sack is enabled, this value specifies
2291 * the number of milliseconds that sacks will be delayed
2292 * for. This value will apply to all addresses of an
2293 * association if the spp_address field is empty. Note
2294 * also, that if delayed sack is enabled and this
2295 * value is set to 0, no change is made to the last
2296 * recorded delayed sack timer value.
2298 * spp_flags - These flags are used to control various features
2299 * on an association. The flag field may contain
2300 * zero or more of the following options.
2302 * SPP_HB_ENABLE - Enable heartbeats on the
2303 * specified address. Note that if the address
2304 * field is empty all addresses for the association
2305 * have heartbeats enabled upon them.
2307 * SPP_HB_DISABLE - Disable heartbeats on the
2308 * speicifed address. Note that if the address
2309 * field is empty all addresses for the association
2310 * will have their heartbeats disabled. Note also
2311 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2312 * mutually exclusive, only one of these two should
2313 * be specified. Enabling both fields will have
2314 * undetermined results.
2316 * SPP_HB_DEMAND - Request a user initiated heartbeat
2317 * to be made immediately.
2319 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2320 * heartbeat delayis to be set to the value of 0
2323 * SPP_PMTUD_ENABLE - This field will enable PMTU
2324 * discovery upon the specified address. Note that
2325 * if the address feild is empty then all addresses
2326 * on the association are effected.
2328 * SPP_PMTUD_DISABLE - This field will disable PMTU
2329 * discovery upon the specified address. Note that
2330 * if the address feild is empty then all addresses
2331 * on the association are effected. Not also that
2332 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2333 * exclusive. Enabling both will have undetermined
2336 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2337 * on delayed sack. The time specified in spp_sackdelay
2338 * is used to specify the sack delay for this address. Note
2339 * that if spp_address is empty then all addresses will
2340 * enable delayed sack and take on the sack delay
2341 * value specified in spp_sackdelay.
2342 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2343 * off delayed sack. If the spp_address field is blank then
2344 * delayed sack is disabled for the entire association. Note
2345 * also that this field is mutually exclusive to
2346 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2349 static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2350 struct sctp_transport *trans,
2351 struct sctp_association *asoc,
2352 struct sctp_sock *sp,
2355 int sackdelay_change)
2359 if (params->spp_flags & SPP_HB_DEMAND && trans) {
2360 error = sctp_primitive_REQUESTHEARTBEAT (trans->asoc, trans);
2365 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2366 * this field is ignored. Note also that a value of zero indicates
2367 * the current setting should be left unchanged.
2369 if (params->spp_flags & SPP_HB_ENABLE) {
2371 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2372 * set. This lets us use 0 value when this flag
2375 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2376 params->spp_hbinterval = 0;
2378 if (params->spp_hbinterval ||
2379 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2382 msecs_to_jiffies(params->spp_hbinterval);
2385 msecs_to_jiffies(params->spp_hbinterval);
2387 sp->hbinterval = params->spp_hbinterval;
2394 trans->param_flags =
2395 (trans->param_flags & ~SPP_HB) | hb_change;
2398 (asoc->param_flags & ~SPP_HB) | hb_change;
2401 (sp->param_flags & ~SPP_HB) | hb_change;
2405 /* When Path MTU discovery is disabled the value specified here will
2406 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2407 * include the flag SPP_PMTUD_DISABLE for this field to have any
2410 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
2412 trans->pathmtu = params->spp_pathmtu;
2413 sctp_assoc_sync_pmtu(asoc);
2415 asoc->pathmtu = params->spp_pathmtu;
2416 sctp_frag_point(asoc, params->spp_pathmtu);
2418 sp->pathmtu = params->spp_pathmtu;
2424 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2425 (params->spp_flags & SPP_PMTUD_ENABLE);
2426 trans->param_flags =
2427 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2429 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
2430 sctp_assoc_sync_pmtu(asoc);
2434 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2437 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2441 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2442 * value of this field is ignored. Note also that a value of zero
2443 * indicates the current setting should be left unchanged.
2445 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
2448 msecs_to_jiffies(params->spp_sackdelay);
2451 msecs_to_jiffies(params->spp_sackdelay);
2453 sp->sackdelay = params->spp_sackdelay;
2457 if (sackdelay_change) {
2459 trans->param_flags =
2460 (trans->param_flags & ~SPP_SACKDELAY) |
2464 (asoc->param_flags & ~SPP_SACKDELAY) |
2468 (sp->param_flags & ~SPP_SACKDELAY) |
2473 /* Note that a value of zero indicates the current setting should be
2476 if (params->spp_pathmaxrxt) {
2478 trans->pathmaxrxt = params->spp_pathmaxrxt;
2480 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2482 sp->pathmaxrxt = params->spp_pathmaxrxt;
2489 static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2490 char __user *optval,
2491 unsigned int optlen)
2493 struct sctp_paddrparams params;
2494 struct sctp_transport *trans = NULL;
2495 struct sctp_association *asoc = NULL;
2496 struct sctp_sock *sp = sctp_sk(sk);
2498 int hb_change, pmtud_change, sackdelay_change;
2500 if (optlen != sizeof(struct sctp_paddrparams))
2503 if (copy_from_user(¶ms, optval, optlen))
2506 /* Validate flags and value parameters. */
2507 hb_change = params.spp_flags & SPP_HB;
2508 pmtud_change = params.spp_flags & SPP_PMTUD;
2509 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2511 if (hb_change == SPP_HB ||
2512 pmtud_change == SPP_PMTUD ||
2513 sackdelay_change == SPP_SACKDELAY ||
2514 params.spp_sackdelay > 500 ||
2515 (params.spp_pathmtu &&
2516 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2519 /* If an address other than INADDR_ANY is specified, and
2520 * no transport is found, then the request is invalid.
2522 if (!sctp_is_any(sk, ( union sctp_addr *)¶ms.spp_address)) {
2523 trans = sctp_addr_id2transport(sk, ¶ms.spp_address,
2524 params.spp_assoc_id);
2529 /* Get association, if assoc_id != 0 and the socket is a one
2530 * to many style socket, and an association was not found, then
2531 * the id was invalid.
2533 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2534 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2537 /* Heartbeat demand can only be sent on a transport or
2538 * association, but not a socket.
2540 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2543 /* Process parameters. */
2544 error = sctp_apply_peer_addr_params(¶ms, trans, asoc, sp,
2545 hb_change, pmtud_change,
2551 /* If changes are for association, also apply parameters to each
2554 if (!trans && asoc) {
2555 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2557 sctp_apply_peer_addr_params(¶ms, trans, asoc, sp,
2558 hb_change, pmtud_change,
2567 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
2569 * This option will effect the way delayed acks are performed. This
2570 * option allows you to get or set the delayed ack time, in
2571 * milliseconds. It also allows changing the delayed ack frequency.
2572 * Changing the frequency to 1 disables the delayed sack algorithm. If
2573 * the assoc_id is 0, then this sets or gets the endpoints default
2574 * values. If the assoc_id field is non-zero, then the set or get
2575 * effects the specified association for the one to many model (the
2576 * assoc_id field is ignored by the one to one model). Note that if
2577 * sack_delay or sack_freq are 0 when setting this option, then the
2578 * current values will remain unchanged.
2580 * struct sctp_sack_info {
2581 * sctp_assoc_t sack_assoc_id;
2582 * uint32_t sack_delay;
2583 * uint32_t sack_freq;
2586 * sack_assoc_id - This parameter, indicates which association the user
2587 * is performing an action upon. Note that if this field's value is
2588 * zero then the endpoints default value is changed (effecting future
2589 * associations only).
2591 * sack_delay - This parameter contains the number of milliseconds that
2592 * the user is requesting the delayed ACK timer be set to. Note that
2593 * this value is defined in the standard to be between 200 and 500
2596 * sack_freq - This parameter contains the number of packets that must
2597 * be received before a sack is sent without waiting for the delay
2598 * timer to expire. The default value for this is 2, setting this
2599 * value to 1 will disable the delayed sack algorithm.
2602 static int sctp_setsockopt_delayed_ack(struct sock *sk,
2603 char __user *optval, unsigned int optlen)
2605 struct sctp_sack_info params;
2606 struct sctp_transport *trans = NULL;
2607 struct sctp_association *asoc = NULL;
2608 struct sctp_sock *sp = sctp_sk(sk);
2610 if (optlen == sizeof(struct sctp_sack_info)) {
2611 if (copy_from_user(¶ms, optval, optlen))
2614 if (params.sack_delay == 0 && params.sack_freq == 0)
2616 } else if (optlen == sizeof(struct sctp_assoc_value)) {
2617 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
2618 pr_warn("Use struct sctp_sack_info instead\n");
2619 if (copy_from_user(¶ms, optval, optlen))
2622 if (params.sack_delay == 0)
2623 params.sack_freq = 1;
2625 params.sack_freq = 0;
2629 /* Validate value parameter. */
2630 if (params.sack_delay > 500)
2633 /* Get association, if sack_assoc_id != 0 and the socket is a one
2634 * to many style socket, and an association was not found, then
2635 * the id was invalid.
2637 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2638 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
2641 if (params.sack_delay) {
2644 msecs_to_jiffies(params.sack_delay);
2646 (asoc->param_flags & ~SPP_SACKDELAY) |
2647 SPP_SACKDELAY_ENABLE;
2649 sp->sackdelay = params.sack_delay;
2651 (sp->param_flags & ~SPP_SACKDELAY) |
2652 SPP_SACKDELAY_ENABLE;
2656 if (params.sack_freq == 1) {
2659 (asoc->param_flags & ~SPP_SACKDELAY) |
2660 SPP_SACKDELAY_DISABLE;
2663 (sp->param_flags & ~SPP_SACKDELAY) |
2664 SPP_SACKDELAY_DISABLE;
2666 } else if (params.sack_freq > 1) {
2668 asoc->sackfreq = params.sack_freq;
2670 (asoc->param_flags & ~SPP_SACKDELAY) |
2671 SPP_SACKDELAY_ENABLE;
2673 sp->sackfreq = params.sack_freq;
2675 (sp->param_flags & ~SPP_SACKDELAY) |
2676 SPP_SACKDELAY_ENABLE;
2680 /* If change is for association, also apply to each transport. */
2682 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2684 if (params.sack_delay) {
2686 msecs_to_jiffies(params.sack_delay);
2687 trans->param_flags =
2688 (trans->param_flags & ~SPP_SACKDELAY) |
2689 SPP_SACKDELAY_ENABLE;
2691 if (params.sack_freq == 1) {
2692 trans->param_flags =
2693 (trans->param_flags & ~SPP_SACKDELAY) |
2694 SPP_SACKDELAY_DISABLE;
2695 } else if (params.sack_freq > 1) {
2696 trans->sackfreq = params.sack_freq;
2697 trans->param_flags =
2698 (trans->param_flags & ~SPP_SACKDELAY) |
2699 SPP_SACKDELAY_ENABLE;
2707 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2709 * Applications can specify protocol parameters for the default association
2710 * initialization. The option name argument to setsockopt() and getsockopt()
2713 * Setting initialization parameters is effective only on an unconnected
2714 * socket (for UDP-style sockets only future associations are effected
2715 * by the change). With TCP-style sockets, this option is inherited by
2716 * sockets derived from a listener socket.
2718 static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
2720 struct sctp_initmsg sinit;
2721 struct sctp_sock *sp = sctp_sk(sk);
2723 if (optlen != sizeof(struct sctp_initmsg))
2725 if (copy_from_user(&sinit, optval, optlen))
2728 if (sinit.sinit_num_ostreams)
2729 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
2730 if (sinit.sinit_max_instreams)
2731 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
2732 if (sinit.sinit_max_attempts)
2733 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
2734 if (sinit.sinit_max_init_timeo)
2735 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
2741 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2743 * Applications that wish to use the sendto() system call may wish to
2744 * specify a default set of parameters that would normally be supplied
2745 * through the inclusion of ancillary data. This socket option allows
2746 * such an application to set the default sctp_sndrcvinfo structure.
2747 * The application that wishes to use this socket option simply passes
2748 * in to this call the sctp_sndrcvinfo structure defined in Section
2749 * 5.2.2) The input parameters accepted by this call include
2750 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2751 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2752 * to this call if the caller is using the UDP model.
2754 static int sctp_setsockopt_default_send_param(struct sock *sk,
2755 char __user *optval,
2756 unsigned int optlen)
2758 struct sctp_sndrcvinfo info;
2759 struct sctp_association *asoc;
2760 struct sctp_sock *sp = sctp_sk(sk);
2762 if (optlen != sizeof(struct sctp_sndrcvinfo))
2764 if (copy_from_user(&info, optval, optlen))
2767 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2768 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2772 asoc->default_stream = info.sinfo_stream;
2773 asoc->default_flags = info.sinfo_flags;
2774 asoc->default_ppid = info.sinfo_ppid;
2775 asoc->default_context = info.sinfo_context;
2776 asoc->default_timetolive = info.sinfo_timetolive;
2778 sp->default_stream = info.sinfo_stream;
2779 sp->default_flags = info.sinfo_flags;
2780 sp->default_ppid = info.sinfo_ppid;
2781 sp->default_context = info.sinfo_context;
2782 sp->default_timetolive = info.sinfo_timetolive;
2788 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2790 * Requests that the local SCTP stack use the enclosed peer address as
2791 * the association primary. The enclosed address must be one of the
2792 * association peer's addresses.
2794 static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
2795 unsigned int optlen)
2797 struct sctp_prim prim;
2798 struct sctp_transport *trans;
2800 if (optlen != sizeof(struct sctp_prim))
2803 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2806 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2810 sctp_assoc_set_primary(trans->asoc, trans);
2816 * 7.1.5 SCTP_NODELAY
2818 * Turn on/off any Nagle-like algorithm. This means that packets are
2819 * generally sent as soon as possible and no unnecessary delays are
2820 * introduced, at the cost of more packets in the network. Expects an
2821 * integer boolean flag.
2823 static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
2824 unsigned int optlen)
2828 if (optlen < sizeof(int))
2830 if (get_user(val, (int __user *)optval))
2833 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2839 * 7.1.1 SCTP_RTOINFO
2841 * The protocol parameters used to initialize and bound retransmission
2842 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2843 * and modify these parameters.
2844 * All parameters are time values, in milliseconds. A value of 0, when
2845 * modifying the parameters, indicates that the current value should not
2849 static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
2851 struct sctp_rtoinfo rtoinfo;
2852 struct sctp_association *asoc;
2854 if (optlen != sizeof (struct sctp_rtoinfo))
2857 if (copy_from_user(&rtoinfo, optval, optlen))
2860 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2862 /* Set the values to the specific association */
2863 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2867 if (rtoinfo.srto_initial != 0)
2869 msecs_to_jiffies(rtoinfo.srto_initial);
2870 if (rtoinfo.srto_max != 0)
2871 asoc->rto_max = msecs_to_jiffies(rtoinfo.srto_max);
2872 if (rtoinfo.srto_min != 0)
2873 asoc->rto_min = msecs_to_jiffies(rtoinfo.srto_min);
2875 /* If there is no association or the association-id = 0
2876 * set the values to the endpoint.
2878 struct sctp_sock *sp = sctp_sk(sk);
2880 if (rtoinfo.srto_initial != 0)
2881 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
2882 if (rtoinfo.srto_max != 0)
2883 sp->rtoinfo.srto_max = rtoinfo.srto_max;
2884 if (rtoinfo.srto_min != 0)
2885 sp->rtoinfo.srto_min = rtoinfo.srto_min;
2893 * 7.1.2 SCTP_ASSOCINFO
2895 * This option is used to tune the maximum retransmission attempts
2896 * of the association.
2897 * Returns an error if the new association retransmission value is
2898 * greater than the sum of the retransmission value of the peer.
2899 * See [SCTP] for more information.
2902 static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
2905 struct sctp_assocparams assocparams;
2906 struct sctp_association *asoc;
2908 if (optlen != sizeof(struct sctp_assocparams))
2910 if (copy_from_user(&assocparams, optval, optlen))
2913 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2915 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2918 /* Set the values to the specific association */
2920 if (assocparams.sasoc_asocmaxrxt != 0) {
2923 struct sctp_transport *peer_addr;
2925 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
2927 path_sum += peer_addr->pathmaxrxt;
2931 /* Only validate asocmaxrxt if we have more than
2932 * one path/transport. We do this because path
2933 * retransmissions are only counted when we have more
2937 assocparams.sasoc_asocmaxrxt > path_sum)
2940 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
2943 if (assocparams.sasoc_cookie_life != 0) {
2944 asoc->cookie_life.tv_sec =
2945 assocparams.sasoc_cookie_life / 1000;
2946 asoc->cookie_life.tv_usec =
2947 (assocparams.sasoc_cookie_life % 1000)
2951 /* Set the values to the endpoint */
2952 struct sctp_sock *sp = sctp_sk(sk);
2954 if (assocparams.sasoc_asocmaxrxt != 0)
2955 sp->assocparams.sasoc_asocmaxrxt =
2956 assocparams.sasoc_asocmaxrxt;
2957 if (assocparams.sasoc_cookie_life != 0)
2958 sp->assocparams.sasoc_cookie_life =
2959 assocparams.sasoc_cookie_life;
2965 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
2967 * This socket option is a boolean flag which turns on or off mapped V4
2968 * addresses. If this option is turned on and the socket is type
2969 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
2970 * If this option is turned off, then no mapping will be done of V4
2971 * addresses and a user will receive both PF_INET6 and PF_INET type
2972 * addresses on the socket.
2974 static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
2977 struct sctp_sock *sp = sctp_sk(sk);
2979 if (optlen < sizeof(int))
2981 if (get_user(val, (int __user *)optval))
2992 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
2993 * This option will get or set the maximum size to put in any outgoing
2994 * SCTP DATA chunk. If a message is larger than this size it will be
2995 * fragmented by SCTP into the specified size. Note that the underlying
2996 * SCTP implementation may fragment into smaller sized chunks when the
2997 * PMTU of the underlying association is smaller than the value set by
2998 * the user. The default value for this option is '0' which indicates
2999 * the user is NOT limiting fragmentation and only the PMTU will effect
3000 * SCTP's choice of DATA chunk size. Note also that values set larger
3001 * than the maximum size of an IP datagram will effectively let SCTP
3002 * control fragmentation (i.e. the same as setting this option to 0).
3004 * The following structure is used to access and modify this parameter:
3006 * struct sctp_assoc_value {
3007 * sctp_assoc_t assoc_id;
3008 * uint32_t assoc_value;
3011 * assoc_id: This parameter is ignored for one-to-one style sockets.
3012 * For one-to-many style sockets this parameter indicates which
3013 * association the user is performing an action upon. Note that if
3014 * this field's value is zero then the endpoints default value is
3015 * changed (effecting future associations only).
3016 * assoc_value: This parameter specifies the maximum size in bytes.
3018 static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
3020 struct sctp_assoc_value params;
3021 struct sctp_association *asoc;
3022 struct sctp_sock *sp = sctp_sk(sk);
3025 if (optlen == sizeof(int)) {
3026 pr_warn("Use of int in maxseg socket option deprecated\n");
3027 pr_warn("Use struct sctp_assoc_value instead\n");
3028 if (copy_from_user(&val, optval, optlen))
3030 params.assoc_id = 0;
3031 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3032 if (copy_from_user(¶ms, optval, optlen))
3034 val = params.assoc_value;
3038 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
3041 asoc = sctp_id2assoc(sk, params.assoc_id);
3042 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3047 val = asoc->pathmtu;
3048 val -= sp->pf->af->net_header_len;
3049 val -= sizeof(struct sctphdr) +
3050 sizeof(struct sctp_data_chunk);
3052 asoc->user_frag = val;
3053 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
3055 sp->user_frag = val;
3063 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3065 * Requests that the peer mark the enclosed address as the association
3066 * primary. The enclosed address must be one of the association's
3067 * locally bound addresses. The following structure is used to make a
3068 * set primary request:
3070 static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
3071 unsigned int optlen)
3073 struct sctp_sock *sp;
3074 struct sctp_association *asoc = NULL;
3075 struct sctp_setpeerprim prim;
3076 struct sctp_chunk *chunk;
3082 if (!sctp_addip_enable)
3085 if (optlen != sizeof(struct sctp_setpeerprim))
3088 if (copy_from_user(&prim, optval, optlen))