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>
74 #include <linux/nsproxy.h>
78 #include <net/route.h>
80 #include <net/inet_common.h>
82 #include <linux/socket.h> /* for sa_family_t */
83 #include <linux/export.h>
85 #include <net/sctp/sctp.h>
86 #include <net/sctp/sm.h>
88 /* WARNING: Please do not remove the SCTP_STATIC attribute to
89 * any of the functions below as they are used to export functions
90 * used by a project regression testsuite.
93 /* Forward declarations for internal helper functions. */
94 static int sctp_writeable(struct sock *sk);
95 static void sctp_wfree(struct sk_buff *skb);
96 static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p,
98 static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p);
99 static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
100 static int sctp_wait_for_accept(struct sock *sk, long timeo);
101 static void sctp_wait_for_close(struct sock *sk, long timeo);
102 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
103 union sctp_addr *addr, int len);
104 static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
105 static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
106 static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
107 static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
108 static int sctp_send_asconf(struct sctp_association *asoc,
109 struct sctp_chunk *chunk);
110 static int sctp_do_bind(struct sock *, union sctp_addr *, int);
111 static int sctp_autobind(struct sock *sk);
112 static void sctp_sock_migrate(struct sock *, struct sock *,
113 struct sctp_association *, sctp_socket_type_t);
114 static char *sctp_hmac_alg = SCTP_COOKIE_HMAC_ALG;
116 extern struct kmem_cache *sctp_bucket_cachep;
117 extern long sysctl_sctp_mem[3];
118 extern int sysctl_sctp_rmem[3];
119 extern int sysctl_sctp_wmem[3];
121 static int sctp_memory_pressure;
122 static atomic_long_t sctp_memory_allocated;
123 struct percpu_counter sctp_sockets_allocated;
125 static void sctp_enter_memory_pressure(struct sock *sk)
127 sctp_memory_pressure = 1;
131 /* Get the sndbuf space available at the time on the association. */
132 static inline int sctp_wspace(struct sctp_association *asoc)
136 if (asoc->ep->sndbuf_policy)
137 amt = asoc->sndbuf_used;
139 amt = sk_wmem_alloc_get(asoc->base.sk);
141 if (amt >= asoc->base.sk->sk_sndbuf) {
142 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
145 amt = sk_stream_wspace(asoc->base.sk);
150 amt = asoc->base.sk->sk_sndbuf - amt;
155 /* Increment the used sndbuf space count of the corresponding association by
156 * the size of the outgoing data chunk.
157 * Also, set the skb destructor for sndbuf accounting later.
159 * Since it is always 1-1 between chunk and skb, and also a new skb is always
160 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
161 * destructor in the data chunk skb for the purpose of the sndbuf space
164 static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
166 struct sctp_association *asoc = chunk->asoc;
167 struct sock *sk = asoc->base.sk;
169 /* The sndbuf space is tracked per association. */
170 sctp_association_hold(asoc);
172 skb_set_owner_w(chunk->skb, sk);
174 chunk->skb->destructor = sctp_wfree;
175 /* Save the chunk pointer in skb for sctp_wfree to use later. */
176 *((struct sctp_chunk **)(chunk->skb->cb)) = chunk;
178 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
179 sizeof(struct sk_buff) +
180 sizeof(struct sctp_chunk);
182 atomic_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
183 sk->sk_wmem_queued += chunk->skb->truesize;
184 sk_mem_charge(sk, chunk->skb->truesize);
187 /* Verify that this is a valid address. */
188 static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
193 /* Verify basic sockaddr. */
194 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
198 /* Is this a valid SCTP address? */
199 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
202 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
208 /* Look up the association by its id. If this is not a UDP-style
209 * socket, the ID field is always ignored.
211 struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
213 struct sctp_association *asoc = NULL;
215 /* If this is not a UDP-style socket, assoc id should be ignored. */
216 if (!sctp_style(sk, UDP)) {
217 /* Return NULL if the socket state is not ESTABLISHED. It
218 * could be a TCP-style listening socket or a socket which
219 * hasn't yet called connect() to establish an association.
221 if (!sctp_sstate(sk, ESTABLISHED))
224 /* Get the first and the only association from the list. */
225 if (!list_empty(&sctp_sk(sk)->ep->asocs))
226 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
227 struct sctp_association, asocs);
231 /* Otherwise this is a UDP-style socket. */
232 if (!id || (id == (sctp_assoc_t)-1))
235 spin_lock_bh(&sctp_assocs_id_lock);
236 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
237 spin_unlock_bh(&sctp_assocs_id_lock);
239 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
245 /* Look up the transport from an address and an assoc id. If both address and
246 * id are specified, the associations matching the address and the id should be
249 static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
250 struct sockaddr_storage *addr,
253 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
254 struct sctp_transport *transport;
255 union sctp_addr *laddr = (union sctp_addr *)addr;
257 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
264 id_asoc = sctp_id2assoc(sk, id);
265 if (id_asoc && (id_asoc != addr_asoc))
268 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
269 (union sctp_addr *)addr);
274 /* API 3.1.2 bind() - UDP Style Syntax
275 * The syntax of bind() is,
277 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
279 * sd - the socket descriptor returned by socket().
280 * addr - the address structure (struct sockaddr_in or struct
281 * sockaddr_in6 [RFC 2553]),
282 * addr_len - the size of the address structure.
284 SCTP_STATIC int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
290 SCTP_DEBUG_PRINTK("sctp_bind(sk: %p, addr: %p, addr_len: %d)\n",
293 /* Disallow binding twice. */
294 if (!sctp_sk(sk)->ep->base.bind_addr.port)
295 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
300 sctp_release_sock(sk);
305 static long sctp_get_port_local(struct sock *, union sctp_addr *);
307 /* Verify this is a valid sockaddr. */
308 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
309 union sctp_addr *addr, int len)
313 /* Check minimum size. */
314 if (len < sizeof (struct sockaddr))
317 /* V4 mapped address are really of AF_INET family */
318 if (addr->sa.sa_family == AF_INET6 &&
319 ipv6_addr_v4mapped(&addr->v6.sin6_addr)) {
320 if (!opt->pf->af_supported(AF_INET, opt))
323 /* Does this PF support this AF? */
324 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
328 /* If we get this far, af is valid. */
329 af = sctp_get_af_specific(addr->sa.sa_family);
331 if (len < af->sockaddr_len)
337 /* Bind a local address either to an endpoint or to an association. */
338 SCTP_STATIC int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
340 struct sctp_sock *sp = sctp_sk(sk);
341 struct sctp_endpoint *ep = sp->ep;
342 struct sctp_bind_addr *bp = &ep->base.bind_addr;
347 /* Common sockaddr verification. */
348 af = sctp_sockaddr_af(sp, addr, len);
350 SCTP_DEBUG_PRINTK("sctp_do_bind(sk: %p, newaddr: %p, len: %d) EINVAL\n",
355 snum = ntohs(addr->v4.sin_port);
357 SCTP_DEBUG_PRINTK_IPADDR("sctp_do_bind(sk: %p, new addr: ",
358 ", port: %d, new port: %d, len: %d)\n",
364 /* PF specific bind() address verification. */
365 if (!sp->pf->bind_verify(sp, addr))
366 return -EADDRNOTAVAIL;
368 /* We must either be unbound, or bind to the same port.
369 * It's OK to allow 0 ports if we are already bound.
370 * We'll just inhert an already bound port in this case
375 else if (snum != bp->port) {
376 SCTP_DEBUG_PRINTK("sctp_do_bind:"
377 " New port %d does not match existing port "
378 "%d.\n", snum, bp->port);
383 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
386 /* See if the address matches any of the addresses we may have
387 * already bound before checking against other endpoints.
389 if (sctp_bind_addr_match(bp, addr, sp))
392 /* Make sure we are allowed to bind here.
393 * The function sctp_get_port_local() does duplicate address
396 addr->v4.sin_port = htons(snum);
397 if ((ret = sctp_get_port_local(sk, addr))) {
401 /* Refresh ephemeral port. */
403 bp->port = inet_sk(sk)->inet_num;
405 /* Add the address to the bind address list.
406 * Use GFP_ATOMIC since BHs will be disabled.
408 ret = sctp_add_bind_addr(bp, addr, SCTP_ADDR_SRC, GFP_ATOMIC);
410 /* Copy back into socket for getsockname() use. */
412 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
413 sp->pf->to_sk_saddr(addr, sk);
419 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
421 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
422 * at any one time. If a sender, after sending an ASCONF chunk, decides
423 * it needs to transfer another ASCONF Chunk, it MUST wait until the
424 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
425 * subsequent ASCONF. Note this restriction binds each side, so at any
426 * time two ASCONF may be in-transit on any given association (one sent
427 * from each endpoint).
429 static int sctp_send_asconf(struct sctp_association *asoc,
430 struct sctp_chunk *chunk)
434 /* If there is an outstanding ASCONF chunk, queue it for later
437 if (asoc->addip_last_asconf) {
438 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
442 /* Hold the chunk until an ASCONF_ACK is received. */
443 sctp_chunk_hold(chunk);
444 retval = sctp_primitive_ASCONF(asoc, chunk);
446 sctp_chunk_free(chunk);
448 asoc->addip_last_asconf = chunk;
454 /* Add a list of addresses as bind addresses to local endpoint or
457 * Basically run through each address specified in the addrs/addrcnt
458 * array/length pair, determine if it is IPv6 or IPv4 and call
459 * sctp_do_bind() on it.
461 * If any of them fails, then the operation will be reversed and the
462 * ones that were added will be removed.
464 * Only sctp_setsockopt_bindx() is supposed to call this function.
466 static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
471 struct sockaddr *sa_addr;
474 SCTP_DEBUG_PRINTK("sctp_bindx_add (sk: %p, addrs: %p, addrcnt: %d)\n",
478 for (cnt = 0; cnt < addrcnt; cnt++) {
479 /* The list may contain either IPv4 or IPv6 address;
480 * determine the address length for walking thru the list.
483 af = sctp_get_af_specific(sa_addr->sa_family);
489 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
492 addr_buf += af->sockaddr_len;
496 /* Failed. Cleanup the ones that have been added */
498 sctp_bindx_rem(sk, addrs, cnt);
506 /* Send an ASCONF chunk with Add IP address parameters to all the peers of the
507 * associations that are part of the endpoint indicating that a list of local
508 * addresses are added to the endpoint.
510 * If any of the addresses is already in the bind address list of the
511 * association, we do not send the chunk for that association. But it will not
512 * affect other associations.
514 * Only sctp_setsockopt_bindx() is supposed to call this function.
516 static int sctp_send_asconf_add_ip(struct sock *sk,
517 struct sockaddr *addrs,
520 struct sctp_sock *sp;
521 struct sctp_endpoint *ep;
522 struct sctp_association *asoc;
523 struct sctp_bind_addr *bp;
524 struct sctp_chunk *chunk;
525 struct sctp_sockaddr_entry *laddr;
526 union sctp_addr *addr;
527 union sctp_addr saveaddr;
534 if (!sctp_addip_enable)
540 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
541 __func__, sk, addrs, addrcnt);
543 list_for_each_entry(asoc, &ep->asocs, asocs) {
545 if (!asoc->peer.asconf_capable)
548 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
551 if (!sctp_state(asoc, ESTABLISHED))
554 /* Check if any address in the packed array of addresses is
555 * in the bind address list of the association. If so,
556 * do not send the asconf chunk to its peer, but continue with
557 * other associations.
560 for (i = 0; i < addrcnt; i++) {
562 af = sctp_get_af_specific(addr->v4.sin_family);
568 if (sctp_assoc_lookup_laddr(asoc, addr))
571 addr_buf += af->sockaddr_len;
576 /* Use the first valid address in bind addr list of
577 * association as Address Parameter of ASCONF CHUNK.
579 bp = &asoc->base.bind_addr;
580 p = bp->address_list.next;
581 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
582 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
583 addrcnt, SCTP_PARAM_ADD_IP);
589 /* Add the new addresses to the bind address list with
590 * use_as_src set to 0.
593 for (i = 0; i < addrcnt; i++) {
595 af = sctp_get_af_specific(addr->v4.sin_family);
596 memcpy(&saveaddr, addr, af->sockaddr_len);
597 retval = sctp_add_bind_addr(bp, &saveaddr,
598 SCTP_ADDR_NEW, GFP_ATOMIC);
599 addr_buf += af->sockaddr_len;
601 if (asoc->src_out_of_asoc_ok) {
602 struct sctp_transport *trans;
604 list_for_each_entry(trans,
605 &asoc->peer.transport_addr_list, transports) {
606 /* Clear the source and route cache */
607 dst_release(trans->dst);
608 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
609 2*asoc->pathmtu, 4380));
610 trans->ssthresh = asoc->peer.i.a_rwnd;
611 trans->rto = asoc->rto_initial;
612 trans->rtt = trans->srtt = trans->rttvar = 0;
613 sctp_transport_route(trans, NULL,
614 sctp_sk(asoc->base.sk));
617 retval = sctp_send_asconf(asoc, chunk);
624 /* Remove a list of addresses from bind addresses list. Do not remove the
627 * Basically run through each address specified in the addrs/addrcnt
628 * array/length pair, determine if it is IPv6 or IPv4 and call
629 * sctp_del_bind() on it.
631 * If any of them fails, then the operation will be reversed and the
632 * ones that were removed will be added back.
634 * At least one address has to be left; if only one address is
635 * available, the operation will return -EBUSY.
637 * Only sctp_setsockopt_bindx() is supposed to call this function.
639 static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
641 struct sctp_sock *sp = sctp_sk(sk);
642 struct sctp_endpoint *ep = sp->ep;
644 struct sctp_bind_addr *bp = &ep->base.bind_addr;
647 union sctp_addr *sa_addr;
650 SCTP_DEBUG_PRINTK("sctp_bindx_rem (sk: %p, addrs: %p, addrcnt: %d)\n",
654 for (cnt = 0; cnt < addrcnt; cnt++) {
655 /* If the bind address list is empty or if there is only one
656 * bind address, there is nothing more to be removed (we need
657 * at least one address here).
659 if (list_empty(&bp->address_list) ||
660 (sctp_list_single_entry(&bp->address_list))) {
666 af = sctp_get_af_specific(sa_addr->sa.sa_family);
672 if (!af->addr_valid(sa_addr, sp, NULL)) {
673 retval = -EADDRNOTAVAIL;
677 if (sa_addr->v4.sin_port &&
678 sa_addr->v4.sin_port != htons(bp->port)) {
683 if (!sa_addr->v4.sin_port)
684 sa_addr->v4.sin_port = htons(bp->port);
686 /* FIXME - There is probably a need to check if sk->sk_saddr and
687 * sk->sk_rcv_addr are currently set to one of the addresses to
688 * be removed. This is something which needs to be looked into
689 * when we are fixing the outstanding issues with multi-homing
690 * socket routing and failover schemes. Refer to comments in
691 * sctp_do_bind(). -daisy
693 retval = sctp_del_bind_addr(bp, sa_addr);
695 addr_buf += af->sockaddr_len;
698 /* Failed. Add the ones that has been removed back */
700 sctp_bindx_add(sk, addrs, cnt);
708 /* Send an ASCONF chunk with Delete IP address parameters to all the peers of
709 * the associations that are part of the endpoint indicating that a list of
710 * local addresses are removed from the endpoint.
712 * If any of the addresses is already in the bind address list of the
713 * association, we do not send the chunk for that association. But it will not
714 * affect other associations.
716 * Only sctp_setsockopt_bindx() is supposed to call this function.
718 static int sctp_send_asconf_del_ip(struct sock *sk,
719 struct sockaddr *addrs,
722 struct sctp_sock *sp;
723 struct sctp_endpoint *ep;
724 struct sctp_association *asoc;
725 struct sctp_transport *transport;
726 struct sctp_bind_addr *bp;
727 struct sctp_chunk *chunk;
728 union sctp_addr *laddr;
731 struct sctp_sockaddr_entry *saddr;
737 if (!sctp_addip_enable)
743 SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n",
744 __func__, sk, addrs, addrcnt);
746 list_for_each_entry(asoc, &ep->asocs, asocs) {
748 if (!asoc->peer.asconf_capable)
751 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
754 if (!sctp_state(asoc, ESTABLISHED))
757 /* Check if any address in the packed array of addresses is
758 * not present in the bind address list of the association.
759 * If so, do not send the asconf chunk to its peer, but
760 * continue with other associations.
763 for (i = 0; i < addrcnt; i++) {
765 af = sctp_get_af_specific(laddr->v4.sin_family);
771 if (!sctp_assoc_lookup_laddr(asoc, laddr))
774 addr_buf += af->sockaddr_len;
779 /* Find one address in the association's bind address list
780 * that is not in the packed array of addresses. This is to
781 * make sure that we do not delete all the addresses in the
784 bp = &asoc->base.bind_addr;
785 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
787 if ((laddr == NULL) && (addrcnt == 1)) {
788 if (asoc->asconf_addr_del_pending)
790 asoc->asconf_addr_del_pending =
791 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
792 if (asoc->asconf_addr_del_pending == NULL) {
796 asoc->asconf_addr_del_pending->sa.sa_family =
798 asoc->asconf_addr_del_pending->v4.sin_port =
800 if (addrs->sa_family == AF_INET) {
801 struct sockaddr_in *sin;
803 sin = (struct sockaddr_in *)addrs;
804 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
805 } else if (addrs->sa_family == AF_INET6) {
806 struct sockaddr_in6 *sin6;
808 sin6 = (struct sockaddr_in6 *)addrs;
809 ipv6_addr_copy(&asoc->asconf_addr_del_pending->v6.sin6_addr, &sin6->sin6_addr);
811 SCTP_DEBUG_PRINTK_IPADDR("send_asconf_del_ip: keep the last address asoc: %p ",
812 " at %p\n", asoc, asoc->asconf_addr_del_pending,
813 asoc->asconf_addr_del_pending);
814 asoc->src_out_of_asoc_ok = 1;
822 /* We do not need RCU protection throughout this loop
823 * because this is done under a socket lock from the
826 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
834 /* Reset use_as_src flag for the addresses in the bind address
835 * list that are to be deleted.
838 for (i = 0; i < addrcnt; i++) {
840 af = sctp_get_af_specific(laddr->v4.sin_family);
841 list_for_each_entry(saddr, &bp->address_list, list) {
842 if (sctp_cmp_addr_exact(&saddr->a, laddr))
843 saddr->state = SCTP_ADDR_DEL;
845 addr_buf += af->sockaddr_len;
848 /* Update the route and saddr entries for all the transports
849 * as some of the addresses in the bind address list are
850 * about to be deleted and cannot be used as source addresses.
852 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
854 dst_release(transport->dst);
855 sctp_transport_route(transport, NULL,
856 sctp_sk(asoc->base.sk));
860 /* We don't need to transmit ASCONF */
862 retval = sctp_send_asconf(asoc, chunk);
868 /* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
869 int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
871 struct sock *sk = sctp_opt2sk(sp);
872 union sctp_addr *addr;
875 /* It is safe to write port space in caller. */
877 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
878 af = sctp_get_af_specific(addr->sa.sa_family);
881 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
884 if (addrw->state == SCTP_ADDR_NEW)
885 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
887 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
890 /* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
893 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
896 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
897 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
900 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
901 * Section 3.1.2 for this usage.
903 * addrs is a pointer to an array of one or more socket addresses. Each
904 * address is contained in its appropriate structure (i.e. struct
905 * sockaddr_in or struct sockaddr_in6) the family of the address type
906 * must be used to distinguish the address length (note that this
907 * representation is termed a "packed array" of addresses). The caller
908 * specifies the number of addresses in the array with addrcnt.
910 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
911 * -1, and sets errno to the appropriate error code.
913 * For SCTP, the port given in each socket address must be the same, or
914 * sctp_bindx() will fail, setting errno to EINVAL.
916 * The flags parameter is formed from the bitwise OR of zero or more of
917 * the following currently defined flags:
919 * SCTP_BINDX_ADD_ADDR
921 * SCTP_BINDX_REM_ADDR
923 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
924 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
925 * addresses from the association. The two flags are mutually exclusive;
926 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
927 * not remove all addresses from an association; sctp_bindx() will
928 * reject such an attempt with EINVAL.
930 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
931 * additional addresses with an endpoint after calling bind(). Or use
932 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
933 * socket is associated with so that no new association accepted will be
934 * associated with those addresses. If the endpoint supports dynamic
935 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
936 * endpoint to send the appropriate message to the peer to change the
937 * peers address lists.
939 * Adding and removing addresses from a connected association is
940 * optional functionality. Implementations that do not support this
941 * functionality should return EOPNOTSUPP.
943 * Basically do nothing but copying the addresses from user to kernel
944 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
945 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
948 * We don't use copy_from_user() for optimization: we first do the
949 * sanity checks (buffer size -fast- and access check-healthy
950 * pointer); if all of those succeed, then we can alloc the memory
951 * (expensive operation) needed to copy the data to kernel. Then we do
952 * the copying without checking the user space area
953 * (__copy_from_user()).
955 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
958 * sk The sk of the socket
959 * addrs The pointer to the addresses in user land
960 * addrssize Size of the addrs buffer
961 * op Operation to perform (add or remove, see the flags of
964 * Returns 0 if ok, <0 errno code on error.
966 SCTP_STATIC int sctp_setsockopt_bindx(struct sock* sk,
967 struct sockaddr __user *addrs,
968 int addrs_size, int op)
970 struct sockaddr *kaddrs;
974 struct sockaddr *sa_addr;
978 SCTP_DEBUG_PRINTK("sctp_setsocktopt_bindx: sk %p addrs %p"
979 " addrs_size %d opt %d\n", sk, addrs, addrs_size, op);
981 if (unlikely(addrs_size <= 0))
984 /* Check the user passed a healthy pointer. */
985 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
988 /* Alloc space for the address array in kernel memory. */
989 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
990 if (unlikely(!kaddrs))
993 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
998 /* Walk through the addrs buffer and count the number of addresses. */
1000 while (walk_size < addrs_size) {
1001 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1007 af = sctp_get_af_specific(sa_addr->sa_family);
1009 /* If the address family is not supported or if this address
1010 * causes the address buffer to overflow return EINVAL.
1012 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1017 addr_buf += af->sockaddr_len;
1018 walk_size += af->sockaddr_len;
1023 case SCTP_BINDX_ADD_ADDR:
1024 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1027 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1030 case SCTP_BINDX_REM_ADDR:
1031 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1034 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1048 /* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1050 * Common routine for handling connect() and sctp_connectx().
1051 * Connect will come in with just a single address.
1053 static int __sctp_connect(struct sock* sk,
1054 struct sockaddr *kaddrs,
1056 sctp_assoc_t *assoc_id)
1058 struct sctp_sock *sp;
1059 struct sctp_endpoint *ep;
1060 struct sctp_association *asoc = NULL;
1061 struct sctp_association *asoc2;
1062 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) {
1093 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1099 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1101 /* If the address family is not supported or if this address
1102 * causes the address buffer to overflow return EINVAL.
1104 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1109 port = ntohs(sa_addr->v4.sin_port);
1111 /* Save current address so we can work with it */
1112 memcpy(&to, sa_addr, af->sockaddr_len);
1114 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
1118 /* Make sure the destination port is correctly set
1121 if (asoc && asoc->peer.port && asoc->peer.port != port)
1125 /* Check if there already is a matching association on the
1126 * endpoint (other than the one created here).
1128 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
1129 if (asoc2 && asoc2 != asoc) {
1130 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1137 /* If we could not find a matching association on the endpoint,
1138 * make sure that there is no peeled-off association matching
1139 * the peer address even on another socket.
1141 if (sctp_endpoint_is_peeled_off(ep, &to)) {
1142 err = -EADDRNOTAVAIL;
1147 /* If a bind() or sctp_bindx() is not called prior to
1148 * an sctp_connectx() call, the system picks an
1149 * ephemeral port and will choose an address set
1150 * equivalent to binding with a wildcard address.
1152 if (!ep->base.bind_addr.port) {
1153 if (sctp_autobind(sk)) {
1159 * If an unprivileged user inherits a 1-many
1160 * style socket with open associations on a
1161 * privileged port, it MAY be permitted to
1162 * accept new associations, but it SHOULD NOT
1163 * be permitted to open new associations.
1165 if (ep->base.bind_addr.port < PROT_SOCK &&
1166 !capable(CAP_NET_BIND_SERVICE)) {
1172 scope = sctp_scope(&to);
1173 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1179 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1187 /* Prime the peer's transport structures. */
1188 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
1196 addr_buf += af->sockaddr_len;
1197 walk_size += af->sockaddr_len;
1200 /* In case the user of sctp_connectx() wants an association
1201 * id back, assign one now.
1204 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1209 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1214 /* Initialize sk's dport and daddr for getpeername() */
1215 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
1216 sp->pf->to_sk_daddr(sa_addr, sk);
1219 /* in-kernel sockets don't generally have a file allocated to them
1220 * if all they do is call sock_create_kern().
1222 if (sk->sk_socket->file)
1223 f_flags = sk->sk_socket->file->f_flags;
1225 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1228 *assoc_id = asoc->assoc_id;
1229 err = sctp_wait_for_connect(asoc, &timeo);
1230 /* Note: the asoc may be freed after the return of
1231 * sctp_wait_for_connect.
1234 /* Don't free association on exit. */
1239 SCTP_DEBUG_PRINTK("About to exit __sctp_connect() free asoc: %p"
1240 " kaddrs: %p err: %d\n",
1243 /* sctp_primitive_ASSOCIATE may have added this association
1244 * To the hash table, try to unhash it, just in case, its a noop
1245 * if it wasn't hashed so we're safe
1247 sctp_unhash_established(asoc);
1248 sctp_association_free(asoc);
1253 /* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1256 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1257 * sctp_assoc_t *asoc);
1259 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1260 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1261 * or IPv6 addresses.
1263 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1264 * Section 3.1.2 for this usage.
1266 * addrs is a pointer to an array of one or more socket addresses. Each
1267 * address is contained in its appropriate structure (i.e. struct
1268 * sockaddr_in or struct sockaddr_in6) the family of the address type
1269 * must be used to distengish the address length (note that this
1270 * representation is termed a "packed array" of addresses). The caller
1271 * specifies the number of addresses in the array with addrcnt.
1273 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1274 * the association id of the new association. On failure, sctp_connectx()
1275 * returns -1, and sets errno to the appropriate error code. The assoc_id
1276 * is not touched by the kernel.
1278 * For SCTP, the port given in each socket address must be the same, or
1279 * sctp_connectx() will fail, setting errno to EINVAL.
1281 * An application can use sctp_connectx to initiate an association with
1282 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1283 * allows a caller to specify multiple addresses at which a peer can be
1284 * reached. The way the SCTP stack uses the list of addresses to set up
1285 * the association is implementation dependent. This function only
1286 * specifies that the stack will try to make use of all the addresses in
1287 * the list when needed.
1289 * Note that the list of addresses passed in is only used for setting up
1290 * the association. It does not necessarily equal the set of addresses
1291 * the peer uses for the resulting association. If the caller wants to
1292 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1293 * retrieve them after the association has been set up.
1295 * Basically do nothing but copying the addresses from user to kernel
1296 * land and invoking either sctp_connectx(). This is used for tunneling
1297 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1299 * We don't use copy_from_user() for optimization: we first do the
1300 * sanity checks (buffer size -fast- and access check-healthy
1301 * pointer); if all of those succeed, then we can alloc the memory
1302 * (expensive operation) needed to copy the data to kernel. Then we do
1303 * the copying without checking the user space area
1304 * (__copy_from_user()).
1306 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1309 * sk The sk of the socket
1310 * addrs The pointer to the addresses in user land
1311 * addrssize Size of the addrs buffer
1313 * Returns >=0 if ok, <0 errno code on error.
1315 SCTP_STATIC int __sctp_setsockopt_connectx(struct sock* sk,
1316 struct sockaddr __user *addrs,
1318 sctp_assoc_t *assoc_id)
1321 struct sockaddr *kaddrs;
1323 SCTP_DEBUG_PRINTK("%s - sk %p addrs %p addrs_size %d\n",
1324 __func__, sk, addrs, addrs_size);
1326 if (unlikely(addrs_size <= 0))
1329 /* Check the user passed a healthy pointer. */
1330 if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size)))
1333 /* Alloc space for the address array in kernel memory. */
1334 kaddrs = kmalloc(addrs_size, GFP_KERNEL);
1335 if (unlikely(!kaddrs))
1338 if (__copy_from_user(kaddrs, addrs, addrs_size)) {
1341 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
1350 * This is an older interface. It's kept for backward compatibility
1351 * to the option that doesn't provide association id.
1353 SCTP_STATIC int sctp_setsockopt_connectx_old(struct sock* sk,
1354 struct sockaddr __user *addrs,
1357 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1361 * New interface for the API. The since the API is done with a socket
1362 * option, to make it simple we feed back the association id is as a return
1363 * indication to the call. Error is always negative and association id is
1366 SCTP_STATIC int sctp_setsockopt_connectx(struct sock* sk,
1367 struct sockaddr __user *addrs,
1370 sctp_assoc_t assoc_id = 0;
1373 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1382 * New (hopefully final) interface for the API.
1383 * We use the sctp_getaddrs_old structure so that use-space library
1384 * can avoid any unnecessary allocations. The only different part
1385 * is that we store the actual length of the address buffer into the
1386 * addrs_num structure member. That way we can re-use the existing
1389 #ifdef CONFIG_COMPAT
1390 struct compat_sctp_getaddrs_old {
1391 sctp_assoc_t assoc_id;
1393 compat_uptr_t addrs; /* struct sockaddr * */
1397 SCTP_STATIC int sctp_getsockopt_connectx3(struct sock* sk, int len,
1398 char __user *optval,
1401 struct sctp_getaddrs_old param;
1402 sctp_assoc_t assoc_id = 0;
1405 #ifdef CONFIG_COMPAT
1406 if (is_compat_task()) {
1407 struct compat_sctp_getaddrs_old param32;
1409 if (len < sizeof(param32))
1411 if (copy_from_user(¶m32, optval, sizeof(param32)))
1414 param.assoc_id = param32.assoc_id;
1415 param.addr_num = param32.addr_num;
1416 param.addrs = compat_ptr(param32.addrs);
1420 if (len < sizeof(param))
1422 if (copy_from_user(¶m, optval, sizeof(param)))
1426 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1427 param.addrs, param.addr_num,
1429 if (err == 0 || err == -EINPROGRESS) {
1430 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1432 if (put_user(sizeof(assoc_id), optlen))
1439 /* API 3.1.4 close() - UDP Style Syntax
1440 * Applications use close() to perform graceful shutdown (as described in
1441 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1442 * by a UDP-style socket.
1446 * ret = close(int sd);
1448 * sd - the socket descriptor of the associations to be closed.
1450 * To gracefully shutdown a specific association represented by the
1451 * UDP-style socket, an application should use the sendmsg() call,
1452 * passing no user data, but including the appropriate flag in the
1453 * ancillary data (see Section xxxx).
1455 * If sd in the close() call is a branched-off socket representing only
1456 * one association, the shutdown is performed on that association only.
1458 * 4.1.6 close() - TCP Style Syntax
1460 * Applications use close() to gracefully close down an association.
1464 * int close(int sd);
1466 * sd - the socket descriptor of the association to be closed.
1468 * After an application calls close() on a socket descriptor, no further
1469 * socket operations will succeed on that descriptor.
1471 * API 7.1.4 SO_LINGER
1473 * An application using the TCP-style socket can use this option to
1474 * perform the SCTP ABORT primitive. The linger option structure is:
1477 * int l_onoff; // option on/off
1478 * int l_linger; // linger time
1481 * To enable the option, set l_onoff to 1. If the l_linger value is set
1482 * to 0, calling close() is the same as the ABORT primitive. If the
1483 * value is set to a negative value, the setsockopt() call will return
1484 * an error. If the value is set to a positive value linger_time, the
1485 * close() can be blocked for at most linger_time ms. If the graceful
1486 * shutdown phase does not finish during this period, close() will
1487 * return but the graceful shutdown phase continues in the system.
1489 SCTP_STATIC void sctp_close(struct sock *sk, long timeout)
1491 struct sctp_endpoint *ep;
1492 struct sctp_association *asoc;
1493 struct list_head *pos, *temp;
1494 unsigned int data_was_unread;
1496 SCTP_DEBUG_PRINTK("sctp_close(sk: 0x%p, timeout:%ld)\n", sk, timeout);
1499 sk->sk_shutdown = SHUTDOWN_MASK;
1500 sk->sk_state = SCTP_SS_CLOSING;
1502 ep = sctp_sk(sk)->ep;
1504 /* Clean up any skbs sitting on the receive queue. */
1505 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1506 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1508 /* Walk all associations on an endpoint. */
1509 list_for_each_safe(pos, temp, &ep->asocs) {
1510 asoc = list_entry(pos, struct sctp_association, asocs);
1512 if (sctp_style(sk, TCP)) {
1513 /* A closed association can still be in the list if
1514 * it belongs to a TCP-style listening socket that is
1515 * not yet accepted. If so, free it. If not, send an
1516 * ABORT or SHUTDOWN based on the linger options.
1518 if (sctp_state(asoc, CLOSED)) {
1519 sctp_unhash_established(asoc);
1520 sctp_association_free(asoc);
1525 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1526 !skb_queue_empty(&asoc->ulpq.reasm) ||
1527 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
1528 struct sctp_chunk *chunk;
1530 chunk = sctp_make_abort_user(asoc, NULL, 0);
1531 sctp_primitive_ABORT(asoc, chunk);
1533 sctp_primitive_SHUTDOWN(asoc, NULL);
1536 /* On a TCP-style socket, block for at most linger_time if set. */
1537 if (sctp_style(sk, TCP) && timeout)
1538 sctp_wait_for_close(sk, timeout);
1540 /* This will run the backlog queue. */
1541 sctp_release_sock(sk);
1543 /* Supposedly, no process has access to the socket, but
1544 * the net layers still may.
1545 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1546 * held and that should be grabbed before socket lock.
1548 spin_lock_bh(&sctp_globals.addr_wq_lock);
1549 sctp_bh_lock_sock(sk);
1551 /* Hold the sock, since sk_common_release() will put sock_put()
1552 * and we have just a little more cleanup.
1555 sk_common_release(sk);
1557 sctp_bh_unlock_sock(sk);
1558 spin_unlock_bh(&sctp_globals.addr_wq_lock);
1562 SCTP_DBG_OBJCNT_DEC(sock);
1565 /* Handle EPIPE error. */
1566 static int sctp_error(struct sock *sk, int flags, int err)
1569 err = sock_error(sk) ? : -EPIPE;
1570 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1571 send_sig(SIGPIPE, current, 0);
1575 /* API 3.1.3 sendmsg() - UDP Style Syntax
1577 * An application uses sendmsg() and recvmsg() calls to transmit data to
1578 * and receive data from its peer.
1580 * ssize_t sendmsg(int socket, const struct msghdr *message,
1583 * socket - the socket descriptor of the endpoint.
1584 * message - pointer to the msghdr structure which contains a single
1585 * user message and possibly some ancillary data.
1587 * See Section 5 for complete description of the data
1590 * flags - flags sent or received with the user message, see Section
1591 * 5 for complete description of the flags.
1593 * Note: This function could use a rewrite especially when explicit
1594 * connect support comes in.
1596 /* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1598 SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *, sctp_cmsgs_t *);
1600 SCTP_STATIC int sctp_sendmsg(struct kiocb *iocb, struct sock *sk,
1601 struct msghdr *msg, size_t msg_len)
1603 struct sctp_sock *sp;
1604 struct sctp_endpoint *ep;
1605 struct sctp_association *new_asoc=NULL, *asoc=NULL;
1606 struct sctp_transport *transport, *chunk_tp;
1607 struct sctp_chunk *chunk;
1609 struct sockaddr *msg_name = NULL;
1610 struct sctp_sndrcvinfo default_sinfo;
1611 struct sctp_sndrcvinfo *sinfo;
1612 struct sctp_initmsg *sinit;
1613 sctp_assoc_t associd = 0;
1614 sctp_cmsgs_t cmsgs = { NULL };
1618 __u16 sinfo_flags = 0;
1619 bool wait_connect = false;
1620 struct sctp_datamsg *datamsg;
1621 int msg_flags = msg->msg_flags;
1623 SCTP_DEBUG_PRINTK("sctp_sendmsg(sk: %p, msg: %p, msg_len: %zu)\n",
1630 SCTP_DEBUG_PRINTK("Using endpoint: %p.\n", ep);
1632 /* We cannot send a message over a TCP-style listening socket. */
1633 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) {
1638 /* Parse out the SCTP CMSGs. */
1639 err = sctp_msghdr_parse(msg, &cmsgs);
1642 SCTP_DEBUG_PRINTK("msghdr parse err = %x\n", err);
1646 /* Fetch the destination address for this packet. This
1647 * address only selects the association--it is not necessarily
1648 * the address we will send to.
1649 * For a peeled-off socket, msg_name is ignored.
1651 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1652 int msg_namelen = msg->msg_namelen;
1654 err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name,
1659 if (msg_namelen > sizeof(to))
1660 msg_namelen = sizeof(to);
1661 memcpy(&to, msg->msg_name, msg_namelen);
1662 msg_name = msg->msg_name;
1668 /* Did the user specify SNDRCVINFO? */
1670 sinfo_flags = sinfo->sinfo_flags;
1671 associd = sinfo->sinfo_assoc_id;
1674 SCTP_DEBUG_PRINTK("msg_len: %zu, sinfo_flags: 0x%x\n",
1675 msg_len, sinfo_flags);
1677 /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */
1678 if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) {
1683 /* If SCTP_EOF is set, no data can be sent. Disallow sending zero
1684 * length messages when SCTP_EOF|SCTP_ABORT is not set.
1685 * If SCTP_ABORT is set, the message length could be non zero with
1686 * the msg_iov set to the user abort reason.
1688 if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) ||
1689 (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) {
1694 /* If SCTP_ADDR_OVER is set, there must be an address
1695 * specified in msg_name.
1697 if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) {
1704 SCTP_DEBUG_PRINTK("About to look up association.\n");
1708 /* If a msg_name has been specified, assume this is to be used. */
1710 /* Look for a matching association on the endpoint. */
1711 asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport);
1713 /* If we could not find a matching association on the
1714 * endpoint, make sure that it is not a TCP-style
1715 * socket that already has an association or there is
1716 * no peeled-off association on another socket.
1718 if ((sctp_style(sk, TCP) &&
1719 sctp_sstate(sk, ESTABLISHED)) ||
1720 sctp_endpoint_is_peeled_off(ep, &to)) {
1721 err = -EADDRNOTAVAIL;
1726 asoc = sctp_id2assoc(sk, associd);
1734 SCTP_DEBUG_PRINTK("Just looked up association: %p.\n", asoc);
1736 /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED
1737 * socket that has an association in CLOSED state. This can
1738 * happen when an accepted socket has an association that is
1741 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) {
1746 if (sinfo_flags & SCTP_EOF) {
1747 SCTP_DEBUG_PRINTK("Shutting down association: %p\n",
1749 sctp_primitive_SHUTDOWN(asoc, NULL);
1753 if (sinfo_flags & SCTP_ABORT) {
1755 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1761 SCTP_DEBUG_PRINTK("Aborting association: %p\n", asoc);
1762 sctp_primitive_ABORT(asoc, chunk);
1768 /* Do we need to create the association? */
1770 SCTP_DEBUG_PRINTK("There is no association yet.\n");
1772 if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) {
1777 /* Check for invalid stream against the stream counts,
1778 * either the default or the user specified stream counts.
1781 if (!sinit || (sinit && !sinit->sinit_num_ostreams)) {
1782 /* Check against the defaults. */
1783 if (sinfo->sinfo_stream >=
1784 sp->initmsg.sinit_num_ostreams) {
1789 /* Check against the requested. */
1790 if (sinfo->sinfo_stream >=
1791 sinit->sinit_num_ostreams) {
1799 * API 3.1.2 bind() - UDP Style Syntax
1800 * If a bind() or sctp_bindx() is not called prior to a
1801 * sendmsg() call that initiates a new association, the
1802 * system picks an ephemeral port and will choose an address
1803 * set equivalent to binding with a wildcard address.
1805 if (!ep->base.bind_addr.port) {
1806 if (sctp_autobind(sk)) {
1812 * If an unprivileged user inherits a one-to-many
1813 * style socket with open associations on a privileged
1814 * port, it MAY be permitted to accept new associations,
1815 * but it SHOULD NOT be permitted to open new
1818 if (ep->base.bind_addr.port < PROT_SOCK &&
1819 !capable(CAP_NET_BIND_SERVICE)) {
1825 scope = sctp_scope(&to);
1826 new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1832 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1838 /* If the SCTP_INIT ancillary data is specified, set all
1839 * the association init values accordingly.
1842 if (sinit->sinit_num_ostreams) {
1843 asoc->c.sinit_num_ostreams =
1844 sinit->sinit_num_ostreams;
1846 if (sinit->sinit_max_instreams) {
1847 asoc->c.sinit_max_instreams =
1848 sinit->sinit_max_instreams;
1850 if (sinit->sinit_max_attempts) {
1851 asoc->max_init_attempts
1852 = sinit->sinit_max_attempts;
1854 if (sinit->sinit_max_init_timeo) {
1855 asoc->max_init_timeo =
1856 msecs_to_jiffies(sinit->sinit_max_init_timeo);
1860 /* Prime the peer's transport structures. */
1861 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN);
1868 /* ASSERT: we have a valid association at this point. */
1869 SCTP_DEBUG_PRINTK("We have a valid association.\n");
1872 /* If the user didn't specify SNDRCVINFO, make up one with
1875 memset(&default_sinfo, 0, sizeof(default_sinfo));
1876 default_sinfo.sinfo_stream = asoc->default_stream;
1877 default_sinfo.sinfo_flags = asoc->default_flags;
1878 default_sinfo.sinfo_ppid = asoc->default_ppid;
1879 default_sinfo.sinfo_context = asoc->default_context;
1880 default_sinfo.sinfo_timetolive = asoc->default_timetolive;
1881 default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc);
1882 sinfo = &default_sinfo;
1885 /* API 7.1.7, the sndbuf size per association bounds the
1886 * maximum size of data that can be sent in a single send call.
1888 if (msg_len > sk->sk_sndbuf) {
1893 if (asoc->pmtu_pending)
1894 sctp_assoc_pending_pmtu(asoc);
1896 /* If fragmentation is disabled and the message length exceeds the
1897 * association fragmentation point, return EMSGSIZE. The I-D
1898 * does not specify what this error is, but this looks like
1901 if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) {
1906 /* Check for invalid stream. */
1907 if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) {
1912 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1913 if (!sctp_wspace(asoc)) {
1914 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1919 /* If an address is passed with the sendto/sendmsg call, it is used
1920 * to override the primary destination address in the TCP model, or
1921 * when SCTP_ADDR_OVER flag is set in the UDP model.
1923 if ((sctp_style(sk, TCP) && msg_name) ||
1924 (sinfo_flags & SCTP_ADDR_OVER)) {
1925 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
1933 /* Auto-connect, if we aren't connected already. */
1934 if (sctp_state(asoc, CLOSED)) {
1935 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1938 wait_connect = true;
1939 SCTP_DEBUG_PRINTK("We associated primitively.\n");
1942 /* Break the message into multiple chunks of maximum size. */
1943 datamsg = sctp_datamsg_from_user(asoc, sinfo, msg, msg_len);
1944 if (IS_ERR(datamsg)) {
1945 err = PTR_ERR(datamsg);
1949 /* Now send the (possibly) fragmented message. */
1950 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1951 sctp_chunk_hold(chunk);
1953 /* Do accounting for the write space. */
1954 sctp_set_owner_w(chunk);
1956 chunk->transport = chunk_tp;
1959 /* Send it to the lower layers. Note: all chunks
1960 * must either fail or succeed. The lower layer
1961 * works that way today. Keep it that way or this
1964 err = sctp_primitive_SEND(asoc, datamsg);
1965 /* Did the lower layer accept the chunk? */
1967 sctp_datamsg_free(datamsg);
1969 sctp_datamsg_put(datamsg);
1971 SCTP_DEBUG_PRINTK("We sent primitively.\n");
1978 if (unlikely(wait_connect)) {
1979 timeo = sock_sndtimeo(sk, msg_flags & MSG_DONTWAIT);
1980 sctp_wait_for_connect(asoc, &timeo);
1983 /* If we are already past ASSOCIATE, the lower
1984 * layers are responsible for association cleanup.
1990 sctp_unhash_established(asoc);
1991 sctp_association_free(asoc);
1994 sctp_release_sock(sk);
1997 return sctp_error(sk, msg_flags, err);
2004 err = sock_error(sk);
2014 /* This is an extended version of skb_pull() that removes the data from the
2015 * start of a skb even when data is spread across the list of skb's in the
2016 * frag_list. len specifies the total amount of data that needs to be removed.
2017 * when 'len' bytes could be removed from the skb, it returns 0.
2018 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2019 * could not be removed.
2021 static int sctp_skb_pull(struct sk_buff *skb, int len)
2023 struct sk_buff *list;
2024 int skb_len = skb_headlen(skb);
2027 if (len <= skb_len) {
2028 __skb_pull(skb, len);
2032 __skb_pull(skb, skb_len);
2034 skb_walk_frags(skb, list) {
2035 rlen = sctp_skb_pull(list, len);
2036 skb->len -= (len-rlen);
2037 skb->data_len -= (len-rlen);
2048 /* API 3.1.3 recvmsg() - UDP Style Syntax
2050 * ssize_t recvmsg(int socket, struct msghdr *message,
2053 * socket - the socket descriptor of the endpoint.
2054 * message - pointer to the msghdr structure which contains a single
2055 * user message and possibly some ancillary data.
2057 * See Section 5 for complete description of the data
2060 * flags - flags sent or received with the user message, see Section
2061 * 5 for complete description of the flags.
2063 static struct sk_buff *sctp_skb_recv_datagram(struct sock *, int, int, int *);
2065 SCTP_STATIC int sctp_recvmsg(struct kiocb *iocb, struct sock *sk,
2066 struct msghdr *msg, size_t len, int noblock,
2067 int flags, int *addr_len)
2069 struct sctp_ulpevent *event = NULL;
2070 struct sctp_sock *sp = sctp_sk(sk);
2071 struct sk_buff *skb;
2076 SCTP_DEBUG_PRINTK("sctp_recvmsg(%s: %p, %s: %p, %s: %zd, %s: %d, %s: "
2077 "0x%x, %s: %p)\n", "sk", sk, "msghdr", msg,
2078 "len", len, "knoblauch", noblock,
2079 "flags", flags, "addr_len", addr_len);
2083 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED)) {
2088 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2092 /* Get the total length of the skb including any skb's in the
2101 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2103 event = sctp_skb2event(skb);
2108 sock_recv_ts_and_drops(msg, sk, skb);
2109 if (sctp_ulpevent_is_notification(event)) {
2110 msg->msg_flags |= MSG_NOTIFICATION;
2111 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2113 sp->pf->skb_msgname(skb, msg->msg_name, addr_len);
2116 /* Check if we allow SCTP_SNDRCVINFO. */
2117 if (sp->subscribe.sctp_data_io_event)
2118 sctp_ulpevent_read_sndrcvinfo(event, msg);
2120 /* FIXME: we should be calling IP/IPv6 layers. */
2121 if (sk->sk_protinfo.af_inet.cmsg_flags)
2122 ip_cmsg_recv(msg, skb);
2127 /* If skb's length exceeds the user's buffer, update the skb and
2128 * push it back to the receive_queue so that the next call to
2129 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2131 if (skb_len > copied) {
2132 msg->msg_flags &= ~MSG_EOR;
2133 if (flags & MSG_PEEK)
2135 sctp_skb_pull(skb, copied);
2136 skb_queue_head(&sk->sk_receive_queue, skb);
2138 /* When only partial message is copied to the user, increase
2139 * rwnd by that amount. If all the data in the skb is read,
2140 * rwnd is updated when the event is freed.
2142 if (!sctp_ulpevent_is_notification(event))
2143 sctp_assoc_rwnd_increase(event->asoc, copied);
2145 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2146 (event->msg_flags & MSG_EOR))
2147 msg->msg_flags |= MSG_EOR;
2149 msg->msg_flags &= ~MSG_EOR;
2152 if (flags & MSG_PEEK) {
2153 /* Release the skb reference acquired after peeking the skb in
2154 * sctp_skb_recv_datagram().
2158 /* Free the event which includes releasing the reference to
2159 * the owner of the skb, freeing the skb and updating the
2162 sctp_ulpevent_free(event);
2165 sctp_release_sock(sk);
2169 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2171 * This option is a on/off flag. If enabled no SCTP message
2172 * fragmentation will be performed. Instead if a message being sent
2173 * exceeds the current PMTU size, the message will NOT be sent and
2174 * instead a error will be indicated to the user.
2176 static int sctp_setsockopt_disable_fragments(struct sock *sk,
2177 char __user *optval,
2178 unsigned int optlen)
2182 if (optlen < sizeof(int))
2185 if (get_user(val, (int __user *)optval))
2188 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2193 static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
2194 unsigned int optlen)
2196 struct sctp_association *asoc;
2197 struct sctp_ulpevent *event;
2199 if (optlen > sizeof(struct sctp_event_subscribe))
2201 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2205 * At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2206 * if there is no data to be sent or retransmit, the stack will
2207 * immediately send up this notification.
2209 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2210 &sctp_sk(sk)->subscribe)) {
2211 asoc = sctp_id2assoc(sk, 0);
2213 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2214 event = sctp_ulpevent_make_sender_dry_event(asoc,
2219 sctp_ulpq_tail_event(&asoc->ulpq, event);
2226 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2228 * This socket option is applicable to the UDP-style socket only. When
2229 * set it will cause associations that are idle for more than the
2230 * specified number of seconds to automatically close. An association
2231 * being idle is defined an association that has NOT sent or received
2232 * user data. The special value of '0' indicates that no automatic
2233 * close of any associations should be performed. The option expects an
2234 * integer defining the number of seconds of idle time before an
2235 * association is closed.
2237 static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
2238 unsigned int optlen)
2240 struct sctp_sock *sp = sctp_sk(sk);
2242 /* Applicable to UDP-style socket only */
2243 if (sctp_style(sk, TCP))
2245 if (optlen != sizeof(int))
2247 if (copy_from_user(&sp->autoclose, optval, optlen))
2253 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2255 * Applications can enable or disable heartbeats for any peer address of
2256 * an association, modify an address's heartbeat interval, force a
2257 * heartbeat to be sent immediately, and adjust the address's maximum
2258 * number of retransmissions sent before an address is considered
2259 * unreachable. The following structure is used to access and modify an
2260 * address's parameters:
2262 * struct sctp_paddrparams {
2263 * sctp_assoc_t spp_assoc_id;
2264 * struct sockaddr_storage spp_address;
2265 * uint32_t spp_hbinterval;
2266 * uint16_t spp_pathmaxrxt;
2267 * uint32_t spp_pathmtu;
2268 * uint32_t spp_sackdelay;
2269 * uint32_t spp_flags;
2272 * spp_assoc_id - (one-to-many style socket) This is filled in the
2273 * application, and identifies the association for
2275 * spp_address - This specifies which address is of interest.
2276 * spp_hbinterval - This contains the value of the heartbeat interval,
2277 * in milliseconds. If a value of zero
2278 * is present in this field then no changes are to
2279 * be made to this parameter.
2280 * spp_pathmaxrxt - This contains the maximum number of
2281 * retransmissions before this address shall be
2282 * considered unreachable. If a value of zero
2283 * is present in this field then no changes are to
2284 * be made to this parameter.
2285 * spp_pathmtu - When Path MTU discovery is disabled the value
2286 * specified here will be the "fixed" path mtu.
2287 * Note that if the spp_address field is empty
2288 * then all associations on this address will
2289 * have this fixed path mtu set upon them.
2291 * spp_sackdelay - When delayed sack is enabled, this value specifies
2292 * the number of milliseconds that sacks will be delayed
2293 * for. This value will apply to all addresses of an
2294 * association if the spp_address field is empty. Note
2295 * also, that if delayed sack is enabled and this
2296 * value is set to 0, no change is made to the last
2297 * recorded delayed sack timer value.
2299 * spp_flags - These flags are used to control various features
2300 * on an association. The flag field may contain
2301 * zero or more of the following options.
2303 * SPP_HB_ENABLE - Enable heartbeats on the
2304 * specified address. Note that if the address
2305 * field is empty all addresses for the association
2306 * have heartbeats enabled upon them.
2308 * SPP_HB_DISABLE - Disable heartbeats on the
2309 * speicifed address. Note that if the address
2310 * field is empty all addresses for the association
2311 * will have their heartbeats disabled. Note also
2312 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2313 * mutually exclusive, only one of these two should
2314 * be specified. Enabling both fields will have
2315 * undetermined results.
2317 * SPP_HB_DEMAND - Request a user initiated heartbeat
2318 * to be made immediately.
2320 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2321 * heartbeat delayis to be set to the value of 0
2324 * SPP_PMTUD_ENABLE - This field will enable PMTU
2325 * discovery upon the specified address. Note that
2326 * if the address feild is empty then all addresses
2327 * on the association are effected.
2329 * SPP_PMTUD_DISABLE - This field will disable PMTU
2330 * discovery upon the specified address. Note that
2331 * if the address feild is empty then all addresses
2332 * on the association are effected. Not also that
2333 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2334 * exclusive. Enabling both will have undetermined
2337 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2338 * on delayed sack. The time specified in spp_sackdelay
2339 * is used to specify the sack delay for this address. Note
2340 * that if spp_address is empty then all addresses will
2341 * enable delayed sack and take on the sack delay
2342 * value specified in spp_sackdelay.
2343 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2344 * off delayed sack. If the spp_address field is blank then
2345 * delayed sack is disabled for the entire association. Note
2346 * also that this field is mutually exclusive to
2347 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2350 static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2351 struct sctp_transport *trans,
2352 struct sctp_association *asoc,
2353 struct sctp_sock *sp,
2356 int sackdelay_change)
2360 if (params->spp_flags & SPP_HB_DEMAND && trans) {
2361 error = sctp_primitive_REQUESTHEARTBEAT (trans->asoc, trans);
2366 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2367 * this field is ignored. Note also that a value of zero indicates
2368 * the current setting should be left unchanged.
2370 if (params->spp_flags & SPP_HB_ENABLE) {
2372 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2373 * set. This lets us use 0 value when this flag
2376 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2377 params->spp_hbinterval = 0;
2379 if (params->spp_hbinterval ||
2380 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2383 msecs_to_jiffies(params->spp_hbinterval);
2386 msecs_to_jiffies(params->spp_hbinterval);
2388 sp->hbinterval = params->spp_hbinterval;
2395 trans->param_flags =
2396 (trans->param_flags & ~SPP_HB) | hb_change;
2399 (asoc->param_flags & ~SPP_HB) | hb_change;
2402 (sp->param_flags & ~SPP_HB) | hb_change;
2406 /* When Path MTU discovery is disabled the value specified here will
2407 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2408 * include the flag SPP_PMTUD_DISABLE for this field to have any
2411 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
2413 trans->pathmtu = params->spp_pathmtu;
2414 sctp_assoc_sync_pmtu(asoc);
2416 asoc->pathmtu = params->spp_pathmtu;
2417 sctp_frag_point(asoc, params->spp_pathmtu);
2419 sp->pathmtu = params->spp_pathmtu;
2425 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2426 (params->spp_flags & SPP_PMTUD_ENABLE);
2427 trans->param_flags =
2428 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2430 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
2431 sctp_assoc_sync_pmtu(asoc);
2435 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2438 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2442 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2443 * value of this field is ignored. Note also that a value of zero
2444 * indicates the current setting should be left unchanged.
2446 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
2449 msecs_to_jiffies(params->spp_sackdelay);
2452 msecs_to_jiffies(params->spp_sackdelay);
2454 sp->sackdelay = params->spp_sackdelay;
2458 if (sackdelay_change) {
2460 trans->param_flags =
2461 (trans->param_flags & ~SPP_SACKDELAY) |
2465 (asoc->param_flags & ~SPP_SACKDELAY) |
2469 (sp->param_flags & ~SPP_SACKDELAY) |
2474 /* Note that a value of zero indicates the current setting should be
2477 if (params->spp_pathmaxrxt) {
2479 trans->pathmaxrxt = params->spp_pathmaxrxt;
2481 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2483 sp->pathmaxrxt = params->spp_pathmaxrxt;
2490 static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2491 char __user *optval,
2492 unsigned int optlen)
2494 struct sctp_paddrparams params;
2495 struct sctp_transport *trans = NULL;
2496 struct sctp_association *asoc = NULL;
2497 struct sctp_sock *sp = sctp_sk(sk);
2499 int hb_change, pmtud_change, sackdelay_change;
2501 if (optlen != sizeof(struct sctp_paddrparams))
2504 if (copy_from_user(¶ms, optval, optlen))
2507 /* Validate flags and value parameters. */
2508 hb_change = params.spp_flags & SPP_HB;
2509 pmtud_change = params.spp_flags & SPP_PMTUD;
2510 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2512 if (hb_change == SPP_HB ||
2513 pmtud_change == SPP_PMTUD ||
2514 sackdelay_change == SPP_SACKDELAY ||
2515 params.spp_sackdelay > 500 ||
2516 (params.spp_pathmtu &&
2517 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2520 /* If an address other than INADDR_ANY is specified, and
2521 * no transport is found, then the request is invalid.
2523 if (!sctp_is_any(sk, ( union sctp_addr *)¶ms.spp_address)) {
2524 trans = sctp_addr_id2transport(sk, ¶ms.spp_address,
2525 params.spp_assoc_id);
2530 /* Get association, if assoc_id != 0 and the socket is a one
2531 * to many style socket, and an association was not found, then
2532 * the id was invalid.
2534 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2535 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2538 /* Heartbeat demand can only be sent on a transport or
2539 * association, but not a socket.
2541 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2544 /* Process parameters. */
2545 error = sctp_apply_peer_addr_params(¶ms, trans, asoc, sp,
2546 hb_change, pmtud_change,
2552 /* If changes are for association, also apply parameters to each
2555 if (!trans && asoc) {
2556 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2558 sctp_apply_peer_addr_params(¶ms, trans, asoc, sp,
2559 hb_change, pmtud_change,
2568 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
2570 * This option will effect the way delayed acks are performed. This
2571 * option allows you to get or set the delayed ack time, in
2572 * milliseconds. It also allows changing the delayed ack frequency.
2573 * Changing the frequency to 1 disables the delayed sack algorithm. If
2574 * the assoc_id is 0, then this sets or gets the endpoints default
2575 * values. If the assoc_id field is non-zero, then the set or get
2576 * effects the specified association for the one to many model (the
2577 * assoc_id field is ignored by the one to one model). Note that if
2578 * sack_delay or sack_freq are 0 when setting this option, then the
2579 * current values will remain unchanged.
2581 * struct sctp_sack_info {
2582 * sctp_assoc_t sack_assoc_id;
2583 * uint32_t sack_delay;
2584 * uint32_t sack_freq;
2587 * sack_assoc_id - This parameter, indicates which association the user
2588 * is performing an action upon. Note that if this field's value is
2589 * zero then the endpoints default value is changed (effecting future
2590 * associations only).
2592 * sack_delay - This parameter contains the number of milliseconds that
2593 * the user is requesting the delayed ACK timer be set to. Note that
2594 * this value is defined in the standard to be between 200 and 500
2597 * sack_freq - This parameter contains the number of packets that must
2598 * be received before a sack is sent without waiting for the delay
2599 * timer to expire. The default value for this is 2, setting this
2600 * value to 1 will disable the delayed sack algorithm.
2603 static int sctp_setsockopt_delayed_ack(struct sock *sk,
2604 char __user *optval, unsigned int optlen)
2606 struct sctp_sack_info params;
2607 struct sctp_transport *trans = NULL;
2608 struct sctp_association *asoc = NULL;
2609 struct sctp_sock *sp = sctp_sk(sk);
2611 if (optlen == sizeof(struct sctp_sack_info)) {
2612 if (copy_from_user(¶ms, optval, optlen))
2615 if (params.sack_delay == 0 && params.sack_freq == 0)
2617 } else if (optlen == sizeof(struct sctp_assoc_value)) {
2618 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
2619 pr_warn("Use struct sctp_sack_info instead\n");
2620 if (copy_from_user(¶ms, optval, optlen))
2623 if (params.sack_delay == 0)
2624 params.sack_freq = 1;
2626 params.sack_freq = 0;
2630 /* Validate value parameter. */
2631 if (params.sack_delay > 500)
2634 /* Get association, if sack_assoc_id != 0 and the socket is a one
2635 * to many style socket, and an association was not found, then
2636 * the id was invalid.
2638 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2639 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
2642 if (params.sack_delay) {
2645 msecs_to_jiffies(params.sack_delay);
2647 (asoc->param_flags & ~SPP_SACKDELAY) |
2648 SPP_SACKDELAY_ENABLE;
2650 sp->sackdelay = params.sack_delay;
2652 (sp->param_flags & ~SPP_SACKDELAY) |
2653 SPP_SACKDELAY_ENABLE;
2657 if (params.sack_freq == 1) {
2660 (asoc->param_flags & ~SPP_SACKDELAY) |
2661 SPP_SACKDELAY_DISABLE;
2664 (sp->param_flags & ~SPP_SACKDELAY) |
2665 SPP_SACKDELAY_DISABLE;
2667 } else if (params.sack_freq > 1) {
2669 asoc->sackfreq = params.sack_freq;
2671 (asoc->param_flags & ~SPP_SACKDELAY) |
2672 SPP_SACKDELAY_ENABLE;
2674 sp->sackfreq = params.sack_freq;
2676 (sp->param_flags & ~SPP_SACKDELAY) |
2677 SPP_SACKDELAY_ENABLE;
2681 /* If change is for association, also apply to each transport. */
2683 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2685 if (params.sack_delay) {
2687 msecs_to_jiffies(params.sack_delay);
2688 trans->param_flags =
2689 (trans->param_flags & ~SPP_SACKDELAY) |
2690 SPP_SACKDELAY_ENABLE;
2692 if (params.sack_freq == 1) {
2693 trans->param_flags =
2694 (trans->param_flags & ~SPP_SACKDELAY) |
2695 SPP_SACKDELAY_DISABLE;
2696 } else if (params.sack_freq > 1) {
2697 trans->sackfreq = params.sack_freq;
2698 trans->param_flags =
2699 (trans->param_flags & ~SPP_SACKDELAY) |
2700 SPP_SACKDELAY_ENABLE;
2708 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2710 * Applications can specify protocol parameters for the default association
2711 * initialization. The option name argument to setsockopt() and getsockopt()
2714 * Setting initialization parameters is effective only on an unconnected
2715 * socket (for UDP-style sockets only future associations are effected
2716 * by the change). With TCP-style sockets, this option is inherited by
2717 * sockets derived from a listener socket.
2719 static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
2721 struct sctp_initmsg sinit;
2722 struct sctp_sock *sp = sctp_sk(sk);
2724 if (optlen != sizeof(struct sctp_initmsg))
2726 if (copy_from_user(&sinit, optval, optlen))
2729 if (sinit.sinit_num_ostreams)
2730 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
2731 if (sinit.sinit_max_instreams)
2732 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
2733 if (sinit.sinit_max_attempts)
2734 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
2735 if (sinit.sinit_max_init_timeo)
2736 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
2742 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2744 * Applications that wish to use the sendto() system call may wish to
2745 * specify a default set of parameters that would normally be supplied
2746 * through the inclusion of ancillary data. This socket option allows
2747 * such an application to set the default sctp_sndrcvinfo structure.
2748 * The application that wishes to use this socket option simply passes
2749 * in to this call the sctp_sndrcvinfo structure defined in Section
2750 * 5.2.2) The input parameters accepted by this call include
2751 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2752 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2753 * to this call if the caller is using the UDP model.
2755 static int sctp_setsockopt_default_send_param(struct sock *sk,
2756 char __user *optval,
2757 unsigned int optlen)
2759 struct sctp_sndrcvinfo info;
2760 struct sctp_association *asoc;
2761 struct sctp_sock *sp = sctp_sk(sk);
2763 if (optlen != sizeof(struct sctp_sndrcvinfo))
2765 if (copy_from_user(&info, optval, optlen))
2768 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2769 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2773 asoc->default_stream = info.sinfo_stream;
2774 asoc->default_flags = info.sinfo_flags;
2775 asoc->default_ppid = info.sinfo_ppid;
2776 asoc->default_context = info.sinfo_context;
2777 asoc->default_timetolive = info.sinfo_timetolive;
2779 sp->default_stream = info.sinfo_stream;
2780 sp->default_flags = info.sinfo_flags;
2781 sp->default_ppid = info.sinfo_ppid;
2782 sp->default_context = info.sinfo_context;
2783 sp->default_timetolive = info.sinfo_timetolive;
2789 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2791 * Requests that the local SCTP stack use the enclosed peer address as
2792 * the association primary. The enclosed address must be one of the
2793 * association peer's addresses.
2795 static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
2796 unsigned int optlen)
2798 struct sctp_prim prim;
2799 struct sctp_transport *trans;
2801 if (optlen != sizeof(struct sctp_prim))
2804 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2807 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2811 sctp_assoc_set_primary(trans->asoc, trans);
2817 * 7.1.5 SCTP_NODELAY
2819 * Turn on/off any Nagle-like algorithm. This means that packets are
2820 * generally sent as soon as possible and no unnecessary delays are
2821 * introduced, at the cost of more packets in the network. Expects an
2822 * integer boolean flag.
2824 static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
2825 unsigned int optlen)
2829 if (optlen < sizeof(int))
2831 if (get_user(val, (int __user *)optval))
2834 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2840 * 7.1.1 SCTP_RTOINFO
2842 * The protocol parameters used to initialize and bound retransmission
2843 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2844 * and modify these parameters.
2845 * All parameters are time values, in milliseconds. A value of 0, when
2846 * modifying the parameters, indicates that the current value should not
2850 static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
2852 struct sctp_rtoinfo rtoinfo;
2853 struct sctp_association *asoc;
2855 if (optlen != sizeof (struct sctp_rtoinfo))
2858 if (copy_from_user(&rtoinfo, optval, optlen))
2861 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2863 /* Set the values to the specific association */
2864 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2868 if (rtoinfo.srto_initial != 0)
2870 msecs_to_jiffies(rtoinfo.srto_initial);
2871 if (rtoinfo.srto_max != 0)
2872 asoc->rto_max = msecs_to_jiffies(rtoinfo.srto_max);
2873 if (rtoinfo.srto_min != 0)
2874 asoc->rto_min = msecs_to_jiffies(rtoinfo.srto_min);
2876 /* If there is no association or the association-id = 0
2877 * set the values to the endpoint.
2879 struct sctp_sock *sp = sctp_sk(sk);
2881 if (rtoinfo.srto_initial != 0)
2882 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
2883 if (rtoinfo.srto_max != 0)
2884 sp->rtoinfo.srto_max = rtoinfo.srto_max;
2885 if (rtoinfo.srto_min != 0)
2886 sp->rtoinfo.srto_min = rtoinfo.srto_min;
2894 * 7.1.2 SCTP_ASSOCINFO
2896 * This option is used to tune the maximum retransmission attempts
2897 * of the association.
2898 * Returns an error if the new association retransmission value is
2899 * greater than the sum of the retransmission value of the peer.
2900 * See [SCTP] for more information.
2903 static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
2906 struct sctp_assocparams assocparams;
2907 struct sctp_association *asoc;
2909 if (optlen != sizeof(struct sctp_assocparams))
2911 if (copy_from_user(&assocparams, optval, optlen))
2914 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2916 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2919 /* Set the values to the specific association */
2921 if (assocparams.sasoc_asocmaxrxt != 0) {
2924 struct sctp_transport *peer_addr;
2926 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
2928 path_sum += peer_addr->pathmaxrxt;
2932 /* Only validate asocmaxrxt if we have more than
2933 * one path/transport. We do this because path
2934 * retransmissions are only counted when we have more
2938 assocparams.sasoc_asocmaxrxt > path_sum)
2941 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
2944 if (assocparams.sasoc_cookie_life != 0) {
2945 asoc->cookie_life.tv_sec =
2946 assocparams.sasoc_cookie_life / 1000;
2947 asoc->cookie_life.tv_usec =
2948 (assocparams.sasoc_cookie_life % 1000)
2952 /* Set the values to the endpoint */
2953 struct sctp_sock *sp = sctp_sk(sk);
2955 if (assocparams.sasoc_asocmaxrxt != 0)
2956 sp->assocparams.sasoc_asocmaxrxt =
2957 assocparams.sasoc_asocmaxrxt;
2958 if (assocparams.sasoc_cookie_life != 0)
2959 sp->assocparams.sasoc_cookie_life =
2960 assocparams.sasoc_cookie_life;
2966 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
2968 * This socket option is a boolean flag which turns on or off mapped V4
2969 * addresses. If this option is turned on and the socket is type
2970 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
2971 * If this option is turned off, then no mapping will be done of V4
2972 * addresses and a user will receive both PF_INET6 and PF_INET type
2973 * addresses on the socket.
2975 static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
2978 struct sctp_sock *sp = sctp_sk(sk);
2980 if (optlen < sizeof(int))
2982 if (get_user(val, (int __user *)optval))
2993 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
2994 * This option will get or set the maximum size to put in any outgoing
2995 * SCTP DATA chunk. If a message is larger than this size it will be
2996 * fragmented by SCTP into the specified size. Note that the underlying
2997 * SCTP implementation may fragment into smaller sized chunks when the
2998 * PMTU of the underlying association is smaller than the value set by
2999 * the user. The default value for this option is '0' which indicates
3000 * the user is NOT limiting fragmentation and only the PMTU will effect
3001 * SCTP's choice of DATA chunk size. Note also that values set larger
3002 * than the maximum size of an IP datagram will effectively let SCTP
3003 * control fragmentation (i.e. the same as setting this option to 0).
3005 * The following structure is used to access and modify this parameter:
3007 * struct sctp_assoc_value {
3008 * sctp_assoc_t assoc_id;
3009 * uint32_t assoc_value;
3012 * assoc_id: This parameter is ignored for one-to-one style sockets.
3013 * For one-to-many style sockets this parameter indicates which
3014 * association the user is performing an action upon. Note that if
3015 * this field's value is zero then the endpoints default value is
3016 * changed (effecting future associations only).
3017 * assoc_value: This parameter specifies the maximum size in bytes.
3019 static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
3021 struct sctp_assoc_value params;
3022 struct sctp_association *asoc;
3023 struct sctp_sock *sp = sctp_sk(sk);
3026 if (optlen == sizeof(int)) {
3027 pr_warn("Use of int in maxseg socket option deprecated\n");
3028 pr_warn("Use struct sctp_assoc_value instead\n");
3029 if (copy_from_user(&val, optval, optlen))
3031 params.assoc_id = 0;
3032 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3033 if (copy_from_user(¶ms, optval, optlen))
3035 val = params.assoc_value;
3039 if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
3042 asoc = sctp_id2assoc(sk, params.assoc_id);
3043 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3048 val = asoc->pathmtu;
3049 val -= sp->pf->af->net_header_len;
3050 val -= sizeof(struct sctphdr) +
3051 sizeof(struct sctp_data_chunk);
3053 asoc->user_frag = val;
3054 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
3056 sp->user_frag = val;
3064 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3066 * Requests that the peer mark the enclosed address as the association
3067 * primary. The enclosed address must be one of the association's
3068 * locally bound addresses. The following structure is used to make a
3069 * set primary request:
3071 static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
3072 unsigned int optlen)
3074 struct sctp_sock *sp;
3075 struct sctp_association *asoc = NULL;
3076 struct sctp_setpeerprim prim;
3077 struct sctp_chunk *chunk;
3083 if (!sctp_addip_enable)
3086 if (optlen != sizeof(struct sctp_setpeerprim))
3089 if (copy_from_user(&prim, optval, optlen))
3092 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
3096 if (!asoc->peer.asconf_capable)
3099 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3102 if (!sctp_state(asoc, ESTABLISHED))
3105 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3109 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3110 return -EADDRNOTAVAIL;
3112 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3113 return -EADDRNOTAVAIL;
3115 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3116 chunk = sctp_make_asconf_set_prim(asoc,
3117 (union sctp_addr *)&prim.sspp_addr);
3121 err = sctp_send_asconf(asoc, chunk);
3123 SCTP_DEBUG_PRINTK("We set peer primary addr primitively.\n");
3128 static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
3129 unsigned int optlen)
3131 struct sctp_setadaptation adaptation;
3133 if (optlen != sizeof(struct sctp_setadaptation))
3135 if (copy_from_user(&adaptation, optval, optlen))
3138 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
3144 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3146 * The context field in the sctp_sndrcvinfo structure is normally only
3147 * used when a failed message is retrieved holding the value that was
3148 * sent down on the actual send call. This option allows the setting of
3149 * a default context on an association basis that will be received on
3150 * reading messages from the peer. This is especially helpful in the
3151 * one-2-many model for an application to keep some reference to an
3152 * internal state machine that is processing messages on the
3153 * association. Note that the setting of this value only effects
3154 * received messages from the peer and does not effect the value that is
3155 * saved with outbound messages.
3157 static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
3158 unsigned int optlen)
3160 struct sctp_assoc_value params;
3161 struct sctp_sock *sp;
3162 struct sctp_association *asoc;
3164 if (optlen != sizeof(struct sctp_assoc_value))
3166 if (copy_from_user(¶ms, optval, optlen))
3171 if (params.assoc_id != 0) {
3172 asoc = sctp_id2assoc(sk, params.assoc_id);
3175 asoc->default_rcv_context = params.assoc_value;
3177 sp->default_rcv_context = params.assoc_value;
3184 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3186 * This options will at a minimum specify if the implementation is doing
3187 * fragmented interleave. Fragmented interleave, for a one to many
3188 * socket, is when subsequent calls to receive a message may return
3189 * parts of messages from different associations. Some implementations
3190 * may allow you to turn this value on or off. If so, when turned off,
3191 * no fragment interleave will occur (which will cause a head of line
3192 * blocking amongst multiple associations sharing the same one to many
3193 * socket). When this option is turned on, then each receive call may
3194 * come from a different association (thus the user must receive data
3195 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3196 * association each receive belongs to.
3198 * This option takes a boolean value. A non-zero value indicates that
3199 * fragmented interleave is on. A value of zero indicates that
3200 * fragmented interleave is off.
3202 * Note that it is important that an implementation that allows this
3203 * option to be turned on, have it off by default. Otherwise an unaware
3204 * application using the one to many model may become confused and act
3207 static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3208 char __user *optval,
3209 unsigned int optlen)
3213 if (optlen != sizeof(int))
3215 if (get_user(val, (int __user *)optval))
3218 sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1;
3224 * 8.1.21. Set or Get the SCTP Partial Delivery Point
3225 * (SCTP_PARTIAL_DELIVERY_POINT)
3227 * This option will set or get the SCTP partial delivery point. This
3228 * point is the size of a message where the partial delivery API will be
3229 * invoked to help free up rwnd space for the peer. Setting this to a
3230 * lower value will cause partial deliveries to happen more often. The
3231 * calls argument is an integer that sets or gets the partial delivery
3232 * point. Note also that the call will fail if the user attempts to set
3233 * this value larger than the socket receive buffer size.
3235 * Note that any single message having a length smaller than or equal to
3236 * the SCTP partial delivery point will be delivered in one single read
3237 * call as long as the user provided buffer is large enough to hold the
3240 static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3241 char __user *optval,
3242 unsigned int optlen)
3246 if (optlen != sizeof(u32))
3248 if (get_user(val, (int __user *)optval))
3251 /* Note: We double the receive buffer from what the user sets
3252 * it to be, also initial rwnd is based on rcvbuf/2.
3254 if (val > (sk->sk_rcvbuf >> 1))
3257 sctp_sk(sk)->pd_point = val;
3259 return 0; /* is this the right error code? */
3263 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3265 * This option will allow a user to change the maximum burst of packets
3266 * that can be emitted by this association. Note that the default value
3267 * is 4, and some implementations may restrict this setting so that it
3268 * can only be lowered.
3270 * NOTE: This text doesn't seem right. Do this on a socket basis with
3271 * future associations inheriting the socket value.
3273 static int sctp_setsockopt_maxburst(struct sock *sk,
3274 char __user *optval,
3275 unsigned int optlen)
3277 struct sctp_assoc_value params;
3278 struct sctp_sock *sp;
3279 struct sctp_association *asoc;
3283 if (optlen == sizeof(int)) {
3284 pr_warn("Use of int in max_burst socket option deprecated\n");
3285 pr_warn("Use struct sctp_assoc_value instead\n");
3286 if (copy_from_user(&val, optval, optlen))
3288 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3289 if (copy_from_user(¶ms, optval, optlen))
3291 val = params.assoc_value;
3292 assoc_id = params.assoc_id;
3298 if (assoc_id != 0) {
3299 asoc = sctp_id2assoc(sk, assoc_id);
3302 asoc->max_burst = val;
3304 sp->max_burst = val;
3310 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3312 * This set option adds a chunk type that the user is requesting to be
3313 * received only in an authenticated way. Changes to the list of chunks
3314 * will only effect future associations on the socket.
3316 static int sctp_setsockopt_auth_chunk(struct sock *sk,
3317 char __user *optval,
3318 unsigned int optlen)
3320 struct sctp_authchunk val;
3322 if (!sctp_auth_enable)
3325 if (optlen != sizeof(struct sctp_authchunk))
3327 if (copy_from_user(&val, optval, optlen))
3330 switch (val.sauth_chunk) {
3332 case SCTP_CID_INIT_ACK:
3333 case SCTP_CID_SHUTDOWN_COMPLETE:
3338 /* add this chunk id to the endpoint */
3339 return sctp_auth_ep_add_chunkid(sctp_sk(sk)->ep, val.sauth_chunk);
3343 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3345 * This option gets or sets the list of HMAC algorithms that the local
3346 * endpoint requires the peer to use.
3348 static int sctp_setsockopt_hmac_ident(struct sock *sk,
3349 char __user *optval,
3350 unsigned int optlen)
3352 struct sctp_hmacalgo *hmacs;
3356 if (!sctp_auth_enable)
3359 if (optlen < sizeof(struct sctp_hmacalgo))
3362 hmacs= memdup_user(optval, optlen);
3364 return PTR_ERR(hmacs);
3366 idents = hmacs->shmac_num_idents;
3367 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3368 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
3373 err = sctp_auth_ep_set_hmacs(sctp_sk(sk)->ep, hmacs);
3380 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3382 * This option will set a shared secret key which is used to build an
3383 * association shared key.
3385 static int sctp_setsockopt_auth_key(struct sock *sk,
3386 char __user *optval,
3387 unsigned int optlen)
3389 struct sctp_authkey *authkey;
3390 struct sctp_association *asoc;
3393 if (!sctp_auth_enable)
3396 if (optlen <= sizeof(struct sctp_authkey))
3399 authkey= memdup_user(optval, optlen);
3400 if (IS_ERR(authkey))
3401 return PTR_ERR(authkey);
3403 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
3408 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3409 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3414 ret = sctp_auth_set_key(sctp_sk(sk)->ep, asoc, authkey);
3421 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3423 * This option will get or set the active shared key to be used to build
3424 * the association shared key.
3426 static int sctp_setsockopt_active_key(struct sock *sk,
3427 char __user *optval,
3428 unsigned int optlen)
3430 struct sctp_authkeyid val;
3431 struct sctp_association *asoc;
3433 if (!sctp_auth_enable)
3436 if (optlen != sizeof(struct sctp_authkeyid))
3438 if (copy_from_user(&val, optval, optlen))
3441 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3442 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3445 return sctp_auth_set_active_key(sctp_sk(sk)->ep, asoc,
3446 val.scact_keynumber);
3450 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3452 * This set option will delete a shared secret key from use.
3454 static int sctp_setsockopt_del_key(struct sock *sk,
3455 char __user *optval,
3456 unsigned int optlen)
3458 struct sctp_authkeyid val;
3459 struct sctp_association *asoc;
3461 if (!sctp_auth_enable)
3464 if (optlen != sizeof(struct sctp_authkeyid))
3466 if (copy_from_user(&val, optval, optlen))
3469 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3470 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3473 return sctp_auth_del_key_id(sctp_sk(sk)->ep, asoc,
3474 val.scact_keynumber);
3479 * 8.1.23 SCTP_AUTO_ASCONF
3481 * This option will enable or disable the use of the automatic generation of
3482 * ASCONF chunks to add and delete addresses to an existing association. Note
3483 * that this option has two caveats namely: a) it only affects sockets that
3484 * are bound to all addresses available to the SCTP stack, and b) the system
3485 * administrator may have an overriding control that turns the ASCONF feature
3486 * off no matter what setting the socket option may have.
3487 * This option expects an integer boolean flag, where a non-zero value turns on
3488 * the option, and a zero value turns off the option.
3489 * Note. In this implementation, socket operation overrides default parameter
3490 * being set by sysctl as well as FreeBSD implementation
3492 static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3493 unsigned int optlen)
3496 struct sctp_sock *sp = sctp_sk(sk);
3498 if (optlen < sizeof(int))
3500 if (get_user(val, (int __user *)optval))
3502 if (!sctp_is_ep_boundall(sk) && val)
3504 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3507 spin_lock_bh(&sctp_globals.addr_wq_lock);
3508 if (val == 0 && sp->do_auto_asconf) {
3509 list_del(&sp->auto_asconf_list);
3510 sp->do_auto_asconf = 0;
3511 } else if (val && !sp->do_auto_asconf) {
3512 list_add_tail(&sp->auto_asconf_list,
3513 &sctp_auto_asconf_splist);
3514 sp->do_auto_asconf = 1;
3516 spin_unlock_bh(&sctp_globals.addr_wq_lock);
3521 /* API 6.2 setsockopt(), getsockopt()
3523 * Applications use setsockopt() and getsockopt() to set or retrieve
3524 * socket options. Socket options are used to change the default
3525 * behavior of sockets calls. They are described in Section 7.
3529 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
3530 * int __user *optlen);
3531 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
3534 * sd - the socket descript.
3535 * level - set to IPPROTO_SCTP for all SCTP options.
3536 * optname - the option name.
3537 * optval - the buffer to store the value of the option.
3538 * optlen - the size of the buffer.
3540 SCTP_STATIC int sctp_setsockopt(struct sock *sk, int level, int optname,
3541 char __user *optval, unsigned int optlen)
3545 SCTP_DEBUG_PRINTK("sctp_setsockopt(sk: %p... optname: %d)\n",
3548 /* I can hardly begin to describe how wrong this is. This is
3549 * so broken as to be worse than useless. The API draft
3550 * REALLY is NOT helpful here... I am not convinced that the
3551 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
3552 * are at all well-founded.
3554 if (level != SOL_SCTP) {
3555 struct sctp_af *af = sctp_sk(sk)->pf->af;
3556 retval = af->setsockopt(sk, level, optname, optval, optlen);
3563 case SCTP_SOCKOPT_BINDX_ADD:
3564 /* 'optlen' is the size of the addresses buffer. */
3565 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3566 optlen, SCTP_BINDX_ADD_ADDR);
3569 case SCTP_SOCKOPT_BINDX_REM:
3570 /* 'optlen' is the size of the addresses buffer. */
3571 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3572 optlen, SCTP_BINDX_REM_ADDR);
3575 case SCTP_SOCKOPT_CONNECTX_OLD:
3576 /* 'optlen' is the size of the addresses buffer. */
3577 retval = sctp_setsockopt_connectx_old(sk,
3578 (struct sockaddr __user *)optval,
3582 case SCTP_SOCKOPT_CONNECTX:
3583 /* 'optlen' is the size of the addresses buffer. */