1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* SCTP kernel implementation
3 * (C) Copyright IBM Corp. 2001, 2004
4 * Copyright (c) 1999-2000 Cisco, Inc.
5 * Copyright (c) 1999-2001 Motorola, Inc.
6 * Copyright (c) 2001-2003 Intel Corp.
7 * Copyright (c) 2001-2002 Nokia, Inc.
8 * Copyright (c) 2001 La Monte H.P. Yarroll
10 * This file is part of the SCTP kernel implementation
12 * These functions interface with the sockets layer to implement the
13 * SCTP Extensions for the Sockets API.
15 * Note that the descriptions from the specification are USER level
16 * functions--this file is the functions which populate the struct proto
17 * for SCTP which is the BOTTOM of the sockets interface.
19 * Please send any bug reports or fixes you make to the
23 * Written or modified by:
38 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40 #include <crypto/hash.h>
41 #include <linux/types.h>
42 #include <linux/kernel.h>
43 #include <linux/wait.h>
44 #include <linux/time.h>
45 #include <linux/sched/signal.h>
47 #include <linux/capability.h>
48 #include <linux/fcntl.h>
49 #include <linux/poll.h>
50 #include <linux/init.h>
51 #include <linux/slab.h>
52 #include <linux/file.h>
53 #include <linux/compat.h>
54 #include <linux/rhashtable.h>
58 #include <net/route.h>
60 #include <net/inet_common.h>
61 #include <net/busy_poll.h>
62 #include <trace/events/sock.h>
64 #include <linux/socket.h> /* for sa_family_t */
65 #include <linux/export.h>
67 #include <net/sctp/sctp.h>
68 #include <net/sctp/sm.h>
69 #include <net/sctp/stream_sched.h>
71 /* Forward declarations for internal helper functions. */
72 static bool sctp_writeable(const struct sock *sk);
73 static void sctp_wfree(struct sk_buff *skb);
74 static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
76 static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
77 static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
78 static int sctp_wait_for_accept(struct sock *sk, long timeo);
79 static void sctp_wait_for_close(struct sock *sk, long timeo);
80 static void sctp_destruct_sock(struct sock *sk);
81 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
82 union sctp_addr *addr, int len);
83 static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
84 static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
85 static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
86 static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
87 static int sctp_send_asconf(struct sctp_association *asoc,
88 struct sctp_chunk *chunk);
89 static int sctp_do_bind(struct sock *, union sctp_addr *, int);
90 static int sctp_autobind(struct sock *sk);
91 static int sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
92 struct sctp_association *assoc,
93 enum sctp_socket_type type);
95 static unsigned long sctp_memory_pressure;
96 static atomic_long_t sctp_memory_allocated;
97 static DEFINE_PER_CPU(int, sctp_memory_per_cpu_fw_alloc);
98 struct percpu_counter sctp_sockets_allocated;
100 static void sctp_enter_memory_pressure(struct sock *sk)
102 WRITE_ONCE(sctp_memory_pressure, 1);
106 /* Get the sndbuf space available at the time on the association. */
107 static inline int sctp_wspace(struct sctp_association *asoc)
109 struct sock *sk = asoc->base.sk;
111 return asoc->ep->sndbuf_policy ? sk->sk_sndbuf - asoc->sndbuf_used
112 : sk_stream_wspace(sk);
115 /* Increment the used sndbuf space count of the corresponding association by
116 * the size of the outgoing data chunk.
117 * Also, set the skb destructor for sndbuf accounting later.
119 * Since it is always 1-1 between chunk and skb, and also a new skb is always
120 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
121 * destructor in the data chunk skb for the purpose of the sndbuf space
124 static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
126 struct sctp_association *asoc = chunk->asoc;
127 struct sock *sk = asoc->base.sk;
129 /* The sndbuf space is tracked per association. */
130 sctp_association_hold(asoc);
133 sctp_auth_shkey_hold(chunk->shkey);
135 skb_set_owner_w(chunk->skb, sk);
137 chunk->skb->destructor = sctp_wfree;
138 /* Save the chunk pointer in skb for sctp_wfree to use later. */
139 skb_shinfo(chunk->skb)->destructor_arg = chunk;
141 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
142 asoc->sndbuf_used += chunk->skb->truesize + sizeof(struct sctp_chunk);
143 sk_wmem_queued_add(sk, chunk->skb->truesize + sizeof(struct sctp_chunk));
144 sk_mem_charge(sk, chunk->skb->truesize);
147 static void sctp_clear_owner_w(struct sctp_chunk *chunk)
149 skb_orphan(chunk->skb);
152 #define traverse_and_process() \
155 if (msg == prev_msg) \
157 list_for_each_entry(c, &msg->chunks, frag_list) { \
158 if ((clear && asoc->base.sk == c->skb->sk) || \
159 (!clear && asoc->base.sk != c->skb->sk)) \
165 static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
167 void (*cb)(struct sctp_chunk *))
170 struct sctp_datamsg *msg, *prev_msg = NULL;
171 struct sctp_outq *q = &asoc->outqueue;
172 struct sctp_chunk *chunk, *c;
173 struct sctp_transport *t;
175 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
176 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
177 traverse_and_process();
179 list_for_each_entry(chunk, &q->retransmit, transmitted_list)
180 traverse_and_process();
182 list_for_each_entry(chunk, &q->sacked, transmitted_list)
183 traverse_and_process();
185 list_for_each_entry(chunk, &q->abandoned, transmitted_list)
186 traverse_and_process();
188 list_for_each_entry(chunk, &q->out_chunk_list, list)
189 traverse_and_process();
192 static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
193 void (*cb)(struct sk_buff *, struct sock *))
196 struct sk_buff *skb, *tmp;
198 sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
201 sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
204 sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
208 /* Verify that this is a valid address. */
209 static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
214 /* Verify basic sockaddr. */
215 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
219 /* Is this a valid SCTP address? */
220 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
223 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
229 /* Look up the association by its id. If this is not a UDP-style
230 * socket, the ID field is always ignored.
232 struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
234 struct sctp_association *asoc = NULL;
236 /* If this is not a UDP-style socket, assoc id should be ignored. */
237 if (!sctp_style(sk, UDP)) {
238 /* Return NULL if the socket state is not ESTABLISHED. It
239 * could be a TCP-style listening socket or a socket which
240 * hasn't yet called connect() to establish an association.
242 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
245 /* Get the first and the only association from the list. */
246 if (!list_empty(&sctp_sk(sk)->ep->asocs))
247 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
248 struct sctp_association, asocs);
252 /* Otherwise this is a UDP-style socket. */
253 if (id <= SCTP_ALL_ASSOC)
256 spin_lock_bh(&sctp_assocs_id_lock);
257 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
258 if (asoc && (asoc->base.sk != sk || asoc->base.dead))
260 spin_unlock_bh(&sctp_assocs_id_lock);
265 /* Look up the transport from an address and an assoc id. If both address and
266 * id are specified, the associations matching the address and the id should be
269 static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
270 struct sockaddr_storage *addr,
273 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
274 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
275 union sctp_addr *laddr = (union sctp_addr *)addr;
276 struct sctp_transport *transport;
278 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
281 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
288 id_asoc = sctp_id2assoc(sk, id);
289 if (id_asoc && (id_asoc != addr_asoc))
292 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
293 (union sctp_addr *)addr);
298 /* API 3.1.2 bind() - UDP Style Syntax
299 * The syntax of bind() is,
301 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
303 * sd - the socket descriptor returned by socket().
304 * addr - the address structure (struct sockaddr_in or struct
305 * sockaddr_in6 [RFC 2553]),
306 * addr_len - the size of the address structure.
308 static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
314 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
317 /* Disallow binding twice. */
318 if (!sctp_sk(sk)->ep->base.bind_addr.port)
319 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
329 static int sctp_get_port_local(struct sock *, union sctp_addr *);
331 /* Verify this is a valid sockaddr. */
332 static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
333 union sctp_addr *addr, int len)
337 /* Check minimum size. */
338 if (len < sizeof (struct sockaddr))
341 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
344 if (addr->sa.sa_family == AF_INET6) {
345 if (len < SIN6_LEN_RFC2133)
347 /* V4 mapped address are really of AF_INET family */
348 if (ipv6_addr_v4mapped(&addr->v6.sin6_addr) &&
349 !opt->pf->af_supported(AF_INET, opt))
353 /* If we get this far, af is valid. */
354 af = sctp_get_af_specific(addr->sa.sa_family);
356 if (len < af->sockaddr_len)
362 static void sctp_auto_asconf_init(struct sctp_sock *sp)
364 struct net *net = sock_net(&sp->inet.sk);
366 if (net->sctp.default_auto_asconf) {
367 spin_lock_bh(&net->sctp.addr_wq_lock);
368 list_add_tail(&sp->auto_asconf_list, &net->sctp.auto_asconf_splist);
369 spin_unlock_bh(&net->sctp.addr_wq_lock);
370 sp->do_auto_asconf = 1;
374 /* Bind a local address either to an endpoint or to an association. */
375 static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
377 struct net *net = sock_net(sk);
378 struct sctp_sock *sp = sctp_sk(sk);
379 struct sctp_endpoint *ep = sp->ep;
380 struct sctp_bind_addr *bp = &ep->base.bind_addr;
385 /* Common sockaddr verification. */
386 af = sctp_sockaddr_af(sp, addr, len);
388 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
389 __func__, sk, addr, len);
393 snum = ntohs(addr->v4.sin_port);
395 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
396 __func__, sk, &addr->sa, bp->port, snum, len);
398 /* PF specific bind() address verification. */
399 if (!sp->pf->bind_verify(sp, addr))
400 return -EADDRNOTAVAIL;
402 /* We must either be unbound, or bind to the same port.
403 * It's OK to allow 0 ports if we are already bound.
404 * We'll just inhert an already bound port in this case
409 else if (snum != bp->port) {
410 pr_debug("%s: new port %d doesn't match existing port "
411 "%d\n", __func__, snum, bp->port);
416 if (snum && inet_port_requires_bind_service(net, snum) &&
417 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
420 /* See if the address matches any of the addresses we may have
421 * already bound before checking against other endpoints.
423 if (sctp_bind_addr_match(bp, addr, sp))
426 /* Make sure we are allowed to bind here.
427 * The function sctp_get_port_local() does duplicate address
430 addr->v4.sin_port = htons(snum);
431 if (sctp_get_port_local(sk, addr))
434 /* Refresh ephemeral port. */
436 bp->port = inet_sk(sk)->inet_num;
437 sctp_auto_asconf_init(sp);
440 /* Add the address to the bind address list.
441 * Use GFP_ATOMIC since BHs will be disabled.
443 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
444 SCTP_ADDR_SRC, GFP_ATOMIC);
450 /* 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);
457 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
459 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
460 * at any one time. If a sender, after sending an ASCONF chunk, decides
461 * it needs to transfer another ASCONF Chunk, it MUST wait until the
462 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
463 * subsequent ASCONF. Note this restriction binds each side, so at any
464 * time two ASCONF may be in-transit on any given association (one sent
465 * from each endpoint).
467 static int sctp_send_asconf(struct sctp_association *asoc,
468 struct sctp_chunk *chunk)
472 /* If there is an outstanding ASCONF chunk, queue it for later
475 if (asoc->addip_last_asconf) {
476 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
480 /* Hold the chunk until an ASCONF_ACK is received. */
481 sctp_chunk_hold(chunk);
482 retval = sctp_primitive_ASCONF(asoc->base.net, asoc, chunk);
484 sctp_chunk_free(chunk);
486 asoc->addip_last_asconf = chunk;
492 /* Add a list of addresses as bind addresses to local endpoint or
495 * Basically run through each address specified in the addrs/addrcnt
496 * array/length pair, determine if it is IPv6 or IPv4 and call
497 * sctp_do_bind() on it.
499 * If any of them fails, then the operation will be reversed and the
500 * ones that were added will be removed.
502 * Only sctp_setsockopt_bindx() is supposed to call this function.
504 static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
509 struct sockaddr *sa_addr;
512 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
516 for (cnt = 0; cnt < addrcnt; cnt++) {
517 /* The list may contain either IPv4 or IPv6 address;
518 * determine the address length for walking thru the list.
521 af = sctp_get_af_specific(sa_addr->sa_family);
527 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
530 addr_buf += af->sockaddr_len;
534 /* Failed. Cleanup the ones that have been added */
536 sctp_bindx_rem(sk, addrs, cnt);
544 /* Send an ASCONF chunk with Add IP address parameters to all the peers of the
545 * associations that are part of the endpoint indicating that a list of local
546 * addresses are added to the endpoint.
548 * If any of the addresses is already in the bind address list of the
549 * association, we do not send the chunk for that association. But it will not
550 * affect other associations.
552 * Only sctp_setsockopt_bindx() is supposed to call this function.
554 static int sctp_send_asconf_add_ip(struct sock *sk,
555 struct sockaddr *addrs,
558 struct sctp_sock *sp;
559 struct sctp_endpoint *ep;
560 struct sctp_association *asoc;
561 struct sctp_bind_addr *bp;
562 struct sctp_chunk *chunk;
563 struct sctp_sockaddr_entry *laddr;
564 union sctp_addr *addr;
565 union sctp_addr saveaddr;
575 if (!ep->asconf_enable)
578 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
579 __func__, sk, addrs, addrcnt);
581 list_for_each_entry(asoc, &ep->asocs, asocs) {
582 if (!asoc->peer.asconf_capable)
585 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
588 if (!sctp_state(asoc, ESTABLISHED))
591 /* Check if any address in the packed array of addresses is
592 * in the bind address list of the association. If so,
593 * do not send the asconf chunk to its peer, but continue with
594 * other associations.
597 for (i = 0; i < addrcnt; i++) {
599 af = sctp_get_af_specific(addr->v4.sin_family);
605 if (sctp_assoc_lookup_laddr(asoc, addr))
608 addr_buf += af->sockaddr_len;
613 /* Use the first valid address in bind addr list of
614 * association as Address Parameter of ASCONF CHUNK.
616 bp = &asoc->base.bind_addr;
617 p = bp->address_list.next;
618 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
619 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
620 addrcnt, SCTP_PARAM_ADD_IP);
626 /* Add the new addresses to the bind address list with
627 * use_as_src set to 0.
630 for (i = 0; i < addrcnt; i++) {
632 af = sctp_get_af_specific(addr->v4.sin_family);
633 memcpy(&saveaddr, addr, af->sockaddr_len);
634 retval = sctp_add_bind_addr(bp, &saveaddr,
636 SCTP_ADDR_NEW, GFP_ATOMIC);
637 addr_buf += af->sockaddr_len;
639 if (asoc->src_out_of_asoc_ok) {
640 struct sctp_transport *trans;
642 list_for_each_entry(trans,
643 &asoc->peer.transport_addr_list, transports) {
644 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
645 2*asoc->pathmtu, 4380));
646 trans->ssthresh = asoc->peer.i.a_rwnd;
647 trans->rto = asoc->rto_initial;
648 sctp_max_rto(asoc, trans);
649 trans->rtt = trans->srtt = trans->rttvar = 0;
650 /* Clear the source and route cache */
651 sctp_transport_route(trans, NULL,
652 sctp_sk(asoc->base.sk));
655 retval = sctp_send_asconf(asoc, chunk);
662 /* Remove a list of addresses from bind addresses list. Do not remove the
665 * Basically run through each address specified in the addrs/addrcnt
666 * array/length pair, determine if it is IPv6 or IPv4 and call
667 * sctp_del_bind() on it.
669 * If any of them fails, then the operation will be reversed and the
670 * ones that were removed will be added back.
672 * At least one address has to be left; if only one address is
673 * available, the operation will return -EBUSY.
675 * Only sctp_setsockopt_bindx() is supposed to call this function.
677 static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
679 struct sctp_sock *sp = sctp_sk(sk);
680 struct sctp_endpoint *ep = sp->ep;
682 struct sctp_bind_addr *bp = &ep->base.bind_addr;
685 union sctp_addr *sa_addr;
688 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
689 __func__, sk, addrs, addrcnt);
692 for (cnt = 0; cnt < addrcnt; cnt++) {
693 /* If the bind address list is empty or if there is only one
694 * bind address, there is nothing more to be removed (we need
695 * at least one address here).
697 if (list_empty(&bp->address_list) ||
698 (sctp_list_single_entry(&bp->address_list))) {
704 af = sctp_get_af_specific(sa_addr->sa.sa_family);
710 if (!af->addr_valid(sa_addr, sp, NULL)) {
711 retval = -EADDRNOTAVAIL;
715 if (sa_addr->v4.sin_port &&
716 sa_addr->v4.sin_port != htons(bp->port)) {
721 if (!sa_addr->v4.sin_port)
722 sa_addr->v4.sin_port = htons(bp->port);
724 /* FIXME - There is probably a need to check if sk->sk_saddr and
725 * sk->sk_rcv_addr are currently set to one of the addresses to
726 * be removed. This is something which needs to be looked into
727 * when we are fixing the outstanding issues with multi-homing
728 * socket routing and failover schemes. Refer to comments in
729 * sctp_do_bind(). -daisy
731 retval = sctp_del_bind_addr(bp, sa_addr);
733 addr_buf += af->sockaddr_len;
736 /* Failed. Add the ones that has been removed back */
738 sctp_bindx_add(sk, addrs, cnt);
746 /* Send an ASCONF chunk with Delete IP address parameters to all the peers of
747 * the associations that are part of the endpoint indicating that a list of
748 * local addresses are removed from the endpoint.
750 * If any of the addresses is already in the bind address list of the
751 * association, we do not send the chunk for that association. But it will not
752 * affect other associations.
754 * Only sctp_setsockopt_bindx() is supposed to call this function.
756 static int sctp_send_asconf_del_ip(struct sock *sk,
757 struct sockaddr *addrs,
760 struct sctp_sock *sp;
761 struct sctp_endpoint *ep;
762 struct sctp_association *asoc;
763 struct sctp_transport *transport;
764 struct sctp_bind_addr *bp;
765 struct sctp_chunk *chunk;
766 union sctp_addr *laddr;
769 struct sctp_sockaddr_entry *saddr;
778 if (!ep->asconf_enable)
781 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
782 __func__, sk, addrs, addrcnt);
784 list_for_each_entry(asoc, &ep->asocs, asocs) {
786 if (!asoc->peer.asconf_capable)
789 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
792 if (!sctp_state(asoc, ESTABLISHED))
795 /* Check if any address in the packed array of addresses is
796 * not present in the bind address list of the association.
797 * If so, do not send the asconf chunk to its peer, but
798 * continue with other associations.
801 for (i = 0; i < addrcnt; i++) {
803 af = sctp_get_af_specific(laddr->v4.sin_family);
809 if (!sctp_assoc_lookup_laddr(asoc, laddr))
812 addr_buf += af->sockaddr_len;
817 /* Find one address in the association's bind address list
818 * that is not in the packed array of addresses. This is to
819 * make sure that we do not delete all the addresses in the
822 bp = &asoc->base.bind_addr;
823 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
825 if ((laddr == NULL) && (addrcnt == 1)) {
826 if (asoc->asconf_addr_del_pending)
828 asoc->asconf_addr_del_pending =
829 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
830 if (asoc->asconf_addr_del_pending == NULL) {
834 asoc->asconf_addr_del_pending->sa.sa_family =
836 asoc->asconf_addr_del_pending->v4.sin_port =
838 if (addrs->sa_family == AF_INET) {
839 struct sockaddr_in *sin;
841 sin = (struct sockaddr_in *)addrs;
842 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
843 } else if (addrs->sa_family == AF_INET6) {
844 struct sockaddr_in6 *sin6;
846 sin6 = (struct sockaddr_in6 *)addrs;
847 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
850 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
851 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
852 asoc->asconf_addr_del_pending);
854 asoc->src_out_of_asoc_ok = 1;
862 /* We do not need RCU protection throughout this loop
863 * because this is done under a socket lock from the
866 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
874 /* Reset use_as_src flag for the addresses in the bind address
875 * list that are to be deleted.
878 for (i = 0; i < addrcnt; i++) {
880 af = sctp_get_af_specific(laddr->v4.sin_family);
881 list_for_each_entry(saddr, &bp->address_list, list) {
882 if (sctp_cmp_addr_exact(&saddr->a, laddr))
883 saddr->state = SCTP_ADDR_DEL;
885 addr_buf += af->sockaddr_len;
888 /* Update the route and saddr entries for all the transports
889 * as some of the addresses in the bind address list are
890 * about to be deleted and cannot be used as source addresses.
892 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
894 sctp_transport_route(transport, NULL,
895 sctp_sk(asoc->base.sk));
899 /* We don't need to transmit ASCONF */
901 retval = sctp_send_asconf(asoc, chunk);
907 /* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
908 int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
910 struct sock *sk = sctp_opt2sk(sp);
911 union sctp_addr *addr;
914 /* It is safe to write port space in caller. */
916 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
917 af = sctp_get_af_specific(addr->sa.sa_family);
920 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
923 if (addrw->state == SCTP_ADDR_NEW)
924 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
926 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
929 /* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
932 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
935 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
936 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
939 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
940 * Section 3.1.2 for this usage.
942 * addrs is a pointer to an array of one or more socket addresses. Each
943 * address is contained in its appropriate structure (i.e. struct
944 * sockaddr_in or struct sockaddr_in6) the family of the address type
945 * must be used to distinguish the address length (note that this
946 * representation is termed a "packed array" of addresses). The caller
947 * specifies the number of addresses in the array with addrcnt.
949 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
950 * -1, and sets errno to the appropriate error code.
952 * For SCTP, the port given in each socket address must be the same, or
953 * sctp_bindx() will fail, setting errno to EINVAL.
955 * The flags parameter is formed from the bitwise OR of zero or more of
956 * the following currently defined flags:
958 * SCTP_BINDX_ADD_ADDR
960 * SCTP_BINDX_REM_ADDR
962 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
963 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
964 * addresses from the association. The two flags are mutually exclusive;
965 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
966 * not remove all addresses from an association; sctp_bindx() will
967 * reject such an attempt with EINVAL.
969 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
970 * additional addresses with an endpoint after calling bind(). Or use
971 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
972 * socket is associated with so that no new association accepted will be
973 * associated with those addresses. If the endpoint supports dynamic
974 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
975 * endpoint to send the appropriate message to the peer to change the
976 * peers address lists.
978 * Adding and removing addresses from a connected association is
979 * optional functionality. Implementations that do not support this
980 * functionality should return EOPNOTSUPP.
982 * Basically do nothing but copying the addresses from user to kernel
983 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
984 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
987 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
990 * sk The sk of the socket
991 * addrs The pointer to the addresses
992 * addrssize Size of the addrs buffer
993 * op Operation to perform (add or remove, see the flags of
996 * Returns 0 if ok, <0 errno code on error.
998 static int sctp_setsockopt_bindx(struct sock *sk, struct sockaddr *addrs,
999 int addrs_size, int op)
1004 struct sockaddr *sa_addr;
1005 void *addr_buf = addrs;
1008 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
1009 __func__, sk, addr_buf, addrs_size, op);
1011 if (unlikely(addrs_size <= 0))
1014 /* Walk through the addrs buffer and count the number of addresses. */
1015 while (walk_size < addrs_size) {
1016 if (walk_size + sizeof(sa_family_t) > addrs_size)
1020 af = sctp_get_af_specific(sa_addr->sa_family);
1022 /* If the address family is not supported or if this address
1023 * causes the address buffer to overflow return EINVAL.
1025 if (!af || (walk_size + af->sockaddr_len) > addrs_size)
1028 addr_buf += af->sockaddr_len;
1029 walk_size += af->sockaddr_len;
1034 case SCTP_BINDX_ADD_ADDR:
1035 /* Allow security module to validate bindx addresses. */
1036 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1040 err = sctp_bindx_add(sk, addrs, addrcnt);
1043 return sctp_send_asconf_add_ip(sk, addrs, addrcnt);
1044 case SCTP_BINDX_REM_ADDR:
1045 err = sctp_bindx_rem(sk, addrs, addrcnt);
1048 return sctp_send_asconf_del_ip(sk, addrs, addrcnt);
1055 static int sctp_bind_add(struct sock *sk, struct sockaddr *addrs,
1061 err = sctp_setsockopt_bindx(sk, addrs, addrlen, SCTP_BINDX_ADD_ADDR);
1066 static int sctp_connect_new_asoc(struct sctp_endpoint *ep,
1067 const union sctp_addr *daddr,
1068 const struct sctp_initmsg *init,
1069 struct sctp_transport **tp)
1071 struct sctp_association *asoc;
1072 struct sock *sk = ep->base.sk;
1073 struct net *net = sock_net(sk);
1074 enum sctp_scope scope;
1077 if (sctp_endpoint_is_peeled_off(ep, daddr))
1078 return -EADDRNOTAVAIL;
1080 if (!ep->base.bind_addr.port) {
1081 if (sctp_autobind(sk))
1084 if (inet_port_requires_bind_service(net, ep->base.bind_addr.port) &&
1085 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1089 scope = sctp_scope(daddr);
1090 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1094 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL);
1098 *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1107 if (init->sinit_num_ostreams) {
1108 __u16 outcnt = init->sinit_num_ostreams;
1110 asoc->c.sinit_num_ostreams = outcnt;
1111 /* outcnt has been changed, need to re-init stream */
1112 err = sctp_stream_init(&asoc->stream, outcnt, 0, GFP_KERNEL);
1117 if (init->sinit_max_instreams)
1118 asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1120 if (init->sinit_max_attempts)
1121 asoc->max_init_attempts = init->sinit_max_attempts;
1123 if (init->sinit_max_init_timeo)
1124 asoc->max_init_timeo =
1125 msecs_to_jiffies(init->sinit_max_init_timeo);
1129 sctp_association_free(asoc);
1133 static int sctp_connect_add_peer(struct sctp_association *asoc,
1134 union sctp_addr *daddr, int addr_len)
1136 struct sctp_endpoint *ep = asoc->ep;
1137 struct sctp_association *old;
1138 struct sctp_transport *t;
1141 err = sctp_verify_addr(ep->base.sk, daddr, addr_len);
1145 old = sctp_endpoint_lookup_assoc(ep, daddr, &t);
1146 if (old && old != asoc)
1147 return old->state >= SCTP_STATE_ESTABLISHED ? -EISCONN
1150 if (sctp_endpoint_is_peeled_off(ep, daddr))
1151 return -EADDRNOTAVAIL;
1153 t = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1160 /* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1162 * Common routine for handling connect() and sctp_connectx().
1163 * Connect will come in with just a single address.
1165 static int __sctp_connect(struct sock *sk, struct sockaddr *kaddrs,
1166 int addrs_size, int flags, sctp_assoc_t *assoc_id)
1168 struct sctp_sock *sp = sctp_sk(sk);
1169 struct sctp_endpoint *ep = sp->ep;
1170 struct sctp_transport *transport;
1171 struct sctp_association *asoc;
1172 void *addr_buf = kaddrs;
1173 union sctp_addr *daddr;
1178 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
1179 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)))
1183 af = sctp_get_af_specific(daddr->sa.sa_family);
1184 if (!af || af->sockaddr_len > addrs_size)
1187 err = sctp_verify_addr(sk, daddr, af->sockaddr_len);
1191 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1193 return asoc->state >= SCTP_STATE_ESTABLISHED ? -EISCONN
1196 err = sctp_connect_new_asoc(ep, daddr, NULL, &transport);
1199 asoc = transport->asoc;
1201 addr_buf += af->sockaddr_len;
1202 walk_size = af->sockaddr_len;
1203 while (walk_size < addrs_size) {
1205 if (walk_size + sizeof(sa_family_t) > addrs_size)
1209 af = sctp_get_af_specific(daddr->sa.sa_family);
1210 if (!af || af->sockaddr_len + walk_size > addrs_size)
1213 if (asoc->peer.port != ntohs(daddr->v4.sin_port))
1216 err = sctp_connect_add_peer(asoc, daddr, af->sockaddr_len);
1220 addr_buf += af->sockaddr_len;
1221 walk_size += af->sockaddr_len;
1224 /* In case the user of sctp_connectx() wants an association
1225 * id back, assign one now.
1228 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1233 err = sctp_primitive_ASSOCIATE(sock_net(sk), asoc, NULL);
1237 /* Initialize sk's dport and daddr for getpeername() */
1238 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
1239 sp->pf->to_sk_daddr(daddr, sk);
1243 *assoc_id = asoc->assoc_id;
1245 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
1246 return sctp_wait_for_connect(asoc, &timeo);
1249 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1250 __func__, asoc, kaddrs, err);
1251 sctp_association_free(asoc);
1255 /* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1258 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1259 * sctp_assoc_t *asoc);
1261 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1262 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1263 * or IPv6 addresses.
1265 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1266 * Section 3.1.2 for this usage.
1268 * addrs is a pointer to an array of one or more socket addresses. Each
1269 * address is contained in its appropriate structure (i.e. struct
1270 * sockaddr_in or struct sockaddr_in6) the family of the address type
1271 * must be used to distengish the address length (note that this
1272 * representation is termed a "packed array" of addresses). The caller
1273 * specifies the number of addresses in the array with addrcnt.
1275 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1276 * the association id of the new association. On failure, sctp_connectx()
1277 * returns -1, and sets errno to the appropriate error code. The assoc_id
1278 * is not touched by the kernel.
1280 * For SCTP, the port given in each socket address must be the same, or
1281 * sctp_connectx() will fail, setting errno to EINVAL.
1283 * An application can use sctp_connectx to initiate an association with
1284 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1285 * allows a caller to specify multiple addresses at which a peer can be
1286 * reached. The way the SCTP stack uses the list of addresses to set up
1287 * the association is implementation dependent. This function only
1288 * specifies that the stack will try to make use of all the addresses in
1289 * the list when needed.
1291 * Note that the list of addresses passed in is only used for setting up
1292 * the association. It does not necessarily equal the set of addresses
1293 * the peer uses for the resulting association. If the caller wants to
1294 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1295 * retrieve them after the association has been set up.
1297 * Basically do nothing but copying the addresses from user to kernel
1298 * land and invoking either sctp_connectx(). This is used for tunneling
1299 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1301 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1304 * sk The sk of the socket
1305 * addrs The pointer to the addresses
1306 * addrssize Size of the addrs buffer
1308 * Returns >=0 if ok, <0 errno code on error.
1310 static int __sctp_setsockopt_connectx(struct sock *sk, struct sockaddr *kaddrs,
1311 int addrs_size, sctp_assoc_t *assoc_id)
1313 int err = 0, flags = 0;
1315 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1316 __func__, sk, kaddrs, addrs_size);
1318 /* make sure the 1st addr's sa_family is accessible later */
1319 if (unlikely(addrs_size < sizeof(sa_family_t)))
1322 /* Allow security module to validate connectx addresses. */
1323 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1324 (struct sockaddr *)kaddrs,
1329 /* in-kernel sockets don't generally have a file allocated to them
1330 * if all they do is call sock_create_kern().
1332 if (sk->sk_socket->file)
1333 flags = sk->sk_socket->file->f_flags;
1335 return __sctp_connect(sk, kaddrs, addrs_size, flags, assoc_id);
1339 * This is an older interface. It's kept for backward compatibility
1340 * to the option that doesn't provide association id.
1342 static int sctp_setsockopt_connectx_old(struct sock *sk,
1343 struct sockaddr *kaddrs,
1346 return __sctp_setsockopt_connectx(sk, kaddrs, addrs_size, NULL);
1350 * New interface for the API. The since the API is done with a socket
1351 * option, to make it simple we feed back the association id is as a return
1352 * indication to the call. Error is always negative and association id is
1355 static int sctp_setsockopt_connectx(struct sock *sk,
1356 struct sockaddr *kaddrs,
1359 sctp_assoc_t assoc_id = 0;
1362 err = __sctp_setsockopt_connectx(sk, kaddrs, addrs_size, &assoc_id);
1371 * New (hopefully final) interface for the API.
1372 * We use the sctp_getaddrs_old structure so that use-space library
1373 * can avoid any unnecessary allocations. The only different part
1374 * is that we store the actual length of the address buffer into the
1375 * addrs_num structure member. That way we can re-use the existing
1378 #ifdef CONFIG_COMPAT
1379 struct compat_sctp_getaddrs_old {
1380 sctp_assoc_t assoc_id;
1382 compat_uptr_t addrs; /* struct sockaddr * */
1386 static int sctp_getsockopt_connectx3(struct sock *sk, int len,
1387 char __user *optval,
1390 struct sctp_getaddrs_old param;
1391 sctp_assoc_t assoc_id = 0;
1392 struct sockaddr *kaddrs;
1395 #ifdef CONFIG_COMPAT
1396 if (in_compat_syscall()) {
1397 struct compat_sctp_getaddrs_old param32;
1399 if (len < sizeof(param32))
1401 if (copy_from_user(¶m32, optval, sizeof(param32)))
1404 param.assoc_id = param32.assoc_id;
1405 param.addr_num = param32.addr_num;
1406 param.addrs = compat_ptr(param32.addrs);
1410 if (len < sizeof(param))
1412 if (copy_from_user(¶m, optval, sizeof(param)))
1416 kaddrs = memdup_user(param.addrs, param.addr_num);
1418 return PTR_ERR(kaddrs);
1420 err = __sctp_setsockopt_connectx(sk, kaddrs, param.addr_num, &assoc_id);
1422 if (err == 0 || err == -EINPROGRESS) {
1423 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1425 if (put_user(sizeof(assoc_id), optlen))
1432 /* API 3.1.4 close() - UDP Style Syntax
1433 * Applications use close() to perform graceful shutdown (as described in
1434 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1435 * by a UDP-style socket.
1439 * ret = close(int sd);
1441 * sd - the socket descriptor of the associations to be closed.
1443 * To gracefully shutdown a specific association represented by the
1444 * UDP-style socket, an application should use the sendmsg() call,
1445 * passing no user data, but including the appropriate flag in the
1446 * ancillary data (see Section xxxx).
1448 * If sd in the close() call is a branched-off socket representing only
1449 * one association, the shutdown is performed on that association only.
1451 * 4.1.6 close() - TCP Style Syntax
1453 * Applications use close() to gracefully close down an association.
1457 * int close(int sd);
1459 * sd - the socket descriptor of the association to be closed.
1461 * After an application calls close() on a socket descriptor, no further
1462 * socket operations will succeed on that descriptor.
1464 * API 7.1.4 SO_LINGER
1466 * An application using the TCP-style socket can use this option to
1467 * perform the SCTP ABORT primitive. The linger option structure is:
1470 * int l_onoff; // option on/off
1471 * int l_linger; // linger time
1474 * To enable the option, set l_onoff to 1. If the l_linger value is set
1475 * to 0, calling close() is the same as the ABORT primitive. If the
1476 * value is set to a negative value, the setsockopt() call will return
1477 * an error. If the value is set to a positive value linger_time, the
1478 * close() can be blocked for at most linger_time ms. If the graceful
1479 * shutdown phase does not finish during this period, close() will
1480 * return but the graceful shutdown phase continues in the system.
1482 static void sctp_close(struct sock *sk, long timeout)
1484 struct net *net = sock_net(sk);
1485 struct sctp_endpoint *ep;
1486 struct sctp_association *asoc;
1487 struct list_head *pos, *temp;
1488 unsigned int data_was_unread;
1490 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
1492 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
1493 sk->sk_shutdown = SHUTDOWN_MASK;
1494 inet_sk_set_state(sk, SCTP_SS_CLOSING);
1496 ep = sctp_sk(sk)->ep;
1498 /* Clean up any skbs sitting on the receive queue. */
1499 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1500 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1502 /* Walk all associations on an endpoint. */
1503 list_for_each_safe(pos, temp, &ep->asocs) {
1504 asoc = list_entry(pos, struct sctp_association, asocs);
1506 if (sctp_style(sk, TCP)) {
1507 /* A closed association can still be in the list if
1508 * it belongs to a TCP-style listening socket that is
1509 * not yet accepted. If so, free it. If not, send an
1510 * ABORT or SHUTDOWN based on the linger options.
1512 if (sctp_state(asoc, CLOSED)) {
1513 sctp_association_free(asoc);
1518 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1519 !skb_queue_empty(&asoc->ulpq.reasm) ||
1520 !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
1521 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
1522 struct sctp_chunk *chunk;
1524 chunk = sctp_make_abort_user(asoc, NULL, 0);
1525 sctp_primitive_ABORT(net, asoc, chunk);
1527 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1530 /* On a TCP-style socket, block for at most linger_time if set. */
1531 if (sctp_style(sk, TCP) && timeout)
1532 sctp_wait_for_close(sk, timeout);
1534 /* This will run the backlog queue. */
1537 /* Supposedly, no process has access to the socket, but
1538 * the net layers still may.
1539 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1540 * held and that should be grabbed before socket lock.
1542 spin_lock_bh(&net->sctp.addr_wq_lock);
1543 bh_lock_sock_nested(sk);
1545 /* Hold the sock, since sk_common_release() will put sock_put()
1546 * and we have just a little more cleanup.
1549 sk_common_release(sk);
1552 spin_unlock_bh(&net->sctp.addr_wq_lock);
1556 SCTP_DBG_OBJCNT_DEC(sock);
1559 /* Handle EPIPE error. */
1560 static int sctp_error(struct sock *sk, int flags, int err)
1563 err = sock_error(sk) ? : -EPIPE;
1564 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1565 send_sig(SIGPIPE, current, 0);
1569 /* API 3.1.3 sendmsg() - UDP Style Syntax
1571 * An application uses sendmsg() and recvmsg() calls to transmit data to
1572 * and receive data from its peer.
1574 * ssize_t sendmsg(int socket, const struct msghdr *message,
1577 * socket - the socket descriptor of the endpoint.
1578 * message - pointer to the msghdr structure which contains a single
1579 * user message and possibly some ancillary data.
1581 * See Section 5 for complete description of the data
1584 * flags - flags sent or received with the user message, see Section
1585 * 5 for complete description of the flags.
1587 * Note: This function could use a rewrite especially when explicit
1588 * connect support comes in.
1590 /* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1592 static int sctp_msghdr_parse(const struct msghdr *msg,
1593 struct sctp_cmsgs *cmsgs);
1595 static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1596 struct sctp_sndrcvinfo *srinfo,
1597 const struct msghdr *msg, size_t msg_len)
1602 if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1605 if (msg_len > sk->sk_sndbuf)
1608 memset(cmsgs, 0, sizeof(*cmsgs));
1609 err = sctp_msghdr_parse(msg, cmsgs);
1611 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1615 memset(srinfo, 0, sizeof(*srinfo));
1616 if (cmsgs->srinfo) {
1617 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1618 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1619 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1620 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1621 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1622 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1626 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1627 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1628 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1629 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1630 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1633 if (cmsgs->prinfo) {
1634 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1635 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1636 cmsgs->prinfo->pr_policy);
1639 sflags = srinfo->sinfo_flags;
1640 if (!sflags && msg_len)
1643 if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1646 if (((sflags & SCTP_EOF) && msg_len > 0) ||
1647 (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1650 if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1656 static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1657 struct sctp_cmsgs *cmsgs,
1658 union sctp_addr *daddr,
1659 struct sctp_transport **tp)
1661 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1662 struct sctp_association *asoc;
1663 struct cmsghdr *cmsg;
1664 __be32 flowinfo = 0;
1670 if (sflags & (SCTP_EOF | SCTP_ABORT))
1673 if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1674 sctp_sstate(sk, CLOSING)))
1675 return -EADDRNOTAVAIL;
1677 /* Label connection socket for first association 1-to-many
1678 * style for client sequence socket()->sendmsg(). This
1679 * needs to be done before sctp_assoc_add_peer() as that will
1680 * set up the initial packet that needs to account for any
1681 * security ip options (CIPSO/CALIPSO) added to the packet.
1683 af = sctp_get_af_specific(daddr->sa.sa_family);
1686 err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1687 (struct sockaddr *)daddr,
1692 err = sctp_connect_new_asoc(ep, daddr, cmsgs->init, tp);
1697 if (!cmsgs->addrs_msg)
1700 if (daddr->sa.sa_family == AF_INET6)
1701 flowinfo = daddr->v6.sin6_flowinfo;
1703 /* sendv addr list parse */
1704 for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1705 union sctp_addr _daddr;
1708 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1709 (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1710 cmsg->cmsg_type != SCTP_DSTADDRV6))
1714 memset(daddr, 0, sizeof(*daddr));
1715 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1716 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
1717 if (dlen < sizeof(struct in_addr)) {
1722 dlen = sizeof(struct in_addr);
1723 daddr->v4.sin_family = AF_INET;
1724 daddr->v4.sin_port = htons(asoc->peer.port);
1725 memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1727 if (dlen < sizeof(struct in6_addr)) {
1732 dlen = sizeof(struct in6_addr);
1733 daddr->v6.sin6_flowinfo = flowinfo;
1734 daddr->v6.sin6_family = AF_INET6;
1735 daddr->v6.sin6_port = htons(asoc->peer.port);
1736 memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1739 err = sctp_connect_add_peer(asoc, daddr, sizeof(*daddr));
1747 sctp_association_free(asoc);
1751 static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1752 __u16 sflags, struct msghdr *msg,
1755 struct sock *sk = asoc->base.sk;
1756 struct net *net = sock_net(sk);
1758 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1761 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1762 !sctp_state(asoc, ESTABLISHED))
1765 if (sflags & SCTP_EOF) {
1766 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1767 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1772 if (sflags & SCTP_ABORT) {
1773 struct sctp_chunk *chunk;
1775 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1779 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1780 sctp_primitive_ABORT(net, asoc, chunk);
1781 iov_iter_revert(&msg->msg_iter, msg_len);
1789 static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1790 struct msghdr *msg, size_t msg_len,
1791 struct sctp_transport *transport,
1792 struct sctp_sndrcvinfo *sinfo)
1794 struct sock *sk = asoc->base.sk;
1795 struct sctp_sock *sp = sctp_sk(sk);
1796 struct net *net = sock_net(sk);
1797 struct sctp_datamsg *datamsg;
1798 bool wait_connect = false;
1799 struct sctp_chunk *chunk;
1803 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1808 if (unlikely(!SCTP_SO(&asoc->stream, sinfo->sinfo_stream)->ext)) {
1809 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1814 if (sp->disable_fragments && msg_len > asoc->frag_point) {
1819 if (asoc->pmtu_pending) {
1820 if (sp->param_flags & SPP_PMTUD_ENABLE)
1821 sctp_assoc_sync_pmtu(asoc);
1822 asoc->pmtu_pending = 0;
1825 if (sctp_wspace(asoc) < (int)msg_len)
1826 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1828 if (sctp_wspace(asoc) <= 0 || !sk_wmem_schedule(sk, msg_len)) {
1829 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1830 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1833 if (unlikely(sinfo->sinfo_stream >= asoc->stream.outcnt)) {
1839 if (sctp_state(asoc, CLOSED)) {
1840 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1844 if (asoc->ep->intl_enable) {
1845 timeo = sock_sndtimeo(sk, 0);
1846 err = sctp_wait_for_connect(asoc, &timeo);
1852 wait_connect = true;
1855 pr_debug("%s: we associated primitively\n", __func__);
1858 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1859 if (IS_ERR(datamsg)) {
1860 err = PTR_ERR(datamsg);
1864 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1866 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1867 sctp_chunk_hold(chunk);
1868 sctp_set_owner_w(chunk);
1869 chunk->transport = transport;
1872 err = sctp_primitive_SEND(net, asoc, datamsg);
1874 sctp_datamsg_free(datamsg);
1878 pr_debug("%s: we sent primitively\n", __func__);
1880 sctp_datamsg_put(datamsg);
1882 if (unlikely(wait_connect)) {
1883 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1884 sctp_wait_for_connect(asoc, &timeo);
1893 static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1894 const struct msghdr *msg,
1895 struct sctp_cmsgs *cmsgs)
1897 union sctp_addr *daddr = NULL;
1900 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1901 int len = msg->msg_namelen;
1903 if (len > sizeof(*daddr))
1904 len = sizeof(*daddr);
1906 daddr = (union sctp_addr *)msg->msg_name;
1908 err = sctp_verify_addr(sk, daddr, len);
1910 return ERR_PTR(err);
1916 static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
1917 struct sctp_sndrcvinfo *sinfo,
1918 struct sctp_cmsgs *cmsgs)
1920 if (!cmsgs->srinfo && !cmsgs->sinfo) {
1921 sinfo->sinfo_stream = asoc->default_stream;
1922 sinfo->sinfo_ppid = asoc->default_ppid;
1923 sinfo->sinfo_context = asoc->default_context;
1924 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
1927 sinfo->sinfo_flags = asoc->default_flags;
1930 if (!cmsgs->srinfo && !cmsgs->prinfo)
1931 sinfo->sinfo_timetolive = asoc->default_timetolive;
1933 if (cmsgs->authinfo) {
1934 /* Reuse sinfo_tsn to indicate that authinfo was set and
1935 * sinfo_ssn to save the keyid on tx path.
1937 sinfo->sinfo_tsn = 1;
1938 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
1942 static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
1944 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1945 struct sctp_transport *transport = NULL;
1946 struct sctp_sndrcvinfo _sinfo, *sinfo;
1947 struct sctp_association *asoc, *tmp;
1948 struct sctp_cmsgs cmsgs;
1949 union sctp_addr *daddr;
1954 /* Parse and get snd_info */
1955 err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
1960 sflags = sinfo->sinfo_flags;
1962 /* Get daddr from msg */
1963 daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
1964 if (IS_ERR(daddr)) {
1965 err = PTR_ERR(daddr);
1971 /* SCTP_SENDALL process */
1972 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
1973 list_for_each_entry_safe(asoc, tmp, &ep->asocs, asocs) {
1974 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
1981 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
1983 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
1988 iov_iter_revert(&msg->msg_iter, err);
1994 /* Get and check or create asoc */
1996 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1998 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2003 err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2008 asoc = transport->asoc;
2012 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2015 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
2021 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
2026 /* Update snd_info with the asoc */
2027 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2029 /* Send msg to the asoc */
2030 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
2031 if (err < 0 && err != -ESRCH && new)
2032 sctp_association_free(asoc);
2037 return sctp_error(sk, msg->msg_flags, err);
2040 /* This is an extended version of skb_pull() that removes the data from the
2041 * start of a skb even when data is spread across the list of skb's in the
2042 * frag_list. len specifies the total amount of data that needs to be removed.
2043 * when 'len' bytes could be removed from the skb, it returns 0.
2044 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2045 * could not be removed.
2047 static int sctp_skb_pull(struct sk_buff *skb, int len)
2049 struct sk_buff *list;
2050 int skb_len = skb_headlen(skb);
2053 if (len <= skb_len) {
2054 __skb_pull(skb, len);
2058 __skb_pull(skb, skb_len);
2060 skb_walk_frags(skb, list) {
2061 rlen = sctp_skb_pull(list, len);
2062 skb->len -= (len-rlen);
2063 skb->data_len -= (len-rlen);
2074 /* API 3.1.3 recvmsg() - UDP Style Syntax
2076 * ssize_t recvmsg(int socket, struct msghdr *message,
2079 * socket - the socket descriptor of the endpoint.
2080 * message - pointer to the msghdr structure which contains a single
2081 * user message and possibly some ancillary data.
2083 * See Section 5 for complete description of the data
2086 * flags - flags sent or received with the user message, see Section
2087 * 5 for complete description of the flags.
2089 static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2090 int flags, int *addr_len)
2092 struct sctp_ulpevent *event = NULL;
2093 struct sctp_sock *sp = sctp_sk(sk);
2094 struct sk_buff *skb, *head_skb;
2099 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, flags:0x%x, addr_len:%p)\n",
2100 __func__, sk, msg, len, flags, addr_len);
2104 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
2105 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
2110 skb = sctp_skb_recv_datagram(sk, flags, &err);
2114 /* Get the total length of the skb including any skb's in the
2123 err = skb_copy_datagram_msg(skb, 0, msg, copied);
2125 event = sctp_skb2event(skb);
2130 if (event->chunk && event->chunk->head_skb)
2131 head_skb = event->chunk->head_skb;
2134 sock_recv_cmsgs(msg, sk, head_skb);
2135 if (sctp_ulpevent_is_notification(event)) {
2136 msg->msg_flags |= MSG_NOTIFICATION;
2137 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2139 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
2142 /* Check if we allow SCTP_NXTINFO. */
2143 if (sp->recvnxtinfo)
2144 sctp_ulpevent_read_nxtinfo(event, msg, sk);
2145 /* Check if we allow SCTP_RCVINFO. */
2146 if (sp->recvrcvinfo)
2147 sctp_ulpevent_read_rcvinfo(event, msg);
2148 /* Check if we allow SCTP_SNDRCVINFO. */
2149 if (sctp_ulpevent_type_enabled(sp->subscribe, SCTP_DATA_IO_EVENT))
2150 sctp_ulpevent_read_sndrcvinfo(event, msg);
2154 /* If skb's length exceeds the user's buffer, update the skb and
2155 * push it back to the receive_queue so that the next call to
2156 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2158 if (skb_len > copied) {
2159 msg->msg_flags &= ~MSG_EOR;
2160 if (flags & MSG_PEEK)
2162 sctp_skb_pull(skb, copied);
2163 skb_queue_head(&sk->sk_receive_queue, skb);
2165 /* When only partial message is copied to the user, increase
2166 * rwnd by that amount. If all the data in the skb is read,
2167 * rwnd is updated when the event is freed.
2169 if (!sctp_ulpevent_is_notification(event))
2170 sctp_assoc_rwnd_increase(event->asoc, copied);
2172 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2173 (event->msg_flags & MSG_EOR))
2174 msg->msg_flags |= MSG_EOR;
2176 msg->msg_flags &= ~MSG_EOR;
2179 if (flags & MSG_PEEK) {
2180 /* Release the skb reference acquired after peeking the skb in
2181 * sctp_skb_recv_datagram().
2185 /* Free the event which includes releasing the reference to
2186 * the owner of the skb, freeing the skb and updating the
2189 sctp_ulpevent_free(event);
2196 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2198 * This option is a on/off flag. If enabled no SCTP message
2199 * fragmentation will be performed. Instead if a message being sent
2200 * exceeds the current PMTU size, the message will NOT be sent and
2201 * instead a error will be indicated to the user.
2203 static int sctp_setsockopt_disable_fragments(struct sock *sk, int *val,
2204 unsigned int optlen)
2206 if (optlen < sizeof(int))
2208 sctp_sk(sk)->disable_fragments = (*val == 0) ? 0 : 1;
2212 static int sctp_setsockopt_events(struct sock *sk, __u8 *sn_type,
2213 unsigned int optlen)
2215 struct sctp_sock *sp = sctp_sk(sk);
2216 struct sctp_association *asoc;
2219 if (optlen > sizeof(struct sctp_event_subscribe))
2222 for (i = 0; i < optlen; i++)
2223 sctp_ulpevent_type_set(&sp->subscribe, SCTP_SN_TYPE_BASE + i,
2226 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
2227 asoc->subscribe = sctp_sk(sk)->subscribe;
2229 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2230 * if there is no data to be sent or retransmit, the stack will
2231 * immediately send up this notification.
2233 if (sctp_ulpevent_type_enabled(sp->subscribe, SCTP_SENDER_DRY_EVENT)) {
2234 struct sctp_ulpevent *event;
2236 asoc = sctp_id2assoc(sk, 0);
2237 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2238 event = sctp_ulpevent_make_sender_dry_event(asoc,
2239 GFP_USER | __GFP_NOWARN);
2243 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
2250 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2252 * This socket option is applicable to the UDP-style socket only. When
2253 * set it will cause associations that are idle for more than the
2254 * specified number of seconds to automatically close. An association
2255 * being idle is defined an association that has NOT sent or received
2256 * user data. The special value of '0' indicates that no automatic
2257 * close of any associations should be performed. The option expects an
2258 * integer defining the number of seconds of idle time before an
2259 * association is closed.
2261 static int sctp_setsockopt_autoclose(struct sock *sk, u32 *optval,
2262 unsigned int optlen)
2264 struct sctp_sock *sp = sctp_sk(sk);
2265 struct net *net = sock_net(sk);
2267 /* Applicable to UDP-style socket only */
2268 if (sctp_style(sk, TCP))
2270 if (optlen != sizeof(int))
2273 sp->autoclose = *optval;
2274 if (sp->autoclose > net->sctp.max_autoclose)
2275 sp->autoclose = net->sctp.max_autoclose;
2280 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2282 * Applications can enable or disable heartbeats for any peer address of
2283 * an association, modify an address's heartbeat interval, force a
2284 * heartbeat to be sent immediately, and adjust the address's maximum
2285 * number of retransmissions sent before an address is considered
2286 * unreachable. The following structure is used to access and modify an
2287 * address's parameters:
2289 * struct sctp_paddrparams {
2290 * sctp_assoc_t spp_assoc_id;
2291 * struct sockaddr_storage spp_address;
2292 * uint32_t spp_hbinterval;
2293 * uint16_t spp_pathmaxrxt;
2294 * uint32_t spp_pathmtu;
2295 * uint32_t spp_sackdelay;
2296 * uint32_t spp_flags;
2297 * uint32_t spp_ipv6_flowlabel;
2301 * spp_assoc_id - (one-to-many style socket) This is filled in the
2302 * application, and identifies the association for
2304 * spp_address - This specifies which address is of interest.
2305 * spp_hbinterval - This contains the value of the heartbeat interval,
2306 * in milliseconds. If a value of zero
2307 * is present in this field then no changes are to
2308 * be made to this parameter.
2309 * spp_pathmaxrxt - This contains the maximum number of
2310 * retransmissions before this address shall be
2311 * considered unreachable. If a value of zero
2312 * is present in this field then no changes are to
2313 * be made to this parameter.
2314 * spp_pathmtu - When Path MTU discovery is disabled the value
2315 * specified here will be the "fixed" path mtu.
2316 * Note that if the spp_address field is empty
2317 * then all associations on this address will
2318 * have this fixed path mtu set upon them.
2320 * spp_sackdelay - When delayed sack is enabled, this value specifies
2321 * the number of milliseconds that sacks will be delayed
2322 * for. This value will apply to all addresses of an
2323 * association if the spp_address field is empty. Note
2324 * also, that if delayed sack is enabled and this
2325 * value is set to 0, no change is made to the last
2326 * recorded delayed sack timer value.
2328 * spp_flags - These flags are used to control various features
2329 * on an association. The flag field may contain
2330 * zero or more of the following options.
2332 * SPP_HB_ENABLE - Enable heartbeats on the
2333 * specified address. Note that if the address
2334 * field is empty all addresses for the association
2335 * have heartbeats enabled upon them.
2337 * SPP_HB_DISABLE - Disable heartbeats on the
2338 * speicifed address. Note that if the address
2339 * field is empty all addresses for the association
2340 * will have their heartbeats disabled. Note also
2341 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2342 * mutually exclusive, only one of these two should
2343 * be specified. Enabling both fields will have
2344 * undetermined results.
2346 * SPP_HB_DEMAND - Request a user initiated heartbeat
2347 * to be made immediately.
2349 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2350 * heartbeat delayis to be set to the value of 0
2353 * SPP_PMTUD_ENABLE - This field will enable PMTU
2354 * discovery upon the specified address. Note that
2355 * if the address feild is empty then all addresses
2356 * on the association are effected.
2358 * SPP_PMTUD_DISABLE - This field will disable PMTU
2359 * discovery upon the specified address. Note that
2360 * if the address feild is empty then all addresses
2361 * on the association are effected. Not also that
2362 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2363 * exclusive. Enabling both will have undetermined
2366 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2367 * on delayed sack. The time specified in spp_sackdelay
2368 * is used to specify the sack delay for this address. Note
2369 * that if spp_address is empty then all addresses will
2370 * enable delayed sack and take on the sack delay
2371 * value specified in spp_sackdelay.
2372 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2373 * off delayed sack. If the spp_address field is blank then
2374 * delayed sack is disabled for the entire association. Note
2375 * also that this field is mutually exclusive to
2376 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2379 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
2380 * setting of the IPV6 flow label value. The value is
2381 * contained in the spp_ipv6_flowlabel field.
2382 * Upon retrieval, this flag will be set to indicate that
2383 * the spp_ipv6_flowlabel field has a valid value returned.
2384 * If a specific destination address is set (in the
2385 * spp_address field), then the value returned is that of
2386 * the address. If just an association is specified (and
2387 * no address), then the association's default flow label
2388 * is returned. If neither an association nor a destination
2389 * is specified, then the socket's default flow label is
2390 * returned. For non-IPv6 sockets, this flag will be left
2393 * SPP_DSCP: Setting this flag enables the setting of the
2394 * Differentiated Services Code Point (DSCP) value
2395 * associated with either the association or a specific
2396 * address. The value is obtained in the spp_dscp field.
2397 * Upon retrieval, this flag will be set to indicate that
2398 * the spp_dscp field has a valid value returned. If a
2399 * specific destination address is set when called (in the
2400 * spp_address field), then that specific destination
2401 * address's DSCP value is returned. If just an association
2402 * is specified, then the association's default DSCP is
2403 * returned. If neither an association nor a destination is
2404 * specified, then the socket's default DSCP is returned.
2406 * spp_ipv6_flowlabel
2407 * - This field is used in conjunction with the
2408 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
2409 * The 20 least significant bits are used for the flow
2410 * label. This setting has precedence over any IPv6-layer
2413 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
2414 * and contains the DSCP. The 6 most significant bits are
2415 * used for the DSCP. This setting has precedence over any
2416 * IPv4- or IPv6- layer setting.
2418 static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2419 struct sctp_transport *trans,
2420 struct sctp_association *asoc,
2421 struct sctp_sock *sp,
2424 int sackdelay_change)
2428 if (params->spp_flags & SPP_HB_DEMAND && trans) {
2429 error = sctp_primitive_REQUESTHEARTBEAT(trans->asoc->base.net,
2430 trans->asoc, trans);
2435 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2436 * this field is ignored. Note also that a value of zero indicates
2437 * the current setting should be left unchanged.
2439 if (params->spp_flags & SPP_HB_ENABLE) {
2441 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2442 * set. This lets us use 0 value when this flag
2445 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2446 params->spp_hbinterval = 0;
2448 if (params->spp_hbinterval ||
2449 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2452 msecs_to_jiffies(params->spp_hbinterval);
2453 sctp_transport_reset_hb_timer(trans);
2456 msecs_to_jiffies(params->spp_hbinterval);
2458 sp->hbinterval = params->spp_hbinterval;
2465 trans->param_flags =
2466 (trans->param_flags & ~SPP_HB) | hb_change;
2469 (asoc->param_flags & ~SPP_HB) | hb_change;
2472 (sp->param_flags & ~SPP_HB) | hb_change;
2476 /* When Path MTU discovery is disabled the value specified here will
2477 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2478 * include the flag SPP_PMTUD_DISABLE for this field to have any
2481 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
2483 trans->pathmtu = params->spp_pathmtu;
2484 sctp_assoc_sync_pmtu(asoc);
2486 sctp_assoc_set_pmtu(asoc, params->spp_pathmtu);
2488 sp->pathmtu = params->spp_pathmtu;
2494 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2495 (params->spp_flags & SPP_PMTUD_ENABLE);
2496 trans->param_flags =
2497 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2499 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
2500 sctp_assoc_sync_pmtu(asoc);
2502 sctp_transport_pl_reset(trans);
2505 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2508 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2512 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2513 * value of this field is ignored. Note also that a value of zero
2514 * indicates the current setting should be left unchanged.
2516 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
2519 msecs_to_jiffies(params->spp_sackdelay);
2522 msecs_to_jiffies(params->spp_sackdelay);
2524 sp->sackdelay = params->spp_sackdelay;
2528 if (sackdelay_change) {
2530 trans->param_flags =
2531 (trans->param_flags & ~SPP_SACKDELAY) |
2535 (asoc->param_flags & ~SPP_SACKDELAY) |
2539 (sp->param_flags & ~SPP_SACKDELAY) |
2544 /* Note that a value of zero indicates the current setting should be
2547 if (params->spp_pathmaxrxt) {
2549 trans->pathmaxrxt = params->spp_pathmaxrxt;
2551 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2553 sp->pathmaxrxt = params->spp_pathmaxrxt;
2557 if (params->spp_flags & SPP_IPV6_FLOWLABEL) {
2559 if (trans->ipaddr.sa.sa_family == AF_INET6) {
2560 trans->flowlabel = params->spp_ipv6_flowlabel &
2561 SCTP_FLOWLABEL_VAL_MASK;
2562 trans->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2565 struct sctp_transport *t;
2567 list_for_each_entry(t, &asoc->peer.transport_addr_list,
2569 if (t->ipaddr.sa.sa_family != AF_INET6)
2571 t->flowlabel = params->spp_ipv6_flowlabel &
2572 SCTP_FLOWLABEL_VAL_MASK;
2573 t->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2575 asoc->flowlabel = params->spp_ipv6_flowlabel &
2576 SCTP_FLOWLABEL_VAL_MASK;
2577 asoc->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2578 } else if (sctp_opt2sk(sp)->sk_family == AF_INET6) {
2579 sp->flowlabel = params->spp_ipv6_flowlabel &
2580 SCTP_FLOWLABEL_VAL_MASK;
2581 sp->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2585 if (params->spp_flags & SPP_DSCP) {
2587 trans->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2588 trans->dscp |= SCTP_DSCP_SET_MASK;
2590 struct sctp_transport *t;
2592 list_for_each_entry(t, &asoc->peer.transport_addr_list,
2594 t->dscp = params->spp_dscp &
2596 t->dscp |= SCTP_DSCP_SET_MASK;
2598 asoc->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2599 asoc->dscp |= SCTP_DSCP_SET_MASK;
2601 sp->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2602 sp->dscp |= SCTP_DSCP_SET_MASK;
2609 static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2610 struct sctp_paddrparams *params,
2611 unsigned int optlen)
2613 struct sctp_transport *trans = NULL;
2614 struct sctp_association *asoc = NULL;
2615 struct sctp_sock *sp = sctp_sk(sk);
2617 int hb_change, pmtud_change, sackdelay_change;
2619 if (optlen == ALIGN(offsetof(struct sctp_paddrparams,
2620 spp_ipv6_flowlabel), 4)) {
2621 if (params->spp_flags & (SPP_DSCP | SPP_IPV6_FLOWLABEL))
2623 } else if (optlen != sizeof(*params)) {
2627 /* Validate flags and value parameters. */
2628 hb_change = params->spp_flags & SPP_HB;
2629 pmtud_change = params->spp_flags & SPP_PMTUD;
2630 sackdelay_change = params->spp_flags & SPP_SACKDELAY;
2632 if (hb_change == SPP_HB ||
2633 pmtud_change == SPP_PMTUD ||
2634 sackdelay_change == SPP_SACKDELAY ||
2635 params->spp_sackdelay > 500 ||
2636 (params->spp_pathmtu &&
2637 params->spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2640 /* If an address other than INADDR_ANY is specified, and
2641 * no transport is found, then the request is invalid.
2643 if (!sctp_is_any(sk, (union sctp_addr *)¶ms->spp_address)) {
2644 trans = sctp_addr_id2transport(sk, ¶ms->spp_address,
2645 params->spp_assoc_id);
2650 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
2651 * socket is a one to many style socket, and an association
2652 * was not found, then the id was invalid.
2654 asoc = sctp_id2assoc(sk, params->spp_assoc_id);
2655 if (!asoc && params->spp_assoc_id != SCTP_FUTURE_ASSOC &&
2656 sctp_style(sk, UDP))
2659 /* Heartbeat demand can only be sent on a transport or
2660 * association, but not a socket.
2662 if (params->spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2665 /* Process parameters. */
2666 error = sctp_apply_peer_addr_params(params, trans, asoc, sp,
2667 hb_change, pmtud_change,
2673 /* If changes are for association, also apply parameters to each
2676 if (!trans && asoc) {
2677 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2679 sctp_apply_peer_addr_params(params, trans, asoc, sp,
2680 hb_change, pmtud_change,
2688 static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2690 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2693 static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2695 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2698 static void sctp_apply_asoc_delayed_ack(struct sctp_sack_info *params,
2699 struct sctp_association *asoc)
2701 struct sctp_transport *trans;
2703 if (params->sack_delay) {
2704 asoc->sackdelay = msecs_to_jiffies(params->sack_delay);
2706 sctp_spp_sackdelay_enable(asoc->param_flags);
2708 if (params->sack_freq == 1) {
2710 sctp_spp_sackdelay_disable(asoc->param_flags);
2711 } else if (params->sack_freq > 1) {
2712 asoc->sackfreq = params->sack_freq;
2714 sctp_spp_sackdelay_enable(asoc->param_flags);
2717 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2719 if (params->sack_delay) {
2720 trans->sackdelay = msecs_to_jiffies(params->sack_delay);
2721 trans->param_flags =
2722 sctp_spp_sackdelay_enable(trans->param_flags);
2724 if (params->sack_freq == 1) {
2725 trans->param_flags =
2726 sctp_spp_sackdelay_disable(trans->param_flags);
2727 } else if (params->sack_freq > 1) {
2728 trans->sackfreq = params->sack_freq;
2729 trans->param_flags =
2730 sctp_spp_sackdelay_enable(trans->param_flags);
2736 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
2738 * This option will effect the way delayed acks are performed. This
2739 * option allows you to get or set the delayed ack time, in
2740 * milliseconds. It also allows changing the delayed ack frequency.
2741 * Changing the frequency to 1 disables the delayed sack algorithm. If
2742 * the assoc_id is 0, then this sets or gets the endpoints default
2743 * values. If the assoc_id field is non-zero, then the set or get
2744 * effects the specified association for the one to many model (the
2745 * assoc_id field is ignored by the one to one model). Note that if
2746 * sack_delay or sack_freq are 0 when setting this option, then the
2747 * current values will remain unchanged.
2749 * struct sctp_sack_info {
2750 * sctp_assoc_t sack_assoc_id;
2751 * uint32_t sack_delay;
2752 * uint32_t sack_freq;
2755 * sack_assoc_id - This parameter, indicates which association the user
2756 * is performing an action upon. Note that if this field's value is
2757 * zero then the endpoints default value is changed (effecting future
2758 * associations only).
2760 * sack_delay - This parameter contains the number of milliseconds that
2761 * the user is requesting the delayed ACK timer be set to. Note that
2762 * this value is defined in the standard to be between 200 and 500
2765 * sack_freq - This parameter contains the number of packets that must
2766 * be received before a sack is sent without waiting for the delay
2767 * timer to expire. The default value for this is 2, setting this
2768 * value to 1 will disable the delayed sack algorithm.
2770 static int __sctp_setsockopt_delayed_ack(struct sock *sk,
2771 struct sctp_sack_info *params)
2773 struct sctp_sock *sp = sctp_sk(sk);
2774 struct sctp_association *asoc;
2776 /* Validate value parameter. */
2777 if (params->sack_delay > 500)
2780 /* Get association, if sack_assoc_id != SCTP_FUTURE_ASSOC and the
2781 * socket is a one to many style socket, and an association
2782 * was not found, then the id was invalid.
2784 asoc = sctp_id2assoc(sk, params->sack_assoc_id);
2785 if (!asoc && params->sack_assoc_id > SCTP_ALL_ASSOC &&
2786 sctp_style(sk, UDP))
2790 sctp_apply_asoc_delayed_ack(params, asoc);
2795 if (sctp_style(sk, TCP))
2796 params->sack_assoc_id = SCTP_FUTURE_ASSOC;
2798 if (params->sack_assoc_id == SCTP_FUTURE_ASSOC ||
2799 params->sack_assoc_id == SCTP_ALL_ASSOC) {
2800 if (params->sack_delay) {
2801 sp->sackdelay = params->sack_delay;
2803 sctp_spp_sackdelay_enable(sp->param_flags);
2805 if (params->sack_freq == 1) {
2807 sctp_spp_sackdelay_disable(sp->param_flags);
2808 } else if (params->sack_freq > 1) {
2809 sp->sackfreq = params->sack_freq;
2811 sctp_spp_sackdelay_enable(sp->param_flags);
2815 if (params->sack_assoc_id == SCTP_CURRENT_ASSOC ||
2816 params->sack_assoc_id == SCTP_ALL_ASSOC)
2817 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
2818 sctp_apply_asoc_delayed_ack(params, asoc);
2823 static int sctp_setsockopt_delayed_ack(struct sock *sk,
2824 struct sctp_sack_info *params,
2825 unsigned int optlen)
2827 if (optlen == sizeof(struct sctp_assoc_value)) {
2828 struct sctp_assoc_value *v = (struct sctp_assoc_value *)params;
2829 struct sctp_sack_info p;
2831 pr_warn_ratelimited(DEPRECATED
2833 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
2834 "Use struct sctp_sack_info instead\n",
2835 current->comm, task_pid_nr(current));
2837 p.sack_assoc_id = v->assoc_id;
2838 p.sack_delay = v->assoc_value;
2839 p.sack_freq = v->assoc_value ? 0 : 1;
2840 return __sctp_setsockopt_delayed_ack(sk, &p);
2843 if (optlen != sizeof(struct sctp_sack_info))
2845 if (params->sack_delay == 0 && params->sack_freq == 0)
2847 return __sctp_setsockopt_delayed_ack(sk, params);
2850 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2852 * Applications can specify protocol parameters for the default association
2853 * initialization. The option name argument to setsockopt() and getsockopt()
2856 * Setting initialization parameters is effective only on an unconnected
2857 * socket (for UDP-style sockets only future associations are effected
2858 * by the change). With TCP-style sockets, this option is inherited by
2859 * sockets derived from a listener socket.
2861 static int sctp_setsockopt_initmsg(struct sock *sk, struct sctp_initmsg *sinit,
2862 unsigned int optlen)
2864 struct sctp_sock *sp = sctp_sk(sk);
2866 if (optlen != sizeof(struct sctp_initmsg))
2869 if (sinit->sinit_num_ostreams)
2870 sp->initmsg.sinit_num_ostreams = sinit->sinit_num_ostreams;
2871 if (sinit->sinit_max_instreams)
2872 sp->initmsg.sinit_max_instreams = sinit->sinit_max_instreams;
2873 if (sinit->sinit_max_attempts)
2874 sp->initmsg.sinit_max_attempts = sinit->sinit_max_attempts;
2875 if (sinit->sinit_max_init_timeo)
2876 sp->initmsg.sinit_max_init_timeo = sinit->sinit_max_init_timeo;
2882 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2884 * Applications that wish to use the sendto() system call may wish to
2885 * specify a default set of parameters that would normally be supplied
2886 * through the inclusion of ancillary data. This socket option allows
2887 * such an application to set the default sctp_sndrcvinfo structure.
2888 * The application that wishes to use this socket option simply passes
2889 * in to this call the sctp_sndrcvinfo structure defined in Section
2890 * 5.2.2) The input parameters accepted by this call include
2891 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2892 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2893 * to this call if the caller is using the UDP model.
2895 static int sctp_setsockopt_default_send_param(struct sock *sk,
2896 struct sctp_sndrcvinfo *info,
2897 unsigned int optlen)
2899 struct sctp_sock *sp = sctp_sk(sk);
2900 struct sctp_association *asoc;
2902 if (optlen != sizeof(*info))
2904 if (info->sinfo_flags &
2905 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2906 SCTP_ABORT | SCTP_EOF))
2909 asoc = sctp_id2assoc(sk, info->sinfo_assoc_id);
2910 if (!asoc && info->sinfo_assoc_id > SCTP_ALL_ASSOC &&
2911 sctp_style(sk, UDP))
2915 asoc->default_stream = info->sinfo_stream;
2916 asoc->default_flags = info->sinfo_flags;
2917 asoc->default_ppid = info->sinfo_ppid;
2918 asoc->default_context = info->sinfo_context;
2919 asoc->default_timetolive = info->sinfo_timetolive;
2924 if (sctp_style(sk, TCP))
2925 info->sinfo_assoc_id = SCTP_FUTURE_ASSOC;
2927 if (info->sinfo_assoc_id == SCTP_FUTURE_ASSOC ||
2928 info->sinfo_assoc_id == SCTP_ALL_ASSOC) {
2929 sp->default_stream = info->sinfo_stream;
2930 sp->default_flags = info->sinfo_flags;
2931 sp->default_ppid = info->sinfo_ppid;
2932 sp->default_context = info->sinfo_context;
2933 sp->default_timetolive = info->sinfo_timetolive;
2936 if (info->sinfo_assoc_id == SCTP_CURRENT_ASSOC ||
2937 info->sinfo_assoc_id == SCTP_ALL_ASSOC) {
2938 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
2939 asoc->default_stream = info->sinfo_stream;
2940 asoc->default_flags = info->sinfo_flags;
2941 asoc->default_ppid = info->sinfo_ppid;
2942 asoc->default_context = info->sinfo_context;
2943 asoc->default_timetolive = info->sinfo_timetolive;
2950 /* RFC6458, Section 8.1.31. Set/get Default Send Parameters
2951 * (SCTP_DEFAULT_SNDINFO)
2953 static int sctp_setsockopt_default_sndinfo(struct sock *sk,
2954 struct sctp_sndinfo *info,
2955 unsigned int optlen)
2957 struct sctp_sock *sp = sctp_sk(sk);
2958 struct sctp_association *asoc;
2960 if (optlen != sizeof(*info))
2962 if (info->snd_flags &
2963 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2964 SCTP_ABORT | SCTP_EOF))
2967 asoc = sctp_id2assoc(sk, info->snd_assoc_id);
2968 if (!asoc && info->snd_assoc_id > SCTP_ALL_ASSOC &&
2969 sctp_style(sk, UDP))
2973 asoc->default_stream = info->snd_sid;
2974 asoc->default_flags = info->snd_flags;
2975 asoc->default_ppid = info->snd_ppid;
2976 asoc->default_context = info->snd_context;
2981 if (sctp_style(sk, TCP))
2982 info->snd_assoc_id = SCTP_FUTURE_ASSOC;
2984 if (info->snd_assoc_id == SCTP_FUTURE_ASSOC ||
2985 info->snd_assoc_id == SCTP_ALL_ASSOC) {
2986 sp->default_stream = info->snd_sid;
2987 sp->default_flags = info->snd_flags;
2988 sp->default_ppid = info->snd_ppid;
2989 sp->default_context = info->snd_context;
2992 if (info->snd_assoc_id == SCTP_CURRENT_ASSOC ||
2993 info->snd_assoc_id == SCTP_ALL_ASSOC) {
2994 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
2995 asoc->default_stream = info->snd_sid;
2996 asoc->default_flags = info->snd_flags;
2997 asoc->default_ppid = info->snd_ppid;
2998 asoc->default_context = info->snd_context;
3005 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
3007 * Requests that the local SCTP stack use the enclosed peer address as
3008 * the association primary. The enclosed address must be one of the
3009 * association peer's addresses.
3011 static int sctp_setsockopt_primary_addr(struct sock *sk, struct sctp_prim *prim,
3012 unsigned int optlen)
3014 struct sctp_transport *trans;
3018 if (optlen != sizeof(struct sctp_prim))
3021 /* Allow security module to validate address but need address len. */
3022 af = sctp_get_af_specific(prim->ssp_addr.ss_family);
3026 err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
3027 (struct sockaddr *)&prim->ssp_addr,
3032 trans = sctp_addr_id2transport(sk, &prim->ssp_addr, prim->ssp_assoc_id);
3036 sctp_assoc_set_primary(trans->asoc, trans);
3042 * 7.1.5 SCTP_NODELAY
3044 * Turn on/off any Nagle-like algorithm. This means that packets are
3045 * generally sent as soon as possible and no unnecessary delays are
3046 * introduced, at the cost of more packets in the network. Expects an
3047 * integer boolean flag.
3049 static int sctp_setsockopt_nodelay(struct sock *sk, int *val,
3050 unsigned int optlen)
3052 if (optlen < sizeof(int))
3054 sctp_sk(sk)->nodelay = (*val == 0) ? 0 : 1;
3060 * 7.1.1 SCTP_RTOINFO
3062 * The protocol parameters used to initialize and bound retransmission
3063 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3064 * and modify these parameters.
3065 * All parameters are time values, in milliseconds. A value of 0, when
3066 * modifying the parameters, indicates that the current value should not
3070 static int sctp_setsockopt_rtoinfo(struct sock *sk,
3071 struct sctp_rtoinfo *rtoinfo,
3072 unsigned int optlen)
3074 struct sctp_association *asoc;
3075 unsigned long rto_min, rto_max;
3076 struct sctp_sock *sp = sctp_sk(sk);
3078 if (optlen != sizeof (struct sctp_rtoinfo))
3081 asoc = sctp_id2assoc(sk, rtoinfo->srto_assoc_id);
3083 /* Set the values to the specific association */
3084 if (!asoc && rtoinfo->srto_assoc_id != SCTP_FUTURE_ASSOC &&
3085 sctp_style(sk, UDP))
3088 rto_max = rtoinfo->srto_max;
3089 rto_min = rtoinfo->srto_min;
3092 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3094 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3097 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3099 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3101 if (rto_min > rto_max)
3105 if (rtoinfo->srto_initial != 0)
3107 msecs_to_jiffies(rtoinfo->srto_initial);
3108 asoc->rto_max = rto_max;
3109 asoc->rto_min = rto_min;
3111 /* If there is no association or the association-id = 0
3112 * set the values to the endpoint.
3114 if (rtoinfo->srto_initial != 0)
3115 sp->rtoinfo.srto_initial = rtoinfo->srto_initial;
3116 sp->rtoinfo.srto_max = rto_max;
3117 sp->rtoinfo.srto_min = rto_min;
3125 * 7.1.2 SCTP_ASSOCINFO
3127 * This option is used to tune the maximum retransmission attempts
3128 * of the association.
3129 * Returns an error if the new association retransmission value is
3130 * greater than the sum of the retransmission value of the peer.
3131 * See [SCTP] for more information.
3134 static int sctp_setsockopt_associnfo(struct sock *sk,
3135 struct sctp_assocparams *assocparams,
3136 unsigned int optlen)
3139 struct sctp_association *asoc;
3141 if (optlen != sizeof(struct sctp_assocparams))
3144 asoc = sctp_id2assoc(sk, assocparams->sasoc_assoc_id);
3146 if (!asoc && assocparams->sasoc_assoc_id != SCTP_FUTURE_ASSOC &&
3147 sctp_style(sk, UDP))
3150 /* Set the values to the specific association */
3152 if (assocparams->sasoc_asocmaxrxt != 0) {
3155 struct sctp_transport *peer_addr;
3157 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3159 path_sum += peer_addr->pathmaxrxt;
3163 /* Only validate asocmaxrxt if we have more than
3164 * one path/transport. We do this because path
3165 * retransmissions are only counted when we have more
3169 assocparams->sasoc_asocmaxrxt > path_sum)
3172 asoc->max_retrans = assocparams->sasoc_asocmaxrxt;
3175 if (assocparams->sasoc_cookie_life != 0)
3177 ms_to_ktime(assocparams->sasoc_cookie_life);
3179 /* Set the values to the endpoint */
3180 struct sctp_sock *sp = sctp_sk(sk);
3182 if (assocparams->sasoc_asocmaxrxt != 0)
3183 sp->assocparams.sasoc_asocmaxrxt =
3184 assocparams->sasoc_asocmaxrxt;
3185 if (assocparams->sasoc_cookie_life != 0)
3186 sp->assocparams.sasoc_cookie_life =
3187 assocparams->sasoc_cookie_life;
3193 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3195 * This socket option is a boolean flag which turns on or off mapped V4
3196 * addresses. If this option is turned on and the socket is type
3197 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3198 * If this option is turned off, then no mapping will be done of V4
3199 * addresses and a user will receive both PF_INET6 and PF_INET type
3200 * addresses on the socket.
3202 static int sctp_setsockopt_mappedv4(struct sock *sk, int *val,
3203 unsigned int optlen)
3205 struct sctp_sock *sp = sctp_sk(sk);
3207 if (optlen < sizeof(int))
3218 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3219 * This option will get or set the maximum size to put in any outgoing
3220 * SCTP DATA chunk. If a message is larger than this size it will be
3221 * fragmented by SCTP into the specified size. Note that the underlying
3222 * SCTP implementation may fragment into smaller sized chunks when the
3223 * PMTU of the underlying association is smaller than the value set by
3224 * the user. The default value for this option is '0' which indicates
3225 * the user is NOT limiting fragmentation and only the PMTU will effect
3226 * SCTP's choice of DATA chunk size. Note also that values set larger
3227 * than the maximum size of an IP datagram will effectively let SCTP
3228 * control fragmentation (i.e. the same as setting this option to 0).
3230 * The following structure is used to access and modify this parameter:
3232 * struct sctp_assoc_value {
3233 * sctp_assoc_t assoc_id;
3234 * uint32_t assoc_value;
3237 * assoc_id: This parameter is ignored for one-to-one style sockets.
3238 * For one-to-many style sockets this parameter indicates which
3239 * association the user is performing an action upon. Note that if
3240 * this field's value is zero then the endpoints default value is
3241 * changed (effecting future associations only).
3242 * assoc_value: This parameter specifies the maximum size in bytes.
3244 static int sctp_setsockopt_maxseg(struct sock *sk,
3245 struct sctp_assoc_value *params,
3246 unsigned int optlen)
3248 struct sctp_sock *sp = sctp_sk(sk);
3249 struct sctp_association *asoc;
3250 sctp_assoc_t assoc_id;
3253 if (optlen == sizeof(int)) {
3254 pr_warn_ratelimited(DEPRECATED
3256 "Use of int in maxseg socket option.\n"
3257 "Use struct sctp_assoc_value instead\n",
3258 current->comm, task_pid_nr(current));
3259 assoc_id = SCTP_FUTURE_ASSOC;
3260 val = *(int *)params;
3261 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3262 assoc_id = params->assoc_id;
3263 val = params->assoc_value;
3268 asoc = sctp_id2assoc(sk, assoc_id);
3269 if (!asoc && assoc_id != SCTP_FUTURE_ASSOC &&
3270 sctp_style(sk, UDP))
3274 int min_len, max_len;
3275 __u16 datasize = asoc ? sctp_datachk_len(&asoc->stream) :
3276 sizeof(struct sctp_data_chunk);
3278 min_len = sctp_min_frag_point(sp, datasize);
3279 max_len = SCTP_MAX_CHUNK_LEN - datasize;
3281 if (val < min_len || val > max_len)
3286 asoc->user_frag = val;
3287 sctp_assoc_update_frag_point(asoc);
3289 sp->user_frag = val;
3297 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3299 * Requests that the peer mark the enclosed address as the association
3300 * primary. The enclosed address must be one of the association's
3301 * locally bound addresses. The following structure is used to make a
3302 * set primary request:
3304 static int sctp_setsockopt_peer_primary_addr(struct sock *sk,
3305 struct sctp_setpeerprim *prim,
3306 unsigned int optlen)
3308 struct sctp_sock *sp;
3309 struct sctp_association *asoc = NULL;
3310 struct sctp_chunk *chunk;
3316 if (!sp->ep->asconf_enable)
3319 if (optlen != sizeof(struct sctp_setpeerprim))
3322 asoc = sctp_id2assoc(sk, prim->sspp_assoc_id);
3326 if (!asoc->peer.asconf_capable)
3329 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3332 if (!sctp_state(asoc, ESTABLISHED))
3335 af = sctp_get_af_specific(prim->sspp_addr.ss_family);
3339 if (!af->addr_valid((union sctp_addr *)&prim->sspp_addr, sp, NULL))
3340 return -EADDRNOTAVAIL;
3342 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim->sspp_addr))
3343 return -EADDRNOTAVAIL;
3345 /* Allow security module to validate address. */
3346 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3347 (struct sockaddr *)&prim->sspp_addr,
3352 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3353 chunk = sctp_make_asconf_set_prim(asoc,
3354 (union sctp_addr *)&prim->sspp_addr);
3358 err = sctp_send_asconf(asoc, chunk);
3360 pr_debug("%s: we set peer primary addr primitively\n", __func__);
3365 static int sctp_setsockopt_adaptation_layer(struct sock *sk,
3366 struct sctp_setadaptation *adapt,
3367 unsigned int optlen)
3369 if (optlen != sizeof(struct sctp_setadaptation))
3372 sctp_sk(sk)->adaptation_ind = adapt->ssb_adaptation_ind;
3378 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3380 * The context field in the sctp_sndrcvinfo structure is normally only
3381 * used when a failed message is retrieved holding the value that was
3382 * sent down on the actual send call. This option allows the setting of
3383 * a default context on an association basis that will be received on
3384 * reading messages from the peer. This is especially helpful in the
3385 * one-2-many model for an application to keep some reference to an
3386 * internal state machine that is processing messages on the
3387 * association. Note that the setting of this value only effects
3388 * received messages from the peer and does not effect the value that is
3389 * saved with outbound messages.
3391 static int sctp_setsockopt_context(struct sock *sk,
3392 struct sctp_assoc_value *params,
3393 unsigned int optlen)
3395 struct sctp_sock *sp = sctp_sk(sk);
3396 struct sctp_association *asoc;
3398 if (optlen != sizeof(struct sctp_assoc_value))
3401 asoc = sctp_id2assoc(sk, params->assoc_id);
3402 if (!asoc && params->assoc_id > SCTP_ALL_ASSOC &&
3403 sctp_style(sk, UDP))
3407 asoc->default_rcv_context = params->assoc_value;
3412 if (sctp_style(sk, TCP))
3413 params->assoc_id = SCTP_FUTURE_ASSOC;
3415 if (params->assoc_id == SCTP_FUTURE_ASSOC ||
3416 params->assoc_id == SCTP_ALL_ASSOC)
3417 sp->default_rcv_context = params->assoc_value;
3419 if (params->assoc_id == SCTP_CURRENT_ASSOC ||
3420 params->assoc_id == SCTP_ALL_ASSOC)
3421 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
3422 asoc->default_rcv_context = params->assoc_value;
3428 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3430 * This options will at a minimum specify if the implementation is doing
3431 * fragmented interleave. Fragmented interleave, for a one to many
3432 * socket, is when subsequent calls to receive a message may return
3433 * parts of messages from different associations. Some implementations
3434 * may allow you to turn this value on or off. If so, when turned off,
3435 * no fragment interleave will occur (which will cause a head of line
3436 * blocking amongst multiple associations sharing the same one to many
3437 * socket). When this option is turned on, then each receive call may
3438 * come from a different association (thus the user must receive data
3439 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3440 * association each receive belongs to.
3442 * This option takes a boolean value. A non-zero value indicates that
3443 * fragmented interleave is on. A value of zero indicates that
3444 * fragmented interleave is off.
3446 * Note that it is important that an implementation that allows this
3447 * option to be turned on, have it off by default. Otherwise an unaware
3448 * application using the one to many model may become confused and act
3451 static int sctp_setsockopt_fragment_interleave(struct sock *sk, int *val,
3452 unsigned int optlen)
3454 if (optlen != sizeof(int))
3457 sctp_sk(sk)->frag_interleave = !!*val;
3459 if (!sctp_sk(sk)->frag_interleave)
3460 sctp_sk(sk)->ep->intl_enable = 0;
3466 * 8.1.21. Set or Get the SCTP Partial Delivery Point
3467 * (SCTP_PARTIAL_DELIVERY_POINT)
3469 * This option will set or get the SCTP partial delivery point. This
3470 * point is the size of a message where the partial delivery API will be
3471 * invoked to help free up rwnd space for the peer. Setting this to a
3472 * lower value will cause partial deliveries to happen more often. The
3473 * calls argument is an integer that sets or gets the partial delivery
3474 * point. Note also that the call will fail if the user attempts to set
3475 * this value larger than the socket receive buffer size.
3477 * Note that any single message having a length smaller than or equal to
3478 * the SCTP partial delivery point will be delivered in one single read
3479 * call as long as the user provided buffer is large enough to hold the
3482 static int sctp_setsockopt_partial_delivery_point(struct sock *sk, u32 *val,
3483 unsigned int optlen)
3485 if (optlen != sizeof(u32))
3488 /* Note: We double the receive buffer from what the user sets
3489 * it to be, also initial rwnd is based on rcvbuf/2.
3491 if (*val > (sk->sk_rcvbuf >> 1))
3494 sctp_sk(sk)->pd_point = *val;
3496 return 0; /* is this the right error code? */
3500 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3502 * This option will allow a user to change the maximum burst of packets
3503 * that can be emitted by this association. Note that the default value
3504 * is 4, and some implementations may restrict this setting so that it
3505 * can only be lowered.
3507 * NOTE: This text doesn't seem right. Do this on a socket basis with
3508 * future associations inheriting the socket value.
3510 static int sctp_setsockopt_maxburst(struct sock *sk,
3511 struct sctp_assoc_value *params,
3512 unsigned int optlen)
3514 struct sctp_sock *sp = sctp_sk(sk);
3515 struct sctp_association *asoc;
3516 sctp_assoc_t assoc_id;
3519 if (optlen == sizeof(int)) {
3520 pr_warn_ratelimited(DEPRECATED
3522 "Use of int in max_burst socket option deprecated.\n"
3523 "Use struct sctp_assoc_value instead\n",
3524 current->comm, task_pid_nr(current));
3525 assoc_id = SCTP_FUTURE_ASSOC;
3526 assoc_value = *((int *)params);
3527 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3528 assoc_id = params->assoc_id;
3529 assoc_value = params->assoc_value;
3533 asoc = sctp_id2assoc(sk, assoc_id);
3534 if (!asoc && assoc_id > SCTP_ALL_ASSOC && sctp_style(sk, UDP))
3538 asoc->max_burst = assoc_value;
3543 if (sctp_style(sk, TCP))
3544 assoc_id = SCTP_FUTURE_ASSOC;
3546 if (assoc_id == SCTP_FUTURE_ASSOC || assoc_id == SCTP_ALL_ASSOC)
3547 sp->max_burst = assoc_value;
3549 if (assoc_id == SCTP_CURRENT_ASSOC || assoc_id == SCTP_ALL_ASSOC)
3550 list_for_each_entry(asoc, &sp->ep->asocs, asocs)
3551 asoc->max_burst = assoc_value;
3557 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3559 * This set option adds a chunk type that the user is requesting to be
3560 * received only in an authenticated way. Changes to the list of chunks
3561 * will only effect future associations on the socket.
3563 static int sctp_setsockopt_auth_chunk(struct sock *sk,
3564 struct sctp_authchunk *val,
3565 unsigned int optlen)
3567 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3569 if (!ep->auth_enable)
3572 if (optlen != sizeof(struct sctp_authchunk))
3575 switch (val->sauth_chunk) {
3577 case SCTP_CID_INIT_ACK:
3578 case SCTP_CID_SHUTDOWN_COMPLETE:
3583 /* add this chunk id to the endpoint */
3584 return sctp_auth_ep_add_chunkid(ep, val->sauth_chunk);
3588 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3590 * This option gets or sets the list of HMAC algorithms that the local
3591 * endpoint requires the peer to use.
3593 static int sctp_setsockopt_hmac_ident(struct sock *sk,
3594 struct sctp_hmacalgo *hmacs,
3595 unsigned int optlen)
3597 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3600 if (!ep->auth_enable)
3603 if (optlen < sizeof(struct sctp_hmacalgo))
3605 optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3606 SCTP_AUTH_NUM_HMACS * sizeof(u16));
3608 idents = hmacs->shmac_num_idents;
3609 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3610 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo)))
3613 return sctp_auth_ep_set_hmacs(ep, hmacs);
3617 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3619 * This option will set a shared secret key which is used to build an
3620 * association shared key.
3622 static int sctp_setsockopt_auth_key(struct sock *sk,
3623 struct sctp_authkey *authkey,
3624 unsigned int optlen)
3626 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3627 struct sctp_association *asoc;
3630 if (optlen <= sizeof(struct sctp_authkey))
3632 /* authkey->sca_keylength is u16, so optlen can't be bigger than
3635 optlen = min_t(unsigned int, optlen, USHRT_MAX + sizeof(*authkey));
3637 if (authkey->sca_keylength > optlen - sizeof(*authkey))
3640 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3641 if (!asoc && authkey->sca_assoc_id > SCTP_ALL_ASSOC &&
3642 sctp_style(sk, UDP))
3646 ret = sctp_auth_set_key(ep, asoc, authkey);
3650 if (sctp_style(sk, TCP))
3651 authkey->sca_assoc_id = SCTP_FUTURE_ASSOC;
3653 if (authkey->sca_assoc_id == SCTP_FUTURE_ASSOC ||
3654 authkey->sca_assoc_id == SCTP_ALL_ASSOC) {
3655 ret = sctp_auth_set_key(ep, asoc, authkey);
3662 if (authkey->sca_assoc_id == SCTP_CURRENT_ASSOC ||
3663 authkey->sca_assoc_id == SCTP_ALL_ASSOC) {
3664 list_for_each_entry(asoc, &ep->asocs, asocs) {
3665 int res = sctp_auth_set_key(ep, asoc, authkey);
3673 memzero_explicit(authkey, optlen);
3678 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3680 * This option will get or set the active shared key to be used to build
3681 * the association shared key.
3683 static int sctp_setsockopt_active_key(struct sock *sk,
3684 struct sctp_authkeyid *val,
3685 unsigned int optlen)
3687 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3688 struct sctp_association *asoc;
3691 if (optlen != sizeof(struct sctp_authkeyid))
3694 asoc = sctp_id2assoc(sk, val->scact_assoc_id);
3695 if (!asoc && val->scact_assoc_id > SCTP_ALL_ASSOC &&
3696 sctp_style(sk, UDP))
3700 return sctp_auth_set_active_key(ep, asoc, val->scact_keynumber);
3702 if (sctp_style(sk, TCP))
3703 val->scact_assoc_id = SCTP_FUTURE_ASSOC;
3705 if (val->scact_assoc_id == SCTP_FUTURE_ASSOC ||
3706 val->scact_assoc_id == SCTP_ALL_ASSOC) {
3707 ret = sctp_auth_set_active_key(ep, asoc, val->scact_keynumber);
3712 if (val->scact_assoc_id == SCTP_CURRENT_ASSOC ||
3713 val->scact_assoc_id == SCTP_ALL_ASSOC) {
3714 list_for_each_entry(asoc, &ep->asocs, asocs) {
3715 int res = sctp_auth_set_active_key(ep, asoc,
3716 val->scact_keynumber);
3727 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3729 * This set option will delete a shared secret key from use.
3731 static int sctp_setsockopt_del_key(struct sock *sk,
3732 struct sctp_authkeyid *val,
3733 unsigned int optlen)
3735 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3736 struct sctp_association *asoc;
3739 if (optlen != sizeof(struct sctp_authkeyid))
3742 asoc = sctp_id2assoc(sk, val->scact_assoc_id);
3743 if (!asoc && val->scact_assoc_id > SCTP_ALL_ASSOC &&
3744 sctp_style(sk, UDP))
3748 return sctp_auth_del_key_id(ep, asoc, val->scact_keynumber);
3750 if (sctp_style(sk, TCP))
3751 val->scact_assoc_id = SCTP_FUTURE_ASSOC;
3753 if (val->scact_assoc_id == SCTP_FUTURE_ASSOC ||
3754 val->scact_assoc_id == SCTP_ALL_ASSOC) {
3755 ret = sctp_auth_del_key_id(ep, asoc, val->scact_keynumber);
3760 if (val->scact_assoc_id == SCTP_CURRENT_ASSOC ||
3761 val->scact_assoc_id == SCTP_ALL_ASSOC) {
3762 list_for_each_entry(asoc, &ep->asocs, asocs) {
3763 int res = sctp_auth_del_key_id(ep, asoc,
3764 val->scact_keynumber);
3775 * 8.3.4 Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3777 * This set option will deactivate a shared secret key.
3779 static int sctp_setsockopt_deactivate_key(struct sock *sk,
3780 struct sctp_authkeyid *val,
3781 unsigned int optlen)
3783 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3784 struct sctp_association *asoc;
3787 if (optlen != sizeof(struct sctp_authkeyid))
3790 asoc = sctp_id2assoc(sk, val->scact_assoc_id);
3791 if (!asoc && val->scact_assoc_id > SCTP_ALL_ASSOC &&
3792 sctp_style(sk, UDP))
3796 return sctp_auth_deact_key_id(ep, asoc, val->scact_keynumber);
3798 if (sctp_style(sk, TCP))
3799 val->scact_assoc_id = SCTP_FUTURE_ASSOC;
3801 if (val->scact_assoc_id == SCTP_FUTURE_ASSOC ||
3802 val->scact_assoc_id == SCTP_ALL_ASSOC) {
3803 ret = sctp_auth_deact_key_id(ep, asoc, val->scact_keynumber);
3808 if (val->scact_assoc_id == SCTP_CURRENT_ASSOC ||
3809 val->scact_assoc_id == SCTP_ALL_ASSOC) {
3810 list_for_each_entry(asoc, &ep->asocs, asocs) {
3811 int res = sctp_auth_deact_key_id(ep, asoc,
3812 val->scact_keynumber);
3823 * 8.1.23 SCTP_AUTO_ASCONF
3825 * This option will enable or disable the use of the automatic generation of
3826 * ASCONF chunks to add and delete addresses to an existing association. Note
3827 * that this option has two caveats namely: a) it only affects sockets that
3828 * are bound to all addresses available to the SCTP stack, and b) the system
3829 * administrator may have an overriding control that turns the ASCONF feature
3830 * off no matter what setting the socket option may have.
3831 * This option expects an integer boolean flag, where a non-zero value turns on
3832 * the option, and a zero value turns off the option.
3833 * Note. In this implementation, socket operation overrides default parameter
3834 * being set by sysctl as well as FreeBSD implementation
3836 static int sctp_setsockopt_auto_asconf(struct sock *sk, int *val,
3837 unsigned int optlen)
3839 struct sctp_sock *sp = sctp_sk(sk);
3841 if (optlen < sizeof(int))
3843 if (!sctp_is_ep_boundall(sk) && *val)
3845 if ((*val && sp->do_auto_asconf) || (!*val && !sp->do_auto_asconf))
3848 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
3849 if (*val == 0 && sp->do_auto_asconf) {
3850 list_del(&sp->auto_asconf_list);
3851 sp->do_auto_asconf = 0;
3852 } else if (*val && !sp->do_auto_asconf) {
3853 list_add_tail(&sp->auto_asconf_list,
3854 &sock_net(sk)->sctp.auto_asconf_splist);
3855 sp->do_auto_asconf = 1;
3857 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
3862 * SCTP_PEER_ADDR_THLDS
3864 * This option allows us to alter the partially failed threshold for one or all
3865 * transports in an association. See Section 6.1 of:
3866 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3868 static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3869 struct sctp_paddrthlds_v2 *val,
3870 unsigned int optlen, bool v2)
3872 struct sctp_transport *trans;
3873 struct sctp_association *asoc;
3876 len = v2 ? sizeof(*val) : sizeof(struct sctp_paddrthlds);
3880 if (v2 && val->spt_pathpfthld > val->spt_pathcpthld)
3883 if (!sctp_is_any(sk, (const union sctp_addr *)&val->spt_address)) {
3884 trans = sctp_addr_id2transport(sk, &val->spt_address,
3889 if (val->spt_pathmaxrxt)
3890 trans->pathmaxrxt = val->spt_pathmaxrxt;
3892 trans->ps_retrans = val->spt_pathcpthld;
3893 trans->pf_retrans = val->spt_pathpfthld;
3898 asoc = sctp_id2assoc(sk, val->spt_assoc_id);
3899 if (!asoc && val->spt_assoc_id != SCTP_FUTURE_ASSOC &&
3900 sctp_style(sk, UDP))
3904 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3906 if (val->spt_pathmaxrxt)
3907 trans->pathmaxrxt = val->spt_pathmaxrxt;
3909 trans->ps_retrans = val->spt_pathcpthld;
3910 trans->pf_retrans = val->spt_pathpfthld;
3913 if (val->spt_pathmaxrxt)
3914 asoc->pathmaxrxt = val->spt_pathmaxrxt;
3916 asoc->ps_retrans = val->spt_pathcpthld;
3917 asoc->pf_retrans = val->spt_pathpfthld;
3919 struct sctp_sock *sp = sctp_sk(sk);
3921 if (val->spt_pathmaxrxt)
3922 sp->pathmaxrxt = val->spt_pathmaxrxt;
3924 sp->ps_retrans = val->spt_pathcpthld;
3925 sp->pf_retrans = val->spt_pathpfthld;
3931 static int sctp_setsockopt_recvrcvinfo(struct sock *sk, int *val,
3932 unsigned int optlen)
3934 if (optlen < sizeof(int))
3937 sctp_sk(sk)->recvrcvinfo = (*val == 0) ? 0 : 1;
3942 static int sctp_setsockopt_recvnxtinfo(struct sock *sk, int *val,
3943 unsigned int optlen)
3945 if (optlen < sizeof(int))
3948 sctp_sk(sk)->recvnxtinfo = (*val == 0) ? 0 : 1;
3953 static int sctp_setsockopt_pr_supported(struct sock *sk,
3954 struct sctp_assoc_value *params,
3955 unsigned int optlen)
3957 struct sctp_association *asoc;
3959 if (optlen != sizeof(*params))
3962 asoc = sctp_id2assoc(sk, params->assoc_id);
3963 if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
3964 sctp_style(sk, UDP))
3967 sctp_sk(sk)->ep->prsctp_enable = !!params->assoc_value;
3972 static int sctp_setsockopt_default_prinfo(struct sock *sk,
3973 struct sctp_default_prinfo *info,
3974 unsigned int optlen)
3976 struct sctp_sock *sp = sctp_sk(sk);
3977 struct sctp_association *asoc;
3978 int retval = -EINVAL;
3980 if (optlen != sizeof(*info))
3983 if (info->pr_policy & ~SCTP_PR_SCTP_MASK)
3986 if (info->pr_policy == SCTP_PR_SCTP_NONE)
3989 asoc = sctp_id2assoc(sk, info->pr_assoc_id);
3990 if (!asoc && info->pr_assoc_id > SCTP_ALL_ASSOC &&
3991 sctp_style(sk, UDP))
3997 SCTP_PR_SET_POLICY(asoc->default_flags, info->pr_policy);
3998 asoc->default_timetolive = info->pr_value;
4002 if (sctp_style(sk, TCP))
4003 info->pr_assoc_id = SCTP_FUTURE_ASSOC;
4005 if (info->pr_assoc_id == SCTP_FUTURE_ASSOC ||
4006 info->pr_assoc_id == SCTP_ALL_ASSOC) {
4007 SCTP_PR_SET_POLICY(sp->default_flags, info->pr_policy);
4008 sp->default_timetolive = info->pr_value;
4011 if (info->pr_assoc_id == SCTP_CURRENT_ASSOC ||
4012 info->pr_assoc_id == SCTP_ALL_ASSOC) {
4013 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
4014 SCTP_PR_SET_POLICY(asoc->default_flags,
4016 asoc->default_timetolive = info->pr_value;
4024 static int sctp_setsockopt_reconfig_supported(struct sock *sk,
4025 struct sctp_assoc_value *params,
4026 unsigned int optlen)
4028 struct sctp_association *asoc;
4029 int retval = -EINVAL;
4031 if (optlen != sizeof(*params))
4034 asoc = sctp_id2assoc(sk, params->assoc_id);
4035 if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4036 sctp_style(sk, UDP))
4039 sctp_sk(sk)->ep->reconf_enable = !!params->assoc_value;
4047 static int sctp_setsockopt_enable_strreset(struct sock *sk,
4048 struct sctp_assoc_value *params,
4049 unsigned int optlen)
4051 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
4052 struct sctp_association *asoc;
4053 int retval = -EINVAL;
4055 if (optlen != sizeof(*params))
4058 if (params->assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
4061 asoc = sctp_id2assoc(sk, params->assoc_id);
4062 if (!asoc && params->assoc_id > SCTP_ALL_ASSOC &&
4063 sctp_style(sk, UDP))
4069 asoc->strreset_enable = params->assoc_value;
4073 if (sctp_style(sk, TCP))
4074 params->assoc_id = SCTP_FUTURE_ASSOC;
4076 if (params->assoc_id == SCTP_FUTURE_ASSOC ||
4077 params->assoc_id == SCTP_ALL_ASSOC)
4078 ep->strreset_enable = params->assoc_value;
4080 if (params->assoc_id == SCTP_CURRENT_ASSOC ||
4081 params->assoc_id == SCTP_ALL_ASSOC)
4082 list_for_each_entry(asoc, &ep->asocs, asocs)
4083 asoc->strreset_enable = params->assoc_value;
4089 static int sctp_setsockopt_reset_streams(struct sock *sk,
4090 struct sctp_reset_streams *params,
4091 unsigned int optlen)
4093 struct sctp_association *asoc;
4095 if (optlen < sizeof(*params))
4097 /* srs_number_streams is u16, so optlen can't be bigger than this. */
4098 optlen = min_t(unsigned int, optlen, USHRT_MAX +
4099 sizeof(__u16) * sizeof(*params));
4101 if (params->srs_number_streams * sizeof(__u16) >
4102 optlen - sizeof(*params))
4105 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4109 return sctp_send_reset_streams(asoc, params);
4112 static int sctp_setsockopt_reset_assoc(struct sock *sk, sctp_assoc_t *associd,
4113 unsigned int optlen)
4115 struct sctp_association *asoc;
4117 if (optlen != sizeof(*associd))
4120 asoc = sctp_id2assoc(sk, *associd);
4124 return sctp_send_reset_assoc(asoc);
4127 static int sctp_setsockopt_add_streams(struct sock *sk,
4128 struct sctp_add_streams *params,
4129 unsigned int optlen)
4131 struct sctp_association *asoc;
4133 if (optlen != sizeof(*params))
4136 asoc = sctp_id2assoc(sk, params->sas_assoc_id);
4140 return sctp_send_add_streams(asoc, params);
4143 static int sctp_setsockopt_scheduler(struct sock *sk,
4144 struct sctp_assoc_value *params,
4145 unsigned int optlen)
4147 struct sctp_sock *sp = sctp_sk(sk);
4148 struct sctp_association *asoc;
4151 if (optlen < sizeof(*params))
4154 if (params->assoc_value > SCTP_SS_MAX)
4157 asoc = sctp_id2assoc(sk, params->assoc_id);
4158 if (!asoc && params->assoc_id > SCTP_ALL_ASSOC &&
4159 sctp_style(sk, UDP))
4163 return sctp_sched_set_sched(asoc, params->assoc_value);
4165 if (sctp_style(sk, TCP))
4166 params->assoc_id = SCTP_FUTURE_ASSOC;
4168 if (params->assoc_id == SCTP_FUTURE_ASSOC ||
4169 params->assoc_id == SCTP_ALL_ASSOC)
4170 sp->default_ss = params->assoc_value;
4172 if (params->assoc_id == SCTP_CURRENT_ASSOC ||
4173 params->assoc_id == SCTP_ALL_ASSOC) {
4174 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
4175 int ret = sctp_sched_set_sched(asoc,
4176 params->assoc_value);
4186 static int sctp_setsockopt_scheduler_value(struct sock *sk,
4187 struct sctp_stream_value *params,
4188 unsigned int optlen)
4190 struct sctp_association *asoc;
4191 int retval = -EINVAL;
4193 if (optlen < sizeof(*params))
4196 asoc = sctp_id2assoc(sk, params->assoc_id);
4197 if (!asoc && params->assoc_id != SCTP_CURRENT_ASSOC &&
4198 sctp_style(sk, UDP))
4202 retval = sctp_sched_set_value(asoc, params->stream_id,
4203 params->stream_value, GFP_KERNEL);
4209 list_for_each_entry(asoc, &sctp_sk(sk)->ep->asocs, asocs) {
4210 int ret = sctp_sched_set_value(asoc, params->stream_id,
4211 params->stream_value,
4213 if (ret && !retval) /* try to return the 1st error. */
4221 static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4222 struct sctp_assoc_value *p,
4223 unsigned int optlen)
4225 struct sctp_sock *sp = sctp_sk(sk);
4226 struct sctp_association *asoc;
4228 if (optlen < sizeof(*p))
4231 asoc = sctp_id2assoc(sk, p->assoc_id);
4232 if (!asoc && p->assoc_id != SCTP_FUTURE_ASSOC && sctp_style(sk, UDP))
4235 if (!sock_net(sk)->sctp.intl_enable || !sp->frag_interleave) {
4239 sp->ep->intl_enable = !!p->assoc_value;
4243 static int sctp_setsockopt_reuse_port(struct sock *sk, int *val,
4244 unsigned int optlen)
4246 if (!sctp_style(sk, TCP))
4249 if (sctp_sk(sk)->ep->base.bind_addr.port)
4252 if (optlen < sizeof(int))
4255 sctp_sk(sk)->reuse = !!*val;
4260 static int sctp_assoc_ulpevent_type_set(struct sctp_event *param,
4261 struct sctp_association *asoc)
4263 struct sctp_ulpevent *event;
4265 sctp_ulpevent_type_set(&asoc->subscribe, param->se_type, param->se_on);
4267 if (param->se_type == SCTP_SENDER_DRY_EVENT && param->se_on) {
4268 if (sctp_outq_is_empty(&asoc->outqueue)) {
4269 event = sctp_ulpevent_make_sender_dry_event(asoc,
4270 GFP_USER | __GFP_NOWARN);
4274 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
4281 static int sctp_setsockopt_event(struct sock *sk, struct sctp_event *param,
4282 unsigned int optlen)
4284 struct sctp_sock *sp = sctp_sk(sk);
4285 struct sctp_association *asoc;
4288 if (optlen < sizeof(*param))
4291 if (param->se_type < SCTP_SN_TYPE_BASE ||
4292 param->se_type > SCTP_SN_TYPE_MAX)
4295 asoc = sctp_id2assoc(sk, param->se_assoc_id);
4296 if (!asoc && param->se_assoc_id > SCTP_ALL_ASSOC &&
4297 sctp_style(sk, UDP))
4301 return sctp_assoc_ulpevent_type_set(param, asoc);
4303 if (sctp_style(sk, TCP))
4304 param->se_assoc_id = SCTP_FUTURE_ASSOC;
4306 if (param->se_assoc_id == SCTP_FUTURE_ASSOC ||
4307 param->se_assoc_id == SCTP_ALL_ASSOC)
4308 sctp_ulpevent_type_set(&sp->subscribe,
4309 param->se_type, param->se_on);
4311 if (param->se_assoc_id == SCTP_CURRENT_ASSOC ||
4312 param->se_assoc_id == SCTP_ALL_ASSOC) {
4313 list_for_each_entry(asoc, &sp->ep->asocs, asocs) {
4314 int ret = sctp_assoc_ulpevent_type_set(param, asoc);
4324 static int sctp_setsockopt_asconf_supported(struct sock *sk,
4325 struct sctp_assoc_value *params,
4326 unsigned int optlen)
4328 struct sctp_association *asoc;
4329 struct sctp_endpoint *ep;
4330 int retval = -EINVAL;
4332 if (optlen != sizeof(*params))
4335 asoc = sctp_id2assoc(sk, params->assoc_id);
4336 if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4337 sctp_style(sk, UDP))
4340 ep = sctp_sk(sk)->ep;
4341 ep->asconf_enable = !!params->assoc_value;
4343 if (ep->asconf_enable && ep->auth_enable) {
4344 sctp_auth_ep_add_chunkid(ep, SCTP_CID_ASCONF);
4345 sctp_auth_ep_add_chunkid(ep, SCTP_CID_ASCONF_ACK);
4354 static int sctp_setsockopt_auth_supported(struct sock *sk,
4355 struct sctp_assoc_value *params,
4356 unsigned int optlen)
4358 struct sctp_association *asoc;
4359 struct sctp_endpoint *ep;
4360 int retval = -EINVAL;
4362 if (optlen != sizeof(*params))
4365 asoc = sctp_id2assoc(sk, params->assoc_id);
4366 if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4367 sctp_style(sk, UDP))
4370 ep = sctp_sk(sk)->ep;
4371 if (params->assoc_value) {
4372 retval = sctp_auth_init(ep, GFP_KERNEL);
4375 if (ep->asconf_enable) {
4376 sctp_auth_ep_add_chunkid(ep, SCTP_CID_ASCONF);
4377 sctp_auth_ep_add_chunkid(ep, SCTP_CID_ASCONF_ACK);
4381 ep->auth_enable = !!params->assoc_value;
4388 static int sctp_setsockopt_ecn_supported(struct sock *sk,
4389 struct sctp_assoc_value *params,
4390 unsigned int optlen)
4392 struct sctp_association *asoc;
4393 int retval = -EINVAL;
4395 if (optlen != sizeof(*params))
4398 asoc = sctp_id2assoc(sk, params->assoc_id);
4399 if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4400 sctp_style(sk, UDP))
4403 sctp_sk(sk)->ep->ecn_enable = !!params->assoc_value;
4410 static int sctp_setsockopt_pf_expose(struct sock *sk,
4411 struct sctp_assoc_value *params,
4412 unsigned int optlen)
4414 struct sctp_association *asoc;
4415 int retval = -EINVAL;
4417 if (optlen != sizeof(*params))
4420 if (params->assoc_value > SCTP_PF_EXPOSE_MAX)
4423 asoc = sctp_id2assoc(sk, params->assoc_id);
4424 if (!asoc && params->assoc_id != SCTP_FUTURE_ASSOC &&
4425 sctp_style(sk, UDP))
4429 asoc->pf_expose = params->assoc_value;
4431 sctp_sk(sk)->pf_expose = params->assoc_value;
4438 static int sctp_setsockopt_encap_port(struct sock *sk,
4439 struct sctp_udpencaps *encap,
4440 unsigned int optlen)
4442 struct sctp_association *asoc;
4443 struct sctp_transport *t;
4446 if (optlen != sizeof(*encap))
4449 /* If an address other than INADDR_ANY is specified, and
4450 * no transport is found, then the request is invalid.
4452 encap_port = (__force __be16)encap->sue_port;
4453 if (!sctp_is_any(sk, (union sctp_addr *)&encap->sue_address)) {
4454 t = sctp_addr_id2transport(sk, &encap->sue_address,
4455 encap->sue_assoc_id);
4459 t->encap_port = encap_port;
4463 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
4464 * socket is a one to many style socket, and an association
4465 * was not found, then the id was invalid.
4467 asoc = sctp_id2assoc(sk, encap->sue_assoc_id);
4468 if (!asoc && encap->sue_assoc_id != SCTP_FUTURE_ASSOC &&
4469 sctp_style(sk, UDP))
4472 /* If changes are for association, also apply encap_port to
4476 list_for_each_entry(t, &asoc->peer.transport_addr_list,
4478 t->encap_port = encap_port;
4480 asoc->encap_port = encap_port;
4484 sctp_sk(sk)->encap_port = encap_port;
4488 static int sctp_setsockopt_probe_interval(struct sock *sk,
4489 struct sctp_probeinterval *params,
4490 unsigned int optlen)
4492 struct sctp_association *asoc;
4493 struct sctp_transport *t;
4494 __u32 probe_interval;
4496 if (optlen != sizeof(*params))
4499 probe_interval = params->spi_interval;
4500 if (probe_interval && probe_interval < SCTP_PROBE_TIMER_MIN)
4503 /* If an address other than INADDR_ANY is specified, and
4504 * no transport is found, then the request is invalid.
4506 if (!sctp_is_any(sk, (union sctp_addr *)¶ms->spi_address)) {
4507 t = sctp_addr_id2transport(sk, ¶ms->spi_address,
4508 params->spi_assoc_id);
4512 t->probe_interval = msecs_to_jiffies(probe_interval);
4513 sctp_transport_pl_reset(t);
4517 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
4518 * socket is a one to many style socket, and an association
4519 * was not found, then the id was invalid.
4521 asoc = sctp_id2assoc(sk, params->spi_assoc_id);
4522 if (!asoc && params->spi_assoc_id != SCTP_FUTURE_ASSOC &&
4523 sctp_style(sk, UDP))
4526 /* If changes are for association, also apply probe_interval to
4530 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports) {
4531 t->probe_interval = msecs_to_jiffies(probe_interval);
4532 sctp_transport_pl_reset(t);
4535 asoc->probe_interval = msecs_to_jiffies(probe_interval);
4539 sctp_sk(sk)->probe_interval = probe_interval;
4543 /* API 6.2 setsockopt(), getsockopt()
4545 * Applications use setsockopt() and getsockopt() to set or retrieve
4546 * socket options. Socket options are used to change the default
4547 * behavior of sockets calls. They are described in Section 7.
4551 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
4552 * int __user *optlen);
4553 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4556 * sd - the socket descript.
4557 * level - set to IPPROTO_SCTP for all SCTP options.
4558 * optname - the option name.
4559 * optval - the buffer to store the value of the option.
4560 * optlen - the size of the buffer.
4562 static int sctp_setsockopt(struct sock *sk, int level, int optname,
4563 sockptr_t optval, unsigned int optlen)
4568 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
4570 /* I can hardly begin to describe how wrong this is. This is
4571 * so broken as to be worse than useless. The API draft
4572 * REALLY is NOT helpful here... I am not convinced that the
4573 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4574 * are at all well-founded.
4576 if (level != SOL_SCTP) {
4577 struct sctp_af *af = sctp_sk(sk)->pf->af;
4579 return af->setsockopt(sk, level, optname, optval, optlen);
4583 /* Trim it to the biggest size sctp sockopt may need if necessary */
4584 optlen = min_t(unsigned int, optlen,
4585 PAGE_ALIGN(USHRT_MAX +
4586 sizeof(__u16) * sizeof(struct sctp_reset_streams)));
4587 kopt = memdup_sockptr(optval, optlen);
4589 return PTR_ERR(kopt);
4595 case SCTP_SOCKOPT_BINDX_ADD:
4596 /* 'optlen' is the size of the addresses buffer. */
4597 retval = sctp_setsockopt_bindx(sk, kopt, optlen,
4598 SCTP_BINDX_ADD_ADDR);
4601 case SCTP_SOCKOPT_BINDX_REM:
4602 /* 'optlen' is the size of the addresses buffer. */
4603 retval = sctp_setsockopt_bindx(sk, kopt, optlen,
4604 SCTP_BINDX_REM_ADDR);
4607 case SCTP_SOCKOPT_CONNECTX_OLD:
4608 /* 'optlen' is the size of the addresses buffer. */
4609 retval = sctp_setsockopt_connectx_old(sk, kopt, optlen);
4612 case SCTP_SOCKOPT_CONNECTX:
4613 /* 'optlen' is the size of the addresses buffer. */
4614 retval = sctp_setsockopt_connectx(sk, kopt, optlen);
4617 case SCTP_DISABLE_FRAGMENTS:
4618 retval = sctp_setsockopt_disable_fragments(sk, kopt, optlen);
4622 retval = sctp_setsockopt_events(sk, kopt, optlen);
4625 case SCTP_AUTOCLOSE:
4626 retval = sctp_setsockopt_autoclose(sk, kopt, optlen);
4629 case SCTP_PEER_ADDR_PARAMS:
4630 retval = sctp_setsockopt_peer_addr_params(sk, kopt, optlen);
4633 case SCTP_DELAYED_SACK:
4634 retval = sctp_setsockopt_delayed_ack(sk, kopt, optlen);
4636 case SCTP_PARTIAL_DELIVERY_POINT:
4637 retval = sctp_setsockopt_partial_delivery_point(sk, kopt, optlen);
4641 retval = sctp_setsockopt_initmsg(sk, kopt, optlen);
4643 case SCTP_DEFAULT_SEND_PARAM:
4644 retval = sctp_setsockopt_default_send_param(sk, kopt, optlen);
4646 case SCTP_DEFAULT_SNDINFO:
4647 retval = sctp_setsockopt_default_sndinfo(sk, kopt, optlen);
4649 case SCTP_PRIMARY_ADDR:
4650 retval = sctp_setsockopt_primary_addr(sk, kopt, optlen);
4652 case SCTP_SET_PEER_PRIMARY_ADDR:
4653 retval = sctp_setsockopt_peer_primary_addr(sk, kopt, optlen);
4656 retval = sctp_setsockopt_nodelay(sk, kopt, optlen);
4659 retval = sctp_setsockopt_rtoinfo(sk, kopt, optlen);
4661 case SCTP_ASSOCINFO:
4662 retval = sctp_setsockopt_associnfo(sk, kopt, optlen);
4664 case SCTP_I_WANT_MAPPED_V4_ADDR:
4665 retval = sctp_setsockopt_mappedv4(sk, kopt, optlen);
4668 retval = sctp_setsockopt_maxseg(sk, kopt, optlen);
4670 case SCTP_ADAPTATION_LAYER:
4671 retval = sctp_setsockopt_adaptation_layer(sk, kopt, optlen);
4674 retval = sctp_setsockopt_context(sk, kopt, optlen);
4676 case SCTP_FRAGMENT_INTERLEAVE:
4677 retval = sctp_setsockopt_fragment_interleave(sk, kopt, optlen);
4679 case SCTP_MAX_BURST:
4680 retval = sctp_setsockopt_maxburst(sk, kopt, optlen);
4682 case SCTP_AUTH_CHUNK:
4683 retval = sctp_setsockopt_auth_chunk(sk, kopt, optlen);
4685 case SCTP_HMAC_IDENT:
4686 retval = sctp_setsockopt_hmac_ident(sk, kopt, optlen);
4689 retval = sctp_setsockopt_auth_key(sk, kopt, optlen);
4691 case SCTP_AUTH_ACTIVE_KEY:
4692 retval = sctp_setsockopt_active_key(sk, kopt, optlen);
4694 case SCTP_AUTH_DELETE_KEY:
4695 retval = sctp_setsockopt_del_key(sk, kopt, optlen);
4697 case SCTP_AUTH_DEACTIVATE_KEY:
4698 retval = sctp_setsockopt_deactivate_key(sk, kopt, optlen);
4700 case SCTP_AUTO_ASCONF:
4701 retval = sctp_setsockopt_auto_asconf(sk, kopt, optlen);
4703 case SCTP_PEER_ADDR_THLDS:
4704 retval = sctp_setsockopt_paddr_thresholds(sk, kopt, optlen,
4707 case SCTP_PEER_ADDR_THLDS_V2:
4708 retval = sctp_setsockopt_paddr_thresholds(sk, kopt, optlen,
4711 case SCTP_RECVRCVINFO:
4712 retval = sctp_setsockopt_recvrcvinfo(sk, kopt, optlen);
4714 case SCTP_RECVNXTINFO:
4715 retval = sctp_setsockopt_recvnxtinfo(sk, kopt, optlen);
4717 case SCTP_PR_SUPPORTED:
4718 retval = sctp_setsockopt_pr_supported(sk, kopt, optlen);
4720 case SCTP_DEFAULT_PRINFO:
4721 retval = sctp_setsockopt_default_prinfo(sk, kopt, optlen);
4723 case SCTP_RECONFIG_SUPPORTED:
4724 retval = sctp_setsockopt_reconfig_supported(sk, kopt, optlen);
4726 case SCTP_ENABLE_STREAM_RESET:
4727 retval = sctp_setsockopt_enable_strreset(sk, kopt, optlen);
4729 case SCTP_RESET_STREAMS:
4730 retval = sctp_setsockopt_reset_streams(sk, kopt, optlen);
4732 case SCTP_RESET_ASSOC:
4733 retval = sctp_setsockopt_reset_assoc(sk, kopt, optlen);
4735 case SCTP_ADD_STREAMS:
4736 retval = sctp_setsockopt_add_streams(sk, kopt, optlen);
4738 case SCTP_STREAM_SCHEDULER:
4739 retval = sctp_setsockopt_scheduler(sk, kopt, optlen);
4741 case SCTP_STREAM_SCHEDULER_VALUE:
4742 retval = sctp_setsockopt_scheduler_value(sk, kopt, optlen);
4744 case SCTP_INTERLEAVING_SUPPORTED:
4745 retval = sctp_setsockopt_interleaving_supported(sk, kopt,
4748 case SCTP_REUSE_PORT:
4749 retval = sctp_setsockopt_reuse_port(sk, kopt, optlen);
4752 retval = sctp_setsockopt_event(sk, kopt, optlen);
4754 case SCTP_ASCONF_SUPPORTED:
4755 retval = sctp_setsockopt_asconf_supported(sk, kopt, optlen);
4757 case SCTP_AUTH_SUPPORTED:
4758 retval = sctp_setsockopt_auth_supported(sk, kopt, optlen);
4760 case SCTP_ECN_SUPPORTED:
4761 retval = sctp_setsockopt_ecn_supported(sk, kopt, optlen);
4763 case SCTP_EXPOSE_POTENTIALLY_FAILED_STATE:
4764 retval = sctp_setsockopt_pf_expose(sk, kopt, optlen);
4766 case SCTP_REMOTE_UDP_ENCAPS_PORT:
4767 retval = sctp_setsockopt_encap_port(sk, kopt, optlen);
4769 case SCTP_PLPMTUD_PROBE_INTERVAL:
4770 retval = sctp_setsockopt_probe_interval(sk, kopt, optlen);
4773 retval = -ENOPROTOOPT;
4782 /* API 3.1.6 connect() - UDP Style Syntax
4784 * An application may use the connect() call in the UDP model to initiate an
4785 * association without sending data.
4789 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4791 * sd: the socket descriptor to have a new association added to.
4793 * nam: the address structure (either struct sockaddr_in or struct
4794 * sockaddr_in6 defined in RFC2553 [7]).
4796 * len: the size of the address.
4798 static int sctp_connect(struct sock *sk, struct sockaddr *addr,
4799 int addr_len, int flags)
4805 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4808 /* Validate addr_len before calling common connect/connectx routine. */
4809 af = sctp_get_af_specific(addr->sa_family);
4810 if (af && addr_len >= af->sockaddr_len)
4811 err = __sctp_connect(sk, addr, af->sockaddr_len, flags, NULL);
4817 int sctp_inet_connect(struct socket *sock, struct sockaddr *uaddr,
4818 int addr_len, int flags)
4820 if (addr_len < sizeof(uaddr->sa_family))
4823 if (uaddr->sa_family == AF_UNSPEC)
4826 return sctp_connect(sock->sk, uaddr, addr_len, flags);
4829 /* FIXME: Write comments. */
4830 static int sctp_disconnect(struct sock *sk, int flags)
4832 return -EOPNOTSUPP; /* STUB */
4835 /* 4.1.4 accept() - TCP Style Syntax
4837 * Applications use accept() call to remove an established SCTP
4838 * association from the accept queue of the endpoint. A new socket
4839 * descriptor will be returned from accept() to represent the newly
4840 * formed association.
4842 static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
4844 struct sctp_sock *sp;
4845 struct sctp_endpoint *ep;
4846 struct sock *newsk = NULL;
4847 struct sctp_association *asoc;
4856 if (!sctp_style(sk, TCP)) {
4857 error = -EOPNOTSUPP;
4861 if (!sctp_sstate(sk, LISTENING)) {
4866 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
4868 error = sctp_wait_for_accept(sk, timeo);
4872 /* We treat the list of associations on the endpoint as the accept
4873 * queue and pick the first association on the list.
4875 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4877 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
4883 /* Populate the fields of the newsk from the oldsk and migrate the
4884 * asoc to the newsk.
4886 error = sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4888 sk_common_release(newsk);
4898 /* The SCTP ioctl handler. */
4899 static int sctp_ioctl(struct sock *sk, int cmd, int *karg)
4906 * SEQPACKET-style sockets in LISTENING state are valid, for
4907 * SCTP, so only discard TCP-style sockets in LISTENING state.
4909 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4914 struct sk_buff *skb;
4917 skb = skb_peek(&sk->sk_receive_queue);
4920 * We will only return the amount of this packet since
4921 * that is all that will be read.
4937 /* This is the function which gets called during socket creation to
4938 * initialized the SCTP-specific portion of the sock.
4939 * The sock structure should already be zero-filled memory.
4941 static int sctp_init_sock(struct sock *sk)
4943 struct net *net = sock_net(sk);
4944 struct sctp_sock *sp;
4946 pr_debug("%s: sk:%p\n", __func__, sk);
4950 /* Initialize the SCTP per socket area. */
4951 switch (sk->sk_type) {
4952 case SOCK_SEQPACKET:
4953 sp->type = SCTP_SOCKET_UDP;
4956 sp->type = SCTP_SOCKET_TCP;
4959 return -ESOCKTNOSUPPORT;
4962 sk->sk_gso_type = SKB_GSO_SCTP;
4964 /* Initialize default send parameters. These parameters can be
4965 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4967 sp->default_stream = 0;
4968 sp->default_ppid = 0;
4969 sp->default_flags = 0;
4970 sp->default_context = 0;
4971 sp->default_timetolive = 0;
4973 sp->default_rcv_context = 0;
4974 sp->max_burst = net->sctp.max_burst;
4976 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4978 /* Initialize default setup parameters. These parameters
4979 * can be modified with the SCTP_INITMSG socket option or
4980 * overridden by the SCTP_INIT CMSG.
4982 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4983 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
4984 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4985 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
4987 /* Initialize default RTO related parameters. These parameters can
4988 * be modified for with the SCTP_RTOINFO socket option.
4990 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4991 sp->rtoinfo.srto_max = net->sctp.rto_max;
4992 sp->rtoinfo.srto_min = net->sctp.rto_min;
4994 /* Initialize default association related parameters. These parameters
4995 * can be modified with the SCTP_ASSOCINFO socket option.
4997 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
4998 sp->assocparams.sasoc_number_peer_destinations = 0;
4999 sp->assocparams.sasoc_peer_rwnd = 0;
5000 sp->assocparams.sasoc_local_rwnd = 0;
5001 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
5003 /* Initialize default event subscriptions. By default, all the
5008 /* Default Peer Address Parameters. These defaults can
5009 * be modified via SCTP_PEER_ADDR_PARAMS
5011 sp->hbinterval = net->sctp.hb_interval;
5012 sp->udp_port = htons(net->sctp.udp_port);
5013 sp->encap_port = htons(net->sctp.encap_port);
5014 sp->pathmaxrxt = net->sctp.max_retrans_path;
5015 sp->pf_retrans = net->sctp.pf_retrans;
5016 sp->ps_retrans = net->sctp.ps_retrans;
5017 sp->pf_expose = net->sctp.pf_expose;
5018 sp->pathmtu = 0; /* allow default discovery */
5019 sp->sackdelay = net->sctp.sack_timeout;
5021 sp->param_flags = SPP_HB_ENABLE |
5023 SPP_SACKDELAY_ENABLE;
5024 sp->default_ss = SCTP_SS_DEFAULT;
5026 /* If enabled no SCTP message fragmentation will be performed.
5027 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
5029 sp->disable_fragments = 0;
5031 /* Enable Nagle algorithm by default. */
5034 sp->recvrcvinfo = 0;
5035 sp->recvnxtinfo = 0;
5037 /* Enable by default. */
5040 /* Auto-close idle associations after the configured
5041 * number of seconds. A value of 0 disables this
5042 * feature. Configure through the SCTP_AUTOCLOSE socket option,
5043 * for UDP-style sockets only.
5047 /* User specified fragmentation limit. */
5050 sp->adaptation_ind = 0;
5052 sp->pf = sctp_get_pf_specific(sk->sk_family);
5054 /* Control variables for partial data delivery. */
5055 atomic_set(&sp->pd_mode, 0);
5056 skb_queue_head_init(&sp->pd_lobby);
5057 sp->frag_interleave = 0;
5058 sp->probe_interval = net->sctp.probe_interval;
5060 /* Create a per socket endpoint structure. Even if we
5061 * change the data structure relationships, this may still
5062 * be useful for storing pre-connect address information.
5064 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
5070 sk->sk_destruct = sctp_destruct_sock;
5072 SCTP_DBG_OBJCNT_INC(sock);
5074 sk_sockets_allocated_inc(sk);
5075 sock_prot_inuse_add(net, sk->sk_prot, 1);
5080 /* Cleanup any SCTP per socket resources. Must be called with
5081 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
5083 static void sctp_destroy_sock(struct sock *sk)
5085 struct sctp_sock *sp;
5087 pr_debug("%s: sk:%p\n", __func__, sk);
5089 /* Release our hold on the endpoint. */
5091 /* This could happen during socket init, thus we bail out
5092 * early, since the rest of the below is not setup either.
5097 if (sp->do_auto_asconf) {
5098 sp->do_auto_asconf = 0;
5099 list_del(&sp->auto_asconf_list);
5101 sctp_endpoint_free(sp->ep);
5102 sk_sockets_allocated_dec(sk);
5103 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
5106 /* Triggered when there are no references on the socket anymore */
5107 static void sctp_destruct_common(struct sock *sk)
5109 struct sctp_sock *sp = sctp_sk(sk);
5111 /* Free up the HMAC transform. */
5112 crypto_free_shash(sp->hmac);
5115 static void sctp_destruct_sock(struct sock *sk)
5117 sctp_destruct_common(sk);
5118 inet_sock_destruct(sk);
5121 /* API 4.1.7 shutdown() - TCP Style Syntax
5122 * int shutdown(int socket, int how);
5124 * sd - the socket descriptor of the association to be closed.
5125 * how - Specifies the type of shutdown. The values are
5128 * Disables further receive operations. No SCTP
5129 * protocol action is taken.
5131 * Disables further send operations, and initiates
5132 * the SCTP shutdown sequence.
5134 * Disables further send and receive operations
5135 * and initiates the SCTP shutdown sequence.
5137 static void sctp_shutdown(struct sock *sk, int how)
5139 struct net *net = sock_net(sk);
5140 struct sctp_endpoint *ep;
5142 if (!sctp_style(sk, TCP))
5145 ep = sctp_sk(sk)->ep;
5146 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
5147 struct sctp_association *asoc;
5149 inet_sk_set_state(sk, SCTP_SS_CLOSING);
5150 asoc = list_entry(ep->asocs.next,
5151 struct sctp_association, asocs);
5152 sctp_primitive_SHUTDOWN(net, asoc, NULL);
5156 int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
5157 struct sctp_info *info)
5159 struct sctp_transport *prim;
5160 struct list_head *pos;
5163 memset(info, 0, sizeof(*info));
5165 struct sctp_sock *sp = sctp_sk(sk);
5167 info->sctpi_s_autoclose = sp->autoclose;
5168 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
5169 info->sctpi_s_pd_point = sp->pd_point;
5170 info->sctpi_s_nodelay = sp->nodelay;
5171 info->sctpi_s_disable_fragments = sp->disable_fragments;
5172 info->sctpi_s_v4mapped = sp->v4mapped;
5173 info->sctpi_s_frag_interleave = sp->frag_interleave;
5174 info->sctpi_s_type = sp->type;
5179 info->sctpi_tag = asoc->c.my_vtag;
5180 info->sctpi_state = asoc->state;
5181 info->sctpi_rwnd = asoc->a_rwnd;
5182 info->sctpi_unackdata = asoc->unack_data;
5183 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
5184 info->sctpi_instrms = asoc->stream.incnt;
5185 info->sctpi_outstrms = asoc->stream.outcnt;
5186 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
5187 info->sctpi_inqueue++;
5188 list_for_each(pos, &asoc->outqueue.out_chunk_list)
5189 info->sctpi_outqueue++;
5190 info->sctpi_overall_error = asoc->overall_error_count;
5191 info->sctpi_max_burst = asoc->max_burst;
5192 info->sctpi_maxseg = asoc->frag_point;
5193 info->sctpi_peer_rwnd = asoc->peer.rwnd;
5194 info->sctpi_peer_tag = asoc->c.peer_vtag;
5196 mask = asoc->peer.intl_capable << 1;
5197 mask = (mask | asoc->peer.ecn_capable) << 1;
5198 mask = (mask | asoc->peer.ipv4_address) << 1;
5199 mask = (mask | asoc->peer.ipv6_address) << 1;
5200 mask = (mask | asoc->peer.reconf_capable) << 1;
5201 mask = (mask | asoc->peer.asconf_capable) << 1;
5202 mask = (mask | asoc->peer.prsctp_capable) << 1;
5203 mask = (mask | asoc->peer.auth_capable);
5204 info->sctpi_peer_capable = mask;
5205 mask = asoc->peer.sack_needed << 1;
5206 mask = (mask | asoc->peer.sack_generation) << 1;
5207 mask = (mask | asoc->peer.zero_window_announced);
5208 info->sctpi_peer_sack = mask;
5210 info->sctpi_isacks = asoc->stats.isacks;
5211 info->sctpi_osacks = asoc->stats.osacks;
5212 info->sctpi_opackets = asoc->stats.opackets;
5213 info->sctpi_ipackets = asoc->stats.ipackets;
5214 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
5215 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
5216 info->sctpi_idupchunks = asoc->stats.idupchunks;
5217 info->sctpi_gapcnt = asoc->stats.gapcnt;
5218 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
5219 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
5220 info->sctpi_oodchunks = asoc->stats.oodchunks;
5221 info->sctpi_iodchunks = asoc->stats.iodchunks;
5222 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
5223 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
5225 prim = asoc->peer.primary_path;
5226 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
5227 info->sctpi_p_state = prim->state;
5228 info->sctpi_p_cwnd = prim->cwnd;
5229 info->sctpi_p_srtt = prim->srtt;
5230 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
5231 info->sctpi_p_hbinterval = prim->hbinterval;
5232 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
5233 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
5234 info->sctpi_p_ssthresh = prim->ssthresh;
5235 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
5236 info->sctpi_p_flight_size = prim->flight_size;
5237 info->sctpi_p_error = prim->error_count;
5241 EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
5243 /* use callback to avoid exporting the core structure */
5244 void sctp_transport_walk_start(struct rhashtable_iter *iter) __acquires(RCU)
5246 rhltable_walk_enter(&sctp_transport_hashtable, iter);
5248 rhashtable_walk_start(iter);
5251 void sctp_transport_walk_stop(struct rhashtable_iter *iter) __releases(RCU)
5253 rhashtable_walk_stop(iter);
5254 rhashtable_walk_exit(iter);
5257 struct sctp_transport *sctp_transport_get_next(struct net *net,
5258 struct rhashtable_iter *iter)
5260 struct sctp_transport *t;
5262 t = rhashtable_walk_next(iter);
5263 for (; t; t = rhashtable_walk_next(iter)) {
5265 if (PTR_ERR(t) == -EAGAIN)
5270 if (!sctp_transport_hold(t))
5273 if (net_eq(t->asoc->base.net, net) &&
5274 t->asoc->peer.primary_path == t)
5277 sctp_transport_put(t);
5283 struct sctp_transport *sctp_transport_get_idx(struct net *net,
5284 struct rhashtable_iter *iter,
5287 struct sctp_transport *t;
5290 return SEQ_START_TOKEN;
5292 while ((t = sctp_transport_get_next(net, iter)) && !IS_ERR(t)) {
5295 sctp_transport_put(t);
5301 int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
5305 struct sctp_endpoint *ep;
5306 struct sctp_hashbucket *head;
5308 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
5310 read_lock_bh(&head->lock);
5311 sctp_for_each_hentry(ep, &head->chain) {
5316 read_unlock_bh(&head->lock);
5321 EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
5323 int sctp_transport_lookup_process(sctp_callback_t cb, struct net *net,
5324 const union sctp_addr *laddr,
5325 const union sctp_addr *paddr, void *p, int dif)
5327 struct sctp_transport *transport;
5328 struct sctp_endpoint *ep;
5332 transport = sctp_addrs_lookup_transport(net, laddr, paddr, dif, dif);
5337 ep = transport->asoc->ep;
5338 if (!sctp_endpoint_hold(ep)) { /* asoc can be peeled off */
5339 sctp_transport_put(transport);
5345 err = cb(ep, transport, p);
5346 sctp_endpoint_put(ep);
5347 sctp_transport_put(transport);
5350 EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
5352 int sctp_transport_traverse_process(sctp_callback_t cb, sctp_callback_t cb_done,
5353 struct net *net, int *pos, void *p)
5355 struct rhashtable_iter hti;
5356 struct sctp_transport *tsp;
5357 struct sctp_endpoint *ep;
5362 sctp_transport_walk_start(&hti);
5364 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
5365 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
5367 if (sctp_endpoint_hold(ep)) { /* asoc can be peeled off */
5368 ret = cb(ep, tsp, p);
5371 sctp_endpoint_put(ep);
5374 sctp_transport_put(tsp);
5376 sctp_transport_walk_stop(&hti);
5379 if (cb_done && !cb_done(ep, tsp, p)) {
5381 sctp_endpoint_put(ep);
5382 sctp_transport_put(tsp);
5385 sctp_endpoint_put(ep);
5386 sctp_transport_put(tsp);
5391 EXPORT_SYMBOL_GPL(sctp_transport_traverse_process);
5393 /* 7.2.1 Association Status (SCTP_STATUS)
5395 * Applications can retrieve current status information about an
5396 * association, including association state, peer receiver window size,
5397 * number of unacked data chunks, and number of data chunks pending
5398 * receipt. This information is read-only.
5400 static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
5401 char __user *optval,
5404 struct sctp_status status;
5405 struct sctp_association *asoc = NULL;
5406 struct sctp_transport *transport;
5407 sctp_assoc_t associd;
5410 if (len < sizeof(status)) {
5415 len = sizeof(status);
5416 if (copy_from_user(&status, optval, len)) {
5421 associd = status.sstat_assoc_id;
5422 asoc = sctp_id2assoc(sk, associd);
5428 transport = asoc->peer.primary_path;
5430 status.sstat_assoc_id = sctp_assoc2id(asoc);
5431 status.sstat_state = sctp_assoc_to_state(asoc);
5432 status.sstat_rwnd = asoc->peer.rwnd;
5433 status.sstat_unackdata = asoc->unack_data;
5435 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
5436 status.sstat_instrms = asoc->stream.incnt;
5437 status.sstat_outstrms = asoc->stream.outcnt;
5438 status.sstat_fragmentation_point = asoc->frag_point;
5439 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
5440 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5441 transport->af_specific->sockaddr_len);
5442 /* Map ipv4 address into v4-mapped-on-v6 address. */
5443 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
5444 (union sctp_addr *)&status.sstat_primary.spinfo_address);
5445 status.sstat_primary.spinfo_state = transport->state;
5446 status.sstat_primary.spinfo_cwnd = transport->cwnd;
5447 status.sstat_primary.spinfo_srtt = transport->srtt;
5448 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
5449 status.sstat_primary.spinfo_mtu = transport->pathmtu;
5451 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5452 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5454 if (put_user(len, optlen)) {
5459 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5460 __func__, len, status.sstat_state, status.sstat_rwnd,
5461 status.sstat_assoc_id);
5463 if (copy_to_user(optval, &status, len)) {
5473 /* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5475 * Applications can retrieve information about a specific peer address
5476 * of an association, including its reachability state, congestion
5477 * window, and retransmission timer values. This information is
5480 static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5481 char __user *optval,
5484 struct sctp_paddrinfo pinfo;
5485 struct sctp_transport *transport;
5488 if (len < sizeof(pinfo)) {
5493 len = sizeof(pinfo);
5494 if (copy_from_user(&pinfo, optval, len)) {
5499 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5500 pinfo.spinfo_assoc_id);
5506 if (transport->state == SCTP_PF &&
5507 transport->asoc->pf_expose == SCTP_PF_EXPOSE_DISABLE) {
5512 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
5513 pinfo.spinfo_state = transport->state;
5514 pinfo.spinfo_cwnd = transport->cwnd;
5515 pinfo.spinfo_srtt = transport->srtt;
5516 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
5517 pinfo.spinfo_mtu = transport->pathmtu;
5519 if (pinfo.spinfo_state == SCTP_UNKNOWN)
5520 pinfo.spinfo_state = SCTP_ACTIVE;
5522 if (put_user(len, optlen)) {
5527 if (copy_to_user(optval, &pinfo, len)) {
5536 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5538 * This option is a on/off flag. If enabled no SCTP message
5539 * fragmentation will be performed. Instead if a message being sent
5540 * exceeds the current PMTU size, the message will NOT be sent and
5541 * instead a error will be indicated to the user.
5543 static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5544 char __user *optval, int __user *optlen)
5548 if (len < sizeof(int))
5552 val = (sctp_sk(sk)->disable_fragments == 1);
5553 if (put_user(len, optlen))
5555 if (copy_to_user(optval, &val, len))
5560 /* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5562 * This socket option is used to specify various notifications and
5563 * ancillary data the user wishes to receive.
5565 static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5568 struct sctp_event_subscribe subscribe;
5569 __u8 *sn_type = (__u8 *)&subscribe;
5574 if (len > sizeof(struct sctp_event_subscribe))
5575 len = sizeof(struct sctp_event_subscribe);
5576 if (put_user(len, optlen))
5579 for (i = 0; i < len; i++)
5580 sn_type[i] = sctp_ulpevent_type_enabled(sctp_sk(sk)->subscribe,
5581 SCTP_SN_TYPE_BASE + i);
5583 if (copy_to_user(optval, &subscribe, len))
5589 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5591 * This socket option is applicable to the UDP-style socket only. When
5592 * set it will cause associations that are idle for more than the
5593 * specified number of seconds to automatically close. An association
5594 * being idle is defined an association that has NOT sent or received
5595 * user data. The special value of '0' indicates that no automatic
5596 * close of any associations should be performed. The option expects an
5597 * integer defining the number of seconds of idle time before an
5598 * association is closed.
5600 static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5602 /* Applicable to UDP-style socket only */
5603 if (sctp_style(sk, TCP))
5605 if (len < sizeof(int))
5608 if (put_user(len, optlen))
5610 if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
5615 /* Helper routine to branch off an association to a new socket. */
5616 int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
5618 struct sctp_association *asoc = sctp_id2assoc(sk, id);
5619 struct sctp_sock *sp = sctp_sk(sk);
5620 struct socket *sock;
5623 /* Do not peel off from one netns to another one. */
5624 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5630 /* An association cannot be branched off from an already peeled-off
5631 * socket, nor is this supported for tcp style sockets.
5633 if (!sctp_style(sk, UDP))
5636 /* Create a new socket. */
5637 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5641 sctp_copy_sock(sock->sk, sk, asoc);
5643 /* Make peeled-off sockets more like 1-1 accepted sockets.
5644 * Set the daddr and initialize id to something more random and also
5645 * copy over any ip options.
5647 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sock->sk);
5648 sp->pf->copy_ip_options(sk, sock->sk);
5650 /* Populate the fields of the newsk from the oldsk and migrate the
5651 * asoc to the newsk.
5653 err = sctp_sock_migrate(sk, sock->sk, asoc,
5654 SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
5664 EXPORT_SYMBOL(sctp_do_peeloff);
5666 static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5667 struct file **newfile, unsigned flags)
5669 struct socket *newsock;
5672 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5676 /* Map the socket to an unused fd that can be returned to the user. */
5677 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5679 sock_release(newsock);
5683 *newfile = sock_alloc_file(newsock, 0, NULL);
5684 if (IS_ERR(*newfile)) {
5685 put_unused_fd(retval);
5686 retval = PTR_ERR(*newfile);
5691 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5694 peeloff->sd = retval;
5696 if (flags & SOCK_NONBLOCK)
5697 (*newfile)->f_flags |= O_NONBLOCK;
5702 static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5704 sctp_peeloff_arg_t peeloff;
5705 struct file *newfile = NULL;
5708 if (len < sizeof(sctp_peeloff_arg_t))
5710 len = sizeof(sctp_peeloff_arg_t);
5711 if (copy_from_user(&peeloff, optval, len))
5714 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
5718 /* Return the fd mapped to the new socket. */
5719 if (put_user(len, optlen)) {
5721 put_unused_fd(retval);
5725 if (copy_to_user(optval, &peeloff, len)) {
5727 put_unused_fd(retval);
5730 fd_install(retval, newfile);
5735 static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5736 char __user *optval, int __user *optlen)
5738 sctp_peeloff_flags_arg_t peeloff;
5739 struct file *newfile = NULL;
5742 if (len < sizeof(sctp_peeloff_flags_arg_t))
5744 len = sizeof(sctp_peeloff_flags_arg_t);
5745 if (copy_from_user(&peeloff, optval, len))
5748 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5749 &newfile, peeloff.flags);
5753 /* Return the fd mapped to the new socket. */
5754 if (put_user(len, optlen)) {
5756 put_unused_fd(retval);
5760 if (copy_to_user(optval, &peeloff, len)) {
5762 put_unused_fd(retval);
5765 fd_install(retval, newfile);
5770 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5772 * Applications can enable or disable heartbeats for any peer address of
5773 * an association, modify an address's heartbeat interval, force a
5774 * heartbeat to be sent immediately, and adjust the address's maximum
5775 * number of retransmissions sent before an address is considered
5776 * unreachable. The following structure is used to access and modify an
5777 * address's parameters:
5779 * struct sctp_paddrparams {
5780 * sctp_assoc_t spp_assoc_id;
5781 * struct sockaddr_storage spp_address;
5782 * uint32_t spp_hbinterval;
5783 * uint16_t spp_pathmaxrxt;
5784 * uint32_t spp_pathmtu;
5785 * uint32_t spp_sackdelay;
5786 * uint32_t spp_flags;
5789 * spp_assoc_id - (one-to-many style socket) This is filled in the
5790 * application, and identifies the association for
5792 * spp_address - This specifies which address is of interest.
5793 * spp_hbinterval - This contains the value of the heartbeat interval,
5794 * in milliseconds. If a value of zero
5795 * is present in this field then no changes are to
5796 * be made to this parameter.
5797 * spp_pathmaxrxt - This contains the maximum number of
5798 * retransmissions before this address shall be
5799 * considered unreachable. If a value of zero
5800 * is present in this field then no changes are to
5801 * be made to this parameter.
5802 * spp_pathmtu - When Path MTU discovery is disabled the value
5803 * specified here will be the "fixed" path mtu.
5804 * Note that if the spp_address field is empty
5805 * then all associations on this address will
5806 * have this fixed path mtu set upon them.
5808 * spp_sackdelay - When delayed sack is enabled, this value specifies
5809 * the number of milliseconds that sacks will be delayed
5810 * for. This value will apply to all addresses of an
5811 * association if the spp_address field is empty. Note
5812 * also, that if delayed sack is enabled and this
5813 * value is set to 0, no change is made to the last
5814 * recorded delayed sack timer value.
5816 * spp_flags - These flags are used to control various features
5817 * on an association. The flag field may contain
5818 * zero or more of the following options.
5820 * SPP_HB_ENABLE - Enable heartbeats on the
5821 * specified address. Note that if the address
5822 * field is empty all addresses for the association
5823 * have heartbeats enabled upon them.
5825 * SPP_HB_DISABLE - Disable heartbeats on the
5826 * speicifed address. Note that if the address
5827 * field is empty all addresses for the association
5828 * will have their heartbeats disabled. Note also
5829 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5830 * mutually exclusive, only one of these two should
5831 * be specified. Enabling both fields will have
5832 * undetermined results.
5834 * SPP_HB_DEMAND - Request a user initiated heartbeat
5835 * to be made immediately.
5837 * SPP_PMTUD_ENABLE - This field will enable PMTU
5838 * discovery upon the specified address. Note that
5839 * if the address feild is empty then all addresses
5840 * on the association are effected.
5842 * SPP_PMTUD_DISABLE - This field will disable PMTU
5843 * discovery upon the specified address. Note that
5844 * if the address feild is empty then all addresses
5845 * on the association are effected. Not also that
5846 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5847 * exclusive. Enabling both will have undetermined
5850 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5851 * on delayed sack. The time specified in spp_sackdelay
5852 * is used to specify the sack delay for this address. Note
5853 * that if spp_address is empty then all addresses will
5854 * enable delayed sack and take on the sack delay
5855 * value specified in spp_sackdelay.
5856 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5857 * off delayed sack. If the spp_address field is blank then
5858 * delayed sack is disabled for the entire association. Note
5859 * also that this field is mutually exclusive to
5860 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5863 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
5864 * setting of the IPV6 flow label value. The value is
5865 * contained in the spp_ipv6_flowlabel field.
5866 * Upon retrieval, this flag will be set to indicate that
5867 * the spp_ipv6_flowlabel field has a valid value returned.
5868 * If a specific destination address is set (in the
5869 * spp_address field), then the value returned is that of
5870 * the address. If just an association is specified (and
5871 * no address), then the association's default flow label
5872 * is returned. If neither an association nor a destination
5873 * is specified, then the socket's default flow label is
5874 * returned. For non-IPv6 sockets, this flag will be left
5877 * SPP_DSCP: Setting this flag enables the setting of the
5878 * Differentiated Services Code Point (DSCP) value
5879 * associated with either the association or a specific
5880 * address. The value is obtained in the spp_dscp field.
5881 * Upon retrieval, this flag will be set to indicate that
5882 * the spp_dscp field has a valid value returned. If a
5883 * specific destination address is set when called (in the
5884 * spp_address field), then that specific destination
5885 * address's DSCP value is returned. If just an association
5886 * is specified, then the association's default DSCP is
5887 * returned. If neither an association nor a destination is
5888 * specified, then the socket's default DSCP is returned.
5890 * spp_ipv6_flowlabel
5891 * - This field is used in conjunction with the
5892 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
5893 * The 20 least significant bits are used for the flow
5894 * label. This setting has precedence over any IPv6-layer
5897 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
5898 * and contains the DSCP. The 6 most significant bits are
5899 * used for the DSCP. This setting has precedence over any
5900 * IPv4- or IPv6- layer setting.
5902 static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
5903 char __user *optval, int __user *optlen)
5905 struct sctp_paddrparams params;
5906 struct sctp_transport *trans = NULL;
5907 struct sctp_association *asoc = NULL;
5908 struct sctp_sock *sp = sctp_sk(sk);
5910 if (len >= sizeof(params))
5911 len = sizeof(params);
5912 else if (len >= ALIGN(offsetof(struct sctp_paddrparams,
5913 spp_ipv6_flowlabel), 4))
5914 len = ALIGN(offsetof(struct sctp_paddrparams,
5915 spp_ipv6_flowlabel), 4);
5919 if (copy_from_user(¶ms, optval, len))
5922 /* If an address other than INADDR_ANY is specified, and
5923 * no transport is found, then the request is invalid.
5925 if (!sctp_is_any(sk, (union sctp_addr *)¶ms.spp_address)) {
5926 trans = sctp_addr_id2transport(sk, ¶ms.spp_address,
5927 params.spp_assoc_id);
5929 pr_debug("%s: failed no transport\n", __func__);
5934 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
5935 * socket is a one to many style socket, and an association
5936 * was not found, then the id was invalid.
5938 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5939 if (!asoc && params.spp_assoc_id != SCTP_FUTURE_ASSOC &&
5940 sctp_style(sk, UDP)) {
5941 pr_debug("%s: failed no association\n", __func__);
5946 /* Fetch transport values. */
5947 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5948 params.spp_pathmtu = trans->pathmtu;
5949 params.spp_pathmaxrxt = trans->pathmaxrxt;
5950 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
5952 /*draft-11 doesn't say what to return in spp_flags*/
5953 params.spp_flags = trans->param_flags;
5954 if (trans->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5955 params.spp_ipv6_flowlabel = trans->flowlabel &
5956 SCTP_FLOWLABEL_VAL_MASK;
5957 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5959 if (trans->dscp & SCTP_DSCP_SET_MASK) {
5960 params.spp_dscp = trans->dscp & SCTP_DSCP_VAL_MASK;
5961 params.spp_flags |= SPP_DSCP;
5964 /* Fetch association values. */
5965 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5966 params.spp_pathmtu = asoc->pathmtu;
5967 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5968 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
5970 /*draft-11 doesn't say what to return in spp_flags*/
5971 params.spp_flags = asoc->param_flags;
5972 if (asoc->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5973 params.spp_ipv6_flowlabel = asoc->flowlabel &
5974 SCTP_FLOWLABEL_VAL_MASK;
5975 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5977 if (asoc->dscp & SCTP_DSCP_SET_MASK) {
5978 params.spp_dscp = asoc->dscp & SCTP_DSCP_VAL_MASK;
5979 params.spp_flags |= SPP_DSCP;
5982 /* Fetch socket values. */
5983 params.spp_hbinterval = sp->hbinterval;
5984 params.spp_pathmtu = sp->pathmtu;
5985 params.spp_sackdelay = sp->sackdelay;
5986 params.spp_pathmaxrxt = sp->pathmaxrxt;
5988 /*draft-11 doesn't say what to return in spp_flags*/
5989 params.spp_flags = sp->param_flags;
5990 if (sp->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5991 params.spp_ipv6_flowlabel = sp->flowlabel &
5992 SCTP_FLOWLABEL_VAL_MASK;
5993 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5995 if (sp->dscp & SCTP_DSCP_SET_MASK) {
5996 params.spp_dscp = sp->dscp & SCTP_DSCP_VAL_MASK;
5997 params.spp_flags |= SPP_DSCP;
6001 if (copy_to_user(optval, ¶ms, len))
6004 if (put_user(len, optlen))
6011 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
6013 * This option will effect the way delayed acks are performed. This
6014 * option allows you to get or set the delayed ack time, in
6015 * milliseconds. It also allows changing the delayed ack frequency.
6016 * Changing the frequency to 1 disables the delayed sack algorithm. If
6017 * the assoc_id is 0, then this sets or gets the endpoints default
6018 * values. If the assoc_id field is non-zero, then the set or get
6019 * effects the specified association for the one to many model (the
6020 * assoc_id field is ignored by the one to one model). Note that if
6021 * sack_delay or sack_freq are 0 when setting this option, then the
6022 * current values will remain unchanged.
6024 * struct sctp_sack_info {
6025 * sctp_assoc_t sack_assoc_id;
6026 * uint32_t sack_delay;
6027 * uint32_t sack_freq;
6030 * sack_assoc_id - This parameter, indicates which association the user
6031 * is performing an action upon. Note that if this field's value is
6032 * zero then the endpoints default value is changed (effecting future
6033 * associations only).
6035 * sack_delay - This parameter contains the number of milliseconds that
6036 * the user is requesting the delayed ACK timer be set to. Note that
6037 * this value is defined in the standard to be between 200 and 500
6040 * sack_freq - This parameter contains the number of packets that must
6041 * be received before a sack is sent without waiting for the delay
6042 * timer to expire. The default value for this is 2, setting this
6043 * value to 1 will disable the delayed sack algorithm.
6045 static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
6046 char __user *optval,
6049 struct sctp_sack_info params;
6050 struct sctp_association *asoc = NULL;
6051 struct sctp_sock *sp = sctp_sk(sk);
6053 if (len >= sizeof(struct sctp_sack_info)) {
6054 len = sizeof(struct sctp_sack_info);
6056 if (copy_from_user(¶ms, optval, len))
6058 } else if (len == sizeof(struct sctp_assoc_value)) {
6059 pr_warn_ratelimited(DEPRECATED
6061 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
6062 "Use struct sctp_sack_info instead\n",
6063 current->comm, task_pid_nr(current));
6064 if (copy_from_user(¶ms, optval, len))
6069 /* Get association, if sack_assoc_id != SCTP_FUTURE_ASSOC and the
6070 * socket is a one to many style socket, and an association
6071 * was not found, then the id was invalid.
6073 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
6074 if (!asoc && params.sack_assoc_id != SCTP_FUTURE_ASSOC &&
6075 sctp_style(sk, UDP))
6079 /* Fetch association values. */
6080 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
6081 params.sack_delay = jiffies_to_msecs(asoc->sackdelay);
6082 params.sack_freq = asoc->sackfreq;
6085 params.sack_delay = 0;
6086 params.sack_freq = 1;
6089 /* Fetch socket values. */
6090 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
6091 params.sack_delay = sp->sackdelay;
6092 params.sack_freq = sp->sackfreq;
6094 params.sack_delay = 0;
6095 params.sack_freq = 1;
6099 if (copy_to_user(optval, ¶ms, len))
6102 if (put_user(len, optlen))
6108 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
6110 * Applications can specify protocol parameters for the default association
6111 * initialization. The option name argument to setsockopt() and getsockopt()
6114 * Setting initialization parameters is effective only on an unconnected
6115 * socket (for UDP-style sockets only future associations are effected
6116 * by the change). With TCP-style sockets, this option is inherited by
6117 * sockets derived from a listener socket.
6119 static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
6121 if (len < sizeof(struct sctp_initmsg))
6123 len = sizeof(struct sctp_initmsg);
6124 if (put_user(len, optlen))
6126 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
6132 static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
6133 char __user *optval, int __user *optlen)
6135 struct sctp_association *asoc;
6137 struct sctp_getaddrs getaddrs;
6138 struct sctp_transport *from;
6140 union sctp_addr temp;
6141 struct sctp_sock *sp = sctp_sk(sk);
6146 if (len < sizeof(struct sctp_getaddrs))
6149 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
6152 /* For UDP-style sockets, id specifies the association to query. */
6153 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
6157 to = optval + offsetof(struct sctp_getaddrs, addrs);
6158 space_left = len - offsetof(struct sctp_getaddrs, addrs);
6160 list_for_each_entry(from, &asoc->peer.transport_addr_list,
6162 memcpy(&temp, &from->ipaddr, sizeof(temp));
6163 addrlen = sctp_get_pf_specific(sk->sk_family)
6164 ->addr_to_user(sp, &temp);
6165 if (space_left < addrlen)
6167 if (copy_to_user(to, &temp, addrlen))
6171 space_left -= addrlen;
6174 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
6176 bytes_copied = ((char __user *)to) - optval;
6177 if (put_user(bytes_copied, optlen))
6183 static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
6184 size_t space_left, int *bytes_copied)
6186 struct sctp_sockaddr_entry *addr;
6187 union sctp_addr temp;
6190 struct net *net = sock_net(sk);
6193 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
6197 if ((PF_INET == sk->sk_family) &&
6198 (AF_INET6 == addr->a.sa.sa_family))
6200 if ((PF_INET6 == sk->sk_family) &&
6201 inet_v6_ipv6only(sk) &&
6202 (AF_INET == addr->a.sa.sa_family))
6204 memcpy(&temp, &addr->a, sizeof(temp));
6205 if (!temp.v4.sin_port)
6206 temp.v4.sin_port = htons(port);
6208 addrlen = sctp_get_pf_specific(sk->sk_family)
6209 ->addr_to_user(sctp_sk(sk), &temp);
6211 if (space_left < addrlen) {
6215 memcpy(to, &temp, addrlen);
6219 space_left -= addrlen;
6220 *bytes_copied += addrlen;
6228 static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
6229 char __user *optval, int __user *optlen)
6231 struct sctp_bind_addr *bp;
6232 struct sctp_association *asoc;
6234 struct sctp_getaddrs getaddrs;
6235 struct sctp_sockaddr_entry *addr;
6237 union sctp_addr temp;
6238 struct sctp_sock *sp = sctp_sk(sk);
6242 int bytes_copied = 0;
6246 if (len < sizeof(struct sctp_getaddrs))
6249 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
6253 * For UDP-style sockets, id specifies the association to query.
6254 * If the id field is set to the value '0' then the locally bound
6255 * addresses are returned without regard to any particular
6258 if (0 == getaddrs.assoc_id) {
6259 bp = &sctp_sk(sk)->ep->base.bind_addr;
6261 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
6264 bp = &asoc->base.bind_addr;
6267 to = optval + offsetof(struct sctp_getaddrs, addrs);
6268 space_left = len - offsetof(struct sctp_getaddrs, addrs);
6270 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
6274 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
6275 * addresses from the global local address list.
6277 if (sctp_list_single_entry(&bp->address_list)) {
6278 addr = list_entry(bp->address_list.next,
6279 struct sctp_sockaddr_entry, list);
6280 if (sctp_is_any(sk, &addr->a)) {
6281 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
6282 space_left, &bytes_copied);
6292 /* Protection on the bound address list is not needed since
6293 * in the socket option context we hold a socket lock and
6294 * thus the bound address list can't change.
6296 list_for_each_entry(addr, &bp->address_list, list) {
6297 memcpy(&temp, &addr->a, sizeof(temp));
6298 addrlen = sctp_get_pf_specific(sk->sk_family)
6299 ->addr_to_user(sp, &temp);
6300 if (space_left < addrlen) {
6301 err = -ENOMEM; /*fixme: right error?*/
6304 memcpy(buf, &temp, addrlen);
6306 bytes_copied += addrlen;
6308 space_left -= addrlen;
6312 if (copy_to_user(to, addrs, bytes_copied)) {
6316 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
6320 /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
6321 * but we can't change it anymore.
6323 if (put_user(bytes_copied, optlen))
6330 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
6332 * Requests that the local SCTP stack use the enclosed peer address as
6333 * the association primary. The enclosed address must be one of the
6334 * association peer's addresses.
6336 static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
6337 char __user *optval, int __user *optlen)
6339 struct sctp_prim prim;
6340 struct sctp_association *asoc;
6341 struct sctp_sock *sp = sctp_sk(sk);
6343 if (len < sizeof(struct sctp_prim))
6346 len = sizeof(struct sctp_prim);
6348 if (copy_from_user(&prim, optval, len))
6351 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
6355 if (!asoc->peer.primary_path)
6358 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
6359 asoc->peer.primary_path->af_specific->sockaddr_len);
6361 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
6362 (union sctp_addr *)&prim.ssp_addr);
6364 if (put_user(len, optlen))
6366 if (copy_to_user(optval, &prim, len))
6373 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
6375 * Requests that the local endpoint set the specified Adaptation Layer
6376 * Indication parameter for all future INIT and INIT-ACK exchanges.
6378 static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
6379 char __user *optval, int __user *optlen)
6381 struct sctp_setadaptation adaptation;
6383 if (len < sizeof(struct sctp_setadaptation))
6386 len = sizeof(struct sctp_setadaptation);
6388 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
6390 if (put_user(len, optlen))
6392 if (copy_to_user(optval, &adaptation, len))
6400 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
6402 * Applications that wish to use the sendto() system call may wish to
6403 * specify a default set of parameters that would normally be supplied
6404 * through the inclusion of ancillary data. This socket option allows
6405 * such an application to set the default sctp_sndrcvinfo structure.
6408 * The application that wishes to use this socket option simply passes
6409 * in to this call the sctp_sndrcvinfo structure defined in Section
6410 * 5.2.2) The input parameters accepted by this call include
6411 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
6412 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
6413 * to this call if the caller is using the UDP model.
6415 * For getsockopt, it get the default sctp_sndrcvinfo structure.
6417 static int sctp_getsockopt_default_send_param(struct sock *sk,
6418 int len, char __user *optval,
6421 struct sctp_sock *sp = sctp_sk(sk);
6422 struct sctp_association *asoc;
6423 struct sctp_sndrcvinfo info;
6425 if (len < sizeof(info))
6430 if (copy_from_user(&info, optval, len))
6433 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
6434 if (!asoc && info.sinfo_assoc_id != SCTP_FUTURE_ASSOC &&
6435 sctp_style(sk, UDP))
6439 info.sinfo_stream = asoc->default_stream;
6440 info.sinfo_flags = asoc->default_flags;
6441 info.sinfo_ppid = asoc->default_ppid;
6442 info.sinfo_context = asoc->default_context;
6443 info.sinfo_timetolive = asoc->default_timetolive;
6445 info.sinfo_stream = sp->default_stream;
6446 info.sinfo_flags = sp->default_flags;
6447 info.sinfo_ppid = sp->default_ppid;
6448 info.sinfo_context = sp->default_context;
6449 info.sinfo_timetolive = sp->default_timetolive;
6452 if (put_user(len, optlen))
6454 if (copy_to_user(optval, &info, len))
6460 /* RFC6458, Section 8.1.31. Set/get Default Send Parameters
6461 * (SCTP_DEFAULT_SNDINFO)
6463 static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
6464 char __user *optval,
6467 struct sctp_sock *sp = sctp_sk(sk);
6468 struct sctp_association *asoc;
6469 struct sctp_sndinfo info;
6471 if (len < sizeof(info))
6476 if (copy_from_user(&info, optval, len))
6479 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
6480 if (!asoc && info.snd_assoc_id != SCTP_FUTURE_ASSOC &&
6481 sctp_style(sk, UDP))
6485 info.snd_sid = asoc->default_stream;
6486 info.snd_flags = asoc->default_flags;
6487 info.snd_ppid = asoc->default_ppid;
6488 info.snd_context = asoc->default_context;
6490 info.snd_sid = sp->default_stream;
6491 info.snd_flags = sp->default_flags;
6492 info.snd_ppid = sp->default_ppid;
6493 info.snd_context = sp->default_context;
6496 if (put_user(len, optlen))
6498 if (copy_to_user(optval, &info, len))
6506 * 7.1.5 SCTP_NODELAY
6508 * Turn on/off any Nagle-like algorithm. This means that packets are
6509 * generally sent as soon as possible and no unnecessary delays are
6510 * introduced, at the cost of more packets in the network. Expects an
6511 * integer boolean flag.
6514 static int sctp_getsockopt_nodelay(struct sock *sk, int len,
6515 char __user *optval, int __user *optlen)
6519 if (len < sizeof(int))
6523 val = (sctp_sk(sk)->nodelay == 1);
6524 if (put_user(len, optlen))
6526 if (copy_to_user(optval, &val, len))
6533 * 7.1.1 SCTP_RTOINFO
6535 * The protocol parameters used to initialize and bound retransmission
6536 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
6537 * and modify these parameters.
6538 * All parameters are time values, in milliseconds. A value of 0, when
6539 * modifying the parameters, indicates that the current value should not
6543 static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
6544 char __user *optval,
6545 int __user *optlen) {
6546 struct sctp_rtoinfo rtoinfo;
6547 struct sctp_association *asoc;
6549 if (len < sizeof (struct sctp_rtoinfo))
6552 len = sizeof(struct sctp_rtoinfo);
6554 if (copy_from_user(&rtoinfo, optval, len))
6557 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
6559 if (!asoc && rtoinfo.srto_assoc_id != SCTP_FUTURE_ASSOC &&
6560 sctp_style(sk, UDP))
6563 /* Values corresponding to the specific association. */
6565 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
6566 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
6567 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
6569 /* Values corresponding to the endpoint. */
6570 struct sctp_sock *sp = sctp_sk(sk);
6572 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
6573 rtoinfo.srto_max = sp->rtoinfo.srto_max;
6574 rtoinfo.srto_min = sp->rtoinfo.srto_min;
6577 if (put_user(len, optlen))
6580 if (copy_to_user(optval, &rtoinfo, len))
6588 * 7.1.2 SCTP_ASSOCINFO
6590 * This option is used to tune the maximum retransmission attempts
6591 * of the association.
6592 * Returns an error if the new association retransmission value is
6593 * greater than the sum of the retransmission value of the peer.
6594 * See [SCTP] for more information.
6597 static int sctp_getsockopt_associnfo(struct sock *sk, int len,
6598 char __user *optval,
6602 struct sctp_assocparams assocparams;
6603 struct sctp_association *asoc;
6604 struct list_head *pos;
6607 if (len < sizeof (struct sctp_assocparams))
6610 len = sizeof(struct sctp_assocparams);
6612 if (copy_from_user(&assocparams, optval, len))
6615 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
6617 if (!asoc && assocparams.sasoc_assoc_id != SCTP_FUTURE_ASSOC &&
6618 sctp_style(sk, UDP))
6621 /* Values correspoinding to the specific association */
6623 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
6624 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
6625 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
6626 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
6628 list_for_each(pos, &asoc->peer.transport_addr_list) {
6632 assocparams.sasoc_number_peer_destinations = cnt;
6634 /* Values corresponding to the endpoint */
6635 struct sctp_sock *sp = sctp_sk(sk);
6637 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
6638 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
6639 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
6640 assocparams.sasoc_cookie_life =
6641 sp->assocparams.sasoc_cookie_life;
6642 assocparams.sasoc_number_peer_destinations =
6644 sasoc_number_peer_destinations;
6647 if (put_user(len, optlen))
6650 if (copy_to_user(optval, &assocparams, len))
6657 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
6659 * This socket option is a boolean flag which turns on or off mapped V4
6660 * addresses. If this option is turned on and the socket is type
6661 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
6662 * If this option is turned off, then no mapping will be done of V4
6663 * addresses and a user will receive both PF_INET6 and PF_INET type
6664 * addresses on the socket.
6666 static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
6667 char __user *optval, int __user *optlen)
6670 struct sctp_sock *sp = sctp_sk(sk);
6672 if (len < sizeof(int))
6677 if (put_user(len, optlen))
6679 if (copy_to_user(optval, &val, len))
6686 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
6687 * (chapter and verse is quoted at sctp_setsockopt_context())
6689 static int sctp_getsockopt_context(struct sock *sk, int len,
6690 char __user *optval, int __user *optlen)
6692 struct sctp_assoc_value params;
6693 struct sctp_association *asoc;
6695 if (len < sizeof(struct sctp_assoc_value))
6698 len = sizeof(struct sctp_assoc_value);
6700 if (copy_from_user(¶ms, optval, len))
6703 asoc = sctp_id2assoc(sk, params.assoc_id);
6704 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6705 sctp_style(sk, UDP))
6708 params.assoc_value = asoc ? asoc->default_rcv_context
6709 : sctp_sk(sk)->default_rcv_context;
6711 if (put_user(len, optlen))
6713 if (copy_to_user(optval, ¶ms, len))
6720 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6721 * This option will get or set the maximum size to put in any outgoing
6722 * SCTP DATA chunk. If a message is larger than this size it will be
6723 * fragmented by SCTP into the specified size. Note that the underlying
6724 * SCTP implementation may fragment into smaller sized chunks when the
6725 * PMTU of the underlying association is smaller than the value set by
6726 * the user. The default value for this option is '0' which indicates
6727 * the user is NOT limiting fragmentation and only the PMTU will effect
6728 * SCTP's choice of DATA chunk size. Note also that values set larger
6729 * than the maximum size of an IP datagram will effectively let SCTP
6730 * control fragmentation (i.e. the same as setting this option to 0).
6732 * The following structure is used to access and modify this parameter:
6734 * struct sctp_assoc_value {
6735 * sctp_assoc_t assoc_id;
6736 * uint32_t assoc_value;
6739 * assoc_id: This parameter is ignored for one-to-one style sockets.
6740 * For one-to-many style sockets this parameter indicates which
6741 * association the user is performing an action upon. Note that if
6742 * this field's value is zero then the endpoints default value is
6743 * changed (effecting future associations only).
6744 * assoc_value: This parameter specifies the maximum size in bytes.
6746 static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6747 char __user *optval, int __user *optlen)
6749 struct sctp_assoc_value params;
6750 struct sctp_association *asoc;
6752 if (len == sizeof(int)) {
6753 pr_warn_ratelimited(DEPRECATED
6755 "Use of int in maxseg socket option.\n"
6756 "Use struct sctp_assoc_value instead\n",
6757 current->comm, task_pid_nr(current));
6758 params.assoc_id = SCTP_FUTURE_ASSOC;
6759 } else if (len >= sizeof(struct sctp_assoc_value)) {
6760 len = sizeof(struct sctp_assoc_value);
6761 if (copy_from_user(¶ms, optval, len))
6766 asoc = sctp_id2assoc(sk, params.assoc_id);
6767 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6768 sctp_style(sk, UDP))
6772 params.assoc_value = asoc->frag_point;
6774 params.assoc_value = sctp_sk(sk)->user_frag;
6776 if (put_user(len, optlen))
6778 if (len == sizeof(int)) {
6779 if (copy_to_user(optval, ¶ms.assoc_value, len))
6782 if (copy_to_user(optval, ¶ms, len))
6790 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6791 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6793 static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6794 char __user *optval, int __user *optlen)
6798 if (len < sizeof(int))
6803 val = sctp_sk(sk)->frag_interleave;
6804 if (put_user(len, optlen))
6806 if (copy_to_user(optval, &val, len))
6813 * 7.1.25. Set or Get the sctp partial delivery point
6814 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6816 static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6817 char __user *optval,
6822 if (len < sizeof(u32))
6827 val = sctp_sk(sk)->pd_point;
6828 if (put_user(len, optlen))
6830 if (copy_to_user(optval, &val, len))
6837 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6838 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6840 static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6841 char __user *optval,
6844 struct sctp_assoc_value params;
6845 struct sctp_association *asoc;
6847 if (len == sizeof(int)) {
6848 pr_warn_ratelimited(DEPRECATED
6850 "Use of int in max_burst socket option.\n"
6851 "Use struct sctp_assoc_value instead\n",
6852 current->comm, task_pid_nr(current));
6853 params.assoc_id = SCTP_FUTURE_ASSOC;
6854 } else if (len >= sizeof(struct sctp_assoc_value)) {
6855 len = sizeof(struct sctp_assoc_value);
6856 if (copy_from_user(¶ms, optval, len))
6861 asoc = sctp_id2assoc(sk, params.assoc_id);
6862 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
6863 sctp_style(sk, UDP))
6866 params.assoc_value = asoc ? asoc->max_burst : sctp_sk(sk)->max_burst;
6868 if (len == sizeof(int)) {
6869 if (copy_to_user(optval, ¶ms.assoc_value, len))
6872 if (copy_to_user(optval, ¶ms, len))
6880 static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6881 char __user *optval, int __user *optlen)
6883 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6884 struct sctp_hmacalgo __user *p = (void __user *)optval;
6885 struct sctp_hmac_algo_param *hmacs;
6890 if (!ep->auth_enable)
6893 hmacs = ep->auth_hmacs_list;
6894 data_len = ntohs(hmacs->param_hdr.length) -
6895 sizeof(struct sctp_paramhdr);
6897 if (len < sizeof(struct sctp_hmacalgo) + data_len)
6900 len = sizeof(struct sctp_hmacalgo) + data_len;
6901 num_idents = data_len / sizeof(u16);
6903 if (put_user(len, optlen))
6905 if (put_user(num_idents, &p->shmac_num_idents))
6907 for (i = 0; i < num_idents; i++) {
6908 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6910 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6916 static int sctp_getsockopt_active_key(struct sock *sk, int len,
6917 char __user *optval, int __user *optlen)
6919 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6920 struct sctp_authkeyid val;
6921 struct sctp_association *asoc;
6923 if (len < sizeof(struct sctp_authkeyid))
6926 len = sizeof(struct sctp_authkeyid);
6927 if (copy_from_user(&val, optval, len))
6930 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6931 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6935 if (!asoc->peer.auth_capable)
6937 val.scact_keynumber = asoc->active_key_id;
6939 if (!ep->auth_enable)
6941 val.scact_keynumber = ep->active_key_id;
6944 if (put_user(len, optlen))
6946 if (copy_to_user(optval, &val, len))
6952 static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6953 char __user *optval, int __user *optlen)
6955 struct sctp_authchunks __user *p = (void __user *)optval;
6956 struct sctp_authchunks val;
6957 struct sctp_association *asoc;
6958 struct sctp_chunks_param *ch;
6962 if (len < sizeof(struct sctp_authchunks))
6965 if (copy_from_user(&val, optval, sizeof(val)))
6968 to = p->gauth_chunks;
6969 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6973 if (!asoc->peer.auth_capable)
6976 ch = asoc->peer.peer_chunks;
6980 /* See if the user provided enough room for all the data */
6981 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
6982 if (len < num_chunks)
6985 if (copy_to_user(to, ch->chunks, num_chunks))
6988 len = sizeof(struct sctp_authchunks) + num_chunks;
6989 if (put_user(len, optlen))
6991 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6996 static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6997 char __user *optval, int __user *optlen)
6999 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7000 struct sctp_authchunks __user *p = (void __user *)optval;
7001 struct sctp_authchunks val;
7002 struct sctp_association *asoc;
7003 struct sctp_chunks_param *ch;
7007 if (len < sizeof(struct sctp_authchunks))
7010 if (copy_from_user(&val, optval, sizeof(val)))
7013 to = p->gauth_chunks;
7014 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
7015 if (!asoc && val.gauth_assoc_id != SCTP_FUTURE_ASSOC &&
7016 sctp_style(sk, UDP))
7020 if (!asoc->peer.auth_capable)
7022 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
7024 if (!ep->auth_enable)
7026 ch = ep->auth_chunk_list;
7031 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
7032 if (len < sizeof(struct sctp_authchunks) + num_chunks)
7035 if (copy_to_user(to, ch->chunks, num_chunks))
7038 len = sizeof(struct sctp_authchunks) + num_chunks;
7039 if (put_user(len, optlen))
7041 if (put_user(num_chunks, &p->gauth_number_of_chunks))
7048 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
7049 * This option gets the current number of associations that are attached
7050 * to a one-to-many style socket. The option value is an uint32_t.
7052 static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
7053 char __user *optval, int __user *optlen)
7055 struct sctp_sock *sp = sctp_sk(sk);
7056 struct sctp_association *asoc;
7059 if (sctp_style(sk, TCP))
7062 if (len < sizeof(u32))
7067 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
7071 if (put_user(len, optlen))
7073 if (copy_to_user(optval, &val, len))
7080 * 8.1.23 SCTP_AUTO_ASCONF
7081 * See the corresponding setsockopt entry as description
7083 static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
7084 char __user *optval, int __user *optlen)
7088 if (len < sizeof(int))
7092 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
7094 if (put_user(len, optlen))
7096 if (copy_to_user(optval, &val, len))
7102 * 8.2.6. Get the Current Identifiers of Associations
7103 * (SCTP_GET_ASSOC_ID_LIST)
7105 * This option gets the current list of SCTP association identifiers of
7106 * the SCTP associations handled by a one-to-many style socket.
7108 static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
7109 char __user *optval, int __user *optlen)
7111 struct sctp_sock *sp = sctp_sk(sk);
7112 struct sctp_association *asoc;
7113 struct sctp_assoc_ids *ids;
7116 if (sctp_style(sk, TCP))
7119 if (len < sizeof(struct sctp_assoc_ids))
7122 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
7126 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
7129 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
7131 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
7135 ids->gaids_number_of_ids = num;
7137 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
7138 ids->gaids_assoc_id[num++] = asoc->assoc_id;
7141 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
7151 * SCTP_PEER_ADDR_THLDS
7153 * This option allows us to fetch the partially failed threshold for one or all
7154 * transports in an association. See Section 6.1 of:
7155 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
7157 static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
7158 char __user *optval, int len,
7159 int __user *optlen, bool v2)
7161 struct sctp_paddrthlds_v2 val;
7162 struct sctp_transport *trans;
7163 struct sctp_association *asoc;
7166 min = v2 ? sizeof(val) : sizeof(struct sctp_paddrthlds);
7170 if (copy_from_user(&val, optval, len))
7173 if (!sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
7174 trans = sctp_addr_id2transport(sk, &val.spt_address,
7179 val.spt_pathmaxrxt = trans->pathmaxrxt;
7180 val.spt_pathpfthld = trans->pf_retrans;
7181 val.spt_pathcpthld = trans->ps_retrans;
7186 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
7187 if (!asoc && val.spt_assoc_id != SCTP_FUTURE_ASSOC &&
7188 sctp_style(sk, UDP))
7192 val.spt_pathpfthld = asoc->pf_retrans;
7193 val.spt_pathmaxrxt = asoc->pathmaxrxt;
7194 val.spt_pathcpthld = asoc->ps_retrans;
7196 struct sctp_sock *sp = sctp_sk(sk);
7198 val.spt_pathpfthld = sp->pf_retrans;
7199 val.spt_pathmaxrxt = sp->pathmaxrxt;
7200 val.spt_pathcpthld = sp->ps_retrans;
7204 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
7211 * SCTP_GET_ASSOC_STATS
7213 * This option retrieves local per endpoint statistics. It is modeled
7214 * after OpenSolaris' implementation
7216 static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
7217 char __user *optval,
7220 struct sctp_assoc_stats sas;
7221 struct sctp_association *asoc = NULL;
7223 /* User must provide at least the assoc id */
7224 if (len < sizeof(sctp_assoc_t))
7227 /* Allow the struct to grow and fill in as much as possible */
7228 len = min_t(size_t, len, sizeof(sas));
7230 if (copy_from_user(&sas, optval, len))
7233 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
7237 sas.sas_rtxchunks = asoc->stats.rtxchunks;
7238 sas.sas_gapcnt = asoc->stats.gapcnt;
7239 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
7240 sas.sas_osacks = asoc->stats.osacks;
7241 sas.sas_isacks = asoc->stats.isacks;
7242 sas.sas_octrlchunks = asoc->stats.octrlchunks;
7243 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
7244 sas.sas_oodchunks = asoc->stats.oodchunks;
7245 sas.sas_iodchunks = asoc->stats.iodchunks;
7246 sas.sas_ouodchunks = asoc->stats.ouodchunks;
7247 sas.sas_iuodchunks = asoc->stats.iuodchunks;
7248 sas.sas_idupchunks = asoc->stats.idupchunks;
7249 sas.sas_opackets = asoc->stats.opackets;
7250 sas.sas_ipackets = asoc->stats.ipackets;
7252 /* New high max rto observed, will return 0 if not a single
7253 * RTO update took place. obs_rto_ipaddr will be bogus
7256 sas.sas_maxrto = asoc->stats.max_obs_rto;
7257 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
7258 sizeof(struct sockaddr_storage));
7260 /* Mark beginning of a new observation period */
7261 asoc->stats.max_obs_rto = asoc->rto_min;
7263 if (put_user(len, optlen))
7266 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
7268 if (copy_to_user(optval, &sas, len))
7274 static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
7275 char __user *optval,
7280 if (len < sizeof(int))
7284 if (sctp_sk(sk)->recvrcvinfo)
7286 if (put_user(len, optlen))
7288 if (copy_to_user(optval, &val, len))
7294 static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
7295 char __user *optval,
7300 if (len < sizeof(int))
7304 if (sctp_sk(sk)->recvnxtinfo)
7306 if (put_user(len, optlen))
7308 if (copy_to_user(optval, &val, len))
7314 static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
7315 char __user *optval,
7318 struct sctp_assoc_value params;
7319 struct sctp_association *asoc;
7320 int retval = -EFAULT;
7322 if (len < sizeof(params)) {
7327 len = sizeof(params);
7328 if (copy_from_user(¶ms, optval, len))
7331 asoc = sctp_id2assoc(sk, params.assoc_id);
7332 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7333 sctp_style(sk, UDP)) {
7338 params.assoc_value = asoc ? asoc->peer.prsctp_capable
7339 : sctp_sk(sk)->ep->prsctp_enable;
7341 if (put_user(len, optlen))
7344 if (copy_to_user(optval, ¶ms, len))
7353 static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
7354 char __user *optval,
7357 struct sctp_default_prinfo info;
7358 struct sctp_association *asoc;
7359 int retval = -EFAULT;
7361 if (len < sizeof(info)) {
7367 if (copy_from_user(&info, optval, len))
7370 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
7371 if (!asoc && info.pr_assoc_id != SCTP_FUTURE_ASSOC &&
7372 sctp_style(sk, UDP)) {
7378 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
7379 info.pr_value = asoc->default_timetolive;
7381 struct sctp_sock *sp = sctp_sk(sk);
7383 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
7384 info.pr_value = sp->default_timetolive;
7387 if (put_user(len, optlen))
7390 if (copy_to_user(optval, &info, len))
7399 static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
7400 char __user *optval,
7403 struct sctp_prstatus params;
7404 struct sctp_association *asoc;
7406 int retval = -EINVAL;
7408 if (len < sizeof(params))
7411 len = sizeof(params);
7412 if (copy_from_user(¶ms, optval, len)) {
7417 policy = params.sprstat_policy;
7418 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7419 ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
7422 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7426 if (policy == SCTP_PR_SCTP_ALL) {
7427 params.sprstat_abandoned_unsent = 0;
7428 params.sprstat_abandoned_sent = 0;
7429 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7430 params.sprstat_abandoned_unsent +=
7431 asoc->abandoned_unsent[policy];
7432 params.sprstat_abandoned_sent +=
7433 asoc->abandoned_sent[policy];
7436 params.sprstat_abandoned_unsent =
7437 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7438 params.sprstat_abandoned_sent =
7439 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
7442 if (put_user(len, optlen)) {
7447 if (copy_to_user(optval, ¶ms, len)) {
7458 static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
7459 char __user *optval,
7462 struct sctp_stream_out_ext *streamoute;
7463 struct sctp_association *asoc;
7464 struct sctp_prstatus params;
7465 int retval = -EINVAL;
7468 if (len < sizeof(params))
7471 len = sizeof(params);
7472 if (copy_from_user(¶ms, optval, len)) {
7477 policy = params.sprstat_policy;
7478 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7479 ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
7482 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7483 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
7486 streamoute = SCTP_SO(&asoc->stream, params.sprstat_sid)->ext;
7488 /* Not allocated yet, means all stats are 0 */
7489 params.sprstat_abandoned_unsent = 0;
7490 params.sprstat_abandoned_sent = 0;
7495 if (policy == SCTP_PR_SCTP_ALL) {
7496 params.sprstat_abandoned_unsent = 0;
7497 params.sprstat_abandoned_sent = 0;
7498 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7499 params.sprstat_abandoned_unsent +=
7500 streamoute->abandoned_unsent[policy];
7501 params.sprstat_abandoned_sent +=
7502 streamoute->abandoned_sent[policy];
7505 params.sprstat_abandoned_unsent =
7506 streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7507 params.sprstat_abandoned_sent =
7508 streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
7511 if (put_user(len, optlen) || copy_to_user(optval, ¶ms, len)) {
7522 static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
7523 char __user *optval,
7526 struct sctp_assoc_value params;
7527 struct sctp_association *asoc;
7528 int retval = -EFAULT;
7530 if (len < sizeof(params)) {
7535 len = sizeof(params);
7536 if (copy_from_user(¶ms, optval, len))
7539 asoc = sctp_id2assoc(sk, params.assoc_id);
7540 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7541 sctp_style(sk, UDP)) {
7546 params.assoc_value = asoc ? asoc->peer.reconf_capable
7547 : sctp_sk(sk)->ep->reconf_enable;
7549 if (put_user(len, optlen))
7552 if (copy_to_user(optval, ¶ms, len))
7561 static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
7562 char __user *optval,
7565 struct sctp_assoc_value params;
7566 struct sctp_association *asoc;
7567 int retval = -EFAULT;
7569 if (len < sizeof(params)) {
7574 len = sizeof(params);
7575 if (copy_from_user(¶ms, optval, len))
7578 asoc = sctp_id2assoc(sk, params.assoc_id);
7579 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7580 sctp_style(sk, UDP)) {
7585 params.assoc_value = asoc ? asoc->strreset_enable
7586 : sctp_sk(sk)->ep->strreset_enable;
7588 if (put_user(len, optlen))
7591 if (copy_to_user(optval, ¶ms, len))
7600 static int sctp_getsockopt_scheduler(struct sock *sk, int len,
7601 char __user *optval,
7604 struct sctp_assoc_value params;
7605 struct sctp_association *asoc;
7606 int retval = -EFAULT;
7608 if (len < sizeof(params)) {
7613 len = sizeof(params);
7614 if (copy_from_user(¶ms, optval, len))
7617 asoc = sctp_id2assoc(sk, params.assoc_id);
7618 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7619 sctp_style(sk, UDP)) {
7624 params.assoc_value = asoc ? sctp_sched_get_sched(asoc)
7625 : sctp_sk(sk)->default_ss;
7627 if (put_user(len, optlen))
7630 if (copy_to_user(optval, ¶ms, len))
7639 static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
7640 char __user *optval,
7643 struct sctp_stream_value params;
7644 struct sctp_association *asoc;
7645 int retval = -EFAULT;
7647 if (len < sizeof(params)) {
7652 len = sizeof(params);
7653 if (copy_from_user(¶ms, optval, len))
7656 asoc = sctp_id2assoc(sk, params.assoc_id);
7662 retval = sctp_sched_get_value(asoc, params.stream_id,
7663 ¶ms.stream_value);
7667 if (put_user(len, optlen)) {
7672 if (copy_to_user(optval, ¶ms, len)) {
7681 static int sctp_getsockopt_interleaving_supported(struct sock *sk, int len,
7682 char __user *optval,
7685 struct sctp_assoc_value params;
7686 struct sctp_association *asoc;
7687 int retval = -EFAULT;
7689 if (len < sizeof(params)) {
7694 len = sizeof(params);
7695 if (copy_from_user(¶ms, optval, len))
7698 asoc = sctp_id2assoc(sk, params.assoc_id);
7699 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7700 sctp_style(sk, UDP)) {
7705 params.assoc_value = asoc ? asoc->peer.intl_capable
7706 : sctp_sk(sk)->ep->intl_enable;
7708 if (put_user(len, optlen))
7711 if (copy_to_user(optval, ¶ms, len))
7720 static int sctp_getsockopt_reuse_port(struct sock *sk, int len,
7721 char __user *optval,
7726 if (len < sizeof(int))
7730 val = sctp_sk(sk)->reuse;
7731 if (put_user(len, optlen))
7734 if (copy_to_user(optval, &val, len))
7740 static int sctp_getsockopt_event(struct sock *sk, int len, char __user *optval,
7743 struct sctp_association *asoc;
7744 struct sctp_event param;
7747 if (len < sizeof(param))
7750 len = sizeof(param);
7751 if (copy_from_user(¶m, optval, len))
7754 if (param.se_type < SCTP_SN_TYPE_BASE ||
7755 param.se_type > SCTP_SN_TYPE_MAX)
7758 asoc = sctp_id2assoc(sk, param.se_assoc_id);
7759 if (!asoc && param.se_assoc_id != SCTP_FUTURE_ASSOC &&
7760 sctp_style(sk, UDP))
7763 subscribe = asoc ? asoc->subscribe : sctp_sk(sk)->subscribe;
7764 param.se_on = sctp_ulpevent_type_enabled(subscribe, param.se_type);
7766 if (put_user(len, optlen))
7769 if (copy_to_user(optval, ¶m, len))
7775 static int sctp_getsockopt_asconf_supported(struct sock *sk, int len,
7776 char __user *optval,
7779 struct sctp_assoc_value params;
7780 struct sctp_association *asoc;
7781 int retval = -EFAULT;
7783 if (len < sizeof(params)) {
7788 len = sizeof(params);
7789 if (copy_from_user(¶ms, optval, len))
7792 asoc = sctp_id2assoc(sk, params.assoc_id);
7793 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7794 sctp_style(sk, UDP)) {
7799 params.assoc_value = asoc ? asoc->peer.asconf_capable
7800 : sctp_sk(sk)->ep->asconf_enable;
7802 if (put_user(len, optlen))
7805 if (copy_to_user(optval, ¶ms, len))
7814 static int sctp_getsockopt_auth_supported(struct sock *sk, int len,
7815 char __user *optval,
7818 struct sctp_assoc_value params;
7819 struct sctp_association *asoc;
7820 int retval = -EFAULT;
7822 if (len < sizeof(params)) {
7827 len = sizeof(params);
7828 if (copy_from_user(¶ms, optval, len))
7831 asoc = sctp_id2assoc(sk, params.assoc_id);
7832 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7833 sctp_style(sk, UDP)) {
7838 params.assoc_value = asoc ? asoc->peer.auth_capable
7839 : sctp_sk(sk)->ep->auth_enable;
7841 if (put_user(len, optlen))
7844 if (copy_to_user(optval, ¶ms, len))
7853 static int sctp_getsockopt_ecn_supported(struct sock *sk, int len,
7854 char __user *optval,
7857 struct sctp_assoc_value params;
7858 struct sctp_association *asoc;
7859 int retval = -EFAULT;
7861 if (len < sizeof(params)) {
7866 len = sizeof(params);
7867 if (copy_from_user(¶ms, optval, len))
7870 asoc = sctp_id2assoc(sk, params.assoc_id);
7871 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7872 sctp_style(sk, UDP)) {
7877 params.assoc_value = asoc ? asoc->peer.ecn_capable
7878 : sctp_sk(sk)->ep->ecn_enable;
7880 if (put_user(len, optlen))
7883 if (copy_to_user(optval, ¶ms, len))
7892 static int sctp_getsockopt_pf_expose(struct sock *sk, int len,
7893 char __user *optval,
7896 struct sctp_assoc_value params;
7897 struct sctp_association *asoc;
7898 int retval = -EFAULT;
7900 if (len < sizeof(params)) {
7905 len = sizeof(params);
7906 if (copy_from_user(¶ms, optval, len))
7909 asoc = sctp_id2assoc(sk, params.assoc_id);
7910 if (!asoc && params.assoc_id != SCTP_FUTURE_ASSOC &&
7911 sctp_style(sk, UDP)) {
7916 params.assoc_value = asoc ? asoc->pf_expose
7917 : sctp_sk(sk)->pf_expose;
7919 if (put_user(len, optlen))
7922 if (copy_to_user(optval, ¶ms, len))
7931 static int sctp_getsockopt_encap_port(struct sock *sk, int len,
7932 char __user *optval, int __user *optlen)
7934 struct sctp_association *asoc;
7935 struct sctp_udpencaps encap;
7936 struct sctp_transport *t;
7939 if (len < sizeof(encap))
7942 len = sizeof(encap);
7943 if (copy_from_user(&encap, optval, len))
7946 /* If an address other than INADDR_ANY is specified, and
7947 * no transport is found, then the request is invalid.
7949 if (!sctp_is_any(sk, (union sctp_addr *)&encap.sue_address)) {
7950 t = sctp_addr_id2transport(sk, &encap.sue_address,
7951 encap.sue_assoc_id);
7953 pr_debug("%s: failed no transport\n", __func__);
7957 encap_port = t->encap_port;
7961 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
7962 * socket is a one to many style socket, and an association
7963 * was not found, then the id was invalid.
7965 asoc = sctp_id2assoc(sk, encap.sue_assoc_id);
7966 if (!asoc && encap.sue_assoc_id != SCTP_FUTURE_ASSOC &&
7967 sctp_style(sk, UDP)) {
7968 pr_debug("%s: failed no association\n", __func__);
7973 encap_port = asoc->encap_port;
7977 encap_port = sctp_sk(sk)->encap_port;
7980 encap.sue_port = (__force uint16_t)encap_port;
7981 if (copy_to_user(optval, &encap, len))
7984 if (put_user(len, optlen))
7990 static int sctp_getsockopt_probe_interval(struct sock *sk, int len,
7991 char __user *optval,
7994 struct sctp_probeinterval params;
7995 struct sctp_association *asoc;
7996 struct sctp_transport *t;
7997 __u32 probe_interval;
7999 if (len < sizeof(params))
8002 len = sizeof(params);
8003 if (copy_from_user(¶ms, optval, len))
8006 /* If an address other than INADDR_ANY is specified, and
8007 * no transport is found, then the request is invalid.
8009 if (!sctp_is_any(sk, (union sctp_addr *)¶ms.spi_address)) {
8010 t = sctp_addr_id2transport(sk, ¶ms.spi_address,
8011 params.spi_assoc_id);
8013 pr_debug("%s: failed no transport\n", __func__);
8017 probe_interval = jiffies_to_msecs(t->probe_interval);
8021 /* Get association, if assoc_id != SCTP_FUTURE_ASSOC and the
8022 * socket is a one to many style socket, and an association
8023 * was not found, then the id was invalid.
8025 asoc = sctp_id2assoc(sk, params.spi_assoc_id);
8026 if (!asoc && params.spi_assoc_id != SCTP_FUTURE_ASSOC &&
8027 sctp_style(sk, UDP)) {
8028 pr_debug("%s: failed no association\n", __func__);
8033 probe_interval = jiffies_to_msecs(asoc->probe_interval);
8037 probe_interval = sctp_sk(sk)->probe_interval;
8040 params.spi_interval = probe_interval;
8041 if (copy_to_user(optval, ¶ms, len))
8044 if (put_user(len, optlen))
8050 static int sctp_getsockopt(struct sock *sk, int level, int optname,
8051 char __user *optval, int __user *optlen)
8056 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
8058 /* I can hardly begin to describe how wrong this is. This is
8059 * so broken as to be worse than useless. The API draft
8060 * REALLY is NOT helpful here... I am not convinced that the
8061 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
8062 * are at all well-founded.
8064 if (level != SOL_SCTP) {
8065 struct sctp_af *af = sctp_sk(sk)->pf->af;
8067 retval = af->getsockopt(sk, level, optname, optval, optlen);
8071 if (get_user(len, optlen))
8081 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
8083 case SCTP_DISABLE_FRAGMENTS:
8084 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
8088 retval = sctp_getsockopt_events(sk, len, optval, optlen);
8090 case SCTP_AUTOCLOSE:
8091 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
8093 case SCTP_SOCKOPT_PEELOFF:
8094 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
8096 case SCTP_SOCKOPT_PEELOFF_FLAGS:
8097 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
8099 case SCTP_PEER_ADDR_PARAMS:
8100 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
8103 case SCTP_DELAYED_SACK:
8104 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
8108 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
8110 case SCTP_GET_PEER_ADDRS:
8111 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
8114 case SCTP_GET_LOCAL_ADDRS:
8115 retval = sctp_getsockopt_local_addrs(sk, len, optval,
8118 case SCTP_SOCKOPT_CONNECTX3:
8119 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
8121 case SCTP_DEFAULT_SEND_PARAM:
8122 retval = sctp_getsockopt_default_send_param(sk, len,
8125 case SCTP_DEFAULT_SNDINFO:
8126 retval = sctp_getsockopt_default_sndinfo(sk, len,
8129 case SCTP_PRIMARY_ADDR:
8130 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
8133 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
8136 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
8138 case SCTP_ASSOCINFO:
8139 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
8141 case SCTP_I_WANT_MAPPED_V4_ADDR:
8142 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
8145 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
8147 case SCTP_GET_PEER_ADDR_INFO:
8148 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
8151 case SCTP_ADAPTATION_LAYER:
8152 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
8156 retval = sctp_getsockopt_context(sk, len, optval, optlen);
8158 case SCTP_FRAGMENT_INTERLEAVE:
8159 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
8162 case SCTP_PARTIAL_DELIVERY_POINT:
8163 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
8166 case SCTP_MAX_BURST:
8167 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
8170 case SCTP_AUTH_CHUNK:
8171 case SCTP_AUTH_DELETE_KEY:
8172 case SCTP_AUTH_DEACTIVATE_KEY:
8173 retval = -EOPNOTSUPP;
8175 case SCTP_HMAC_IDENT:
8176 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
8178 case SCTP_AUTH_ACTIVE_KEY:
8179 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
8181 case SCTP_PEER_AUTH_CHUNKS:
8182 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
8185 case SCTP_LOCAL_AUTH_CHUNKS:
8186 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
8189 case SCTP_GET_ASSOC_NUMBER:
8190 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
8192 case SCTP_GET_ASSOC_ID_LIST:
8193 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
8195 case SCTP_AUTO_ASCONF:
8196 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
8198 case SCTP_PEER_ADDR_THLDS:
8199 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len,
8202 case SCTP_PEER_ADDR_THLDS_V2:
8203 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len,
8206 case SCTP_GET_ASSOC_STATS:
8207 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
8209 case SCTP_RECVRCVINFO:
8210 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
8212 case SCTP_RECVNXTINFO:
8213 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
8215 case SCTP_PR_SUPPORTED:
8216 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
8218 case SCTP_DEFAULT_PRINFO:
8219 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
8222 case SCTP_PR_ASSOC_STATUS:
8223 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
8226 case SCTP_PR_STREAM_STATUS:
8227 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
8230 case SCTP_RECONFIG_SUPPORTED:
8231 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
8234 case SCTP_ENABLE_STREAM_RESET:
8235 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
8238 case SCTP_STREAM_SCHEDULER:
8239 retval = sctp_getsockopt_scheduler(sk, len, optval,
8242 case SCTP_STREAM_SCHEDULER_VALUE:
8243 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
8246 case SCTP_INTERLEAVING_SUPPORTED:
8247 retval = sctp_getsockopt_interleaving_supported(sk, len, optval,
8250 case SCTP_REUSE_PORT:
8251 retval = sctp_getsockopt_reuse_port(sk, len, optval, optlen);
8254 retval = sctp_getsockopt_event(sk, len, optval, optlen);
8256 case SCTP_ASCONF_SUPPORTED:
8257 retval = sctp_getsockopt_asconf_supported(sk, len, optval,
8260 case SCTP_AUTH_SUPPORTED:
8261 retval = sctp_getsockopt_auth_supported(sk, len, optval,
8264 case SCTP_ECN_SUPPORTED:
8265 retval = sctp_getsockopt_ecn_supported(sk, len, optval, optlen);
8267 case SCTP_EXPOSE_POTENTIALLY_FAILED_STATE:
8268 retval = sctp_getsockopt_pf_expose(sk, len, optval, optlen);
8270 case SCTP_REMOTE_UDP_ENCAPS_PORT:
8271 retval = sctp_getsockopt_encap_port(sk, len, optval, optlen);
8273 case SCTP_PLPMTUD_PROBE_INTERVAL:
8274 retval = sctp_getsockopt_probe_interval(sk, len, optval, optlen);
8277 retval = -ENOPROTOOPT;
8285 static bool sctp_bpf_bypass_getsockopt(int level, int optname)
8287 if (level == SOL_SCTP) {
8289 case SCTP_SOCKOPT_PEELOFF:
8290 case SCTP_SOCKOPT_PEELOFF_FLAGS:
8291 case SCTP_SOCKOPT_CONNECTX3:
8301 static int sctp_hash(struct sock *sk)
8307 static void sctp_unhash(struct sock *sk)
8312 /* Check if port is acceptable. Possibly find first available port.
8314 * The port hash table (contained in the 'global' SCTP protocol storage
8315 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
8316 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
8317 * list (the list number is the port number hashed out, so as you
8318 * would expect from a hash function, all the ports in a given list have
8319 * such a number that hashes out to the same list number; you were
8320 * expecting that, right?); so each list has a set of ports, with a
8321 * link to the socket (struct sock) that uses it, the port number and
8322 * a fastreuse flag (FIXME: NPI ipg).
8324 static struct sctp_bind_bucket *sctp_bucket_create(
8325 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
8327 static int sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
8329 struct sctp_sock *sp = sctp_sk(sk);
8330 bool reuse = (sk->sk_reuse || sp->reuse);
8331 struct sctp_bind_hashbucket *head; /* hash list */
8332 struct net *net = sock_net(sk);
8333 kuid_t uid = sock_i_uid(sk);
8334 struct sctp_bind_bucket *pp;
8335 unsigned short snum;
8338 snum = ntohs(addr->v4.sin_port);
8340 pr_debug("%s: begins, snum:%d\n", __func__, snum);
8343 /* Search for an available port. */
8344 int low, high, remaining, index;
8347 inet_sk_get_local_port_range(sk, &low, &high);
8348 remaining = (high - low) + 1;
8349 rover = get_random_u32_below(remaining) + low;
8353 if ((rover < low) || (rover > high))
8355 if (inet_is_local_reserved_port(net, rover))
8357 index = sctp_phashfn(net, rover);
8358 head = &sctp_port_hashtable[index];
8359 spin_lock_bh(&head->lock);
8360 sctp_for_each_hentry(pp, &head->chain)
8361 if ((pp->port == rover) &&
8362 net_eq(net, pp->net))
8366 spin_unlock_bh(&head->lock);
8368 } while (--remaining > 0);
8370 /* Exhausted local port range during search? */
8375 /* OK, here is the one we will use. HEAD (the port
8376 * hash table list entry) is non-NULL and we hold it's
8381 /* We are given an specific port number; we verify
8382 * that it is not being used. If it is used, we will
8383 * exahust the search in the hash list corresponding
8384 * to the port number (snum) - we detect that with the
8385 * port iterator, pp being NULL.
8387 head = &sctp_port_hashtable[sctp_phashfn(net, snum)];
8388 spin_lock_bh(&head->lock);
8389 sctp_for_each_hentry(pp, &head->chain) {
8390 if ((pp->port == snum) && net_eq(pp->net, net))
8397 if (!hlist_empty(&pp->owner)) {
8398 /* We had a port hash table hit - there is an
8399 * available port (pp != NULL) and it is being
8400 * used by other socket (pp->owner not empty); that other
8401 * socket is going to be sk2.
8405 pr_debug("%s: found a possible match\n", __func__);
8407 if ((pp->fastreuse && reuse &&
8408 sk->sk_state != SCTP_SS_LISTENING) ||
8409 (pp->fastreuseport && sk->sk_reuseport &&
8410 uid_eq(pp->fastuid, uid)))
8413 /* Run through the list of sockets bound to the port
8414 * (pp->port) [via the pointers bind_next and
8415 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
8416 * we get the endpoint they describe and run through
8417 * the endpoint's list of IP (v4 or v6) addresses,
8418 * comparing each of the addresses with the address of
8419 * the socket sk. If we find a match, then that means
8420 * that this port/socket (sk) combination are already
8423 sk_for_each_bound(sk2, &pp->owner) {
8424 int bound_dev_if2 = READ_ONCE(sk2->sk_bound_dev_if);
8425 struct sctp_sock *sp2 = sctp_sk(sk2);
8426 struct sctp_endpoint *ep2 = sp2->ep;
8429 (reuse && (sk2->sk_reuse || sp2->reuse) &&
8430 sk2->sk_state != SCTP_SS_LISTENING) ||
8431 (sk->sk_reuseport && sk2->sk_reuseport &&
8432 uid_eq(uid, sock_i_uid(sk2))))
8435 if ((!sk->sk_bound_dev_if || !bound_dev_if2 ||
8436 sk->sk_bound_dev_if == bound_dev_if2) &&
8437 sctp_bind_addr_conflict(&ep2->base.bind_addr,
8444 pr_debug("%s: found a match\n", __func__);
8447 /* If there was a hash table miss, create a new port. */
8449 if (!pp && !(pp = sctp_bucket_create(head, net, snum)))
8452 /* In either case (hit or miss), make sure fastreuse is 1 only
8453 * if sk->sk_reuse is too (that is, if the caller requested
8454 * SO_REUSEADDR on this socket -sk-).
8456 if (hlist_empty(&pp->owner)) {
8457 if (reuse && sk->sk_state != SCTP_SS_LISTENING)
8462 if (sk->sk_reuseport) {
8463 pp->fastreuseport = 1;
8466 pp->fastreuseport = 0;
8469 if (pp->fastreuse &&
8470 (!reuse || sk->sk_state == SCTP_SS_LISTENING))
8473 if (pp->fastreuseport &&
8474 (!sk->sk_reuseport || !uid_eq(pp->fastuid, uid)))
8475 pp->fastreuseport = 0;
8478 /* We are set, so fill up all the data in the hash table
8479 * entry, tie the socket list information with the rest of the
8480 * sockets FIXME: Blurry, NPI (ipg).
8483 if (!sp->bind_hash) {
8484 inet_sk(sk)->inet_num = snum;
8485 sk_add_bind_node(sk, &pp->owner);
8491 spin_unlock_bh(&head->lock);
8495 /* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
8496 * port is requested.
8498 static int sctp_get_port(struct sock *sk, unsigned short snum)
8500 union sctp_addr addr;
8501 struct sctp_af *af = sctp_sk(sk)->pf->af;
8503 /* Set up a dummy address struct from the sk. */
8504 af->from_sk(&addr, sk);
8505 addr.v4.sin_port = htons(snum);
8507 /* Note: sk->sk_num gets filled in if ephemeral port request. */
8508 return sctp_get_port_local(sk, &addr);
8512 * Move a socket to LISTENING state.
8514 static int sctp_listen_start(struct sock *sk, int backlog)
8516 struct sctp_sock *sp = sctp_sk(sk);
8517 struct sctp_endpoint *ep = sp->ep;
8518 struct crypto_shash *tfm = NULL;
8521 /* Allocate HMAC for generating cookie. */
8522 if (!sp->hmac && sp->sctp_hmac_alg) {
8523 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
8524 tfm = crypto_alloc_shash(alg, 0, 0);
8526 net_info_ratelimited("failed to load transform for %s: %ld\n",
8527 sp->sctp_hmac_alg, PTR_ERR(tfm));
8530 sctp_sk(sk)->hmac = tfm;
8534 * If a bind() or sctp_bindx() is not called prior to a listen()
8535 * call that allows new associations to be accepted, the system
8536 * picks an ephemeral port and will choose an address set equivalent
8537 * to binding with a wildcard address.
8539 * This is not currently spelled out in the SCTP sockets
8540 * extensions draft, but follows the practice as seen in TCP
8544 inet_sk_set_state(sk, SCTP_SS_LISTENING);
8545 if (!ep->base.bind_addr.port) {
8546 if (sctp_autobind(sk))
8549 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
8550 inet_sk_set_state(sk, SCTP_SS_CLOSED);
8555 WRITE_ONCE(sk->sk_max_ack_backlog, backlog);
8556 return sctp_hash_endpoint(ep);
8560 * 4.1.3 / 5.1.3 listen()
8562 * By default, new associations are not accepted for UDP style sockets.
8563 * An application uses listen() to mark a socket as being able to
8564 * accept new associations.
8566 * On TCP style sockets, applications use listen() to ready the SCTP
8567 * endpoint for accepting inbound associations.
8569 * On both types of endpoints a backlog of '0' disables listening.
8571 * Move a socket to LISTENING state.
8573 int sctp_inet_listen(struct socket *sock, int backlog)
8575 struct sock *sk = sock->sk;
8576 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
8579 if (unlikely(backlog < 0))
8584 /* Peeled-off sockets are not allowed to listen(). */
8585 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
8588 if (sock->state != SS_UNCONNECTED)
8591 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
8594 /* If backlog is zero, disable listening. */
8596 if (sctp_sstate(sk, CLOSED))
8600 sctp_unhash_endpoint(ep);
8601 sk->sk_state = SCTP_SS_CLOSED;
8602 if (sk->sk_reuse || sctp_sk(sk)->reuse)
8603 sctp_sk(sk)->bind_hash->fastreuse = 1;
8607 /* If we are already listening, just update the backlog */
8608 if (sctp_sstate(sk, LISTENING))
8609 WRITE_ONCE(sk->sk_max_ack_backlog, backlog);
8611 err = sctp_listen_start(sk, backlog);
8623 * This function is done by modeling the current datagram_poll() and the
8624 * tcp_poll(). Note that, based on these implementations, we don't
8625 * lock the socket in this function, even though it seems that,
8626 * ideally, locking or some other mechanisms can be used to ensure
8627 * the integrity of the counters (sndbuf and wmem_alloc) used
8628 * in this place. We assume that we don't need locks either until proven
8631 * Another thing to note is that we include the Async I/O support
8632 * here, again, by modeling the current TCP/UDP code. We don't have
8633 * a good way to test with it yet.
8635 __poll_t sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
8637 struct sock *sk = sock->sk;
8638 struct sctp_sock *sp = sctp_sk(sk);
8641 poll_wait(file, sk_sleep(sk), wait);
8643 sock_rps_record_flow(sk);
8645 /* A TCP-style listening socket becomes readable when the accept queue
8648 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
8649 return (!list_empty(&sp->ep->asocs)) ?
8650 (EPOLLIN | EPOLLRDNORM) : 0;
8654 /* Is there any exceptional events? */
8655 if (sk->sk_err || !skb_queue_empty_lockless(&sk->sk_error_queue))
8657 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0);
8658 if (sk->sk_shutdown & RCV_SHUTDOWN)
8659 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
8660 if (sk->sk_shutdown == SHUTDOWN_MASK)
8663 /* Is it readable? Reconsider this code with TCP-style support. */
8664 if (!skb_queue_empty_lockless(&sk->sk_receive_queue))
8665 mask |= EPOLLIN | EPOLLRDNORM;
8667 /* The association is either gone or not ready. */
8668 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
8671 /* Is it writable? */
8672 if (sctp_writeable(sk)) {
8673 mask |= EPOLLOUT | EPOLLWRNORM;
8675 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
8677 * Since the socket is not locked, the buffer
8678 * might be made available after the writeable check and
8679 * before the bit is set. This could cause a lost I/O
8680 * signal. tcp_poll() has a race breaker for this race
8681 * condition. Based on their implementation, we put
8682 * in the following code to cover it as well.
8684 if (sctp_writeable(sk))
8685 mask |= EPOLLOUT | EPOLLWRNORM;
8690 /********************************************************************
8691 * 2nd Level Abstractions
8692 ********************************************************************/
8694 static struct sctp_bind_bucket *sctp_bucket_create(
8695 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
8697 struct sctp_bind_bucket *pp;
8699 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
8701 SCTP_DBG_OBJCNT_INC(bind_bucket);
8704 INIT_HLIST_HEAD(&pp->owner);
8706 hlist_add_head(&pp->node, &head->chain);
8711 /* Caller must hold hashbucket lock for this tb with local BH disabled */
8712 static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
8714 if (pp && hlist_empty(&pp->owner)) {
8715 __hlist_del(&pp->node);
8716 kmem_cache_free(sctp_bucket_cachep, pp);
8717 SCTP_DBG_OBJCNT_DEC(bind_bucket);
8721 /* Release this socket's reference to a local port. */
8722 static inline void __sctp_put_port(struct sock *sk)
8724 struct sctp_bind_hashbucket *head =
8725 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
8726 inet_sk(sk)->inet_num)];
8727 struct sctp_bind_bucket *pp;
8729 spin_lock(&head->lock);
8730 pp = sctp_sk(sk)->bind_hash;
8731 __sk_del_bind_node(sk);
8732 sctp_sk(sk)->bind_hash = NULL;
8733 inet_sk(sk)->inet_num = 0;
8734 sctp_bucket_destroy(pp);
8735 spin_unlock(&head->lock);
8738 void sctp_put_port(struct sock *sk)
8741 __sctp_put_port(sk);
8746 * The system picks an ephemeral port and choose an address set equivalent
8747 * to binding with a wildcard address.
8748 * One of those addresses will be the primary address for the association.
8749 * This automatically enables the multihoming capability of SCTP.
8751 static int sctp_autobind(struct sock *sk)
8753 union sctp_addr autoaddr;
8757 /* Initialize a local sockaddr structure to INADDR_ANY. */
8758 af = sctp_sk(sk)->pf->af;
8760 port = htons(inet_sk(sk)->inet_num);
8761 af->inaddr_any(&autoaddr, port);
8763 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
8766 /* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
8769 * 4.2 The cmsghdr Structure *
8771 * When ancillary data is sent or received, any number of ancillary data
8772 * objects can be specified by the msg_control and msg_controllen members of
8773 * the msghdr structure, because each object is preceded by
8774 * a cmsghdr structure defining the object's length (the cmsg_len member).
8775 * Historically Berkeley-derived implementations have passed only one object
8776 * at a time, but this API allows multiple objects to be
8777 * passed in a single call to sendmsg() or recvmsg(). The following example
8778 * shows two ancillary data objects in a control buffer.
8780 * |<--------------------------- msg_controllen -------------------------->|
8783 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
8785 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
8788 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
8790 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
8793 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8794 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
8796 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
8798 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8805 static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
8807 struct msghdr *my_msg = (struct msghdr *)msg;
8808 struct cmsghdr *cmsg;
8810 for_each_cmsghdr(cmsg, my_msg) {
8811 if (!CMSG_OK(my_msg, cmsg))
8814 /* Should we parse this header or ignore? */
8815 if (cmsg->cmsg_level != IPPROTO_SCTP)
8818 /* Strictly check lengths following example in SCM code. */
8819 switch (cmsg->cmsg_type) {
8821 /* SCTP Socket API Extension
8822 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
8824 * This cmsghdr structure provides information for
8825 * initializing new SCTP associations with sendmsg().
8826 * The SCTP_INITMSG socket option uses this same data
8827 * structure. This structure is not used for
8830 * cmsg_level cmsg_type cmsg_data[]
8831 * ------------ ------------ ----------------------
8832 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
8834 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
8837 cmsgs->init = CMSG_DATA(cmsg);
8841 /* SCTP Socket API Extension
8842 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
8844 * This cmsghdr structure specifies SCTP options for
8845 * sendmsg() and describes SCTP header information
8846 * about a received message through recvmsg().
8848 * cmsg_level cmsg_type cmsg_data[]
8849 * ------------ ------------ ----------------------
8850 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
8852 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
8855 cmsgs->srinfo = CMSG_DATA(cmsg);
8857 if (cmsgs->srinfo->sinfo_flags &
8858 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
8859 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8860 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
8865 /* SCTP Socket API Extension
8866 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
8868 * This cmsghdr structure specifies SCTP options for
8869 * sendmsg(). This structure and SCTP_RCVINFO replaces
8870 * SCTP_SNDRCV which has been deprecated.
8872 * cmsg_level cmsg_type cmsg_data[]
8873 * ------------ ------------ ---------------------
8874 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
8876 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
8879 cmsgs->sinfo = CMSG_DATA(cmsg);
8881 if (cmsgs->sinfo->snd_flags &
8882 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
8883 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8884 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
8888 /* SCTP Socket API Extension
8889 * 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
8891 * This cmsghdr structure specifies SCTP options for sendmsg().
8893 * cmsg_level cmsg_type cmsg_data[]
8894 * ------------ ------------ ---------------------
8895 * IPPROTO_SCTP SCTP_PRINFO struct sctp_prinfo
8897 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_prinfo)))
8900 cmsgs->prinfo = CMSG_DATA(cmsg);
8901 if (cmsgs->prinfo->pr_policy & ~SCTP_PR_SCTP_MASK)
8904 if (cmsgs->prinfo->pr_policy == SCTP_PR_SCTP_NONE)
8905 cmsgs->prinfo->pr_value = 0;
8908 /* SCTP Socket API Extension
8909 * 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
8911 * This cmsghdr structure specifies SCTP options for sendmsg().
8913 * cmsg_level cmsg_type cmsg_data[]
8914 * ------------ ------------ ---------------------
8915 * IPPROTO_SCTP SCTP_AUTHINFO struct sctp_authinfo
8917 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_authinfo)))
8920 cmsgs->authinfo = CMSG_DATA(cmsg);
8922 case SCTP_DSTADDRV4:
8923 case SCTP_DSTADDRV6:
8924 /* SCTP Socket API Extension
8925 * 5.3.9/10 SCTP Destination IPv4/6 Address Structure (SCTP_DSTADDRV4/6)
8927 * This cmsghdr structure specifies SCTP options for sendmsg().
8929 * cmsg_level cmsg_type cmsg_data[]
8930 * ------------ ------------ ---------------------
8931 * IPPROTO_SCTP SCTP_DSTADDRV4 struct in_addr
8932 * ------------ ------------ ---------------------
8933 * IPPROTO_SCTP SCTP_DSTADDRV6 struct in6_addr
8935 cmsgs->addrs_msg = my_msg;
8946 * Wait for a packet..
8947 * Note: This function is the same function as in core/datagram.c
8948 * with a few modifications to make lksctp work.
8950 static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
8955 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
8957 /* Socket errors? */
8958 error = sock_error(sk);
8962 if (!skb_queue_empty(&sk->sk_receive_queue))
8965 /* Socket shut down? */
8966 if (sk->sk_shutdown & RCV_SHUTDOWN)
8969 /* Sequenced packets can come disconnected. If so we report the
8974 /* Is there a good reason to think that we may receive some data? */
8975 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
8978 /* Handle signals. */
8979 if (signal_pending(current))
8982 /* Let another process have a go. Since we are going to sleep
8983 * anyway. Note: This may cause odd behaviors if the message
8984 * does not fit in the user's buffer, but this seems to be the
8985 * only way to honor MSG_DONTWAIT realistically.
8988 *timeo_p = schedule_timeout(*timeo_p);
8992 finish_wait(sk_sleep(sk), &wait);
8996 error = sock_intr_errno(*timeo_p);
8999 finish_wait(sk_sleep(sk), &wait);
9004 /* Receive a datagram.
9005 * Note: This is pretty much the same routine as in core/datagram.c
9006 * with a few changes to make lksctp work.
9008 struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags, int *err)
9011 struct sk_buff *skb;
9014 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
9016 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
9017 MAX_SCHEDULE_TIMEOUT);
9020 /* Again only user level code calls this function,
9021 * so nothing interrupt level
9022 * will suddenly eat the receive_queue.
9024 * Look at current nfs client by the way...
9025 * However, this function was correct in any case. 8)
9027 if (flags & MSG_PEEK) {
9028 skb = skb_peek(&sk->sk_receive_queue);
9030 refcount_inc(&skb->users);
9032 skb = __skb_dequeue(&sk->sk_receive_queue);
9038 /* Caller is allowed not to check sk->sk_err before calling. */
9039 error = sock_error(sk);
9043 if (sk->sk_shutdown & RCV_SHUTDOWN)
9046 if (sk_can_busy_loop(sk)) {
9047 sk_busy_loop(sk, flags & MSG_DONTWAIT);
9049 if (!skb_queue_empty_lockless(&sk->sk_receive_queue))
9053 /* User doesn't want to wait. */
9057 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
9066 /* If sndbuf has changed, wake up per association sndbuf waiters. */
9067 static void __sctp_write_space(struct sctp_association *asoc)
9069 struct sock *sk = asoc->base.sk;
9071 if (sctp_wspace(asoc) <= 0)
9074 if (waitqueue_active(&asoc->wait))
9075 wake_up_interruptible(&asoc->wait);
9077 if (sctp_writeable(sk)) {
9078 struct socket_wq *wq;
9081 wq = rcu_dereference(sk->sk_wq);
9083 if (waitqueue_active(&wq->wait))
9084 wake_up_interruptible(&wq->wait);
9086 /* Note that we try to include the Async I/O support
9087 * here by modeling from the current TCP/UDP code.
9088 * We have not tested with it yet.
9090 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
9091 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
9097 static void sctp_wake_up_waiters(struct sock *sk,
9098 struct sctp_association *asoc)
9100 struct sctp_association *tmp = asoc;
9102 /* We do accounting for the sndbuf space per association,
9103 * so we only need to wake our own association.
9105 if (asoc->ep->sndbuf_policy)
9106 return __sctp_write_space(asoc);
9108 /* If association goes down and is just flushing its
9109 * outq, then just normally notify others.
9111 if (asoc->base.dead)
9112 return sctp_write_space(sk);
9114 /* Accounting for the sndbuf space is per socket, so we
9115 * need to wake up others, try to be fair and in case of
9116 * other associations, let them have a go first instead
9117 * of just doing a sctp_write_space() call.
9119 * Note that we reach sctp_wake_up_waiters() only when
9120 * associations free up queued chunks, thus we are under
9121 * lock and the list of associations on a socket is
9122 * guaranteed not to change.
9124 for (tmp = list_next_entry(tmp, asocs); 1;
9125 tmp = list_next_entry(tmp, asocs)) {
9126 /* Manually skip the head element. */
9127 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
9129 /* Wake up association. */
9130 __sctp_write_space(tmp);
9131 /* We've reached the end. */
9137 /* Do accounting for the sndbuf space.
9138 * Decrement the used sndbuf space of the corresponding association by the
9139 * data size which was just transmitted(freed).
9141 static void sctp_wfree(struct sk_buff *skb)
9143 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
9144 struct sctp_association *asoc = chunk->asoc;
9145 struct sock *sk = asoc->base.sk;
9147 sk_mem_uncharge(sk, skb->truesize);
9148 sk_wmem_queued_add(sk, -(skb->truesize + sizeof(struct sctp_chunk)));
9149 asoc->sndbuf_used -= skb->truesize + sizeof(struct sctp_chunk);
9150 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk),
9151 &sk->sk_wmem_alloc));
9154 struct sctp_shared_key *shkey = chunk->shkey;
9156 /* refcnt == 2 and !list_empty mean after this release, it's
9157 * not being used anywhere, and it's time to notify userland
9158 * that this shkey can be freed if it's been deactivated.
9160 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
9161 refcount_read(&shkey->refcnt) == 2) {
9162 struct sctp_ulpevent *ev;
9164 ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
9168 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
9170 sctp_auth_shkey_release(chunk->shkey);
9174 sctp_wake_up_waiters(sk, asoc);
9176 sctp_association_put(asoc);
9179 /* Do accounting for the receive space on the socket.
9180 * Accounting for the association is done in ulpevent.c
9181 * We set this as a destructor for the cloned data skbs so that
9182 * accounting is done at the correct time.
9184 void sctp_sock_rfree(struct sk_buff *skb)
9186 struct sock *sk = skb->sk;
9187 struct sctp_ulpevent *event = sctp_skb2event(skb);
9189 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
9192 * Mimic the behavior of sock_rfree
9194 sk_mem_uncharge(sk, event->rmem_len);
9198 /* Helper function to wait for space in the sndbuf. */
9199 static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
9202 struct sock *sk = asoc->base.sk;
9203 long current_timeo = *timeo_p;
9207 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
9210 /* Increment the association's refcnt. */
9211 sctp_association_hold(asoc);
9213 /* Wait on the association specific sndbuf space. */
9215 prepare_to_wait_exclusive(&asoc->wait, &wait,
9216 TASK_INTERRUPTIBLE);
9217 if (asoc->base.dead)
9221 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
9223 if (signal_pending(current))
9224 goto do_interrupted;
9225 if ((int)msg_len <= sctp_wspace(asoc) &&
9226 sk_wmem_schedule(sk, msg_len))
9229 /* Let another process have a go. Since we are going
9233 current_timeo = schedule_timeout(current_timeo);
9235 if (sk != asoc->base.sk)
9238 *timeo_p = current_timeo;
9242 finish_wait(&asoc->wait, &wait);
9244 /* Release the association's refcnt. */
9245 sctp_association_put(asoc);
9258 err = sock_intr_errno(*timeo_p);
9266 void sctp_data_ready(struct sock *sk)
9268 struct socket_wq *wq;
9270 trace_sk_data_ready(sk);
9273 wq = rcu_dereference(sk->sk_wq);
9274 if (skwq_has_sleeper(wq))
9275 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
9276 EPOLLRDNORM | EPOLLRDBAND);
9277 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
9281 /* If socket sndbuf has changed, wake up all per association waiters. */
9282 void sctp_write_space(struct sock *sk)
9284 struct sctp_association *asoc;
9286 /* Wake up the tasks in each wait queue. */
9287 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
9288 __sctp_write_space(asoc);
9292 /* Is there any sndbuf space available on the socket?
9294 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
9295 * associations on the same socket. For a UDP-style socket with
9296 * multiple associations, it is possible for it to be "unwriteable"
9297 * prematurely. I assume that this is acceptable because
9298 * a premature "unwriteable" is better than an accidental "writeable" which
9299 * would cause an unwanted block under certain circumstances. For the 1-1
9300 * UDP-style sockets or TCP-style sockets, this code should work.
9303 static bool sctp_writeable(const struct sock *sk)
9305 return READ_ONCE(sk->sk_sndbuf) > READ_ONCE(sk->sk_wmem_queued);
9308 /* Wait for an association to go into ESTABLISHED state. If timeout is 0,
9309 * returns immediately with EINPROGRESS.
9311 static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
9313 struct sock *sk = asoc->base.sk;
9315 long current_timeo = *timeo_p;
9318 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
9320 /* Increment the association's refcnt. */
9321 sctp_association_hold(asoc);
9324 prepare_to_wait_exclusive(&asoc->wait, &wait,
9325 TASK_INTERRUPTIBLE);
9328 if (sk->sk_shutdown & RCV_SHUTDOWN)
9330 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
9333 if (signal_pending(current))
9334 goto do_interrupted;
9336 if (sctp_state(asoc, ESTABLISHED))
9339 /* Let another process have a go. Since we are going
9343 current_timeo = schedule_timeout(current_timeo);
9346 *timeo_p = current_timeo;
9350 finish_wait(&asoc->wait, &wait);
9352 /* Release the association's refcnt. */
9353 sctp_association_put(asoc);
9358 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
9361 err = -ECONNREFUSED;
9365 err = sock_intr_errno(*timeo_p);
9373 static int sctp_wait_for_accept(struct sock *sk, long timeo)
9375 struct sctp_endpoint *ep;
9379 ep = sctp_sk(sk)->ep;
9383 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
9384 TASK_INTERRUPTIBLE);
9386 if (list_empty(&ep->asocs)) {
9388 timeo = schedule_timeout(timeo);
9393 if (!sctp_sstate(sk, LISTENING))
9397 if (!list_empty(&ep->asocs))
9400 err = sock_intr_errno(timeo);
9401 if (signal_pending(current))
9409 finish_wait(sk_sleep(sk), &wait);
9414 static void sctp_wait_for_close(struct sock *sk, long timeout)
9419 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
9420 if (list_empty(&sctp_sk(sk)->ep->asocs))
9423 timeout = schedule_timeout(timeout);
9425 } while (!signal_pending(current) && timeout);
9427 finish_wait(sk_sleep(sk), &wait);
9430 static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
9432 struct sk_buff *frag;
9437 /* Don't forget the fragments. */
9438 skb_walk_frags(skb, frag)
9439 sctp_skb_set_owner_r_frag(frag, sk);
9442 sctp_skb_set_owner_r(skb, sk);
9445 void sctp_copy_sock(struct sock *newsk, struct sock *sk,
9446 struct sctp_association *asoc)
9448 struct inet_sock *inet = inet_sk(sk);
9449 struct inet_sock *newinet;
9450 struct sctp_sock *sp = sctp_sk(sk);
9452 newsk->sk_type = sk->sk_type;
9453 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
9454 newsk->sk_flags = sk->sk_flags;
9455 newsk->sk_tsflags = sk->sk_tsflags;
9456 newsk->sk_no_check_tx = sk->sk_no_check_tx;
9457 newsk->sk_no_check_rx = sk->sk_no_check_rx;
9458 newsk->sk_reuse = sk->sk_reuse;
9459 sctp_sk(newsk)->reuse = sp->reuse;
9461 newsk->sk_shutdown = sk->sk_shutdown;
9462 newsk->sk_destruct = sk->sk_destruct;
9463 newsk->sk_family = sk->sk_family;
9464 newsk->sk_protocol = IPPROTO_SCTP;
9465 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
9466 newsk->sk_sndbuf = sk->sk_sndbuf;
9467 newsk->sk_rcvbuf = sk->sk_rcvbuf;
9468 newsk->sk_lingertime = sk->sk_lingertime;
9469 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
9470 newsk->sk_sndtimeo = sk->sk_sndtimeo;
9471 newsk->sk_rxhash = sk->sk_rxhash;
9473 newinet = inet_sk(newsk);
9475 /* Initialize sk's sport, dport, rcv_saddr and daddr for
9476 * getsockname() and getpeername()
9478 newinet->inet_sport = inet->inet_sport;
9479 newinet->inet_saddr = inet->inet_saddr;
9480 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
9481 newinet->inet_dport = htons(asoc->peer.port);
9482 newinet->pmtudisc = inet->pmtudisc;
9483 atomic_set(&newinet->inet_id, get_random_u16());
9485 newinet->uc_ttl = inet->uc_ttl;
9486 inet_set_bit(MC_LOOP, newsk);
9487 newinet->mc_ttl = 1;
9488 newinet->mc_index = 0;
9489 newinet->mc_list = NULL;
9491 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
9492 net_enable_timestamp();
9494 /* Set newsk security attributes from original sk and connection
9495 * security attribute from asoc.
9497 security_sctp_sk_clone(asoc, sk, newsk);
9500 static inline void sctp_copy_descendant(struct sock *sk_to,
9501 const struct sock *sk_from)
9503 size_t ancestor_size = sizeof(struct inet_sock);
9505 ancestor_size += sk_from->sk_prot->obj_size;
9506 ancestor_size -= offsetof(struct sctp_sock, pd_lobby);
9507 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
9510 /* Populate the fields of the newsk from the oldsk and migrate the assoc
9511 * and its messages to the newsk.
9513 static int sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
9514 struct sctp_association *assoc,
9515 enum sctp_socket_type type)
9517 struct sctp_sock *oldsp = sctp_sk(oldsk);
9518 struct sctp_sock *newsp = sctp_sk(newsk);
9519 struct sctp_bind_bucket *pp; /* hash list port iterator */
9520 struct sctp_endpoint *newep = newsp->ep;
9521 struct sk_buff *skb, *tmp;
9522 struct sctp_ulpevent *event;
9523 struct sctp_bind_hashbucket *head;
9526 /* Migrate socket buffer sizes and all the socket level options to the
9529 newsk->sk_sndbuf = oldsk->sk_sndbuf;
9530 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
9531 /* Brute force copy old sctp opt. */
9532 sctp_copy_descendant(newsk, oldsk);
9534 /* Restore the ep value that was overwritten with the above structure
9540 /* Hook this new socket in to the bind_hash list. */
9541 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
9542 inet_sk(oldsk)->inet_num)];
9543 spin_lock_bh(&head->lock);
9544 pp = sctp_sk(oldsk)->bind_hash;
9545 sk_add_bind_node(newsk, &pp->owner);
9546 sctp_sk(newsk)->bind_hash = pp;
9547 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
9548 spin_unlock_bh(&head->lock);
9550 /* Copy the bind_addr list from the original endpoint to the new
9551 * endpoint so that we can handle restarts properly
9553 err = sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
9554 &oldsp->ep->base.bind_addr, GFP_KERNEL);
9558 /* New ep's auth_hmacs should be set if old ep's is set, in case
9559 * that net->sctp.auth_enable has been changed to 0 by users and
9560 * new ep's auth_hmacs couldn't be set in sctp_endpoint_init().
9562 if (oldsp->ep->auth_hmacs) {
9563 err = sctp_auth_init_hmacs(newsp->ep, GFP_KERNEL);
9568 sctp_auto_asconf_init(newsp);
9570 /* Move any messages in the old socket's receive queue that are for the
9571 * peeled off association to the new socket's receive queue.
9573 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
9574 event = sctp_skb2event(skb);
9575 if (event->asoc == assoc) {
9576 __skb_unlink(skb, &oldsk->sk_receive_queue);
9577 __skb_queue_tail(&newsk->sk_receive_queue, skb);
9578 sctp_skb_set_owner_r_frag(skb, newsk);
9582 /* Clean up any messages pending delivery due to partial
9583 * delivery. Three cases:
9584 * 1) No partial deliver; no work.
9585 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
9586 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
9588 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
9590 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
9591 struct sk_buff_head *queue;
9593 /* Decide which queue to move pd_lobby skbs to. */
9594 if (assoc->ulpq.pd_mode) {
9595 queue = &newsp->pd_lobby;
9597 queue = &newsk->sk_receive_queue;
9599 /* Walk through the pd_lobby, looking for skbs that
9600 * need moved to the new socket.
9602 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
9603 event = sctp_skb2event(skb);
9604 if (event->asoc == assoc) {
9605 __skb_unlink(skb, &oldsp->pd_lobby);
9606 __skb_queue_tail(queue, skb);
9607 sctp_skb_set_owner_r_frag(skb, newsk);
9611 /* Clear up any skbs waiting for the partial
9612 * delivery to finish.
9614 if (assoc->ulpq.pd_mode)
9615 sctp_clear_pd(oldsk, NULL);
9619 sctp_for_each_rx_skb(assoc, newsk, sctp_skb_set_owner_r_frag);
9621 /* Set the type of socket to indicate that it is peeled off from the
9622 * original UDP-style socket or created with the accept() call on a
9623 * TCP-style socket..
9627 /* Mark the new socket "in-use" by the user so that any packets
9628 * that may arrive on the association after we've moved it are
9629 * queued to the backlog. This prevents a potential race between
9630 * backlog processing on the old socket and new-packet processing
9631 * on the new socket.
9633 * The caller has just allocated newsk so we can guarantee that other
9634 * paths won't try to lock it and then oldsk.
9636 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
9637 sctp_for_each_tx_datachunk(assoc, true, sctp_clear_owner_w);
9638 sctp_assoc_migrate(assoc, newsk);
9639 sctp_for_each_tx_datachunk(assoc, false, sctp_set_owner_w);
9641 /* If the association on the newsk is already closed before accept()
9642 * is called, set RCV_SHUTDOWN flag.
9644 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
9645 inet_sk_set_state(newsk, SCTP_SS_CLOSED);
9646 newsk->sk_shutdown |= RCV_SHUTDOWN;
9648 inet_sk_set_state(newsk, SCTP_SS_ESTABLISHED);
9651 release_sock(newsk);
9657 /* This proto struct describes the ULP interface for SCTP. */
9658 struct proto sctp_prot = {
9660 .owner = THIS_MODULE,
9661 .close = sctp_close,
9662 .disconnect = sctp_disconnect,
9663 .accept = sctp_accept,
9664 .ioctl = sctp_ioctl,
9665 .init = sctp_init_sock,
9666 .destroy = sctp_destroy_sock,
9667 .shutdown = sctp_shutdown,
9668 .setsockopt = sctp_setsockopt,
9669 .getsockopt = sctp_getsockopt,
9670 .bpf_bypass_getsockopt = sctp_bpf_bypass_getsockopt,
9671 .sendmsg = sctp_sendmsg,
9672 .recvmsg = sctp_recvmsg,
9674 .bind_add = sctp_bind_add,
9675 .backlog_rcv = sctp_backlog_rcv,
9677 .unhash = sctp_unhash,
9678 .no_autobind = true,
9679 .obj_size = sizeof(struct sctp_sock),
9680 .useroffset = offsetof(struct sctp_sock, subscribe),
9681 .usersize = offsetof(struct sctp_sock, initmsg) -
9682 offsetof(struct sctp_sock, subscribe) +
9683 sizeof_field(struct sctp_sock, initmsg),
9684 .sysctl_mem = sysctl_sctp_mem,
9685 .sysctl_rmem = sysctl_sctp_rmem,
9686 .sysctl_wmem = sysctl_sctp_wmem,
9687 .memory_pressure = &sctp_memory_pressure,
9688 .enter_memory_pressure = sctp_enter_memory_pressure,
9690 .memory_allocated = &sctp_memory_allocated,
9691 .per_cpu_fw_alloc = &sctp_memory_per_cpu_fw_alloc,
9693 .sockets_allocated = &sctp_sockets_allocated,
9696 #if IS_ENABLED(CONFIG_IPV6)
9698 static void sctp_v6_destruct_sock(struct sock *sk)
9700 sctp_destruct_common(sk);
9701 inet6_sock_destruct(sk);
9704 static int sctp_v6_init_sock(struct sock *sk)
9706 int ret = sctp_init_sock(sk);
9709 sk->sk_destruct = sctp_v6_destruct_sock;
9714 struct proto sctpv6_prot = {
9716 .owner = THIS_MODULE,
9717 .close = sctp_close,
9718 .disconnect = sctp_disconnect,
9719 .accept = sctp_accept,
9720 .ioctl = sctp_ioctl,
9721 .init = sctp_v6_init_sock,
9722 .destroy = sctp_destroy_sock,
9723 .shutdown = sctp_shutdown,
9724 .setsockopt = sctp_setsockopt,
9725 .getsockopt = sctp_getsockopt,
9726 .bpf_bypass_getsockopt = sctp_bpf_bypass_getsockopt,
9727 .sendmsg = sctp_sendmsg,
9728 .recvmsg = sctp_recvmsg,
9730 .bind_add = sctp_bind_add,
9731 .backlog_rcv = sctp_backlog_rcv,
9733 .unhash = sctp_unhash,
9734 .no_autobind = true,
9735 .obj_size = sizeof(struct sctp6_sock),
9736 .ipv6_pinfo_offset = offsetof(struct sctp6_sock, inet6),
9737 .useroffset = offsetof(struct sctp6_sock, sctp.subscribe),
9738 .usersize = offsetof(struct sctp6_sock, sctp.initmsg) -
9739 offsetof(struct sctp6_sock, sctp.subscribe) +
9740 sizeof_field(struct sctp6_sock, sctp.initmsg),
9741 .sysctl_mem = sysctl_sctp_mem,
9742 .sysctl_rmem = sysctl_sctp_rmem,
9743 .sysctl_wmem = sysctl_sctp_wmem,
9744 .memory_pressure = &sctp_memory_pressure,
9745 .enter_memory_pressure = sctp_enter_memory_pressure,
9747 .memory_allocated = &sctp_memory_allocated,
9748 .per_cpu_fw_alloc = &sctp_memory_per_cpu_fw_alloc,
9750 .sockets_allocated = &sctp_sockets_allocated,
9752 #endif /* IS_ENABLED(CONFIG_IPV6) */