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, see
32 * <http://www.gnu.org/licenses/>.
34 * Please send any bug reports or fixes you make to the
36 * lksctp developers <linux-sctp@vger.kernel.org>
38 * Written or modified by:
39 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Narasimha Budihal <narsi@refcode.org>
41 * Karl Knutson <karl@athena.chicago.il.us>
42 * Jon Grimm <jgrimm@us.ibm.com>
43 * Xingang Guo <xingang.guo@intel.com>
44 * Daisy Chang <daisyc@us.ibm.com>
45 * Sridhar Samudrala <samudrala@us.ibm.com>
46 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
47 * Ardelle Fan <ardelle.fan@intel.com>
48 * Ryan Layer <rmlayer@us.ibm.com>
49 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
50 * Kevin Gao <kevin.gao@intel.com>
53 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
55 #include <crypto/hash.h>
56 #include <linux/types.h>
57 #include <linux/kernel.h>
58 #include <linux/wait.h>
59 #include <linux/time.h>
60 #include <linux/sched/signal.h>
62 #include <linux/capability.h>
63 #include <linux/fcntl.h>
64 #include <linux/poll.h>
65 #include <linux/init.h>
66 #include <linux/slab.h>
67 #include <linux/file.h>
68 #include <linux/compat.h>
72 #include <net/route.h>
74 #include <net/inet_common.h>
75 #include <net/busy_poll.h>
77 #include <linux/socket.h> /* for sa_family_t */
78 #include <linux/export.h>
80 #include <net/sctp/sctp.h>
81 #include <net/sctp/sm.h>
82 #include <net/sctp/stream_sched.h>
84 /* Forward declarations for internal helper functions. */
85 static int sctp_writeable(struct sock *sk);
86 static void sctp_wfree(struct sk_buff *skb);
87 static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
89 static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
90 static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
91 static int sctp_wait_for_accept(struct sock *sk, long timeo);
92 static void sctp_wait_for_close(struct sock *sk, long timeo);
93 static void sctp_destruct_sock(struct sock *sk);
94 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
95 union sctp_addr *addr, int len);
96 static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
97 static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
98 static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
99 static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
100 static int sctp_send_asconf(struct sctp_association *asoc,
101 struct sctp_chunk *chunk);
102 static int sctp_do_bind(struct sock *, union sctp_addr *, int);
103 static int sctp_autobind(struct sock *sk);
104 static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
105 struct sctp_association *assoc,
106 enum sctp_socket_type type);
108 static unsigned long sctp_memory_pressure;
109 static atomic_long_t sctp_memory_allocated;
110 struct percpu_counter sctp_sockets_allocated;
112 static void sctp_enter_memory_pressure(struct sock *sk)
114 sctp_memory_pressure = 1;
118 /* Get the sndbuf space available at the time on the association. */
119 static inline int sctp_wspace(struct sctp_association *asoc)
123 if (asoc->ep->sndbuf_policy)
124 amt = asoc->sndbuf_used;
126 amt = sk_wmem_alloc_get(asoc->base.sk);
128 if (amt >= asoc->base.sk->sk_sndbuf) {
129 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
132 amt = sk_stream_wspace(asoc->base.sk);
137 amt = asoc->base.sk->sk_sndbuf - amt;
142 /* Increment the used sndbuf space count of the corresponding association by
143 * the size of the outgoing data chunk.
144 * Also, set the skb destructor for sndbuf accounting later.
146 * Since it is always 1-1 between chunk and skb, and also a new skb is always
147 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
148 * destructor in the data chunk skb for the purpose of the sndbuf space
151 static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
153 struct sctp_association *asoc = chunk->asoc;
154 struct sock *sk = asoc->base.sk;
156 /* The sndbuf space is tracked per association. */
157 sctp_association_hold(asoc);
160 sctp_auth_shkey_hold(chunk->shkey);
162 skb_set_owner_w(chunk->skb, sk);
164 chunk->skb->destructor = sctp_wfree;
165 /* Save the chunk pointer in skb for sctp_wfree to use later. */
166 skb_shinfo(chunk->skb)->destructor_arg = chunk;
168 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
169 sizeof(struct sk_buff) +
170 sizeof(struct sctp_chunk);
172 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
173 sk->sk_wmem_queued += chunk->skb->truesize;
174 sk_mem_charge(sk, chunk->skb->truesize);
177 static void sctp_clear_owner_w(struct sctp_chunk *chunk)
179 skb_orphan(chunk->skb);
182 static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
183 void (*cb)(struct sctp_chunk *))
186 struct sctp_outq *q = &asoc->outqueue;
187 struct sctp_transport *t;
188 struct sctp_chunk *chunk;
190 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
191 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
194 list_for_each_entry(chunk, &q->retransmit, transmitted_list)
197 list_for_each_entry(chunk, &q->sacked, transmitted_list)
200 list_for_each_entry(chunk, &q->abandoned, transmitted_list)
203 list_for_each_entry(chunk, &q->out_chunk_list, list)
207 static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
208 void (*cb)(struct sk_buff *, struct sock *))
211 struct sk_buff *skb, *tmp;
213 sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
216 sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
219 sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
223 /* Verify that this is a valid address. */
224 static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
229 /* Verify basic sockaddr. */
230 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
234 /* Is this a valid SCTP address? */
235 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
238 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
244 /* Look up the association by its id. If this is not a UDP-style
245 * socket, the ID field is always ignored.
247 struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
249 struct sctp_association *asoc = NULL;
251 /* If this is not a UDP-style socket, assoc id should be ignored. */
252 if (!sctp_style(sk, UDP)) {
253 /* Return NULL if the socket state is not ESTABLISHED. It
254 * could be a TCP-style listening socket or a socket which
255 * hasn't yet called connect() to establish an association.
257 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
260 /* Get the first and the only association from the list. */
261 if (!list_empty(&sctp_sk(sk)->ep->asocs))
262 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
263 struct sctp_association, asocs);
267 /* Otherwise this is a UDP-style socket. */
268 if (!id || (id == (sctp_assoc_t)-1))
271 spin_lock_bh(&sctp_assocs_id_lock);
272 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
273 spin_unlock_bh(&sctp_assocs_id_lock);
275 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
281 /* Look up the transport from an address and an assoc id. If both address and
282 * id are specified, the associations matching the address and the id should be
285 static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
286 struct sockaddr_storage *addr,
289 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
290 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
291 union sctp_addr *laddr = (union sctp_addr *)addr;
292 struct sctp_transport *transport;
294 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
297 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
304 id_asoc = sctp_id2assoc(sk, id);
305 if (id_asoc && (id_asoc != addr_asoc))
308 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
309 (union sctp_addr *)addr);
314 /* API 3.1.2 bind() - UDP Style Syntax
315 * The syntax of bind() is,
317 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
319 * sd - the socket descriptor returned by socket().
320 * addr - the address structure (struct sockaddr_in or struct
321 * sockaddr_in6 [RFC 2553]),
322 * addr_len - the size of the address structure.
324 static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
330 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
333 /* Disallow binding twice. */
334 if (!sctp_sk(sk)->ep->base.bind_addr.port)
335 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
345 static long sctp_get_port_local(struct sock *, union sctp_addr *);
347 /* Verify this is a valid sockaddr. */
348 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
349 union sctp_addr *addr, int len)
353 /* Check minimum size. */
354 if (len < sizeof (struct sockaddr))
357 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
360 if (addr->sa.sa_family == AF_INET6) {
361 if (len < SIN6_LEN_RFC2133)
363 /* V4 mapped address are really of AF_INET family */
364 if (ipv6_addr_v4mapped(&addr->v6.sin6_addr) &&
365 !opt->pf->af_supported(AF_INET, opt))
369 /* If we get this far, af is valid. */
370 af = sctp_get_af_specific(addr->sa.sa_family);
372 if (len < af->sockaddr_len)
378 /* Bind a local address either to an endpoint or to an association. */
379 static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
381 struct net *net = sock_net(sk);
382 struct sctp_sock *sp = sctp_sk(sk);
383 struct sctp_endpoint *ep = sp->ep;
384 struct sctp_bind_addr *bp = &ep->base.bind_addr;
389 /* Common sockaddr verification. */
390 af = sctp_sockaddr_af(sp, addr, len);
392 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
393 __func__, sk, addr, len);
397 snum = ntohs(addr->v4.sin_port);
399 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
400 __func__, sk, &addr->sa, bp->port, snum, len);
402 /* PF specific bind() address verification. */
403 if (!sp->pf->bind_verify(sp, addr))
404 return -EADDRNOTAVAIL;
406 /* We must either be unbound, or bind to the same port.
407 * It's OK to allow 0 ports if we are already bound.
408 * We'll just inhert an already bound port in this case
413 else if (snum != bp->port) {
414 pr_debug("%s: new port %d doesn't match existing port "
415 "%d\n", __func__, snum, bp->port);
420 if (snum && snum < inet_prot_sock(net) &&
421 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
424 /* See if the address matches any of the addresses we may have
425 * already bound before checking against other endpoints.
427 if (sctp_bind_addr_match(bp, addr, sp))
430 /* Make sure we are allowed to bind here.
431 * The function sctp_get_port_local() does duplicate address
434 addr->v4.sin_port = htons(snum);
435 if ((ret = sctp_get_port_local(sk, addr))) {
439 /* Refresh ephemeral port. */
441 bp->port = inet_sk(sk)->inet_num;
443 /* Add the address to the bind address list.
444 * Use GFP_ATOMIC since BHs will be disabled.
446 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
447 SCTP_ADDR_SRC, GFP_ATOMIC);
449 /* Copy back into socket for getsockname() use. */
451 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
452 sp->pf->to_sk_saddr(addr, sk);
458 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
460 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
461 * at any one time. If a sender, after sending an ASCONF chunk, decides
462 * it needs to transfer another ASCONF Chunk, it MUST wait until the
463 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
464 * subsequent ASCONF. Note this restriction binds each side, so at any
465 * time two ASCONF may be in-transit on any given association (one sent
466 * from each endpoint).
468 static int sctp_send_asconf(struct sctp_association *asoc,
469 struct sctp_chunk *chunk)
471 struct net *net = sock_net(asoc->base.sk);
474 /* If there is an outstanding ASCONF chunk, queue it for later
477 if (asoc->addip_last_asconf) {
478 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
482 /* Hold the chunk until an ASCONF_ACK is received. */
483 sctp_chunk_hold(chunk);
484 retval = sctp_primitive_ASCONF(net, asoc, chunk);
486 sctp_chunk_free(chunk);
488 asoc->addip_last_asconf = chunk;
494 /* Add a list of addresses as bind addresses to local endpoint or
497 * Basically run through each address specified in the addrs/addrcnt
498 * array/length pair, determine if it is IPv6 or IPv4 and call
499 * sctp_do_bind() on it.
501 * If any of them fails, then the operation will be reversed and the
502 * ones that were added will be removed.
504 * Only sctp_setsockopt_bindx() is supposed to call this function.
506 static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
511 struct sockaddr *sa_addr;
514 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
518 for (cnt = 0; cnt < addrcnt; cnt++) {
519 /* The list may contain either IPv4 or IPv6 address;
520 * determine the address length for walking thru the list.
523 af = sctp_get_af_specific(sa_addr->sa_family);
529 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
532 addr_buf += af->sockaddr_len;
536 /* Failed. Cleanup the ones that have been added */
538 sctp_bindx_rem(sk, addrs, cnt);
546 /* Send an ASCONF chunk with Add IP address parameters to all the peers of the
547 * associations that are part of the endpoint indicating that a list of local
548 * addresses are added to the endpoint.
550 * If any of the addresses is already in the bind address list of the
551 * association, we do not send the chunk for that association. But it will not
552 * affect other associations.
554 * Only sctp_setsockopt_bindx() is supposed to call this function.
556 static int sctp_send_asconf_add_ip(struct sock *sk,
557 struct sockaddr *addrs,
560 struct net *net = sock_net(sk);
561 struct sctp_sock *sp;
562 struct sctp_endpoint *ep;
563 struct sctp_association *asoc;
564 struct sctp_bind_addr *bp;
565 struct sctp_chunk *chunk;
566 struct sctp_sockaddr_entry *laddr;
567 union sctp_addr *addr;
568 union sctp_addr saveaddr;
575 if (!net->sctp.addip_enable)
581 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
582 __func__, sk, addrs, addrcnt);
584 list_for_each_entry(asoc, &ep->asocs, asocs) {
585 if (!asoc->peer.asconf_capable)
588 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
591 if (!sctp_state(asoc, ESTABLISHED))
594 /* Check if any address in the packed array of addresses is
595 * in the bind address list of the association. If so,
596 * do not send the asconf chunk to its peer, but continue with
597 * other associations.
600 for (i = 0; i < addrcnt; i++) {
602 af = sctp_get_af_specific(addr->v4.sin_family);
608 if (sctp_assoc_lookup_laddr(asoc, addr))
611 addr_buf += af->sockaddr_len;
616 /* Use the first valid address in bind addr list of
617 * association as Address Parameter of ASCONF CHUNK.
619 bp = &asoc->base.bind_addr;
620 p = bp->address_list.next;
621 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
622 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
623 addrcnt, SCTP_PARAM_ADD_IP);
629 /* Add the new addresses to the bind address list with
630 * use_as_src set to 0.
633 for (i = 0; i < addrcnt; i++) {
635 af = sctp_get_af_specific(addr->v4.sin_family);
636 memcpy(&saveaddr, addr, af->sockaddr_len);
637 retval = sctp_add_bind_addr(bp, &saveaddr,
639 SCTP_ADDR_NEW, GFP_ATOMIC);
640 addr_buf += af->sockaddr_len;
642 if (asoc->src_out_of_asoc_ok) {
643 struct sctp_transport *trans;
645 list_for_each_entry(trans,
646 &asoc->peer.transport_addr_list, transports) {
647 /* Clear the source and route cache */
648 sctp_transport_dst_release(trans);
649 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
650 2*asoc->pathmtu, 4380));
651 trans->ssthresh = asoc->peer.i.a_rwnd;
652 trans->rto = asoc->rto_initial;
653 sctp_max_rto(asoc, trans);
654 trans->rtt = trans->srtt = trans->rttvar = 0;
655 sctp_transport_route(trans, NULL,
656 sctp_sk(asoc->base.sk));
659 retval = sctp_send_asconf(asoc, chunk);
666 /* Remove a list of addresses from bind addresses list. Do not remove the
669 * Basically run through each address specified in the addrs/addrcnt
670 * array/length pair, determine if it is IPv6 or IPv4 and call
671 * sctp_del_bind() on it.
673 * If any of them fails, then the operation will be reversed and the
674 * ones that were removed will be added back.
676 * At least one address has to be left; if only one address is
677 * available, the operation will return -EBUSY.
679 * Only sctp_setsockopt_bindx() is supposed to call this function.
681 static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
683 struct sctp_sock *sp = sctp_sk(sk);
684 struct sctp_endpoint *ep = sp->ep;
686 struct sctp_bind_addr *bp = &ep->base.bind_addr;
689 union sctp_addr *sa_addr;
692 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
693 __func__, sk, addrs, addrcnt);
696 for (cnt = 0; cnt < addrcnt; cnt++) {
697 /* If the bind address list is empty or if there is only one
698 * bind address, there is nothing more to be removed (we need
699 * at least one address here).
701 if (list_empty(&bp->address_list) ||
702 (sctp_list_single_entry(&bp->address_list))) {
708 af = sctp_get_af_specific(sa_addr->sa.sa_family);
714 if (!af->addr_valid(sa_addr, sp, NULL)) {
715 retval = -EADDRNOTAVAIL;
719 if (sa_addr->v4.sin_port &&
720 sa_addr->v4.sin_port != htons(bp->port)) {
725 if (!sa_addr->v4.sin_port)
726 sa_addr->v4.sin_port = htons(bp->port);
728 /* FIXME - There is probably a need to check if sk->sk_saddr and
729 * sk->sk_rcv_addr are currently set to one of the addresses to
730 * be removed. This is something which needs to be looked into
731 * when we are fixing the outstanding issues with multi-homing
732 * socket routing and failover schemes. Refer to comments in
733 * sctp_do_bind(). -daisy
735 retval = sctp_del_bind_addr(bp, sa_addr);
737 addr_buf += af->sockaddr_len;
740 /* Failed. Add the ones that has been removed back */
742 sctp_bindx_add(sk, addrs, cnt);
750 /* Send an ASCONF chunk with Delete IP address parameters to all the peers of
751 * the associations that are part of the endpoint indicating that a list of
752 * local addresses are removed from the endpoint.
754 * If any of the addresses is already in the bind address list of the
755 * association, we do not send the chunk for that association. But it will not
756 * affect other associations.
758 * Only sctp_setsockopt_bindx() is supposed to call this function.
760 static int sctp_send_asconf_del_ip(struct sock *sk,
761 struct sockaddr *addrs,
764 struct net *net = sock_net(sk);
765 struct sctp_sock *sp;
766 struct sctp_endpoint *ep;
767 struct sctp_association *asoc;
768 struct sctp_transport *transport;
769 struct sctp_bind_addr *bp;
770 struct sctp_chunk *chunk;
771 union sctp_addr *laddr;
774 struct sctp_sockaddr_entry *saddr;
780 if (!net->sctp.addip_enable)
786 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
787 __func__, sk, addrs, addrcnt);
789 list_for_each_entry(asoc, &ep->asocs, asocs) {
791 if (!asoc->peer.asconf_capable)
794 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
797 if (!sctp_state(asoc, ESTABLISHED))
800 /* Check if any address in the packed array of addresses is
801 * not present in the bind address list of the association.
802 * If so, do not send the asconf chunk to its peer, but
803 * continue with other associations.
806 for (i = 0; i < addrcnt; i++) {
808 af = sctp_get_af_specific(laddr->v4.sin_family);
814 if (!sctp_assoc_lookup_laddr(asoc, laddr))
817 addr_buf += af->sockaddr_len;
822 /* Find one address in the association's bind address list
823 * that is not in the packed array of addresses. This is to
824 * make sure that we do not delete all the addresses in the
827 bp = &asoc->base.bind_addr;
828 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
830 if ((laddr == NULL) && (addrcnt == 1)) {
831 if (asoc->asconf_addr_del_pending)
833 asoc->asconf_addr_del_pending =
834 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
835 if (asoc->asconf_addr_del_pending == NULL) {
839 asoc->asconf_addr_del_pending->sa.sa_family =
841 asoc->asconf_addr_del_pending->v4.sin_port =
843 if (addrs->sa_family == AF_INET) {
844 struct sockaddr_in *sin;
846 sin = (struct sockaddr_in *)addrs;
847 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
848 } else if (addrs->sa_family == AF_INET6) {
849 struct sockaddr_in6 *sin6;
851 sin6 = (struct sockaddr_in6 *)addrs;
852 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
855 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
856 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
857 asoc->asconf_addr_del_pending);
859 asoc->src_out_of_asoc_ok = 1;
867 /* We do not need RCU protection throughout this loop
868 * because this is done under a socket lock from the
871 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
879 /* Reset use_as_src flag for the addresses in the bind address
880 * list that are to be deleted.
883 for (i = 0; i < addrcnt; i++) {
885 af = sctp_get_af_specific(laddr->v4.sin_family);
886 list_for_each_entry(saddr, &bp->address_list, list) {
887 if (sctp_cmp_addr_exact(&saddr->a, laddr))
888 saddr->state = SCTP_ADDR_DEL;
890 addr_buf += af->sockaddr_len;
893 /* Update the route and saddr entries for all the transports
894 * as some of the addresses in the bind address list are
895 * about to be deleted and cannot be used as source addresses.
897 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
899 sctp_transport_dst_release(transport);
900 sctp_transport_route(transport, NULL,
901 sctp_sk(asoc->base.sk));
905 /* We don't need to transmit ASCONF */
907 retval = sctp_send_asconf(asoc, chunk);
913 /* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
914 int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
916 struct sock *sk = sctp_opt2sk(sp);
917 union sctp_addr *addr;
920 /* It is safe to write port space in caller. */
922 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
923 af = sctp_get_af_specific(addr->sa.sa_family);
926 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
929 if (addrw->state == SCTP_ADDR_NEW)
930 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
932 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
935 /* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
938 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
941 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
942 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
945 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
946 * Section 3.1.2 for this usage.
948 * addrs is a pointer to an array of one or more socket addresses. Each
949 * address is contained in its appropriate structure (i.e. struct
950 * sockaddr_in or struct sockaddr_in6) the family of the address type
951 * must be used to distinguish the address length (note that this
952 * representation is termed a "packed array" of addresses). The caller
953 * specifies the number of addresses in the array with addrcnt.
955 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
956 * -1, and sets errno to the appropriate error code.
958 * For SCTP, the port given in each socket address must be the same, or
959 * sctp_bindx() will fail, setting errno to EINVAL.
961 * The flags parameter is formed from the bitwise OR of zero or more of
962 * the following currently defined flags:
964 * SCTP_BINDX_ADD_ADDR
966 * SCTP_BINDX_REM_ADDR
968 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
969 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
970 * addresses from the association. The two flags are mutually exclusive;
971 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
972 * not remove all addresses from an association; sctp_bindx() will
973 * reject such an attempt with EINVAL.
975 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
976 * additional addresses with an endpoint after calling bind(). Or use
977 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
978 * socket is associated with so that no new association accepted will be
979 * associated with those addresses. If the endpoint supports dynamic
980 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
981 * endpoint to send the appropriate message to the peer to change the
982 * peers address lists.
984 * Adding and removing addresses from a connected association is
985 * optional functionality. Implementations that do not support this
986 * functionality should return EOPNOTSUPP.
988 * Basically do nothing but copying the addresses from user to kernel
989 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
990 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
993 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
996 * sk The sk of the socket
997 * addrs The pointer to the addresses in user land
998 * addrssize Size of the addrs buffer
999 * op Operation to perform (add or remove, see the flags of
1002 * Returns 0 if ok, <0 errno code on error.
1004 static int sctp_setsockopt_bindx(struct sock *sk,
1005 struct sockaddr __user *addrs,
1006 int addrs_size, int op)
1008 struct sockaddr *kaddrs;
1012 struct sockaddr *sa_addr;
1016 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
1017 __func__, sk, addrs, addrs_size, op);
1019 if (unlikely(addrs_size <= 0))
1022 kaddrs = vmemdup_user(addrs, addrs_size);
1023 if (unlikely(IS_ERR(kaddrs)))
1024 return PTR_ERR(kaddrs);
1026 /* Walk through the addrs buffer and count the number of addresses. */
1028 while (walk_size < addrs_size) {
1029 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1035 af = sctp_get_af_specific(sa_addr->sa_family);
1037 /* If the address family is not supported or if this address
1038 * causes the address buffer to overflow return EINVAL.
1040 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1045 addr_buf += af->sockaddr_len;
1046 walk_size += af->sockaddr_len;
1051 case SCTP_BINDX_ADD_ADDR:
1052 /* Allow security module to validate bindx addresses. */
1053 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1054 (struct sockaddr *)kaddrs,
1058 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1061 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1064 case SCTP_BINDX_REM_ADDR:
1065 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1068 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1082 /* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1084 * Common routine for handling connect() and sctp_connectx().
1085 * Connect will come in with just a single address.
1087 static int __sctp_connect(struct sock *sk,
1088 struct sockaddr *kaddrs,
1090 sctp_assoc_t *assoc_id)
1092 struct net *net = sock_net(sk);
1093 struct sctp_sock *sp;
1094 struct sctp_endpoint *ep;
1095 struct sctp_association *asoc = NULL;
1096 struct sctp_association *asoc2;
1097 struct sctp_transport *transport;
1099 enum sctp_scope scope;
1104 union sctp_addr *sa_addr = NULL;
1106 unsigned short port;
1107 unsigned int f_flags = 0;
1112 /* connect() cannot be done on a socket that is already in ESTABLISHED
1113 * state - UDP-style peeled off socket or a TCP-style socket that
1114 * is already connected.
1115 * It cannot be done even on a TCP-style listening socket.
1117 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
1118 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1123 /* Walk through the addrs buffer and count the number of addresses. */
1125 while (walk_size < addrs_size) {
1128 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1134 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1136 /* If the address family is not supported or if this address
1137 * causes the address buffer to overflow return EINVAL.
1139 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1144 port = ntohs(sa_addr->v4.sin_port);
1146 /* Save current address so we can work with it */
1147 memcpy(&to, sa_addr, af->sockaddr_len);
1149 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
1153 /* Make sure the destination port is correctly set
1156 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1161 /* Check if there already is a matching association on the
1162 * endpoint (other than the one created here).
1164 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
1165 if (asoc2 && asoc2 != asoc) {
1166 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1173 /* If we could not find a matching association on the endpoint,
1174 * make sure that there is no peeled-off association matching
1175 * the peer address even on another socket.
1177 if (sctp_endpoint_is_peeled_off(ep, &to)) {
1178 err = -EADDRNOTAVAIL;
1183 /* If a bind() or sctp_bindx() is not called prior to
1184 * an sctp_connectx() call, the system picks an
1185 * ephemeral port and will choose an address set
1186 * equivalent to binding with a wildcard address.
1188 if (!ep->base.bind_addr.port) {
1189 if (sctp_autobind(sk)) {
1195 * If an unprivileged user inherits a 1-many
1196 * style socket with open associations on a
1197 * privileged port, it MAY be permitted to
1198 * accept new associations, but it SHOULD NOT
1199 * be permitted to open new associations.
1201 if (ep->base.bind_addr.port <
1202 inet_prot_sock(net) &&
1203 !ns_capable(net->user_ns,
1204 CAP_NET_BIND_SERVICE)) {
1210 scope = sctp_scope(&to);
1211 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1217 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1225 /* Prime the peer's transport structures. */
1226 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
1234 addr_buf += af->sockaddr_len;
1235 walk_size += af->sockaddr_len;
1238 /* In case the user of sctp_connectx() wants an association
1239 * id back, assign one now.
1242 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1247 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1252 /* Initialize sk's dport and daddr for getpeername() */
1253 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
1254 sp->pf->to_sk_daddr(sa_addr, sk);
1257 /* in-kernel sockets don't generally have a file allocated to them
1258 * if all they do is call sock_create_kern().
1260 if (sk->sk_socket->file)
1261 f_flags = sk->sk_socket->file->f_flags;
1263 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1266 *assoc_id = asoc->assoc_id;
1268 err = sctp_wait_for_connect(asoc, &timeo);
1269 /* Note: the asoc may be freed after the return of
1270 * sctp_wait_for_connect.
1273 /* Don't free association on exit. */
1277 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1278 __func__, asoc, kaddrs, err);
1281 /* sctp_primitive_ASSOCIATE may have added this association
1282 * To the hash table, try to unhash it, just in case, its a noop
1283 * if it wasn't hashed so we're safe
1285 sctp_association_free(asoc);
1290 /* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1293 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1294 * sctp_assoc_t *asoc);
1296 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1297 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1298 * or IPv6 addresses.
1300 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1301 * Section 3.1.2 for this usage.
1303 * addrs is a pointer to an array of one or more socket addresses. Each
1304 * address is contained in its appropriate structure (i.e. struct
1305 * sockaddr_in or struct sockaddr_in6) the family of the address type
1306 * must be used to distengish the address length (note that this
1307 * representation is termed a "packed array" of addresses). The caller
1308 * specifies the number of addresses in the array with addrcnt.
1310 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1311 * the association id of the new association. On failure, sctp_connectx()
1312 * returns -1, and sets errno to the appropriate error code. The assoc_id
1313 * is not touched by the kernel.
1315 * For SCTP, the port given in each socket address must be the same, or
1316 * sctp_connectx() will fail, setting errno to EINVAL.
1318 * An application can use sctp_connectx to initiate an association with
1319 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1320 * allows a caller to specify multiple addresses at which a peer can be
1321 * reached. The way the SCTP stack uses the list of addresses to set up
1322 * the association is implementation dependent. This function only
1323 * specifies that the stack will try to make use of all the addresses in
1324 * the list when needed.
1326 * Note that the list of addresses passed in is only used for setting up
1327 * the association. It does not necessarily equal the set of addresses
1328 * the peer uses for the resulting association. If the caller wants to
1329 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1330 * retrieve them after the association has been set up.
1332 * Basically do nothing but copying the addresses from user to kernel
1333 * land and invoking either sctp_connectx(). This is used for tunneling
1334 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1336 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1339 * sk The sk of the socket
1340 * addrs The pointer to the addresses in user land
1341 * addrssize Size of the addrs buffer
1343 * Returns >=0 if ok, <0 errno code on error.
1345 static int __sctp_setsockopt_connectx(struct sock *sk,
1346 struct sockaddr __user *addrs,
1348 sctp_assoc_t *assoc_id)
1350 struct sockaddr *kaddrs;
1353 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1354 __func__, sk, addrs, addrs_size);
1356 if (unlikely(addrs_size <= 0))
1359 kaddrs = vmemdup_user(addrs, addrs_size);
1360 if (unlikely(IS_ERR(kaddrs)))
1361 return PTR_ERR(kaddrs);
1363 /* Allow security module to validate connectx addresses. */
1364 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1365 (struct sockaddr *)kaddrs,
1370 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
1379 * This is an older interface. It's kept for backward compatibility
1380 * to the option that doesn't provide association id.
1382 static int sctp_setsockopt_connectx_old(struct sock *sk,
1383 struct sockaddr __user *addrs,
1386 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1390 * New interface for the API. The since the API is done with a socket
1391 * option, to make it simple we feed back the association id is as a return
1392 * indication to the call. Error is always negative and association id is
1395 static int sctp_setsockopt_connectx(struct sock *sk,
1396 struct sockaddr __user *addrs,
1399 sctp_assoc_t assoc_id = 0;
1402 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1411 * New (hopefully final) interface for the API.
1412 * We use the sctp_getaddrs_old structure so that use-space library
1413 * can avoid any unnecessary allocations. The only different part
1414 * is that we store the actual length of the address buffer into the
1415 * addrs_num structure member. That way we can re-use the existing
1418 #ifdef CONFIG_COMPAT
1419 struct compat_sctp_getaddrs_old {
1420 sctp_assoc_t assoc_id;
1422 compat_uptr_t addrs; /* struct sockaddr * */
1426 static int sctp_getsockopt_connectx3(struct sock *sk, int len,
1427 char __user *optval,
1430 struct sctp_getaddrs_old param;
1431 sctp_assoc_t assoc_id = 0;
1434 #ifdef CONFIG_COMPAT
1435 if (in_compat_syscall()) {
1436 struct compat_sctp_getaddrs_old param32;
1438 if (len < sizeof(param32))
1440 if (copy_from_user(¶m32, optval, sizeof(param32)))
1443 param.assoc_id = param32.assoc_id;
1444 param.addr_num = param32.addr_num;
1445 param.addrs = compat_ptr(param32.addrs);
1449 if (len < sizeof(param))
1451 if (copy_from_user(¶m, optval, sizeof(param)))
1455 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1456 param.addrs, param.addr_num,
1458 if (err == 0 || err == -EINPROGRESS) {
1459 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1461 if (put_user(sizeof(assoc_id), optlen))
1468 /* API 3.1.4 close() - UDP Style Syntax
1469 * Applications use close() to perform graceful shutdown (as described in
1470 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1471 * by a UDP-style socket.
1475 * ret = close(int sd);
1477 * sd - the socket descriptor of the associations to be closed.
1479 * To gracefully shutdown a specific association represented by the
1480 * UDP-style socket, an application should use the sendmsg() call,
1481 * passing no user data, but including the appropriate flag in the
1482 * ancillary data (see Section xxxx).
1484 * If sd in the close() call is a branched-off socket representing only
1485 * one association, the shutdown is performed on that association only.
1487 * 4.1.6 close() - TCP Style Syntax
1489 * Applications use close() to gracefully close down an association.
1493 * int close(int sd);
1495 * sd - the socket descriptor of the association to be closed.
1497 * After an application calls close() on a socket descriptor, no further
1498 * socket operations will succeed on that descriptor.
1500 * API 7.1.4 SO_LINGER
1502 * An application using the TCP-style socket can use this option to
1503 * perform the SCTP ABORT primitive. The linger option structure is:
1506 * int l_onoff; // option on/off
1507 * int l_linger; // linger time
1510 * To enable the option, set l_onoff to 1. If the l_linger value is set
1511 * to 0, calling close() is the same as the ABORT primitive. If the
1512 * value is set to a negative value, the setsockopt() call will return
1513 * an error. If the value is set to a positive value linger_time, the
1514 * close() can be blocked for at most linger_time ms. If the graceful
1515 * shutdown phase does not finish during this period, close() will
1516 * return but the graceful shutdown phase continues in the system.
1518 static void sctp_close(struct sock *sk, long timeout)
1520 struct net *net = sock_net(sk);
1521 struct sctp_endpoint *ep;
1522 struct sctp_association *asoc;
1523 struct list_head *pos, *temp;
1524 unsigned int data_was_unread;
1526 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
1528 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
1529 sk->sk_shutdown = SHUTDOWN_MASK;
1530 inet_sk_set_state(sk, SCTP_SS_CLOSING);
1532 ep = sctp_sk(sk)->ep;
1534 /* Clean up any skbs sitting on the receive queue. */
1535 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1536 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1538 /* Walk all associations on an endpoint. */
1539 list_for_each_safe(pos, temp, &ep->asocs) {
1540 asoc = list_entry(pos, struct sctp_association, asocs);
1542 if (sctp_style(sk, TCP)) {
1543 /* A closed association can still be in the list if
1544 * it belongs to a TCP-style listening socket that is
1545 * not yet accepted. If so, free it. If not, send an
1546 * ABORT or SHUTDOWN based on the linger options.
1548 if (sctp_state(asoc, CLOSED)) {
1549 sctp_association_free(asoc);
1554 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1555 !skb_queue_empty(&asoc->ulpq.reasm) ||
1556 !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
1557 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
1558 struct sctp_chunk *chunk;
1560 chunk = sctp_make_abort_user(asoc, NULL, 0);
1561 sctp_primitive_ABORT(net, asoc, chunk);
1563 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1566 /* On a TCP-style socket, block for at most linger_time if set. */
1567 if (sctp_style(sk, TCP) && timeout)
1568 sctp_wait_for_close(sk, timeout);
1570 /* This will run the backlog queue. */
1573 /* Supposedly, no process has access to the socket, but
1574 * the net layers still may.
1575 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1576 * held and that should be grabbed before socket lock.
1578 spin_lock_bh(&net->sctp.addr_wq_lock);
1579 bh_lock_sock_nested(sk);
1581 /* Hold the sock, since sk_common_release() will put sock_put()
1582 * and we have just a little more cleanup.
1585 sk_common_release(sk);
1588 spin_unlock_bh(&net->sctp.addr_wq_lock);
1592 SCTP_DBG_OBJCNT_DEC(sock);
1595 /* Handle EPIPE error. */
1596 static int sctp_error(struct sock *sk, int flags, int err)
1599 err = sock_error(sk) ? : -EPIPE;
1600 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1601 send_sig(SIGPIPE, current, 0);
1605 /* API 3.1.3 sendmsg() - UDP Style Syntax
1607 * An application uses sendmsg() and recvmsg() calls to transmit data to
1608 * and receive data from its peer.
1610 * ssize_t sendmsg(int socket, const struct msghdr *message,
1613 * socket - the socket descriptor of the endpoint.
1614 * message - pointer to the msghdr structure which contains a single
1615 * user message and possibly some ancillary data.
1617 * See Section 5 for complete description of the data
1620 * flags - flags sent or received with the user message, see Section
1621 * 5 for complete description of the flags.
1623 * Note: This function could use a rewrite especially when explicit
1624 * connect support comes in.
1626 /* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1628 static int sctp_msghdr_parse(const struct msghdr *msg,
1629 struct sctp_cmsgs *cmsgs);
1631 static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1632 struct sctp_sndrcvinfo *srinfo,
1633 const struct msghdr *msg, size_t msg_len)
1638 if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1641 if (msg_len > sk->sk_sndbuf)
1644 memset(cmsgs, 0, sizeof(*cmsgs));
1645 err = sctp_msghdr_parse(msg, cmsgs);
1647 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1651 memset(srinfo, 0, sizeof(*srinfo));
1652 if (cmsgs->srinfo) {
1653 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1654 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1655 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1656 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1657 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1658 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1662 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1663 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1664 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1665 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1666 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1669 if (cmsgs->prinfo) {
1670 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1671 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1672 cmsgs->prinfo->pr_policy);
1675 sflags = srinfo->sinfo_flags;
1676 if (!sflags && msg_len)
1679 if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1682 if (((sflags & SCTP_EOF) && msg_len > 0) ||
1683 (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1686 if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1692 static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1693 struct sctp_cmsgs *cmsgs,
1694 union sctp_addr *daddr,
1695 struct sctp_transport **tp)
1697 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1698 struct net *net = sock_net(sk);
1699 struct sctp_association *asoc;
1700 enum sctp_scope scope;
1701 struct cmsghdr *cmsg;
1707 if (sflags & (SCTP_EOF | SCTP_ABORT))
1710 if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1711 sctp_sstate(sk, CLOSING)))
1712 return -EADDRNOTAVAIL;
1714 if (sctp_endpoint_is_peeled_off(ep, daddr))
1715 return -EADDRNOTAVAIL;
1717 if (!ep->base.bind_addr.port) {
1718 if (sctp_autobind(sk))
1721 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
1722 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1726 scope = sctp_scope(daddr);
1728 /* Label connection socket for first association 1-to-many
1729 * style for client sequence socket()->sendmsg(). This
1730 * needs to be done before sctp_assoc_add_peer() as that will
1731 * set up the initial packet that needs to account for any
1732 * security ip options (CIPSO/CALIPSO) added to the packet.
1734 af = sctp_get_af_specific(daddr->sa.sa_family);
1737 err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1738 (struct sockaddr *)daddr,
1743 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1747 if (sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL) < 0) {
1753 struct sctp_initmsg *init = cmsgs->init;
1755 if (init->sinit_num_ostreams) {
1756 __u16 outcnt = init->sinit_num_ostreams;
1758 asoc->c.sinit_num_ostreams = outcnt;
1759 /* outcnt has been changed, need to re-init stream */
1760 err = sctp_stream_init(&asoc->stream, outcnt, 0,
1766 if (init->sinit_max_instreams)
1767 asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1769 if (init->sinit_max_attempts)
1770 asoc->max_init_attempts = init->sinit_max_attempts;
1772 if (init->sinit_max_init_timeo)
1773 asoc->max_init_timeo =
1774 msecs_to_jiffies(init->sinit_max_init_timeo);
1777 *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1783 if (!cmsgs->addrs_msg)
1786 /* sendv addr list parse */
1787 for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1788 struct sctp_transport *transport;
1789 struct sctp_association *old;
1790 union sctp_addr _daddr;
1793 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1794 (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1795 cmsg->cmsg_type != SCTP_DSTADDRV6))
1799 memset(daddr, 0, sizeof(*daddr));
1800 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1801 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
1802 if (dlen < sizeof(struct in_addr)) {
1807 dlen = sizeof(struct in_addr);
1808 daddr->v4.sin_family = AF_INET;
1809 daddr->v4.sin_port = htons(asoc->peer.port);
1810 memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1812 if (dlen < sizeof(struct in6_addr)) {
1817 dlen = sizeof(struct in6_addr);
1818 daddr->v6.sin6_family = AF_INET6;
1819 daddr->v6.sin6_port = htons(asoc->peer.port);
1820 memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1822 err = sctp_verify_addr(sk, daddr, sizeof(*daddr));
1826 old = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1827 if (old && old != asoc) {
1828 if (old->state >= SCTP_STATE_ESTABLISHED)
1835 if (sctp_endpoint_is_peeled_off(ep, daddr)) {
1836 err = -EADDRNOTAVAIL;
1840 transport = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL,
1851 sctp_association_free(asoc);
1855 static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1856 __u16 sflags, struct msghdr *msg,
1859 struct sock *sk = asoc->base.sk;
1860 struct net *net = sock_net(sk);
1862 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1865 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1866 !sctp_state(asoc, ESTABLISHED))
1869 if (sflags & SCTP_EOF) {
1870 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1871 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1876 if (sflags & SCTP_ABORT) {
1877 struct sctp_chunk *chunk;
1879 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1883 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1884 sctp_primitive_ABORT(net, asoc, chunk);
1892 static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1893 struct msghdr *msg, size_t msg_len,
1894 struct sctp_transport *transport,
1895 struct sctp_sndrcvinfo *sinfo)
1897 struct sock *sk = asoc->base.sk;
1898 struct net *net = sock_net(sk);
1899 struct sctp_datamsg *datamsg;
1900 bool wait_connect = false;
1901 struct sctp_chunk *chunk;
1905 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1910 if (unlikely(!asoc->stream.out[sinfo->sinfo_stream].ext)) {
1911 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1916 if (sctp_sk(sk)->disable_fragments && msg_len > asoc->frag_point) {
1921 if (asoc->pmtu_pending)
1922 sctp_assoc_pending_pmtu(asoc);
1924 if (sctp_wspace(asoc) < msg_len)
1925 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1927 if (!sctp_wspace(asoc)) {
1928 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1929 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1934 if (sctp_state(asoc, CLOSED)) {
1935 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1939 if (sctp_sk(sk)->strm_interleave) {
1940 timeo = sock_sndtimeo(sk, 0);
1941 err = sctp_wait_for_connect(asoc, &timeo);
1945 wait_connect = true;
1948 pr_debug("%s: we associated primitively\n", __func__);
1951 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1952 if (IS_ERR(datamsg)) {
1953 err = PTR_ERR(datamsg);
1957 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1959 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1960 sctp_chunk_hold(chunk);
1961 sctp_set_owner_w(chunk);
1962 chunk->transport = transport;
1965 err = sctp_primitive_SEND(net, asoc, datamsg);
1967 sctp_datamsg_free(datamsg);
1971 pr_debug("%s: we sent primitively\n", __func__);
1973 sctp_datamsg_put(datamsg);
1975 if (unlikely(wait_connect)) {
1976 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1977 sctp_wait_for_connect(asoc, &timeo);
1986 static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1987 const struct msghdr *msg,
1988 struct sctp_cmsgs *cmsgs)
1990 union sctp_addr *daddr = NULL;
1993 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1994 int len = msg->msg_namelen;
1996 if (len > sizeof(*daddr))
1997 len = sizeof(*daddr);
1999 daddr = (union sctp_addr *)msg->msg_name;
2001 err = sctp_verify_addr(sk, daddr, len);
2003 return ERR_PTR(err);
2009 static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
2010 struct sctp_sndrcvinfo *sinfo,
2011 struct sctp_cmsgs *cmsgs)
2013 if (!cmsgs->srinfo && !cmsgs->sinfo) {
2014 sinfo->sinfo_stream = asoc->default_stream;
2015 sinfo->sinfo_ppid = asoc->default_ppid;
2016 sinfo->sinfo_context = asoc->default_context;
2017 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
2020 sinfo->sinfo_flags = asoc->default_flags;
2023 if (!cmsgs->srinfo && !cmsgs->prinfo)
2024 sinfo->sinfo_timetolive = asoc->default_timetolive;
2026 if (cmsgs->authinfo) {
2027 /* Reuse sinfo_tsn to indicate that authinfo was set and
2028 * sinfo_ssn to save the keyid on tx path.
2030 sinfo->sinfo_tsn = 1;
2031 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
2035 static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
2037 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
2038 struct sctp_transport *transport = NULL;
2039 struct sctp_sndrcvinfo _sinfo, *sinfo;
2040 struct sctp_association *asoc;
2041 struct sctp_cmsgs cmsgs;
2042 union sctp_addr *daddr;
2047 /* Parse and get snd_info */
2048 err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
2053 sflags = sinfo->sinfo_flags;
2055 /* Get daddr from msg */
2056 daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
2057 if (IS_ERR(daddr)) {
2058 err = PTR_ERR(daddr);
2064 /* SCTP_SENDALL process */
2065 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
2066 list_for_each_entry(asoc, &ep->asocs, asocs) {
2067 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2074 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2076 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
2081 iov_iter_revert(&msg->msg_iter, err);
2087 /* Get and check or create asoc */
2089 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
2091 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2096 err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2101 asoc = transport->asoc;
2105 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2108 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
2114 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
2119 /* Update snd_info with the asoc */
2120 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2122 /* Send msg to the asoc */
2123 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
2124 if (err < 0 && err != -ESRCH && new)
2125 sctp_association_free(asoc);
2130 return sctp_error(sk, msg->msg_flags, err);
2133 /* This is an extended version of skb_pull() that removes the data from the
2134 * start of a skb even when data is spread across the list of skb's in the
2135 * frag_list. len specifies the total amount of data that needs to be removed.
2136 * when 'len' bytes could be removed from the skb, it returns 0.
2137 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2138 * could not be removed.
2140 static int sctp_skb_pull(struct sk_buff *skb, int len)
2142 struct sk_buff *list;
2143 int skb_len = skb_headlen(skb);
2146 if (len <= skb_len) {
2147 __skb_pull(skb, len);
2151 __skb_pull(skb, skb_len);
2153 skb_walk_frags(skb, list) {
2154 rlen = sctp_skb_pull(list, len);
2155 skb->len -= (len-rlen);
2156 skb->data_len -= (len-rlen);
2167 /* API 3.1.3 recvmsg() - UDP Style Syntax
2169 * ssize_t recvmsg(int socket, struct msghdr *message,
2172 * socket - the socket descriptor of the endpoint.
2173 * message - pointer to the msghdr structure which contains a single
2174 * user message and possibly some ancillary data.
2176 * See Section 5 for complete description of the data
2179 * flags - flags sent or received with the user message, see Section
2180 * 5 for complete description of the flags.
2182 static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2183 int noblock, int flags, int *addr_len)
2185 struct sctp_ulpevent *event = NULL;
2186 struct sctp_sock *sp = sctp_sk(sk);
2187 struct sk_buff *skb, *head_skb;
2192 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2193 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2198 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
2199 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
2204 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2208 /* Get the total length of the skb including any skb's in the
2217 err = skb_copy_datagram_msg(skb, 0, msg, copied);
2219 event = sctp_skb2event(skb);
2224 if (event->chunk && event->chunk->head_skb)
2225 head_skb = event->chunk->head_skb;
2228 sock_recv_ts_and_drops(msg, sk, head_skb);
2229 if (sctp_ulpevent_is_notification(event)) {
2230 msg->msg_flags |= MSG_NOTIFICATION;
2231 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2233 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
2236 /* Check if we allow SCTP_NXTINFO. */
2237 if (sp->recvnxtinfo)
2238 sctp_ulpevent_read_nxtinfo(event, msg, sk);
2239 /* Check if we allow SCTP_RCVINFO. */
2240 if (sp->recvrcvinfo)
2241 sctp_ulpevent_read_rcvinfo(event, msg);
2242 /* Check if we allow SCTP_SNDRCVINFO. */
2243 if (sp->subscribe.sctp_data_io_event)
2244 sctp_ulpevent_read_sndrcvinfo(event, msg);
2248 /* If skb's length exceeds the user's buffer, update the skb and
2249 * push it back to the receive_queue so that the next call to
2250 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2252 if (skb_len > copied) {
2253 msg->msg_flags &= ~MSG_EOR;
2254 if (flags & MSG_PEEK)
2256 sctp_skb_pull(skb, copied);
2257 skb_queue_head(&sk->sk_receive_queue, skb);
2259 /* When only partial message is copied to the user, increase
2260 * rwnd by that amount. If all the data in the skb is read,
2261 * rwnd is updated when the event is freed.
2263 if (!sctp_ulpevent_is_notification(event))
2264 sctp_assoc_rwnd_increase(event->asoc, copied);
2266 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2267 (event->msg_flags & MSG_EOR))
2268 msg->msg_flags |= MSG_EOR;
2270 msg->msg_flags &= ~MSG_EOR;
2273 if (flags & MSG_PEEK) {
2274 /* Release the skb reference acquired after peeking the skb in
2275 * sctp_skb_recv_datagram().
2279 /* Free the event which includes releasing the reference to
2280 * the owner of the skb, freeing the skb and updating the
2283 sctp_ulpevent_free(event);
2290 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2292 * This option is a on/off flag. If enabled no SCTP message
2293 * fragmentation will be performed. Instead if a message being sent
2294 * exceeds the current PMTU size, the message will NOT be sent and
2295 * instead a error will be indicated to the user.
2297 static int sctp_setsockopt_disable_fragments(struct sock *sk,
2298 char __user *optval,
2299 unsigned int optlen)
2303 if (optlen < sizeof(int))
2306 if (get_user(val, (int __user *)optval))
2309 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2314 static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
2315 unsigned int optlen)
2317 struct sctp_association *asoc;
2318 struct sctp_ulpevent *event;
2320 if (optlen > sizeof(struct sctp_event_subscribe))
2322 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2325 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2326 * if there is no data to be sent or retransmit, the stack will
2327 * immediately send up this notification.
2329 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2330 &sctp_sk(sk)->subscribe)) {
2331 asoc = sctp_id2assoc(sk, 0);
2333 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2334 event = sctp_ulpevent_make_sender_dry_event(asoc,
2335 GFP_USER | __GFP_NOWARN);
2339 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
2346 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2348 * This socket option is applicable to the UDP-style socket only. When
2349 * set it will cause associations that are idle for more than the
2350 * specified number of seconds to automatically close. An association
2351 * being idle is defined an association that has NOT sent or received
2352 * user data. The special value of '0' indicates that no automatic
2353 * close of any associations should be performed. The option expects an
2354 * integer defining the number of seconds of idle time before an
2355 * association is closed.
2357 static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
2358 unsigned int optlen)
2360 struct sctp_sock *sp = sctp_sk(sk);
2361 struct net *net = sock_net(sk);
2363 /* Applicable to UDP-style socket only */
2364 if (sctp_style(sk, TCP))
2366 if (optlen != sizeof(int))
2368 if (copy_from_user(&sp->autoclose, optval, optlen))
2371 if (sp->autoclose > net->sctp.max_autoclose)
2372 sp->autoclose = net->sctp.max_autoclose;
2377 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2379 * Applications can enable or disable heartbeats for any peer address of
2380 * an association, modify an address's heartbeat interval, force a
2381 * heartbeat to be sent immediately, and adjust the address's maximum
2382 * number of retransmissions sent before an address is considered
2383 * unreachable. The following structure is used to access and modify an
2384 * address's parameters:
2386 * struct sctp_paddrparams {
2387 * sctp_assoc_t spp_assoc_id;
2388 * struct sockaddr_storage spp_address;
2389 * uint32_t spp_hbinterval;
2390 * uint16_t spp_pathmaxrxt;
2391 * uint32_t spp_pathmtu;
2392 * uint32_t spp_sackdelay;
2393 * uint32_t spp_flags;
2396 * spp_assoc_id - (one-to-many style socket) This is filled in the
2397 * application, and identifies the association for
2399 * spp_address - This specifies which address is of interest.
2400 * spp_hbinterval - This contains the value of the heartbeat interval,
2401 * in milliseconds. If a value of zero
2402 * is present in this field then no changes are to
2403 * be made to this parameter.
2404 * spp_pathmaxrxt - This contains the maximum number of
2405 * retransmissions before this address shall be
2406 * considered unreachable. If a value of zero
2407 * is present in this field then no changes are to
2408 * be made to this parameter.
2409 * spp_pathmtu - When Path MTU discovery is disabled the value
2410 * specified here will be the "fixed" path mtu.
2411 * Note that if the spp_address field is empty
2412 * then all associations on this address will
2413 * have this fixed path mtu set upon them.
2415 * spp_sackdelay - When delayed sack is enabled, this value specifies
2416 * the number of milliseconds that sacks will be delayed
2417 * for. This value will apply to all addresses of an
2418 * association if the spp_address field is empty. Note
2419 * also, that if delayed sack is enabled and this
2420 * value is set to 0, no change is made to the last
2421 * recorded delayed sack timer value.
2423 * spp_flags - These flags are used to control various features
2424 * on an association. The flag field may contain
2425 * zero or more of the following options.
2427 * SPP_HB_ENABLE - Enable heartbeats on the
2428 * specified address. Note that if the address
2429 * field is empty all addresses for the association
2430 * have heartbeats enabled upon them.
2432 * SPP_HB_DISABLE - Disable heartbeats on the
2433 * speicifed address. Note that if the address
2434 * field is empty all addresses for the association
2435 * will have their heartbeats disabled. Note also
2436 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2437 * mutually exclusive, only one of these two should
2438 * be specified. Enabling both fields will have
2439 * undetermined results.
2441 * SPP_HB_DEMAND - Request a user initiated heartbeat
2442 * to be made immediately.
2444 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2445 * heartbeat delayis to be set to the value of 0
2448 * SPP_PMTUD_ENABLE - This field will enable PMTU
2449 * discovery upon the specified address. Note that
2450 * if the address feild is empty then all addresses
2451 * on the association are effected.
2453 * SPP_PMTUD_DISABLE - This field will disable PMTU
2454 * discovery upon the specified address. Note that
2455 * if the address feild is empty then all addresses
2456 * on the association are effected. Not also that
2457 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2458 * exclusive. Enabling both will have undetermined
2461 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2462 * on delayed sack. The time specified in spp_sackdelay
2463 * is used to specify the sack delay for this address. Note
2464 * that if spp_address is empty then all addresses will
2465 * enable delayed sack and take on the sack delay
2466 * value specified in spp_sackdelay.
2467 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2468 * off delayed sack. If the spp_address field is blank then
2469 * delayed sack is disabled for the entire association. Note
2470 * also that this field is mutually exclusive to
2471 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2474 static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2475 struct sctp_transport *trans,
2476 struct sctp_association *asoc,
2477 struct sctp_sock *sp,
2480 int sackdelay_change)
2484 if (params->spp_flags & SPP_HB_DEMAND && trans) {
2485 struct net *net = sock_net(trans->asoc->base.sk);
2487 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
2492 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2493 * this field is ignored. Note also that a value of zero indicates
2494 * the current setting should be left unchanged.
2496 if (params->spp_flags & SPP_HB_ENABLE) {
2498 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2499 * set. This lets us use 0 value when this flag
2502 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2503 params->spp_hbinterval = 0;
2505 if (params->spp_hbinterval ||
2506 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2509 msecs_to_jiffies(params->spp_hbinterval);
2512 msecs_to_jiffies(params->spp_hbinterval);
2514 sp->hbinterval = params->spp_hbinterval;
2521 trans->param_flags =
2522 (trans->param_flags & ~SPP_HB) | hb_change;
2525 (asoc->param_flags & ~SPP_HB) | hb_change;
2528 (sp->param_flags & ~SPP_HB) | hb_change;
2532 /* When Path MTU discovery is disabled the value specified here will
2533 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2534 * include the flag SPP_PMTUD_DISABLE for this field to have any
2537 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
2539 trans->pathmtu = params->spp_pathmtu;
2540 sctp_assoc_sync_pmtu(asoc);
2542 asoc->pathmtu = params->spp_pathmtu;
2544 sp->pathmtu = params->spp_pathmtu;
2550 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2551 (params->spp_flags & SPP_PMTUD_ENABLE);
2552 trans->param_flags =
2553 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2555 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
2556 sctp_assoc_sync_pmtu(asoc);
2560 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2563 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2567 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2568 * value of this field is ignored. Note also that a value of zero
2569 * indicates the current setting should be left unchanged.
2571 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
2574 msecs_to_jiffies(params->spp_sackdelay);
2577 msecs_to_jiffies(params->spp_sackdelay);
2579 sp->sackdelay = params->spp_sackdelay;
2583 if (sackdelay_change) {
2585 trans->param_flags =
2586 (trans->param_flags & ~SPP_SACKDELAY) |
2590 (asoc->param_flags & ~SPP_SACKDELAY) |
2594 (sp->param_flags & ~SPP_SACKDELAY) |
2599 /* Note that a value of zero indicates the current setting should be
2602 if (params->spp_pathmaxrxt) {
2604 trans->pathmaxrxt = params->spp_pathmaxrxt;
2606 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2608 sp->pathmaxrxt = params->spp_pathmaxrxt;
2615 static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2616 char __user *optval,
2617 unsigned int optlen)
2619 struct sctp_paddrparams params;
2620 struct sctp_transport *trans = NULL;
2621 struct sctp_association *asoc = NULL;
2622 struct sctp_sock *sp = sctp_sk(sk);
2624 int hb_change, pmtud_change, sackdelay_change;
2626 if (optlen != sizeof(struct sctp_paddrparams))
2629 if (copy_from_user(¶ms, optval, optlen))
2632 /* Validate flags and value parameters. */
2633 hb_change = params.spp_flags & SPP_HB;
2634 pmtud_change = params.spp_flags & SPP_PMTUD;
2635 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2637 if (hb_change == SPP_HB ||
2638 pmtud_change == SPP_PMTUD ||
2639 sackdelay_change == SPP_SACKDELAY ||
2640 params.spp_sackdelay > 500 ||
2641 (params.spp_pathmtu &&
2642 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2645 /* If an address other than INADDR_ANY is specified, and
2646 * no transport is found, then the request is invalid.
2648 if (!sctp_is_any(sk, (union sctp_addr *)¶ms.spp_address)) {
2649 trans = sctp_addr_id2transport(sk, ¶ms.spp_address,
2650 params.spp_assoc_id);
2655 /* Get association, if assoc_id != 0 and the socket is a one
2656 * to many style socket, and an association was not found, then
2657 * the id was invalid.
2659 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2660 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2663 /* Heartbeat demand can only be sent on a transport or
2664 * association, but not a socket.
2666 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2669 /* Process parameters. */
2670 error = sctp_apply_peer_addr_params(¶ms, trans, asoc, sp,
2671 hb_change, pmtud_change,
2677 /* If changes are for association, also apply parameters to each
2680 if (!trans && asoc) {
2681 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2683 sctp_apply_peer_addr_params(¶ms, trans, asoc, sp,
2684 hb_change, pmtud_change,
2692 static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2694 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2697 static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2699 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2703 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
2705 * This option will effect the way delayed acks are performed. This
2706 * option allows you to get or set the delayed ack time, in
2707 * milliseconds. It also allows changing the delayed ack frequency.
2708 * Changing the frequency to 1 disables the delayed sack algorithm. If
2709 * the assoc_id is 0, then this sets or gets the endpoints default
2710 * values. If the assoc_id field is non-zero, then the set or get
2711 * effects the specified association for the one to many model (the
2712 * assoc_id field is ignored by the one to one model). Note that if
2713 * sack_delay or sack_freq are 0 when setting this option, then the
2714 * current values will remain unchanged.
2716 * struct sctp_sack_info {
2717 * sctp_assoc_t sack_assoc_id;
2718 * uint32_t sack_delay;
2719 * uint32_t sack_freq;
2722 * sack_assoc_id - This parameter, indicates which association the user
2723 * is performing an action upon. Note that if this field's value is
2724 * zero then the endpoints default value is changed (effecting future
2725 * associations only).
2727 * sack_delay - This parameter contains the number of milliseconds that
2728 * the user is requesting the delayed ACK timer be set to. Note that
2729 * this value is defined in the standard to be between 200 and 500
2732 * sack_freq - This parameter contains the number of packets that must
2733 * be received before a sack is sent without waiting for the delay
2734 * timer to expire. The default value for this is 2, setting this
2735 * value to 1 will disable the delayed sack algorithm.
2738 static int sctp_setsockopt_delayed_ack(struct sock *sk,
2739 char __user *optval, unsigned int optlen)
2741 struct sctp_sack_info params;
2742 struct sctp_transport *trans = NULL;
2743 struct sctp_association *asoc = NULL;
2744 struct sctp_sock *sp = sctp_sk(sk);
2746 if (optlen == sizeof(struct sctp_sack_info)) {
2747 if (copy_from_user(¶ms, optval, optlen))
2750 if (params.sack_delay == 0 && params.sack_freq == 0)
2752 } else if (optlen == sizeof(struct sctp_assoc_value)) {
2753 pr_warn_ratelimited(DEPRECATED
2755 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
2756 "Use struct sctp_sack_info instead\n",
2757 current->comm, task_pid_nr(current));
2758 if (copy_from_user(¶ms, optval, optlen))
2761 if (params.sack_delay == 0)
2762 params.sack_freq = 1;
2764 params.sack_freq = 0;
2768 /* Validate value parameter. */
2769 if (params.sack_delay > 500)
2772 /* Get association, if sack_assoc_id != 0 and the socket is a one
2773 * to many style socket, and an association was not found, then
2774 * the id was invalid.
2776 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2777 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
2780 if (params.sack_delay) {
2783 msecs_to_jiffies(params.sack_delay);
2785 sctp_spp_sackdelay_enable(asoc->param_flags);
2787 sp->sackdelay = params.sack_delay;
2789 sctp_spp_sackdelay_enable(sp->param_flags);
2793 if (params.sack_freq == 1) {
2796 sctp_spp_sackdelay_disable(asoc->param_flags);
2799 sctp_spp_sackdelay_disable(sp->param_flags);
2801 } else if (params.sack_freq > 1) {
2803 asoc->sackfreq = params.sack_freq;
2805 sctp_spp_sackdelay_enable(asoc->param_flags);
2807 sp->sackfreq = params.sack_freq;
2809 sctp_spp_sackdelay_enable(sp->param_flags);
2813 /* If change is for association, also apply to each transport. */
2815 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2817 if (params.sack_delay) {
2819 msecs_to_jiffies(params.sack_delay);
2820 trans->param_flags =
2821 sctp_spp_sackdelay_enable(trans->param_flags);
2823 if (params.sack_freq == 1) {
2824 trans->param_flags =
2825 sctp_spp_sackdelay_disable(trans->param_flags);
2826 } else if (params.sack_freq > 1) {
2827 trans->sackfreq = params.sack_freq;
2828 trans->param_flags =
2829 sctp_spp_sackdelay_enable(trans->param_flags);
2837 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2839 * Applications can specify protocol parameters for the default association
2840 * initialization. The option name argument to setsockopt() and getsockopt()
2843 * Setting initialization parameters is effective only on an unconnected
2844 * socket (for UDP-style sockets only future associations are effected
2845 * by the change). With TCP-style sockets, this option is inherited by
2846 * sockets derived from a listener socket.
2848 static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
2850 struct sctp_initmsg sinit;
2851 struct sctp_sock *sp = sctp_sk(sk);
2853 if (optlen != sizeof(struct sctp_initmsg))
2855 if (copy_from_user(&sinit, optval, optlen))
2858 if (sinit.sinit_num_ostreams)
2859 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
2860 if (sinit.sinit_max_instreams)
2861 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
2862 if (sinit.sinit_max_attempts)
2863 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
2864 if (sinit.sinit_max_init_timeo)
2865 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
2871 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2873 * Applications that wish to use the sendto() system call may wish to
2874 * specify a default set of parameters that would normally be supplied
2875 * through the inclusion of ancillary data. This socket option allows
2876 * such an application to set the default sctp_sndrcvinfo structure.
2877 * The application that wishes to use this socket option simply passes
2878 * in to this call the sctp_sndrcvinfo structure defined in Section
2879 * 5.2.2) The input parameters accepted by this call include
2880 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2881 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2882 * to this call if the caller is using the UDP model.
2884 static int sctp_setsockopt_default_send_param(struct sock *sk,
2885 char __user *optval,
2886 unsigned int optlen)
2888 struct sctp_sock *sp = sctp_sk(sk);
2889 struct sctp_association *asoc;
2890 struct sctp_sndrcvinfo info;
2892 if (optlen != sizeof(info))
2894 if (copy_from_user(&info, optval, optlen))
2896 if (info.sinfo_flags &
2897 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2898 SCTP_ABORT | SCTP_EOF))
2901 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2902 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2905 asoc->default_stream = info.sinfo_stream;
2906 asoc->default_flags = info.sinfo_flags;
2907 asoc->default_ppid = info.sinfo_ppid;
2908 asoc->default_context = info.sinfo_context;
2909 asoc->default_timetolive = info.sinfo_timetolive;
2911 sp->default_stream = info.sinfo_stream;
2912 sp->default_flags = info.sinfo_flags;
2913 sp->default_ppid = info.sinfo_ppid;
2914 sp->default_context = info.sinfo_context;
2915 sp->default_timetolive = info.sinfo_timetolive;
2921 /* RFC6458, Section 8.1.31. Set/get Default Send Parameters
2922 * (SCTP_DEFAULT_SNDINFO)
2924 static int sctp_setsockopt_default_sndinfo(struct sock *sk,
2925 char __user *optval,
2926 unsigned int optlen)
2928 struct sctp_sock *sp = sctp_sk(sk);
2929 struct sctp_association *asoc;
2930 struct sctp_sndinfo info;
2932 if (optlen != sizeof(info))
2934 if (copy_from_user(&info, optval, optlen))
2936 if (info.snd_flags &
2937 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2938 SCTP_ABORT | SCTP_EOF))
2941 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
2942 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
2945 asoc->default_stream = info.snd_sid;
2946 asoc->default_flags = info.snd_flags;
2947 asoc->default_ppid = info.snd_ppid;
2948 asoc->default_context = info.snd_context;
2950 sp->default_stream = info.snd_sid;
2951 sp->default_flags = info.snd_flags;
2952 sp->default_ppid = info.snd_ppid;
2953 sp->default_context = info.snd_context;
2959 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2961 * Requests that the local SCTP stack use the enclosed peer address as
2962 * the association primary. The enclosed address must be one of the
2963 * association peer's addresses.
2965 static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
2966 unsigned int optlen)
2968 struct sctp_prim prim;
2969 struct sctp_transport *trans;
2973 if (optlen != sizeof(struct sctp_prim))
2976 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2979 /* Allow security module to validate address but need address len. */
2980 af = sctp_get_af_specific(prim.ssp_addr.ss_family);
2984 err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
2985 (struct sockaddr *)&prim.ssp_addr,
2990 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2994 sctp_assoc_set_primary(trans->asoc, trans);
3000 * 7.1.5 SCTP_NODELAY
3002 * Turn on/off any Nagle-like algorithm. This means that packets are
3003 * generally sent as soon as possible and no unnecessary delays are
3004 * introduced, at the cost of more packets in the network. Expects an
3005 * integer boolean flag.
3007 static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
3008 unsigned int optlen)
3012 if (optlen < sizeof(int))
3014 if (get_user(val, (int __user *)optval))
3017 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
3023 * 7.1.1 SCTP_RTOINFO
3025 * The protocol parameters used to initialize and bound retransmission
3026 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3027 * and modify these parameters.
3028 * All parameters are time values, in milliseconds. A value of 0, when
3029 * modifying the parameters, indicates that the current value should not
3033 static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
3035 struct sctp_rtoinfo rtoinfo;
3036 struct sctp_association *asoc;
3037 unsigned long rto_min, rto_max;
3038 struct sctp_sock *sp = sctp_sk(sk);
3040 if (optlen != sizeof (struct sctp_rtoinfo))
3043 if (copy_from_user(&rtoinfo, optval, optlen))
3046 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
3048 /* Set the values to the specific association */
3049 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
3052 rto_max = rtoinfo.srto_max;
3053 rto_min = rtoinfo.srto_min;
3056 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3058 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3061 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3063 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3065 if (rto_min > rto_max)
3069 if (rtoinfo.srto_initial != 0)
3071 msecs_to_jiffies(rtoinfo.srto_initial);
3072 asoc->rto_max = rto_max;
3073 asoc->rto_min = rto_min;
3075 /* If there is no association or the association-id = 0
3076 * set the values to the endpoint.
3078 if (rtoinfo.srto_initial != 0)
3079 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
3080 sp->rtoinfo.srto_max = rto_max;
3081 sp->rtoinfo.srto_min = rto_min;
3089 * 7.1.2 SCTP_ASSOCINFO
3091 * This option is used to tune the maximum retransmission attempts
3092 * of the association.
3093 * Returns an error if the new association retransmission value is
3094 * greater than the sum of the retransmission value of the peer.
3095 * See [SCTP] for more information.
3098 static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
3101 struct sctp_assocparams assocparams;
3102 struct sctp_association *asoc;
3104 if (optlen != sizeof(struct sctp_assocparams))
3106 if (copy_from_user(&assocparams, optval, optlen))
3109 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3111 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
3114 /* Set the values to the specific association */
3116 if (assocparams.sasoc_asocmaxrxt != 0) {
3119 struct sctp_transport *peer_addr;
3121 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3123 path_sum += peer_addr->pathmaxrxt;
3127 /* Only validate asocmaxrxt if we have more than
3128 * one path/transport. We do this because path
3129 * retransmissions are only counted when we have more
3133 assocparams.sasoc_asocmaxrxt > path_sum)
3136 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
3139 if (assocparams.sasoc_cookie_life != 0)
3140 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
3142 /* Set the values to the endpoint */
3143 struct sctp_sock *sp = sctp_sk(sk);
3145 if (assocparams.sasoc_asocmaxrxt != 0)
3146 sp->assocparams.sasoc_asocmaxrxt =
3147 assocparams.sasoc_asocmaxrxt;
3148 if (assocparams.sasoc_cookie_life != 0)
3149 sp->assocparams.sasoc_cookie_life =
3150 assocparams.sasoc_cookie_life;
3156 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3158 * This socket option is a boolean flag which turns on or off mapped V4
3159 * addresses. If this option is turned on and the socket is type
3160 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3161 * If this option is turned off, then no mapping will be done of V4
3162 * addresses and a user will receive both PF_INET6 and PF_INET type
3163 * addresses on the socket.
3165 static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
3168 struct sctp_sock *sp = sctp_sk(sk);
3170 if (optlen < sizeof(int))
3172 if (get_user(val, (int __user *)optval))
3183 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3184 * This option will get or set the maximum size to put in any outgoing
3185 * SCTP DATA chunk. If a message is larger than this size it will be
3186 * fragmented by SCTP into the specified size. Note that the underlying
3187 * SCTP implementation may fragment into smaller sized chunks when the
3188 * PMTU of the underlying association is smaller than the value set by
3189 * the user. The default value for this option is '0' which indicates
3190 * the user is NOT limiting fragmentation and only the PMTU will effect
3191 * SCTP's choice of DATA chunk size. Note also that values set larger
3192 * than the maximum size of an IP datagram will effectively let SCTP
3193 * control fragmentation (i.e. the same as setting this option to 0).
3195 * The following structure is used to access and modify this parameter:
3197 * struct sctp_assoc_value {
3198 * sctp_assoc_t assoc_id;
3199 * uint32_t assoc_value;
3202 * assoc_id: This parameter is ignored for one-to-one style sockets.
3203 * For one-to-many style sockets this parameter indicates which
3204 * association the user is performing an action upon. Note that if
3205 * this field's value is zero then the endpoints default value is
3206 * changed (effecting future associations only).
3207 * assoc_value: This parameter specifies the maximum size in bytes.
3209 static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
3211 struct sctp_sock *sp = sctp_sk(sk);
3212 struct sctp_af *af = sp->pf->af;
3213 struct sctp_assoc_value params;
3214 struct sctp_association *asoc;
3217 if (optlen == sizeof(int)) {
3218 pr_warn_ratelimited(DEPRECATED
3220 "Use of int in maxseg socket option.\n"
3221 "Use struct sctp_assoc_value instead\n",
3222 current->comm, task_pid_nr(current));
3223 if (copy_from_user(&val, optval, optlen))
3225 params.assoc_id = 0;
3226 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3227 if (copy_from_user(¶ms, optval, optlen))
3229 val = params.assoc_value;
3235 int min_len, max_len;
3237 min_len = SCTP_DEFAULT_MINSEGMENT - af->net_header_len;
3238 min_len -= af->ip_options_len(sk);
3239 min_len -= sizeof(struct sctphdr) +
3240 sizeof(struct sctp_data_chunk);
3242 max_len = SCTP_MAX_CHUNK_LEN - sizeof(struct sctp_data_chunk);
3244 if (val < min_len || val > max_len)
3248 asoc = sctp_id2assoc(sk, params.assoc_id);
3251 val = asoc->pathmtu - af->net_header_len;
3252 val -= af->ip_options_len(sk);
3253 val -= sizeof(struct sctphdr) +
3254 sctp_datachk_len(&asoc->stream);
3256 asoc->user_frag = val;
3257 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
3259 if (params.assoc_id && sctp_style(sk, UDP))
3261 sp->user_frag = val;
3269 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3271 * Requests that the peer mark the enclosed address as the association
3272 * primary. The enclosed address must be one of the association's
3273 * locally bound addresses. The following structure is used to make a
3274 * set primary request:
3276 static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
3277 unsigned int optlen)
3279 struct net *net = sock_net(sk);
3280 struct sctp_sock *sp;
3281 struct sctp_association *asoc = NULL;
3282 struct sctp_setpeerprim prim;
3283 struct sctp_chunk *chunk;
3289 if (!net->sctp.addip_enable)
3292 if (optlen != sizeof(struct sctp_setpeerprim))
3295 if (copy_from_user(&prim, optval, optlen))
3298 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
3302 if (!asoc->peer.asconf_capable)
3305 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3308 if (!sctp_state(asoc, ESTABLISHED))
3311 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3315 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3316 return -EADDRNOTAVAIL;
3318 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3319 return -EADDRNOTAVAIL;
3321 /* Allow security module to validate address. */
3322 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3323 (struct sockaddr *)&prim.sspp_addr,
3328 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3329 chunk = sctp_make_asconf_set_prim(asoc,
3330 (union sctp_addr *)&prim.sspp_addr);