blob: 876393cf5ed63ac706a011ede1ee0ce71fc5de15 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SCTP kernel implementation
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001-2003 Intel Corp.
6 * Copyright (c) 2001-2002 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
9 * This file is part of the SCTP kernel implementation
10 *
11 * These functions interface with the sockets layer to implement the
12 * SCTP Extensions for the Sockets API.
13 *
14 * Note that the descriptions from the specification are USER level
15 * functions--this file is the functions which populate the struct proto
16 * for SCTP which is the BOTTOM of the sockets interface.
17 *
18 * This SCTP implementation is free software;
19 * you can redistribute it and/or modify it under the terms of
20 * the GNU General Public License as published by
21 * the Free Software Foundation; either version 2, or (at your option)
22 * any later version.
23 *
24 * This SCTP implementation is distributed in the hope that it
25 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
26 * ************************
27 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28 * See the GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with GNU CC; see the file COPYING. If not, see
32 * <http://www.gnu.org/licenses/>.
33 *
34 * Please send any bug reports or fixes you make to the
35 * email address(es):
36 * lksctp developers <linux-sctp@vger.kernel.org>
37 *
38 * Written or modified by:
39 * La Monte H.P. Yarroll <piggy@acm.org>
40 * Narasimha Budihal <narsi@refcode.org>
41 * Karl Knutson <karl@athena.chicago.il.us>
42 * Jon Grimm <jgrimm@us.ibm.com>
43 * Xingang Guo <xingang.guo@intel.com>
44 * Daisy Chang <daisyc@us.ibm.com>
45 * Sridhar Samudrala <samudrala@us.ibm.com>
46 * Inaky Perez-Gonzalez <inaky.gonzalez@intel.com>
47 * Ardelle Fan <ardelle.fan@intel.com>
48 * Ryan Layer <rmlayer@us.ibm.com>
49 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
50 * Kevin Gao <kevin.gao@intel.com>
51 */
52
53#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
55#include <crypto/hash.h>
56#include <linux/types.h>
57#include <linux/kernel.h>
58#include <linux/wait.h>
59#include <linux/time.h>
60#include <linux/sched/signal.h>
61#include <linux/ip.h>
62#include <linux/capability.h>
63#include <linux/fcntl.h>
64#include <linux/poll.h>
65#include <linux/init.h>
66#include <linux/slab.h>
67#include <linux/file.h>
68#include <linux/compat.h>
69#include <linux/rhashtable.h>
70
71#include <net/ip.h>
72#include <net/icmp.h>
73#include <net/route.h>
74#include <net/ipv6.h>
75#include <net/inet_common.h>
76#include <net/busy_poll.h>
77
78#include <linux/socket.h> /* for sa_family_t */
79#include <linux/export.h>
80#include <net/sock.h>
81#include <net/sctp/sctp.h>
82#include <net/sctp/sm.h>
83#include <net/sctp/stream_sched.h>
84
85/* Forward declarations for internal helper functions. */
86static int sctp_writeable(struct sock *sk);
87static void sctp_wfree(struct sk_buff *skb);
88static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
89 size_t msg_len);
90static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
91static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
92static int sctp_wait_for_accept(struct sock *sk, long timeo);
93static void sctp_wait_for_close(struct sock *sk, long timeo);
94static void sctp_destruct_sock(struct sock *sk);
95static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
96 union sctp_addr *addr, int len);
97static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
98static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
99static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
100static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
101static int sctp_send_asconf(struct sctp_association *asoc,
102 struct sctp_chunk *chunk);
103static int sctp_do_bind(struct sock *, union sctp_addr *, int);
104static int sctp_autobind(struct sock *sk);
105static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
106 struct sctp_association *assoc,
107 enum sctp_socket_type type);
108
109static unsigned long sctp_memory_pressure;
110static atomic_long_t sctp_memory_allocated;
111struct percpu_counter sctp_sockets_allocated;
112
113static void sctp_enter_memory_pressure(struct sock *sk)
114{
115 sctp_memory_pressure = 1;
116}
117
118
119/* Get the sndbuf space available at the time on the association. */
120static inline int sctp_wspace(struct sctp_association *asoc)
121{
122 int amt;
123
124 if (asoc->ep->sndbuf_policy)
125 amt = asoc->sndbuf_used;
126 else
127 amt = sk_wmem_alloc_get(asoc->base.sk);
128
129 if (amt >= asoc->base.sk->sk_sndbuf) {
130 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
131 amt = 0;
132 else {
133 amt = sk_stream_wspace(asoc->base.sk);
134 if (amt < 0)
135 amt = 0;
136 }
137 } else {
138 amt = asoc->base.sk->sk_sndbuf - amt;
139 }
140 return amt;
141}
142
143/* Increment the used sndbuf space count of the corresponding association by
144 * the size of the outgoing data chunk.
145 * Also, set the skb destructor for sndbuf accounting later.
146 *
147 * Since it is always 1-1 between chunk and skb, and also a new skb is always
148 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
149 * destructor in the data chunk skb for the purpose of the sndbuf space
150 * tracking.
151 */
152static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
153{
154 struct sctp_association *asoc = chunk->asoc;
155 struct sock *sk = asoc->base.sk;
156
157 /* The sndbuf space is tracked per association. */
158 sctp_association_hold(asoc);
159
160 if (chunk->shkey)
161 sctp_auth_shkey_hold(chunk->shkey);
162
163 skb_set_owner_w(chunk->skb, sk);
164
165 chunk->skb->destructor = sctp_wfree;
166 /* Save the chunk pointer in skb for sctp_wfree to use later. */
167 skb_shinfo(chunk->skb)->destructor_arg = chunk;
168
169 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
170 sizeof(struct sk_buff) +
171 sizeof(struct sctp_chunk);
172
173 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
174 sk->sk_wmem_queued += chunk->skb->truesize;
175 sk_mem_charge(sk, chunk->skb->truesize);
176}
177
178static void sctp_clear_owner_w(struct sctp_chunk *chunk)
179{
180 skb_orphan(chunk->skb);
181}
182
183static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
184 void (*cb)(struct sctp_chunk *))
185
186{
187 struct sctp_outq *q = &asoc->outqueue;
188 struct sctp_transport *t;
189 struct sctp_chunk *chunk;
190
191 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
192 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
193 cb(chunk);
194
195 list_for_each_entry(chunk, &q->retransmit, transmitted_list)
196 cb(chunk);
197
198 list_for_each_entry(chunk, &q->sacked, transmitted_list)
199 cb(chunk);
200
201 list_for_each_entry(chunk, &q->abandoned, transmitted_list)
202 cb(chunk);
203
204 list_for_each_entry(chunk, &q->out_chunk_list, list)
205 cb(chunk);
206}
207
208static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
209 void (*cb)(struct sk_buff *, struct sock *))
210
211{
212 struct sk_buff *skb, *tmp;
213
214 sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
215 cb(skb, sk);
216
217 sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
218 cb(skb, sk);
219
220 sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
221 cb(skb, sk);
222}
223
224/* Verify that this is a valid address. */
225static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
226 int len)
227{
228 struct sctp_af *af;
229
230 /* Verify basic sockaddr. */
231 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
232 if (!af)
233 return -EINVAL;
234
235 /* Is this a valid SCTP address? */
236 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
237 return -EINVAL;
238
239 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
240 return -EINVAL;
241
242 return 0;
243}
244
245/* Look up the association by its id. If this is not a UDP-style
246 * socket, the ID field is always ignored.
247 */
248struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
249{
250 struct sctp_association *asoc = NULL;
251
252 /* If this is not a UDP-style socket, assoc id should be ignored. */
253 if (!sctp_style(sk, UDP)) {
254 /* Return NULL if the socket state is not ESTABLISHED. It
255 * could be a TCP-style listening socket or a socket which
256 * hasn't yet called connect() to establish an association.
257 */
258 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
259 return NULL;
260
261 /* Get the first and the only association from the list. */
262 if (!list_empty(&sctp_sk(sk)->ep->asocs))
263 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
264 struct sctp_association, asocs);
265 return asoc;
266 }
267
268 /* Otherwise this is a UDP-style socket. */
269 if (!id || (id == (sctp_assoc_t)-1))
270 return NULL;
271
272 spin_lock_bh(&sctp_assocs_id_lock);
273 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
274 if (asoc && (asoc->base.sk != sk || asoc->base.dead))
275 asoc = NULL;
276 spin_unlock_bh(&sctp_assocs_id_lock);
277
278 return asoc;
279}
280
281/* Look up the transport from an address and an assoc id. If both address and
282 * id are specified, the associations matching the address and the id should be
283 * the same.
284 */
285static struct sctp_transport *sctp_addr_id2transport(struct sock *sk,
286 struct sockaddr_storage *addr,
287 sctp_assoc_t id)
288{
289 struct sctp_association *addr_asoc = NULL, *id_asoc = NULL;
290 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
291 union sctp_addr *laddr = (union sctp_addr *)addr;
292 struct sctp_transport *transport;
293
294 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
295 return NULL;
296
297 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
298 laddr,
299 &transport);
300
301 if (!addr_asoc)
302 return NULL;
303
304 id_asoc = sctp_id2assoc(sk, id);
305 if (id_asoc && (id_asoc != addr_asoc))
306 return NULL;
307
308 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
309 (union sctp_addr *)addr);
310
311 return transport;
312}
313
314/* API 3.1.2 bind() - UDP Style Syntax
315 * The syntax of bind() is,
316 *
317 * ret = bind(int sd, struct sockaddr *addr, int addrlen);
318 *
319 * sd - the socket descriptor returned by socket().
320 * addr - the address structure (struct sockaddr_in or struct
321 * sockaddr_in6 [RFC 2553]),
322 * addr_len - the size of the address structure.
323 */
324static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
325{
326 int retval = 0;
327
328 lock_sock(sk);
329
330 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
331 addr, addr_len);
332
333 /* Disallow binding twice. */
334 if (!sctp_sk(sk)->ep->base.bind_addr.port)
335 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
336 addr_len);
337 else
338 retval = -EINVAL;
339
340 release_sock(sk);
341
342 return retval;
343}
344
345static long sctp_get_port_local(struct sock *, union sctp_addr *);
346
347/* Verify this is a valid sockaddr. */
348static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
349 union sctp_addr *addr, int len)
350{
351 struct sctp_af *af;
352
353 /* Check minimum size. */
354 if (len < sizeof (struct sockaddr))
355 return NULL;
356
357 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
358 return NULL;
359
360 if (addr->sa.sa_family == AF_INET6) {
361 if (len < SIN6_LEN_RFC2133)
362 return NULL;
363 /* V4 mapped address are really of AF_INET family */
364 if (ipv6_addr_v4mapped(&addr->v6.sin6_addr) &&
365 !opt->pf->af_supported(AF_INET, opt))
366 return NULL;
367 }
368
369 /* If we get this far, af is valid. */
370 af = sctp_get_af_specific(addr->sa.sa_family);
371
372 if (len < af->sockaddr_len)
373 return NULL;
374
375 return af;
376}
377
378/* Bind a local address either to an endpoint or to an association. */
379static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
380{
381 struct net *net = sock_net(sk);
382 struct sctp_sock *sp = sctp_sk(sk);
383 struct sctp_endpoint *ep = sp->ep;
384 struct sctp_bind_addr *bp = &ep->base.bind_addr;
385 struct sctp_af *af;
386 unsigned short snum;
387 int ret = 0;
388
389 /* Common sockaddr verification. */
390 af = sctp_sockaddr_af(sp, addr, len);
391 if (!af) {
392 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
393 __func__, sk, addr, len);
394 return -EINVAL;
395 }
396
397 snum = ntohs(addr->v4.sin_port);
398
399 pr_debug("%s: sk:%p, new addr:%pISc, port:%d, new port:%d, len:%d\n",
400 __func__, sk, &addr->sa, bp->port, snum, len);
401
402 /* PF specific bind() address verification. */
403 if (!sp->pf->bind_verify(sp, addr))
404 return -EADDRNOTAVAIL;
405
406 /* We must either be unbound, or bind to the same port.
407 * It's OK to allow 0 ports if we are already bound.
408 * We'll just inhert an already bound port in this case
409 */
410 if (bp->port) {
411 if (!snum)
412 snum = bp->port;
413 else if (snum != bp->port) {
414 pr_debug("%s: new port %d doesn't match existing port "
415 "%d\n", __func__, snum, bp->port);
416 return -EINVAL;
417 }
418 }
419
420 if (snum && snum < inet_prot_sock(net) &&
421 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
422 return -EACCES;
423
424 /* See if the address matches any of the addresses we may have
425 * already bound before checking against other endpoints.
426 */
427 if (sctp_bind_addr_match(bp, addr, sp))
428 return -EINVAL;
429
430 /* Make sure we are allowed to bind here.
431 * The function sctp_get_port_local() does duplicate address
432 * detection.
433 */
434 addr->v4.sin_port = htons(snum);
435 if ((ret = sctp_get_port_local(sk, addr))) {
436 return -EADDRINUSE;
437 }
438
439 /* Refresh ephemeral port. */
440 if (!bp->port)
441 bp->port = inet_sk(sk)->inet_num;
442
443 /* Add the address to the bind address list.
444 * Use GFP_ATOMIC since BHs will be disabled.
445 */
446 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
447 SCTP_ADDR_SRC, GFP_ATOMIC);
448
449 /* Copy back into socket for getsockname() use. */
450 if (!ret) {
451 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
452 sp->pf->to_sk_saddr(addr, sk);
453 }
454
455 return ret;
456}
457
458 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
459 *
460 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
461 * at any one time. If a sender, after sending an ASCONF chunk, decides
462 * it needs to transfer another ASCONF Chunk, it MUST wait until the
463 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
464 * subsequent ASCONF. Note this restriction binds each side, so at any
465 * time two ASCONF may be in-transit on any given association (one sent
466 * from each endpoint).
467 */
468static int sctp_send_asconf(struct sctp_association *asoc,
469 struct sctp_chunk *chunk)
470{
471 struct net *net = sock_net(asoc->base.sk);
472 int retval = 0;
473
474 /* If there is an outstanding ASCONF chunk, queue it for later
475 * transmission.
476 */
477 if (asoc->addip_last_asconf) {
478 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
479 goto out;
480 }
481
482 /* Hold the chunk until an ASCONF_ACK is received. */
483 sctp_chunk_hold(chunk);
484 retval = sctp_primitive_ASCONF(net, asoc, chunk);
485 if (retval)
486 sctp_chunk_free(chunk);
487 else
488 asoc->addip_last_asconf = chunk;
489
490out:
491 return retval;
492}
493
494/* Add a list of addresses as bind addresses to local endpoint or
495 * association.
496 *
497 * Basically run through each address specified in the addrs/addrcnt
498 * array/length pair, determine if it is IPv6 or IPv4 and call
499 * sctp_do_bind() on it.
500 *
501 * If any of them fails, then the operation will be reversed and the
502 * ones that were added will be removed.
503 *
504 * Only sctp_setsockopt_bindx() is supposed to call this function.
505 */
506static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
507{
508 int cnt;
509 int retval = 0;
510 void *addr_buf;
511 struct sockaddr *sa_addr;
512 struct sctp_af *af;
513
514 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
515 addrs, addrcnt);
516
517 addr_buf = addrs;
518 for (cnt = 0; cnt < addrcnt; cnt++) {
519 /* The list may contain either IPv4 or IPv6 address;
520 * determine the address length for walking thru the list.
521 */
522 sa_addr = addr_buf;
523 af = sctp_get_af_specific(sa_addr->sa_family);
524 if (!af) {
525 retval = -EINVAL;
526 goto err_bindx_add;
527 }
528
529 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
530 af->sockaddr_len);
531
532 addr_buf += af->sockaddr_len;
533
534err_bindx_add:
535 if (retval < 0) {
536 /* Failed. Cleanup the ones that have been added */
537 if (cnt > 0)
538 sctp_bindx_rem(sk, addrs, cnt);
539 return retval;
540 }
541 }
542
543 return retval;
544}
545
546/* Send an ASCONF chunk with Add IP address parameters to all the peers of the
547 * associations that are part of the endpoint indicating that a list of local
548 * addresses are added to the endpoint.
549 *
550 * If any of the addresses is already in the bind address list of the
551 * association, we do not send the chunk for that association. But it will not
552 * affect other associations.
553 *
554 * Only sctp_setsockopt_bindx() is supposed to call this function.
555 */
556static int sctp_send_asconf_add_ip(struct sock *sk,
557 struct sockaddr *addrs,
558 int addrcnt)
559{
560 struct net *net = sock_net(sk);
561 struct sctp_sock *sp;
562 struct sctp_endpoint *ep;
563 struct sctp_association *asoc;
564 struct sctp_bind_addr *bp;
565 struct sctp_chunk *chunk;
566 struct sctp_sockaddr_entry *laddr;
567 union sctp_addr *addr;
568 union sctp_addr saveaddr;
569 void *addr_buf;
570 struct sctp_af *af;
571 struct list_head *p;
572 int i;
573 int retval = 0;
574
575 if (!net->sctp.addip_enable)
576 return retval;
577
578 sp = sctp_sk(sk);
579 ep = sp->ep;
580
581 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
582 __func__, sk, addrs, addrcnt);
583
584 list_for_each_entry(asoc, &ep->asocs, asocs) {
585 if (!asoc->peer.asconf_capable)
586 continue;
587
588 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP)
589 continue;
590
591 if (!sctp_state(asoc, ESTABLISHED))
592 continue;
593
594 /* Check if any address in the packed array of addresses is
595 * in the bind address list of the association. If so,
596 * do not send the asconf chunk to its peer, but continue with
597 * other associations.
598 */
599 addr_buf = addrs;
600 for (i = 0; i < addrcnt; i++) {
601 addr = addr_buf;
602 af = sctp_get_af_specific(addr->v4.sin_family);
603 if (!af) {
604 retval = -EINVAL;
605 goto out;
606 }
607
608 if (sctp_assoc_lookup_laddr(asoc, addr))
609 break;
610
611 addr_buf += af->sockaddr_len;
612 }
613 if (i < addrcnt)
614 continue;
615
616 /* Use the first valid address in bind addr list of
617 * association as Address Parameter of ASCONF CHUNK.
618 */
619 bp = &asoc->base.bind_addr;
620 p = bp->address_list.next;
621 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
622 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
623 addrcnt, SCTP_PARAM_ADD_IP);
624 if (!chunk) {
625 retval = -ENOMEM;
626 goto out;
627 }
628
629 /* Add the new addresses to the bind address list with
630 * use_as_src set to 0.
631 */
632 addr_buf = addrs;
633 for (i = 0; i < addrcnt; i++) {
634 addr = addr_buf;
635 af = sctp_get_af_specific(addr->v4.sin_family);
636 memcpy(&saveaddr, addr, af->sockaddr_len);
637 retval = sctp_add_bind_addr(bp, &saveaddr,
638 sizeof(saveaddr),
639 SCTP_ADDR_NEW, GFP_ATOMIC);
640 addr_buf += af->sockaddr_len;
641 }
642 if (asoc->src_out_of_asoc_ok) {
643 struct sctp_transport *trans;
644
645 list_for_each_entry(trans,
646 &asoc->peer.transport_addr_list, transports) {
647 trans->cwnd = min(4*asoc->pathmtu, max_t(__u32,
648 2*asoc->pathmtu, 4380));
649 trans->ssthresh = asoc->peer.i.a_rwnd;
650 trans->rto = asoc->rto_initial;
651 sctp_max_rto(asoc, trans);
652 trans->rtt = trans->srtt = trans->rttvar = 0;
653 /* Clear the source and route cache */
654 sctp_transport_route(trans, NULL,
655 sctp_sk(asoc->base.sk));
656 }
657 }
658 retval = sctp_send_asconf(asoc, chunk);
659 }
660
661out:
662 return retval;
663}
664
665/* Remove a list of addresses from bind addresses list. Do not remove the
666 * last address.
667 *
668 * Basically run through each address specified in the addrs/addrcnt
669 * array/length pair, determine if it is IPv6 or IPv4 and call
670 * sctp_del_bind() on it.
671 *
672 * If any of them fails, then the operation will be reversed and the
673 * ones that were removed will be added back.
674 *
675 * At least one address has to be left; if only one address is
676 * available, the operation will return -EBUSY.
677 *
678 * Only sctp_setsockopt_bindx() is supposed to call this function.
679 */
680static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
681{
682 struct sctp_sock *sp = sctp_sk(sk);
683 struct sctp_endpoint *ep = sp->ep;
684 int cnt;
685 struct sctp_bind_addr *bp = &ep->base.bind_addr;
686 int retval = 0;
687 void *addr_buf;
688 union sctp_addr *sa_addr;
689 struct sctp_af *af;
690
691 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
692 __func__, sk, addrs, addrcnt);
693
694 addr_buf = addrs;
695 for (cnt = 0; cnt < addrcnt; cnt++) {
696 /* If the bind address list is empty or if there is only one
697 * bind address, there is nothing more to be removed (we need
698 * at least one address here).
699 */
700 if (list_empty(&bp->address_list) ||
701 (sctp_list_single_entry(&bp->address_list))) {
702 retval = -EBUSY;
703 goto err_bindx_rem;
704 }
705
706 sa_addr = addr_buf;
707 af = sctp_get_af_specific(sa_addr->sa.sa_family);
708 if (!af) {
709 retval = -EINVAL;
710 goto err_bindx_rem;
711 }
712
713 if (!af->addr_valid(sa_addr, sp, NULL)) {
714 retval = -EADDRNOTAVAIL;
715 goto err_bindx_rem;
716 }
717
718 if (sa_addr->v4.sin_port &&
719 sa_addr->v4.sin_port != htons(bp->port)) {
720 retval = -EINVAL;
721 goto err_bindx_rem;
722 }
723
724 if (!sa_addr->v4.sin_port)
725 sa_addr->v4.sin_port = htons(bp->port);
726
727 /* FIXME - There is probably a need to check if sk->sk_saddr and
728 * sk->sk_rcv_addr are currently set to one of the addresses to
729 * be removed. This is something which needs to be looked into
730 * when we are fixing the outstanding issues with multi-homing
731 * socket routing and failover schemes. Refer to comments in
732 * sctp_do_bind(). -daisy
733 */
734 retval = sctp_del_bind_addr(bp, sa_addr);
735
736 addr_buf += af->sockaddr_len;
737err_bindx_rem:
738 if (retval < 0) {
739 /* Failed. Add the ones that has been removed back */
740 if (cnt > 0)
741 sctp_bindx_add(sk, addrs, cnt);
742 return retval;
743 }
744 }
745
746 return retval;
747}
748
749/* Send an ASCONF chunk with Delete IP address parameters to all the peers of
750 * the associations that are part of the endpoint indicating that a list of
751 * local addresses are removed from the endpoint.
752 *
753 * If any of the addresses is already in the bind address list of the
754 * association, we do not send the chunk for that association. But it will not
755 * affect other associations.
756 *
757 * Only sctp_setsockopt_bindx() is supposed to call this function.
758 */
759static int sctp_send_asconf_del_ip(struct sock *sk,
760 struct sockaddr *addrs,
761 int addrcnt)
762{
763 struct net *net = sock_net(sk);
764 struct sctp_sock *sp;
765 struct sctp_endpoint *ep;
766 struct sctp_association *asoc;
767 struct sctp_transport *transport;
768 struct sctp_bind_addr *bp;
769 struct sctp_chunk *chunk;
770 union sctp_addr *laddr;
771 void *addr_buf;
772 struct sctp_af *af;
773 struct sctp_sockaddr_entry *saddr;
774 int i;
775 int retval = 0;
776 int stored = 0;
777
778 chunk = NULL;
779 if (!net->sctp.addip_enable)
780 return retval;
781
782 sp = sctp_sk(sk);
783 ep = sp->ep;
784
785 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
786 __func__, sk, addrs, addrcnt);
787
788 list_for_each_entry(asoc, &ep->asocs, asocs) {
789
790 if (!asoc->peer.asconf_capable)
791 continue;
792
793 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP)
794 continue;
795
796 if (!sctp_state(asoc, ESTABLISHED))
797 continue;
798
799 /* Check if any address in the packed array of addresses is
800 * not present in the bind address list of the association.
801 * If so, do not send the asconf chunk to its peer, but
802 * continue with other associations.
803 */
804 addr_buf = addrs;
805 for (i = 0; i < addrcnt; i++) {
806 laddr = addr_buf;
807 af = sctp_get_af_specific(laddr->v4.sin_family);
808 if (!af) {
809 retval = -EINVAL;
810 goto out;
811 }
812
813 if (!sctp_assoc_lookup_laddr(asoc, laddr))
814 break;
815
816 addr_buf += af->sockaddr_len;
817 }
818 if (i < addrcnt)
819 continue;
820
821 /* Find one address in the association's bind address list
822 * that is not in the packed array of addresses. This is to
823 * make sure that we do not delete all the addresses in the
824 * association.
825 */
826 bp = &asoc->base.bind_addr;
827 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
828 addrcnt, sp);
829 if ((laddr == NULL) && (addrcnt == 1)) {
830 if (asoc->asconf_addr_del_pending)
831 continue;
832 asoc->asconf_addr_del_pending =
833 kzalloc(sizeof(union sctp_addr), GFP_ATOMIC);
834 if (asoc->asconf_addr_del_pending == NULL) {
835 retval = -ENOMEM;
836 goto out;
837 }
838 asoc->asconf_addr_del_pending->sa.sa_family =
839 addrs->sa_family;
840 asoc->asconf_addr_del_pending->v4.sin_port =
841 htons(bp->port);
842 if (addrs->sa_family == AF_INET) {
843 struct sockaddr_in *sin;
844
845 sin = (struct sockaddr_in *)addrs;
846 asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr;
847 } else if (addrs->sa_family == AF_INET6) {
848 struct sockaddr_in6 *sin6;
849
850 sin6 = (struct sockaddr_in6 *)addrs;
851 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
852 }
853
854 pr_debug("%s: keep the last address asoc:%p %pISc at %p\n",
855 __func__, asoc, &asoc->asconf_addr_del_pending->sa,
856 asoc->asconf_addr_del_pending);
857
858 asoc->src_out_of_asoc_ok = 1;
859 stored = 1;
860 goto skip_mkasconf;
861 }
862
863 if (laddr == NULL)
864 return -EINVAL;
865
866 /* We do not need RCU protection throughout this loop
867 * because this is done under a socket lock from the
868 * setsockopt call.
869 */
870 chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt,
871 SCTP_PARAM_DEL_IP);
872 if (!chunk) {
873 retval = -ENOMEM;
874 goto out;
875 }
876
877skip_mkasconf:
878 /* Reset use_as_src flag for the addresses in the bind address
879 * list that are to be deleted.
880 */
881 addr_buf = addrs;
882 for (i = 0; i < addrcnt; i++) {
883 laddr = addr_buf;
884 af = sctp_get_af_specific(laddr->v4.sin_family);
885 list_for_each_entry(saddr, &bp->address_list, list) {
886 if (sctp_cmp_addr_exact(&saddr->a, laddr))
887 saddr->state = SCTP_ADDR_DEL;
888 }
889 addr_buf += af->sockaddr_len;
890 }
891
892 /* Update the route and saddr entries for all the transports
893 * as some of the addresses in the bind address list are
894 * about to be deleted and cannot be used as source addresses.
895 */
896 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
897 transports) {
898 sctp_transport_route(transport, NULL,
899 sctp_sk(asoc->base.sk));
900 }
901
902 if (stored)
903 /* We don't need to transmit ASCONF */
904 continue;
905 retval = sctp_send_asconf(asoc, chunk);
906 }
907out:
908 return retval;
909}
910
911/* set addr events to assocs in the endpoint. ep and addr_wq must be locked */
912int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw)
913{
914 struct sock *sk = sctp_opt2sk(sp);
915 union sctp_addr *addr;
916 struct sctp_af *af;
917
918 /* It is safe to write port space in caller. */
919 addr = &addrw->a;
920 addr->v4.sin_port = htons(sp->ep->base.bind_addr.port);
921 af = sctp_get_af_specific(addr->sa.sa_family);
922 if (!af)
923 return -EINVAL;
924 if (sctp_verify_addr(sk, addr, af->sockaddr_len))
925 return -EINVAL;
926
927 if (addrw->state == SCTP_ADDR_NEW)
928 return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1);
929 else
930 return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1);
931}
932
933/* Helper for tunneling sctp_bindx() requests through sctp_setsockopt()
934 *
935 * API 8.1
936 * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt,
937 * int flags);
938 *
939 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
940 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
941 * or IPv6 addresses.
942 *
943 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
944 * Section 3.1.2 for this usage.
945 *
946 * addrs is a pointer to an array of one or more socket addresses. Each
947 * address is contained in its appropriate structure (i.e. struct
948 * sockaddr_in or struct sockaddr_in6) the family of the address type
949 * must be used to distinguish the address length (note that this
950 * representation is termed a "packed array" of addresses). The caller
951 * specifies the number of addresses in the array with addrcnt.
952 *
953 * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns
954 * -1, and sets errno to the appropriate error code.
955 *
956 * For SCTP, the port given in each socket address must be the same, or
957 * sctp_bindx() will fail, setting errno to EINVAL.
958 *
959 * The flags parameter is formed from the bitwise OR of zero or more of
960 * the following currently defined flags:
961 *
962 * SCTP_BINDX_ADD_ADDR
963 *
964 * SCTP_BINDX_REM_ADDR
965 *
966 * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the
967 * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given
968 * addresses from the association. The two flags are mutually exclusive;
969 * if both are given, sctp_bindx() will fail with EINVAL. A caller may
970 * not remove all addresses from an association; sctp_bindx() will
971 * reject such an attempt with EINVAL.
972 *
973 * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate
974 * additional addresses with an endpoint after calling bind(). Or use
975 * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening
976 * socket is associated with so that no new association accepted will be
977 * associated with those addresses. If the endpoint supports dynamic
978 * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a
979 * endpoint to send the appropriate message to the peer to change the
980 * peers address lists.
981 *
982 * Adding and removing addresses from a connected association is
983 * optional functionality. Implementations that do not support this
984 * functionality should return EOPNOTSUPP.
985 *
986 * Basically do nothing but copying the addresses from user to kernel
987 * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk.
988 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
989 * from userspace.
990 *
991 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
992 * it.
993 *
994 * sk The sk of the socket
995 * addrs The pointer to the addresses in user land
996 * addrssize Size of the addrs buffer
997 * op Operation to perform (add or remove, see the flags of
998 * sctp_bindx)
999 *
1000 * Returns 0 if ok, <0 errno code on error.
1001 */
1002static int sctp_setsockopt_bindx(struct sock *sk,
1003 struct sockaddr __user *addrs,
1004 int addrs_size, int op)
1005{
1006 struct sockaddr *kaddrs;
1007 int err;
1008 int addrcnt = 0;
1009 int walk_size = 0;
1010 struct sockaddr *sa_addr;
1011 void *addr_buf;
1012 struct sctp_af *af;
1013
1014 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
1015 __func__, sk, addrs, addrs_size, op);
1016
1017 if (unlikely(addrs_size <= 0))
1018 return -EINVAL;
1019
1020 kaddrs = vmemdup_user(addrs, addrs_size);
1021 if (unlikely(IS_ERR(kaddrs)))
1022 return PTR_ERR(kaddrs);
1023
1024 /* Walk through the addrs buffer and count the number of addresses. */
1025 addr_buf = kaddrs;
1026 while (walk_size < addrs_size) {
1027 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1028 kvfree(kaddrs);
1029 return -EINVAL;
1030 }
1031
1032 sa_addr = addr_buf;
1033 af = sctp_get_af_specific(sa_addr->sa_family);
1034
1035 /* If the address family is not supported or if this address
1036 * causes the address buffer to overflow return EINVAL.
1037 */
1038 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1039 kvfree(kaddrs);
1040 return -EINVAL;
1041 }
1042 addrcnt++;
1043 addr_buf += af->sockaddr_len;
1044 walk_size += af->sockaddr_len;
1045 }
1046
1047 /* Do the work. */
1048 switch (op) {
1049 case SCTP_BINDX_ADD_ADDR:
1050 /* Allow security module to validate bindx addresses. */
1051 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_BINDX_ADD,
1052 (struct sockaddr *)kaddrs,
1053 addrs_size);
1054 if (err)
1055 goto out;
1056 err = sctp_bindx_add(sk, kaddrs, addrcnt);
1057 if (err)
1058 goto out;
1059 err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt);
1060 break;
1061
1062 case SCTP_BINDX_REM_ADDR:
1063 err = sctp_bindx_rem(sk, kaddrs, addrcnt);
1064 if (err)
1065 goto out;
1066 err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt);
1067 break;
1068
1069 default:
1070 err = -EINVAL;
1071 break;
1072 }
1073
1074out:
1075 kvfree(kaddrs);
1076
1077 return err;
1078}
1079
1080/* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size)
1081 *
1082 * Common routine for handling connect() and sctp_connectx().
1083 * Connect will come in with just a single address.
1084 */
1085static int __sctp_connect(struct sock *sk,
1086 struct sockaddr *kaddrs,
1087 int addrs_size, int flags,
1088 sctp_assoc_t *assoc_id)
1089{
1090 struct net *net = sock_net(sk);
1091 struct sctp_sock *sp;
1092 struct sctp_endpoint *ep;
1093 struct sctp_association *asoc = NULL;
1094 struct sctp_association *asoc2;
1095 struct sctp_transport *transport;
1096 union sctp_addr to;
1097 enum sctp_scope scope;
1098 long timeo;
1099 int err = 0;
1100 int addrcnt = 0;
1101 int walk_size = 0;
1102 union sctp_addr *sa_addr = NULL;
1103 void *addr_buf;
1104 unsigned short port;
1105
1106 sp = sctp_sk(sk);
1107 ep = sp->ep;
1108
1109 /* connect() cannot be done on a socket that is already in ESTABLISHED
1110 * state - UDP-style peeled off socket or a TCP-style socket that
1111 * is already connected.
1112 * It cannot be done even on a TCP-style listening socket.
1113 */
1114 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
1115 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1116 err = -EISCONN;
1117 goto out_free;
1118 }
1119
1120 /* Walk through the addrs buffer and count the number of addresses. */
1121 addr_buf = kaddrs;
1122 while (walk_size < addrs_size) {
1123 struct sctp_af *af;
1124
1125 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1126 err = -EINVAL;
1127 goto out_free;
1128 }
1129
1130 sa_addr = addr_buf;
1131 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1132
1133 /* If the address family is not supported or if this address
1134 * causes the address buffer to overflow return EINVAL.
1135 */
1136 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1137 err = -EINVAL;
1138 goto out_free;
1139 }
1140
1141 port = ntohs(sa_addr->v4.sin_port);
1142
1143 /* Save current address so we can work with it */
1144 memcpy(&to, sa_addr, af->sockaddr_len);
1145
1146 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
1147 if (err)
1148 goto out_free;
1149
1150 /* Make sure the destination port is correctly set
1151 * in all addresses.
1152 */
1153 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1154 err = -EINVAL;
1155 goto out_free;
1156 }
1157
1158 /* Check if there already is a matching association on the
1159 * endpoint (other than the one created here).
1160 */
1161 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
1162 if (asoc2 && asoc2 != asoc) {
1163 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1164 err = -EISCONN;
1165 else
1166 err = -EALREADY;
1167 goto out_free;
1168 }
1169
1170 /* If we could not find a matching association on the endpoint,
1171 * make sure that there is no peeled-off association matching
1172 * the peer address even on another socket.
1173 */
1174 if (sctp_endpoint_is_peeled_off(ep, &to)) {
1175 err = -EADDRNOTAVAIL;
1176 goto out_free;
1177 }
1178
1179 if (!asoc) {
1180 /* If a bind() or sctp_bindx() is not called prior to
1181 * an sctp_connectx() call, the system picks an
1182 * ephemeral port and will choose an address set
1183 * equivalent to binding with a wildcard address.
1184 */
1185 if (!ep->base.bind_addr.port) {
1186 if (sctp_autobind(sk)) {
1187 err = -EAGAIN;
1188 goto out_free;
1189 }
1190 } else {
1191 /*
1192 * If an unprivileged user inherits a 1-many
1193 * style socket with open associations on a
1194 * privileged port, it MAY be permitted to
1195 * accept new associations, but it SHOULD NOT
1196 * be permitted to open new associations.
1197 */
1198 if (ep->base.bind_addr.port <
1199 inet_prot_sock(net) &&
1200 !ns_capable(net->user_ns,
1201 CAP_NET_BIND_SERVICE)) {
1202 err = -EACCES;
1203 goto out_free;
1204 }
1205 }
1206
1207 scope = sctp_scope(&to);
1208 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1209 if (!asoc) {
1210 err = -ENOMEM;
1211 goto out_free;
1212 }
1213
1214 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1215 GFP_KERNEL);
1216 if (err < 0) {
1217 goto out_free;
1218 }
1219
1220 }
1221
1222 /* Prime the peer's transport structures. */
1223 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
1224 SCTP_UNKNOWN);
1225 if (!transport) {
1226 err = -ENOMEM;
1227 goto out_free;
1228 }
1229
1230 addrcnt++;
1231 addr_buf += af->sockaddr_len;
1232 walk_size += af->sockaddr_len;
1233 }
1234
1235 /* In case the user of sctp_connectx() wants an association
1236 * id back, assign one now.
1237 */
1238 if (assoc_id) {
1239 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1240 if (err < 0)
1241 goto out_free;
1242 }
1243
1244 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1245 if (err < 0) {
1246 goto out_free;
1247 }
1248
1249 /* Initialize sk's dport and daddr for getpeername() */
1250 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
1251 sp->pf->to_sk_daddr(sa_addr, sk);
1252 sk->sk_err = 0;
1253
1254 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
1255
1256 if (assoc_id)
1257 *assoc_id = asoc->assoc_id;
1258
1259 err = sctp_wait_for_connect(asoc, &timeo);
1260 /* Note: the asoc may be freed after the return of
1261 * sctp_wait_for_connect.
1262 */
1263
1264 /* Don't free association on exit. */
1265 asoc = NULL;
1266
1267out_free:
1268 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1269 __func__, asoc, kaddrs, err);
1270
1271 if (asoc) {
1272 /* sctp_primitive_ASSOCIATE may have added this association
1273 * To the hash table, try to unhash it, just in case, its a noop
1274 * if it wasn't hashed so we're safe
1275 */
1276 sctp_association_free(asoc);
1277 }
1278 return err;
1279}
1280
1281/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1282 *
1283 * API 8.9
1284 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1285 * sctp_assoc_t *asoc);
1286 *
1287 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1288 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1289 * or IPv6 addresses.
1290 *
1291 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1292 * Section 3.1.2 for this usage.
1293 *
1294 * addrs is a pointer to an array of one or more socket addresses. Each
1295 * address is contained in its appropriate structure (i.e. struct
1296 * sockaddr_in or struct sockaddr_in6) the family of the address type
1297 * must be used to distengish the address length (note that this
1298 * representation is termed a "packed array" of addresses). The caller
1299 * specifies the number of addresses in the array with addrcnt.
1300 *
1301 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1302 * the association id of the new association. On failure, sctp_connectx()
1303 * returns -1, and sets errno to the appropriate error code. The assoc_id
1304 * is not touched by the kernel.
1305 *
1306 * For SCTP, the port given in each socket address must be the same, or
1307 * sctp_connectx() will fail, setting errno to EINVAL.
1308 *
1309 * An application can use sctp_connectx to initiate an association with
1310 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1311 * allows a caller to specify multiple addresses at which a peer can be
1312 * reached. The way the SCTP stack uses the list of addresses to set up
1313 * the association is implementation dependent. This function only
1314 * specifies that the stack will try to make use of all the addresses in
1315 * the list when needed.
1316 *
1317 * Note that the list of addresses passed in is only used for setting up
1318 * the association. It does not necessarily equal the set of addresses
1319 * the peer uses for the resulting association. If the caller wants to
1320 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1321 * retrieve them after the association has been set up.
1322 *
1323 * Basically do nothing but copying the addresses from user to kernel
1324 * land and invoking either sctp_connectx(). This is used for tunneling
1325 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1326 *
1327 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1328 * it.
1329 *
1330 * sk The sk of the socket
1331 * addrs The pointer to the addresses in user land
1332 * addrssize Size of the addrs buffer
1333 *
1334 * Returns >=0 if ok, <0 errno code on error.
1335 */
1336static int __sctp_setsockopt_connectx(struct sock *sk,
1337 struct sockaddr __user *addrs,
1338 int addrs_size,
1339 sctp_assoc_t *assoc_id)
1340{
1341 struct sockaddr *kaddrs;
1342 int err = 0, flags = 0;
1343
1344 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1345 __func__, sk, addrs, addrs_size);
1346
1347 if (unlikely(addrs_size <= 0))
1348 return -EINVAL;
1349
1350 kaddrs = vmemdup_user(addrs, addrs_size);
1351 if (unlikely(IS_ERR(kaddrs)))
1352 return PTR_ERR(kaddrs);
1353
1354 /* Allow security module to validate connectx addresses. */
1355 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1356 (struct sockaddr *)kaddrs,
1357 addrs_size);
1358 if (err)
1359 goto out_free;
1360
1361 /* in-kernel sockets don't generally have a file allocated to them
1362 * if all they do is call sock_create_kern().
1363 */
1364 if (sk->sk_socket->file)
1365 flags = sk->sk_socket->file->f_flags;
1366
1367 err = __sctp_connect(sk, kaddrs, addrs_size, flags, assoc_id);
1368
1369out_free:
1370 kvfree(kaddrs);
1371
1372 return err;
1373}
1374
1375/*
1376 * This is an older interface. It's kept for backward compatibility
1377 * to the option that doesn't provide association id.
1378 */
1379static int sctp_setsockopt_connectx_old(struct sock *sk,
1380 struct sockaddr __user *addrs,
1381 int addrs_size)
1382{
1383 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1384}
1385
1386/*
1387 * New interface for the API. The since the API is done with a socket
1388 * option, to make it simple we feed back the association id is as a return
1389 * indication to the call. Error is always negative and association id is
1390 * always positive.
1391 */
1392static int sctp_setsockopt_connectx(struct sock *sk,
1393 struct sockaddr __user *addrs,
1394 int addrs_size)
1395{
1396 sctp_assoc_t assoc_id = 0;
1397 int err = 0;
1398
1399 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1400
1401 if (err)
1402 return err;
1403 else
1404 return assoc_id;
1405}
1406
1407/*
1408 * New (hopefully final) interface for the API.
1409 * We use the sctp_getaddrs_old structure so that use-space library
1410 * can avoid any unnecessary allocations. The only different part
1411 * is that we store the actual length of the address buffer into the
1412 * addrs_num structure member. That way we can re-use the existing
1413 * code.
1414 */
1415#ifdef CONFIG_COMPAT
1416struct compat_sctp_getaddrs_old {
1417 sctp_assoc_t assoc_id;
1418 s32 addr_num;
1419 compat_uptr_t addrs; /* struct sockaddr * */
1420};
1421#endif
1422
1423static int sctp_getsockopt_connectx3(struct sock *sk, int len,
1424 char __user *optval,
1425 int __user *optlen)
1426{
1427 struct sctp_getaddrs_old param;
1428 sctp_assoc_t assoc_id = 0;
1429 int err = 0;
1430
1431#ifdef CONFIG_COMPAT
1432 if (in_compat_syscall()) {
1433 struct compat_sctp_getaddrs_old param32;
1434
1435 if (len < sizeof(param32))
1436 return -EINVAL;
1437 if (copy_from_user(&param32, optval, sizeof(param32)))
1438 return -EFAULT;
1439
1440 param.assoc_id = param32.assoc_id;
1441 param.addr_num = param32.addr_num;
1442 param.addrs = compat_ptr(param32.addrs);
1443 } else
1444#endif
1445 {
1446 if (len < sizeof(param))
1447 return -EINVAL;
1448 if (copy_from_user(&param, optval, sizeof(param)))
1449 return -EFAULT;
1450 }
1451
1452 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1453 param.addrs, param.addr_num,
1454 &assoc_id);
1455 if (err == 0 || err == -EINPROGRESS) {
1456 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1457 return -EFAULT;
1458 if (put_user(sizeof(assoc_id), optlen))
1459 return -EFAULT;
1460 }
1461
1462 return err;
1463}
1464
1465/* API 3.1.4 close() - UDP Style Syntax
1466 * Applications use close() to perform graceful shutdown (as described in
1467 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1468 * by a UDP-style socket.
1469 *
1470 * The syntax is
1471 *
1472 * ret = close(int sd);
1473 *
1474 * sd - the socket descriptor of the associations to be closed.
1475 *
1476 * To gracefully shutdown a specific association represented by the
1477 * UDP-style socket, an application should use the sendmsg() call,
1478 * passing no user data, but including the appropriate flag in the
1479 * ancillary data (see Section xxxx).
1480 *
1481 * If sd in the close() call is a branched-off socket representing only
1482 * one association, the shutdown is performed on that association only.
1483 *
1484 * 4.1.6 close() - TCP Style Syntax
1485 *
1486 * Applications use close() to gracefully close down an association.
1487 *
1488 * The syntax is:
1489 *
1490 * int close(int sd);
1491 *
1492 * sd - the socket descriptor of the association to be closed.
1493 *
1494 * After an application calls close() on a socket descriptor, no further
1495 * socket operations will succeed on that descriptor.
1496 *
1497 * API 7.1.4 SO_LINGER
1498 *
1499 * An application using the TCP-style socket can use this option to
1500 * perform the SCTP ABORT primitive. The linger option structure is:
1501 *
1502 * struct linger {
1503 * int l_onoff; // option on/off
1504 * int l_linger; // linger time
1505 * };
1506 *
1507 * To enable the option, set l_onoff to 1. If the l_linger value is set
1508 * to 0, calling close() is the same as the ABORT primitive. If the
1509 * value is set to a negative value, the setsockopt() call will return
1510 * an error. If the value is set to a positive value linger_time, the
1511 * close() can be blocked for at most linger_time ms. If the graceful
1512 * shutdown phase does not finish during this period, close() will
1513 * return but the graceful shutdown phase continues in the system.
1514 */
1515static void sctp_close(struct sock *sk, long timeout)
1516{
1517 struct net *net = sock_net(sk);
1518 struct sctp_endpoint *ep;
1519 struct sctp_association *asoc;
1520 struct list_head *pos, *temp;
1521 unsigned int data_was_unread;
1522
1523 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
1524
1525 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
1526 sk->sk_shutdown = SHUTDOWN_MASK;
1527 inet_sk_set_state(sk, SCTP_SS_CLOSING);
1528
1529 ep = sctp_sk(sk)->ep;
1530
1531 /* Clean up any skbs sitting on the receive queue. */
1532 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1533 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1534
1535 /* Walk all associations on an endpoint. */
1536 list_for_each_safe(pos, temp, &ep->asocs) {
1537 asoc = list_entry(pos, struct sctp_association, asocs);
1538
1539 if (sctp_style(sk, TCP)) {
1540 /* A closed association can still be in the list if
1541 * it belongs to a TCP-style listening socket that is
1542 * not yet accepted. If so, free it. If not, send an
1543 * ABORT or SHUTDOWN based on the linger options.
1544 */
1545 if (sctp_state(asoc, CLOSED)) {
1546 sctp_association_free(asoc);
1547 continue;
1548 }
1549 }
1550
1551 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1552 !skb_queue_empty(&asoc->ulpq.reasm) ||
1553 !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
1554 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
1555 struct sctp_chunk *chunk;
1556
1557 chunk = sctp_make_abort_user(asoc, NULL, 0);
1558 sctp_primitive_ABORT(net, asoc, chunk);
1559 } else
1560 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1561 }
1562
1563 /* On a TCP-style socket, block for at most linger_time if set. */
1564 if (sctp_style(sk, TCP) && timeout)
1565 sctp_wait_for_close(sk, timeout);
1566
1567 /* This will run the backlog queue. */
1568 release_sock(sk);
1569
1570 /* Supposedly, no process has access to the socket, but
1571 * the net layers still may.
1572 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1573 * held and that should be grabbed before socket lock.
1574 */
1575 spin_lock_bh(&net->sctp.addr_wq_lock);
1576 bh_lock_sock_nested(sk);
1577
1578 /* Hold the sock, since sk_common_release() will put sock_put()
1579 * and we have just a little more cleanup.
1580 */
1581 sock_hold(sk);
1582 sk_common_release(sk);
1583
1584 bh_unlock_sock(sk);
1585 spin_unlock_bh(&net->sctp.addr_wq_lock);
1586
1587 sock_put(sk);
1588
1589 SCTP_DBG_OBJCNT_DEC(sock);
1590}
1591
1592/* Handle EPIPE error. */
1593static int sctp_error(struct sock *sk, int flags, int err)
1594{
1595 if (err == -EPIPE)
1596 err = sock_error(sk) ? : -EPIPE;
1597 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1598 send_sig(SIGPIPE, current, 0);
1599 return err;
1600}
1601
1602/* API 3.1.3 sendmsg() - UDP Style Syntax
1603 *
1604 * An application uses sendmsg() and recvmsg() calls to transmit data to
1605 * and receive data from its peer.
1606 *
1607 * ssize_t sendmsg(int socket, const struct msghdr *message,
1608 * int flags);
1609 *
1610 * socket - the socket descriptor of the endpoint.
1611 * message - pointer to the msghdr structure which contains a single
1612 * user message and possibly some ancillary data.
1613 *
1614 * See Section 5 for complete description of the data
1615 * structures.
1616 *
1617 * flags - flags sent or received with the user message, see Section
1618 * 5 for complete description of the flags.
1619 *
1620 * Note: This function could use a rewrite especially when explicit
1621 * connect support comes in.
1622 */
1623/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1624
1625static int sctp_msghdr_parse(const struct msghdr *msg,
1626 struct sctp_cmsgs *cmsgs);
1627
1628static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1629 struct sctp_sndrcvinfo *srinfo,
1630 const struct msghdr *msg, size_t msg_len)
1631{
1632 __u16 sflags;
1633 int err;
1634
1635 if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1636 return -EPIPE;
1637
1638 if (msg_len > sk->sk_sndbuf)
1639 return -EMSGSIZE;
1640
1641 memset(cmsgs, 0, sizeof(*cmsgs));
1642 err = sctp_msghdr_parse(msg, cmsgs);
1643 if (err) {
1644 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1645 return err;
1646 }
1647
1648 memset(srinfo, 0, sizeof(*srinfo));
1649 if (cmsgs->srinfo) {
1650 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1651 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1652 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1653 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1654 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1655 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1656 }
1657
1658 if (cmsgs->sinfo) {
1659 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1660 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1661 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1662 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1663 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1664 }
1665
1666 if (cmsgs->prinfo) {
1667 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1668 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1669 cmsgs->prinfo->pr_policy);
1670 }
1671
1672 sflags = srinfo->sinfo_flags;
1673 if (!sflags && msg_len)
1674 return 0;
1675
1676 if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1677 return -EINVAL;
1678
1679 if (((sflags & SCTP_EOF) && msg_len > 0) ||
1680 (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1681 return -EINVAL;
1682
1683 if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1684 return -EINVAL;
1685
1686 return 0;
1687}
1688
1689static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1690 struct sctp_cmsgs *cmsgs,
1691 union sctp_addr *daddr,
1692 struct sctp_transport **tp)
1693{
1694 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1695 struct net *net = sock_net(sk);
1696 struct sctp_association *asoc;
1697 enum sctp_scope scope;
1698 struct cmsghdr *cmsg;
1699 __be32 flowinfo = 0;
1700 struct sctp_af *af;
1701 int err;
1702
1703 *tp = NULL;
1704
1705 if (sflags & (SCTP_EOF | SCTP_ABORT))
1706 return -EINVAL;
1707
1708 if (sctp_style(sk, TCP) && (sctp_sstate(sk, ESTABLISHED) ||
1709 sctp_sstate(sk, CLOSING)))
1710 return -EADDRNOTAVAIL;
1711
1712 if (sctp_endpoint_is_peeled_off(ep, daddr))
1713 return -EADDRNOTAVAIL;
1714
1715 if (!ep->base.bind_addr.port) {
1716 if (sctp_autobind(sk))
1717 return -EAGAIN;
1718 } else {
1719 if (ep->base.bind_addr.port < inet_prot_sock(net) &&
1720 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1721 return -EACCES;
1722 }
1723
1724 scope = sctp_scope(daddr);
1725
1726 /* Label connection socket for first association 1-to-many
1727 * style for client sequence socket()->sendmsg(). This
1728 * needs to be done before sctp_assoc_add_peer() as that will
1729 * set up the initial packet that needs to account for any
1730 * security ip options (CIPSO/CALIPSO) added to the packet.
1731 */
1732 af = sctp_get_af_specific(daddr->sa.sa_family);
1733 if (!af)
1734 return -EINVAL;
1735 err = security_sctp_bind_connect(sk, SCTP_SENDMSG_CONNECT,
1736 (struct sockaddr *)daddr,
1737 af->sockaddr_len);
1738 if (err < 0)
1739 return err;
1740
1741 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1742 if (!asoc)
1743 return -ENOMEM;
1744
1745 if (sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL) < 0) {
1746 err = -ENOMEM;
1747 goto free;
1748 }
1749
1750 if (cmsgs->init) {
1751 struct sctp_initmsg *init = cmsgs->init;
1752
1753 if (init->sinit_num_ostreams) {
1754 __u16 outcnt = init->sinit_num_ostreams;
1755
1756 asoc->c.sinit_num_ostreams = outcnt;
1757 /* outcnt has been changed, need to re-init stream */
1758 err = sctp_stream_init(&asoc->stream, outcnt, 0,
1759 GFP_KERNEL);
1760 if (err)
1761 goto free;
1762 }
1763
1764 if (init->sinit_max_instreams)
1765 asoc->c.sinit_max_instreams = init->sinit_max_instreams;
1766
1767 if (init->sinit_max_attempts)
1768 asoc->max_init_attempts = init->sinit_max_attempts;
1769
1770 if (init->sinit_max_init_timeo)
1771 asoc->max_init_timeo =
1772 msecs_to_jiffies(init->sinit_max_init_timeo);
1773 }
1774
1775 *tp = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL, SCTP_UNKNOWN);
1776 if (!*tp) {
1777 err = -ENOMEM;
1778 goto free;
1779 }
1780
1781 if (!cmsgs->addrs_msg)
1782 return 0;
1783
1784 if (daddr->sa.sa_family == AF_INET6)
1785 flowinfo = daddr->v6.sin6_flowinfo;
1786
1787 /* sendv addr list parse */
1788 for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1789 struct sctp_transport *transport;
1790 struct sctp_association *old;
1791 union sctp_addr _daddr;
1792 int dlen;
1793
1794 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1795 (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1796 cmsg->cmsg_type != SCTP_DSTADDRV6))
1797 continue;
1798
1799 daddr = &_daddr;
1800 memset(daddr, 0, sizeof(*daddr));
1801 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1802 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
1803 if (dlen < sizeof(struct in_addr)) {
1804 err = -EINVAL;
1805 goto free;
1806 }
1807
1808 dlen = sizeof(struct in_addr);
1809 daddr->v4.sin_family = AF_INET;
1810 daddr->v4.sin_port = htons(asoc->peer.port);
1811 memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1812 } else {
1813 if (dlen < sizeof(struct in6_addr)) {
1814 err = -EINVAL;
1815 goto free;
1816 }
1817
1818 dlen = sizeof(struct in6_addr);
1819 daddr->v6.sin6_flowinfo = flowinfo;
1820 daddr->v6.sin6_family = AF_INET6;
1821 daddr->v6.sin6_port = htons(asoc->peer.port);
1822 memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1823 }
1824 err = sctp_verify_addr(sk, daddr, sizeof(*daddr));
1825 if (err)
1826 goto free;
1827
1828 old = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1829 if (old && old != asoc) {
1830 if (old->state >= SCTP_STATE_ESTABLISHED)
1831 err = -EISCONN;
1832 else
1833 err = -EALREADY;
1834 goto free;
1835 }
1836
1837 if (sctp_endpoint_is_peeled_off(ep, daddr)) {
1838 err = -EADDRNOTAVAIL;
1839 goto free;
1840 }
1841
1842 transport = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL,
1843 SCTP_UNKNOWN);
1844 if (!transport) {
1845 err = -ENOMEM;
1846 goto free;
1847 }
1848 }
1849
1850 return 0;
1851
1852free:
1853 sctp_association_free(asoc);
1854 return err;
1855}
1856
1857static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1858 __u16 sflags, struct msghdr *msg,
1859 size_t msg_len)
1860{
1861 struct sock *sk = asoc->base.sk;
1862 struct net *net = sock_net(sk);
1863
1864 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1865 return -EPIPE;
1866
1867 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1868 !sctp_state(asoc, ESTABLISHED))
1869 return 0;
1870
1871 if (sflags & SCTP_EOF) {
1872 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1873 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1874
1875 return 0;
1876 }
1877
1878 if (sflags & SCTP_ABORT) {
1879 struct sctp_chunk *chunk;
1880
1881 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1882 if (!chunk)
1883 return -ENOMEM;
1884
1885 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1886 sctp_primitive_ABORT(net, asoc, chunk);
1887
1888 return 0;
1889 }
1890
1891 return 1;
1892}
1893
1894static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1895 struct msghdr *msg, size_t msg_len,
1896 struct sctp_transport *transport,
1897 struct sctp_sndrcvinfo *sinfo)
1898{
1899 struct sock *sk = asoc->base.sk;
1900 struct sctp_sock *sp = sctp_sk(sk);
1901 struct net *net = sock_net(sk);
1902 struct sctp_datamsg *datamsg;
1903 bool wait_connect = false;
1904 struct sctp_chunk *chunk;
1905 long timeo;
1906 int err;
1907
1908 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1909 err = -EINVAL;
1910 goto err;
1911 }
1912
1913 if (unlikely(!SCTP_SO(&asoc->stream, sinfo->sinfo_stream)->ext)) {
1914 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1915 if (err)
1916 goto err;
1917 }
1918
1919 if (sp->disable_fragments && msg_len > asoc->frag_point) {
1920 err = -EMSGSIZE;
1921 goto err;
1922 }
1923
1924 if (asoc->pmtu_pending) {
1925 if (sp->param_flags & SPP_PMTUD_ENABLE)
1926 sctp_assoc_sync_pmtu(asoc);
1927 asoc->pmtu_pending = 0;
1928 }
1929
1930 if (sctp_wspace(asoc) < msg_len)
1931 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1932
1933 if (!sctp_wspace(asoc)) {
1934 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1935 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1936 if (err)
1937 goto err;
1938 }
1939
1940 if (sctp_state(asoc, CLOSED)) {
1941 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1942 if (err)
1943 goto err;
1944
1945 if (sp->strm_interleave) {
1946 timeo = sock_sndtimeo(sk, 0);
1947 err = sctp_wait_for_connect(asoc, &timeo);
1948 if (err) {
1949 err = -ESRCH;
1950 goto err;
1951 }
1952 } else {
1953 wait_connect = true;
1954 }
1955
1956 pr_debug("%s: we associated primitively\n", __func__);
1957 }
1958
1959 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1960 if (IS_ERR(datamsg)) {
1961 err = PTR_ERR(datamsg);
1962 goto err;
1963 }
1964
1965 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1966
1967 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1968 sctp_chunk_hold(chunk);
1969 sctp_set_owner_w(chunk);
1970 chunk->transport = transport;
1971 }
1972
1973 err = sctp_primitive_SEND(net, asoc, datamsg);
1974 if (err) {
1975 sctp_datamsg_free(datamsg);
1976 goto err;
1977 }
1978
1979 pr_debug("%s: we sent primitively\n", __func__);
1980
1981 sctp_datamsg_put(datamsg);
1982
1983 if (unlikely(wait_connect)) {
1984 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1985 sctp_wait_for_connect(asoc, &timeo);
1986 }
1987
1988 err = msg_len;
1989
1990err:
1991 return err;
1992}
1993
1994static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1995 const struct msghdr *msg,
1996 struct sctp_cmsgs *cmsgs)
1997{
1998 union sctp_addr *daddr = NULL;
1999 int err;
2000
2001 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
2002 int len = msg->msg_namelen;
2003
2004 if (len > sizeof(*daddr))
2005 len = sizeof(*daddr);
2006
2007 daddr = (union sctp_addr *)msg->msg_name;
2008
2009 err = sctp_verify_addr(sk, daddr, len);
2010 if (err)
2011 return ERR_PTR(err);
2012 }
2013
2014 return daddr;
2015}
2016
2017static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
2018 struct sctp_sndrcvinfo *sinfo,
2019 struct sctp_cmsgs *cmsgs)
2020{
2021 if (!cmsgs->srinfo && !cmsgs->sinfo) {
2022 sinfo->sinfo_stream = asoc->default_stream;
2023 sinfo->sinfo_ppid = asoc->default_ppid;
2024 sinfo->sinfo_context = asoc->default_context;
2025 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
2026
2027 if (!cmsgs->prinfo)
2028 sinfo->sinfo_flags = asoc->default_flags;
2029 }
2030
2031 if (!cmsgs->srinfo && !cmsgs->prinfo)
2032 sinfo->sinfo_timetolive = asoc->default_timetolive;
2033
2034 if (cmsgs->authinfo) {
2035 /* Reuse sinfo_tsn to indicate that authinfo was set and
2036 * sinfo_ssn to save the keyid on tx path.
2037 */
2038 sinfo->sinfo_tsn = 1;
2039 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
2040 }
2041}
2042
2043static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
2044{
2045 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
2046 struct sctp_transport *transport = NULL;
2047 struct sctp_sndrcvinfo _sinfo, *sinfo;
2048 struct sctp_association *asoc;
2049 struct sctp_cmsgs cmsgs;
2050 union sctp_addr *daddr;
2051 bool new = false;
2052 __u16 sflags;
2053 int err;
2054
2055 /* Parse and get snd_info */
2056 err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
2057 if (err)
2058 goto out;
2059
2060 sinfo = &_sinfo;
2061 sflags = sinfo->sinfo_flags;
2062
2063 /* Get daddr from msg */
2064 daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
2065 if (IS_ERR(daddr)) {
2066 err = PTR_ERR(daddr);
2067 goto out;
2068 }
2069
2070 lock_sock(sk);
2071
2072 /* SCTP_SENDALL process */
2073 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
2074 list_for_each_entry(asoc, &ep->asocs, asocs) {
2075 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2076 msg_len);
2077 if (err == 0)
2078 continue;
2079 if (err < 0)
2080 goto out_unlock;
2081
2082 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2083
2084 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
2085 NULL, sinfo);
2086 if (err < 0)
2087 goto out_unlock;
2088
2089 iov_iter_revert(&msg->msg_iter, err);
2090 }
2091
2092 goto out_unlock;
2093 }
2094
2095 /* Get and check or create asoc */
2096 if (daddr) {
2097 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
2098 if (asoc) {
2099 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2100 msg_len);
2101 if (err <= 0)
2102 goto out_unlock;
2103 } else {
2104 err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2105 &transport);
2106 if (err)
2107 goto out_unlock;
2108
2109 asoc = transport->asoc;
2110 new = true;
2111 }
2112
2113 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2114 transport = NULL;
2115 } else {
2116 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
2117 if (!asoc) {
2118 err = -EPIPE;
2119 goto out_unlock;
2120 }
2121
2122 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
2123 if (err <= 0)
2124 goto out_unlock;
2125 }
2126
2127 /* Update snd_info with the asoc */
2128 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2129
2130 /* Send msg to the asoc */
2131 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
2132 if (err < 0 && err != -ESRCH && new)
2133 sctp_association_free(asoc);
2134
2135out_unlock:
2136 release_sock(sk);
2137out:
2138 return sctp_error(sk, msg->msg_flags, err);
2139}
2140
2141/* This is an extended version of skb_pull() that removes the data from the
2142 * start of a skb even when data is spread across the list of skb's in the
2143 * frag_list. len specifies the total amount of data that needs to be removed.
2144 * when 'len' bytes could be removed from the skb, it returns 0.
2145 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2146 * could not be removed.
2147 */
2148static int sctp_skb_pull(struct sk_buff *skb, int len)
2149{
2150 struct sk_buff *list;
2151 int skb_len = skb_headlen(skb);
2152 int rlen;
2153
2154 if (len <= skb_len) {
2155 __skb_pull(skb, len);
2156 return 0;
2157 }
2158 len -= skb_len;
2159 __skb_pull(skb, skb_len);
2160
2161 skb_walk_frags(skb, list) {
2162 rlen = sctp_skb_pull(list, len);
2163 skb->len -= (len-rlen);
2164 skb->data_len -= (len-rlen);
2165
2166 if (!rlen)
2167 return 0;
2168
2169 len = rlen;
2170 }
2171
2172 return len;
2173}
2174
2175/* API 3.1.3 recvmsg() - UDP Style Syntax
2176 *
2177 * ssize_t recvmsg(int socket, struct msghdr *message,
2178 * int flags);
2179 *
2180 * socket - the socket descriptor of the endpoint.
2181 * message - pointer to the msghdr structure which contains a single
2182 * user message and possibly some ancillary data.
2183 *
2184 * See Section 5 for complete description of the data
2185 * structures.
2186 *
2187 * flags - flags sent or received with the user message, see Section
2188 * 5 for complete description of the flags.
2189 */
2190static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2191 int noblock, int flags, int *addr_len)
2192{
2193 struct sctp_ulpevent *event = NULL;
2194 struct sctp_sock *sp = sctp_sk(sk);
2195 struct sk_buff *skb, *head_skb;
2196 int copied;
2197 int err = 0;
2198 int skb_len;
2199
2200 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2201 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2202 addr_len);
2203
2204 lock_sock(sk);
2205
2206 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
2207 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
2208 err = -ENOTCONN;
2209 goto out;
2210 }
2211
2212 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2213 if (!skb)
2214 goto out;
2215
2216 /* Get the total length of the skb including any skb's in the
2217 * frag_list.
2218 */
2219 skb_len = skb->len;
2220
2221 copied = skb_len;
2222 if (copied > len)
2223 copied = len;
2224
2225 err = skb_copy_datagram_msg(skb, 0, msg, copied);
2226
2227 event = sctp_skb2event(skb);
2228
2229 if (err)
2230 goto out_free;
2231
2232 if (event->chunk && event->chunk->head_skb)
2233 head_skb = event->chunk->head_skb;
2234 else
2235 head_skb = skb;
2236 sock_recv_ts_and_drops(msg, sk, head_skb);
2237 if (sctp_ulpevent_is_notification(event)) {
2238 msg->msg_flags |= MSG_NOTIFICATION;
2239 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2240 } else {
2241 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
2242 }
2243
2244 /* Check if we allow SCTP_NXTINFO. */
2245 if (sp->recvnxtinfo)
2246 sctp_ulpevent_read_nxtinfo(event, msg, sk);
2247 /* Check if we allow SCTP_RCVINFO. */
2248 if (sp->recvrcvinfo)
2249 sctp_ulpevent_read_rcvinfo(event, msg);
2250 /* Check if we allow SCTP_SNDRCVINFO. */
2251 if (sp->subscribe.sctp_data_io_event)
2252 sctp_ulpevent_read_sndrcvinfo(event, msg);
2253
2254 err = copied;
2255
2256 /* If skb's length exceeds the user's buffer, update the skb and
2257 * push it back to the receive_queue so that the next call to
2258 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2259 */
2260 if (skb_len > copied) {
2261 msg->msg_flags &= ~MSG_EOR;
2262 if (flags & MSG_PEEK)
2263 goto out_free;
2264 sctp_skb_pull(skb, copied);
2265 skb_queue_head(&sk->sk_receive_queue, skb);
2266
2267 /* When only partial message is copied to the user, increase
2268 * rwnd by that amount. If all the data in the skb is read,
2269 * rwnd is updated when the event is freed.
2270 */
2271 if (!sctp_ulpevent_is_notification(event))
2272 sctp_assoc_rwnd_increase(event->asoc, copied);
2273 goto out;
2274 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2275 (event->msg_flags & MSG_EOR))
2276 msg->msg_flags |= MSG_EOR;
2277 else
2278 msg->msg_flags &= ~MSG_EOR;
2279
2280out_free:
2281 if (flags & MSG_PEEK) {
2282 /* Release the skb reference acquired after peeking the skb in
2283 * sctp_skb_recv_datagram().
2284 */
2285 kfree_skb(skb);
2286 } else {
2287 /* Free the event which includes releasing the reference to
2288 * the owner of the skb, freeing the skb and updating the
2289 * rwnd.
2290 */
2291 sctp_ulpevent_free(event);
2292 }
2293out:
2294 release_sock(sk);
2295 return err;
2296}
2297
2298/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2299 *
2300 * This option is a on/off flag. If enabled no SCTP message
2301 * fragmentation will be performed. Instead if a message being sent
2302 * exceeds the current PMTU size, the message will NOT be sent and
2303 * instead a error will be indicated to the user.
2304 */
2305static int sctp_setsockopt_disable_fragments(struct sock *sk,
2306 char __user *optval,
2307 unsigned int optlen)
2308{
2309 int val;
2310
2311 if (optlen < sizeof(int))
2312 return -EINVAL;
2313
2314 if (get_user(val, (int __user *)optval))
2315 return -EFAULT;
2316
2317 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2318
2319 return 0;
2320}
2321
2322static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
2323 unsigned int optlen)
2324{
2325 struct sctp_association *asoc;
2326 struct sctp_ulpevent *event;
2327
2328 if (optlen > sizeof(struct sctp_event_subscribe))
2329 return -EINVAL;
2330 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2331 return -EFAULT;
2332
2333 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2334 * if there is no data to be sent or retransmit, the stack will
2335 * immediately send up this notification.
2336 */
2337 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2338 &sctp_sk(sk)->subscribe)) {
2339 asoc = sctp_id2assoc(sk, 0);
2340
2341 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2342 event = sctp_ulpevent_make_sender_dry_event(asoc,
2343 GFP_USER | __GFP_NOWARN);
2344 if (!event)
2345 return -ENOMEM;
2346
2347 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
2348 }
2349 }
2350
2351 return 0;
2352}
2353
2354/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2355 *
2356 * This socket option is applicable to the UDP-style socket only. When
2357 * set it will cause associations that are idle for more than the
2358 * specified number of seconds to automatically close. An association
2359 * being idle is defined an association that has NOT sent or received
2360 * user data. The special value of '0' indicates that no automatic
2361 * close of any associations should be performed. The option expects an
2362 * integer defining the number of seconds of idle time before an
2363 * association is closed.
2364 */
2365static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
2366 unsigned int optlen)
2367{
2368 struct sctp_sock *sp = sctp_sk(sk);
2369 struct net *net = sock_net(sk);
2370
2371 /* Applicable to UDP-style socket only */
2372 if (sctp_style(sk, TCP))
2373 return -EOPNOTSUPP;
2374 if (optlen != sizeof(int))
2375 return -EINVAL;
2376 if (copy_from_user(&sp->autoclose, optval, optlen))
2377 return -EFAULT;
2378
2379 if (sp->autoclose > net->sctp.max_autoclose)
2380 sp->autoclose = net->sctp.max_autoclose;
2381
2382 return 0;
2383}
2384
2385/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2386 *
2387 * Applications can enable or disable heartbeats for any peer address of
2388 * an association, modify an address's heartbeat interval, force a
2389 * heartbeat to be sent immediately, and adjust the address's maximum
2390 * number of retransmissions sent before an address is considered
2391 * unreachable. The following structure is used to access and modify an
2392 * address's parameters:
2393 *
2394 * struct sctp_paddrparams {
2395 * sctp_assoc_t spp_assoc_id;
2396 * struct sockaddr_storage spp_address;
2397 * uint32_t spp_hbinterval;
2398 * uint16_t spp_pathmaxrxt;
2399 * uint32_t spp_pathmtu;
2400 * uint32_t spp_sackdelay;
2401 * uint32_t spp_flags;
2402 * uint32_t spp_ipv6_flowlabel;
2403 * uint8_t spp_dscp;
2404 * };
2405 *
2406 * spp_assoc_id - (one-to-many style socket) This is filled in the
2407 * application, and identifies the association for
2408 * this query.
2409 * spp_address - This specifies which address is of interest.
2410 * spp_hbinterval - This contains the value of the heartbeat interval,
2411 * in milliseconds. If a value of zero
2412 * is present in this field then no changes are to
2413 * be made to this parameter.
2414 * spp_pathmaxrxt - This contains the maximum number of
2415 * retransmissions before this address shall be
2416 * considered unreachable. If a value of zero
2417 * is present in this field then no changes are to
2418 * be made to this parameter.
2419 * spp_pathmtu - When Path MTU discovery is disabled the value
2420 * specified here will be the "fixed" path mtu.
2421 * Note that if the spp_address field is empty
2422 * then all associations on this address will
2423 * have this fixed path mtu set upon them.
2424 *
2425 * spp_sackdelay - When delayed sack is enabled, this value specifies
2426 * the number of milliseconds that sacks will be delayed
2427 * for. This value will apply to all addresses of an
2428 * association if the spp_address field is empty. Note
2429 * also, that if delayed sack is enabled and this
2430 * value is set to 0, no change is made to the last
2431 * recorded delayed sack timer value.
2432 *
2433 * spp_flags - These flags are used to control various features
2434 * on an association. The flag field may contain
2435 * zero or more of the following options.
2436 *
2437 * SPP_HB_ENABLE - Enable heartbeats on the
2438 * specified address. Note that if the address
2439 * field is empty all addresses for the association
2440 * have heartbeats enabled upon them.
2441 *
2442 * SPP_HB_DISABLE - Disable heartbeats on the
2443 * speicifed address. Note that if the address
2444 * field is empty all addresses for the association
2445 * will have their heartbeats disabled. Note also
2446 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2447 * mutually exclusive, only one of these two should
2448 * be specified. Enabling both fields will have
2449 * undetermined results.
2450 *
2451 * SPP_HB_DEMAND - Request a user initiated heartbeat
2452 * to be made immediately.
2453 *
2454 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2455 * heartbeat delayis to be set to the value of 0
2456 * milliseconds.
2457 *
2458 * SPP_PMTUD_ENABLE - This field will enable PMTU
2459 * discovery upon the specified address. Note that
2460 * if the address feild is empty then all addresses
2461 * on the association are effected.
2462 *
2463 * SPP_PMTUD_DISABLE - This field will disable PMTU
2464 * discovery upon the specified address. Note that
2465 * if the address feild is empty then all addresses
2466 * on the association are effected. Not also that
2467 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2468 * exclusive. Enabling both will have undetermined
2469 * results.
2470 *
2471 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2472 * on delayed sack. The time specified in spp_sackdelay
2473 * is used to specify the sack delay for this address. Note
2474 * that if spp_address is empty then all addresses will
2475 * enable delayed sack and take on the sack delay
2476 * value specified in spp_sackdelay.
2477 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2478 * off delayed sack. If the spp_address field is blank then
2479 * delayed sack is disabled for the entire association. Note
2480 * also that this field is mutually exclusive to
2481 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2482 * results.
2483 *
2484 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
2485 * setting of the IPV6 flow label value. The value is
2486 * contained in the spp_ipv6_flowlabel field.
2487 * Upon retrieval, this flag will be set to indicate that
2488 * the spp_ipv6_flowlabel field has a valid value returned.
2489 * If a specific destination address is set (in the
2490 * spp_address field), then the value returned is that of
2491 * the address. If just an association is specified (and
2492 * no address), then the association's default flow label
2493 * is returned. If neither an association nor a destination
2494 * is specified, then the socket's default flow label is
2495 * returned. For non-IPv6 sockets, this flag will be left
2496 * cleared.
2497 *
2498 * SPP_DSCP: Setting this flag enables the setting of the
2499 * Differentiated Services Code Point (DSCP) value
2500 * associated with either the association or a specific
2501 * address. The value is obtained in the spp_dscp field.
2502 * Upon retrieval, this flag will be set to indicate that
2503 * the spp_dscp field has a valid value returned. If a
2504 * specific destination address is set when called (in the
2505 * spp_address field), then that specific destination
2506 * address's DSCP value is returned. If just an association
2507 * is specified, then the association's default DSCP is
2508 * returned. If neither an association nor a destination is
2509 * specified, then the socket's default DSCP is returned.
2510 *
2511 * spp_ipv6_flowlabel
2512 * - This field is used in conjunction with the
2513 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
2514 * The 20 least significant bits are used for the flow
2515 * label. This setting has precedence over any IPv6-layer
2516 * setting.
2517 *
2518 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
2519 * and contains the DSCP. The 6 most significant bits are
2520 * used for the DSCP. This setting has precedence over any
2521 * IPv4- or IPv6- layer setting.
2522 */
2523static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2524 struct sctp_transport *trans,
2525 struct sctp_association *asoc,
2526 struct sctp_sock *sp,
2527 int hb_change,
2528 int pmtud_change,
2529 int sackdelay_change)
2530{
2531 int error;
2532
2533 if (params->spp_flags & SPP_HB_DEMAND && trans) {
2534 struct net *net = sock_net(trans->asoc->base.sk);
2535
2536 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
2537 if (error)
2538 return error;
2539 }
2540
2541 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2542 * this field is ignored. Note also that a value of zero indicates
2543 * the current setting should be left unchanged.
2544 */
2545 if (params->spp_flags & SPP_HB_ENABLE) {
2546
2547 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2548 * set. This lets us use 0 value when this flag
2549 * is set.
2550 */
2551 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2552 params->spp_hbinterval = 0;
2553
2554 if (params->spp_hbinterval ||
2555 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2556 if (trans) {
2557 trans->hbinterval =
2558 msecs_to_jiffies(params->spp_hbinterval);
2559 } else if (asoc) {
2560 asoc->hbinterval =
2561 msecs_to_jiffies(params->spp_hbinterval);
2562 } else {
2563 sp->hbinterval = params->spp_hbinterval;
2564 }
2565 }
2566 }
2567
2568 if (hb_change) {
2569 if (trans) {
2570 trans->param_flags =
2571 (trans->param_flags & ~SPP_HB) | hb_change;
2572 } else if (asoc) {
2573 asoc->param_flags =
2574 (asoc->param_flags & ~SPP_HB) | hb_change;
2575 } else {
2576 sp->param_flags =
2577 (sp->param_flags & ~SPP_HB) | hb_change;
2578 }
2579 }
2580
2581 /* When Path MTU discovery is disabled the value specified here will
2582 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2583 * include the flag SPP_PMTUD_DISABLE for this field to have any
2584 * effect).
2585 */
2586 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
2587 if (trans) {
2588 trans->pathmtu = params->spp_pathmtu;
2589 sctp_assoc_sync_pmtu(asoc);
2590 } else if (asoc) {
2591 sctp_assoc_set_pmtu(asoc, params->spp_pathmtu);
2592 } else {
2593 sp->pathmtu = params->spp_pathmtu;
2594 }
2595 }
2596
2597 if (pmtud_change) {
2598 if (trans) {
2599 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2600 (params->spp_flags & SPP_PMTUD_ENABLE);
2601 trans->param_flags =
2602 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2603 if (update) {
2604 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
2605 sctp_assoc_sync_pmtu(asoc);
2606 }
2607 } else if (asoc) {
2608 asoc->param_flags =
2609 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2610 } else {
2611 sp->param_flags =
2612 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2613 }
2614 }
2615
2616 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2617 * value of this field is ignored. Note also that a value of zero
2618 * indicates the current setting should be left unchanged.
2619 */
2620 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
2621 if (trans) {
2622 trans->sackdelay =
2623 msecs_to_jiffies(params->spp_sackdelay);
2624 } else if (asoc) {
2625 asoc->sackdelay =
2626 msecs_to_jiffies(params->spp_sackdelay);
2627 } else {
2628 sp->sackdelay = params->spp_sackdelay;
2629 }
2630 }
2631
2632 if (sackdelay_change) {
2633 if (trans) {
2634 trans->param_flags =
2635 (trans->param_flags & ~SPP_SACKDELAY) |
2636 sackdelay_change;
2637 } else if (asoc) {
2638 asoc->param_flags =
2639 (asoc->param_flags & ~SPP_SACKDELAY) |
2640 sackdelay_change;
2641 } else {
2642 sp->param_flags =
2643 (sp->param_flags & ~SPP_SACKDELAY) |
2644 sackdelay_change;
2645 }
2646 }
2647
2648 /* Note that a value of zero indicates the current setting should be
2649 left unchanged.
2650 */
2651 if (params->spp_pathmaxrxt) {
2652 if (trans) {
2653 trans->pathmaxrxt = params->spp_pathmaxrxt;
2654 } else if (asoc) {
2655 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2656 } else {
2657 sp->pathmaxrxt = params->spp_pathmaxrxt;
2658 }
2659 }
2660
2661 if (params->spp_flags & SPP_IPV6_FLOWLABEL) {
2662 if (trans) {
2663 if (trans->ipaddr.sa.sa_family == AF_INET6) {
2664 trans->flowlabel = params->spp_ipv6_flowlabel &
2665 SCTP_FLOWLABEL_VAL_MASK;
2666 trans->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2667 }
2668 } else if (asoc) {
2669 struct sctp_transport *t;
2670
2671 list_for_each_entry(t, &asoc->peer.transport_addr_list,
2672 transports) {
2673 if (t->ipaddr.sa.sa_family != AF_INET6)
2674 continue;
2675 t->flowlabel = params->spp_ipv6_flowlabel &
2676 SCTP_FLOWLABEL_VAL_MASK;
2677 t->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2678 }
2679 asoc->flowlabel = params->spp_ipv6_flowlabel &
2680 SCTP_FLOWLABEL_VAL_MASK;
2681 asoc->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2682 } else if (sctp_opt2sk(sp)->sk_family == AF_INET6) {
2683 sp->flowlabel = params->spp_ipv6_flowlabel &
2684 SCTP_FLOWLABEL_VAL_MASK;
2685 sp->flowlabel |= SCTP_FLOWLABEL_SET_MASK;
2686 }
2687 }
2688
2689 if (params->spp_flags & SPP_DSCP) {
2690 if (trans) {
2691 trans->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2692 trans->dscp |= SCTP_DSCP_SET_MASK;
2693 } else if (asoc) {
2694 struct sctp_transport *t;
2695
2696 list_for_each_entry(t, &asoc->peer.transport_addr_list,
2697 transports) {
2698 t->dscp = params->spp_dscp &
2699 SCTP_DSCP_VAL_MASK;
2700 t->dscp |= SCTP_DSCP_SET_MASK;
2701 }
2702 asoc->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2703 asoc->dscp |= SCTP_DSCP_SET_MASK;
2704 } else {
2705 sp->dscp = params->spp_dscp & SCTP_DSCP_VAL_MASK;
2706 sp->dscp |= SCTP_DSCP_SET_MASK;
2707 }
2708 }
2709
2710 return 0;
2711}
2712
2713static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2714 char __user *optval,
2715 unsigned int optlen)
2716{
2717 struct sctp_paddrparams params;
2718 struct sctp_transport *trans = NULL;
2719 struct sctp_association *asoc = NULL;
2720 struct sctp_sock *sp = sctp_sk(sk);
2721 int error;
2722 int hb_change, pmtud_change, sackdelay_change;
2723
2724 if (optlen == sizeof(params)) {
2725 if (copy_from_user(&params, optval, optlen))
2726 return -EFAULT;
2727 } else if (optlen == ALIGN(offsetof(struct sctp_paddrparams,
2728 spp_ipv6_flowlabel), 4)) {
2729 if (copy_from_user(&params, optval, optlen))
2730 return -EFAULT;
2731 if (params.spp_flags & (SPP_DSCP | SPP_IPV6_FLOWLABEL))
2732 return -EINVAL;
2733 } else {
2734 return -EINVAL;
2735 }
2736
2737 /* Validate flags and value parameters. */
2738 hb_change = params.spp_flags & SPP_HB;
2739 pmtud_change = params.spp_flags & SPP_PMTUD;
2740 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2741
2742 if (hb_change == SPP_HB ||
2743 pmtud_change == SPP_PMTUD ||
2744 sackdelay_change == SPP_SACKDELAY ||
2745 params.spp_sackdelay > 500 ||
2746 (params.spp_pathmtu &&
2747 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2748 return -EINVAL;
2749
2750 /* If an address other than INADDR_ANY is specified, and
2751 * no transport is found, then the request is invalid.
2752 */
2753 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
2754 trans = sctp_addr_id2transport(sk, &params.spp_address,
2755 params.spp_assoc_id);
2756 if (!trans)
2757 return -EINVAL;
2758 }
2759
2760 /* Get association, if assoc_id != 0 and the socket is a one
2761 * to many style socket, and an association was not found, then
2762 * the id was invalid.
2763 */
2764 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2765 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2766 return -EINVAL;
2767
2768 /* Heartbeat demand can only be sent on a transport or
2769 * association, but not a socket.
2770 */
2771 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2772 return -EINVAL;
2773
2774 /* Process parameters. */
2775 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2776 hb_change, pmtud_change,
2777 sackdelay_change);
2778
2779 if (error)
2780 return error;
2781
2782 /* If changes are for association, also apply parameters to each
2783 * transport.
2784 */
2785 if (!trans && asoc) {
2786 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2787 transports) {
2788 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2789 hb_change, pmtud_change,
2790 sackdelay_change);
2791 }
2792 }
2793
2794 return 0;
2795}
2796
2797static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2798{
2799 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2800}
2801
2802static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2803{
2804 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2805}
2806
2807/*
2808 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
2809 *
2810 * This option will effect the way delayed acks are performed. This
2811 * option allows you to get or set the delayed ack time, in
2812 * milliseconds. It also allows changing the delayed ack frequency.
2813 * Changing the frequency to 1 disables the delayed sack algorithm. If
2814 * the assoc_id is 0, then this sets or gets the endpoints default
2815 * values. If the assoc_id field is non-zero, then the set or get
2816 * effects the specified association for the one to many model (the
2817 * assoc_id field is ignored by the one to one model). Note that if
2818 * sack_delay or sack_freq are 0 when setting this option, then the
2819 * current values will remain unchanged.
2820 *
2821 * struct sctp_sack_info {
2822 * sctp_assoc_t sack_assoc_id;
2823 * uint32_t sack_delay;
2824 * uint32_t sack_freq;
2825 * };
2826 *
2827 * sack_assoc_id - This parameter, indicates which association the user
2828 * is performing an action upon. Note that if this field's value is
2829 * zero then the endpoints default value is changed (effecting future
2830 * associations only).
2831 *
2832 * sack_delay - This parameter contains the number of milliseconds that
2833 * the user is requesting the delayed ACK timer be set to. Note that
2834 * this value is defined in the standard to be between 200 and 500
2835 * milliseconds.
2836 *
2837 * sack_freq - This parameter contains the number of packets that must
2838 * be received before a sack is sent without waiting for the delay
2839 * timer to expire. The default value for this is 2, setting this
2840 * value to 1 will disable the delayed sack algorithm.
2841 */
2842
2843static int sctp_setsockopt_delayed_ack(struct sock *sk,
2844 char __user *optval, unsigned int optlen)
2845{
2846 struct sctp_sack_info params;
2847 struct sctp_transport *trans = NULL;
2848 struct sctp_association *asoc = NULL;
2849 struct sctp_sock *sp = sctp_sk(sk);
2850
2851 if (optlen == sizeof(struct sctp_sack_info)) {
2852 if (copy_from_user(&params, optval, optlen))
2853 return -EFAULT;
2854
2855 if (params.sack_delay == 0 && params.sack_freq == 0)
2856 return 0;
2857 } else if (optlen == sizeof(struct sctp_assoc_value)) {
2858 pr_warn_ratelimited(DEPRECATED
2859 "%s (pid %d) "
2860 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
2861 "Use struct sctp_sack_info instead\n",
2862 current->comm, task_pid_nr(current));
2863 if (copy_from_user(&params, optval, optlen))
2864 return -EFAULT;
2865
2866 if (params.sack_delay == 0)
2867 params.sack_freq = 1;
2868 else
2869 params.sack_freq = 0;
2870 } else
2871 return -EINVAL;
2872
2873 /* Validate value parameter. */
2874 if (params.sack_delay > 500)
2875 return -EINVAL;
2876
2877 /* Get association, if sack_assoc_id != 0 and the socket is a one
2878 * to many style socket, and an association was not found, then
2879 * the id was invalid.
2880 */
2881 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2882 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
2883 return -EINVAL;
2884
2885 if (params.sack_delay) {
2886 if (asoc) {
2887 asoc->sackdelay =
2888 msecs_to_jiffies(params.sack_delay);
2889 asoc->param_flags =
2890 sctp_spp_sackdelay_enable(asoc->param_flags);
2891 } else {
2892 sp->sackdelay = params.sack_delay;
2893 sp->param_flags =
2894 sctp_spp_sackdelay_enable(sp->param_flags);
2895 }
2896 }
2897
2898 if (params.sack_freq == 1) {
2899 if (asoc) {
2900 asoc->param_flags =
2901 sctp_spp_sackdelay_disable(asoc->param_flags);
2902 } else {
2903 sp->param_flags =
2904 sctp_spp_sackdelay_disable(sp->param_flags);
2905 }
2906 } else if (params.sack_freq > 1) {
2907 if (asoc) {
2908 asoc->sackfreq = params.sack_freq;
2909 asoc->param_flags =
2910 sctp_spp_sackdelay_enable(asoc->param_flags);
2911 } else {
2912 sp->sackfreq = params.sack_freq;
2913 sp->param_flags =
2914 sctp_spp_sackdelay_enable(sp->param_flags);
2915 }
2916 }
2917
2918 /* If change is for association, also apply to each transport. */
2919 if (asoc) {
2920 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2921 transports) {
2922 if (params.sack_delay) {
2923 trans->sackdelay =
2924 msecs_to_jiffies(params.sack_delay);
2925 trans->param_flags =
2926 sctp_spp_sackdelay_enable(trans->param_flags);
2927 }
2928 if (params.sack_freq == 1) {
2929 trans->param_flags =
2930 sctp_spp_sackdelay_disable(trans->param_flags);
2931 } else if (params.sack_freq > 1) {
2932 trans->sackfreq = params.sack_freq;
2933 trans->param_flags =
2934 sctp_spp_sackdelay_enable(trans->param_flags);
2935 }
2936 }
2937 }
2938
2939 return 0;
2940}
2941
2942/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2943 *
2944 * Applications can specify protocol parameters for the default association
2945 * initialization. The option name argument to setsockopt() and getsockopt()
2946 * is SCTP_INITMSG.
2947 *
2948 * Setting initialization parameters is effective only on an unconnected
2949 * socket (for UDP-style sockets only future associations are effected
2950 * by the change). With TCP-style sockets, this option is inherited by
2951 * sockets derived from a listener socket.
2952 */
2953static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
2954{
2955 struct sctp_initmsg sinit;
2956 struct sctp_sock *sp = sctp_sk(sk);
2957
2958 if (optlen != sizeof(struct sctp_initmsg))
2959 return -EINVAL;
2960 if (copy_from_user(&sinit, optval, optlen))
2961 return -EFAULT;
2962
2963 if (sinit.sinit_num_ostreams)
2964 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
2965 if (sinit.sinit_max_instreams)
2966 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
2967 if (sinit.sinit_max_attempts)
2968 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
2969 if (sinit.sinit_max_init_timeo)
2970 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
2971
2972 return 0;
2973}
2974
2975/*
2976 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2977 *
2978 * Applications that wish to use the sendto() system call may wish to
2979 * specify a default set of parameters that would normally be supplied
2980 * through the inclusion of ancillary data. This socket option allows
2981 * such an application to set the default sctp_sndrcvinfo structure.
2982 * The application that wishes to use this socket option simply passes
2983 * in to this call the sctp_sndrcvinfo structure defined in Section
2984 * 5.2.2) The input parameters accepted by this call include
2985 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2986 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2987 * to this call if the caller is using the UDP model.
2988 */
2989static int sctp_setsockopt_default_send_param(struct sock *sk,
2990 char __user *optval,
2991 unsigned int optlen)
2992{
2993 struct sctp_sock *sp = sctp_sk(sk);
2994 struct sctp_association *asoc;
2995 struct sctp_sndrcvinfo info;
2996
2997 if (optlen != sizeof(info))
2998 return -EINVAL;
2999 if (copy_from_user(&info, optval, optlen))
3000 return -EFAULT;
3001 if (info.sinfo_flags &
3002 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
3003 SCTP_ABORT | SCTP_EOF))
3004 return -EINVAL;
3005
3006 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
3007 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
3008 return -EINVAL;
3009 if (asoc) {
3010 asoc->default_stream = info.sinfo_stream;
3011 asoc->default_flags = info.sinfo_flags;
3012 asoc->default_ppid = info.sinfo_ppid;
3013 asoc->default_context = info.sinfo_context;
3014 asoc->default_timetolive = info.sinfo_timetolive;
3015 } else {
3016 sp->default_stream = info.sinfo_stream;
3017 sp->default_flags = info.sinfo_flags;
3018 sp->default_ppid = info.sinfo_ppid;
3019 sp->default_context = info.sinfo_context;
3020 sp->default_timetolive = info.sinfo_timetolive;
3021 }
3022
3023 return 0;
3024}
3025
3026/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
3027 * (SCTP_DEFAULT_SNDINFO)
3028 */
3029static int sctp_setsockopt_default_sndinfo(struct sock *sk,
3030 char __user *optval,
3031 unsigned int optlen)
3032{
3033 struct sctp_sock *sp = sctp_sk(sk);
3034 struct sctp_association *asoc;
3035 struct sctp_sndinfo info;
3036
3037 if (optlen != sizeof(info))
3038 return -EINVAL;
3039 if (copy_from_user(&info, optval, optlen))
3040 return -EFAULT;
3041 if (info.snd_flags &
3042 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
3043 SCTP_ABORT | SCTP_EOF))
3044 return -EINVAL;
3045
3046 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
3047 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
3048 return -EINVAL;
3049 if (asoc) {
3050 asoc->default_stream = info.snd_sid;
3051 asoc->default_flags = info.snd_flags;
3052 asoc->default_ppid = info.snd_ppid;
3053 asoc->default_context = info.snd_context;
3054 } else {
3055 sp->default_stream = info.snd_sid;
3056 sp->default_flags = info.snd_flags;
3057 sp->default_ppid = info.snd_ppid;
3058 sp->default_context = info.snd_context;
3059 }
3060
3061 return 0;
3062}
3063
3064/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
3065 *
3066 * Requests that the local SCTP stack use the enclosed peer address as
3067 * the association primary. The enclosed address must be one of the
3068 * association peer's addresses.
3069 */
3070static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
3071 unsigned int optlen)
3072{
3073 struct sctp_prim prim;
3074 struct sctp_transport *trans;
3075 struct sctp_af *af;
3076 int err;
3077
3078 if (optlen != sizeof(struct sctp_prim))
3079 return -EINVAL;
3080
3081 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
3082 return -EFAULT;
3083
3084 /* Allow security module to validate address but need address len. */
3085 af = sctp_get_af_specific(prim.ssp_addr.ss_family);
3086 if (!af)
3087 return -EINVAL;
3088
3089 err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
3090 (struct sockaddr *)&prim.ssp_addr,
3091 af->sockaddr_len);
3092 if (err)
3093 return err;
3094
3095 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
3096 if (!trans)
3097 return -EINVAL;
3098
3099 sctp_assoc_set_primary(trans->asoc, trans);
3100
3101 return 0;
3102}
3103
3104/*
3105 * 7.1.5 SCTP_NODELAY
3106 *
3107 * Turn on/off any Nagle-like algorithm. This means that packets are
3108 * generally sent as soon as possible and no unnecessary delays are
3109 * introduced, at the cost of more packets in the network. Expects an
3110 * integer boolean flag.
3111 */
3112static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
3113 unsigned int optlen)
3114{
3115 int val;
3116
3117 if (optlen < sizeof(int))
3118 return -EINVAL;
3119 if (get_user(val, (int __user *)optval))
3120 return -EFAULT;
3121
3122 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
3123 return 0;
3124}
3125
3126/*
3127 *
3128 * 7.1.1 SCTP_RTOINFO
3129 *
3130 * The protocol parameters used to initialize and bound retransmission
3131 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3132 * and modify these parameters.
3133 * All parameters are time values, in milliseconds. A value of 0, when
3134 * modifying the parameters, indicates that the current value should not
3135 * be changed.
3136 *
3137 */
3138static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
3139{
3140 struct sctp_rtoinfo rtoinfo;
3141 struct sctp_association *asoc;
3142 unsigned long rto_min, rto_max;
3143 struct sctp_sock *sp = sctp_sk(sk);
3144
3145 if (optlen != sizeof (struct sctp_rtoinfo))
3146 return -EINVAL;
3147
3148 if (copy_from_user(&rtoinfo, optval, optlen))
3149 return -EFAULT;
3150
3151 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
3152
3153 /* Set the values to the specific association */
3154 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
3155 return -EINVAL;
3156
3157 rto_max = rtoinfo.srto_max;
3158 rto_min = rtoinfo.srto_min;
3159
3160 if (rto_max)
3161 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3162 else
3163 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3164
3165 if (rto_min)
3166 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3167 else
3168 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3169
3170 if (rto_min > rto_max)
3171 return -EINVAL;
3172
3173 if (asoc) {
3174 if (rtoinfo.srto_initial != 0)
3175 asoc->rto_initial =
3176 msecs_to_jiffies(rtoinfo.srto_initial);
3177 asoc->rto_max = rto_max;
3178 asoc->rto_min = rto_min;
3179 } else {
3180 /* If there is no association or the association-id = 0
3181 * set the values to the endpoint.
3182 */
3183 if (rtoinfo.srto_initial != 0)
3184 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
3185 sp->rtoinfo.srto_max = rto_max;
3186 sp->rtoinfo.srto_min = rto_min;
3187 }
3188
3189 return 0;
3190}
3191
3192/*
3193 *
3194 * 7.1.2 SCTP_ASSOCINFO
3195 *
3196 * This option is used to tune the maximum retransmission attempts
3197 * of the association.
3198 * Returns an error if the new association retransmission value is
3199 * greater than the sum of the retransmission value of the peer.
3200 * See [SCTP] for more information.
3201 *
3202 */
3203static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
3204{
3205
3206 struct sctp_assocparams assocparams;
3207 struct sctp_association *asoc;
3208
3209 if (optlen != sizeof(struct sctp_assocparams))
3210 return -EINVAL;
3211 if (copy_from_user(&assocparams, optval, optlen))
3212 return -EFAULT;
3213
3214 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3215
3216 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
3217 return -EINVAL;
3218
3219 /* Set the values to the specific association */
3220 if (asoc) {
3221 if (assocparams.sasoc_asocmaxrxt != 0) {
3222 __u32 path_sum = 0;
3223 int paths = 0;
3224 struct sctp_transport *peer_addr;
3225
3226 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3227 transports) {
3228 path_sum += peer_addr->pathmaxrxt;
3229 paths++;
3230 }
3231
3232 /* Only validate asocmaxrxt if we have more than
3233 * one path/transport. We do this because path
3234 * retransmissions are only counted when we have more
3235 * then one path.
3236 */
3237 if (paths > 1 &&
3238 assocparams.sasoc_asocmaxrxt > path_sum)
3239 return -EINVAL;
3240
3241 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
3242 }
3243
3244 if (assocparams.sasoc_cookie_life != 0)
3245 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
3246 } else {
3247 /* Set the values to the endpoint */
3248 struct sctp_sock *sp = sctp_sk(sk);
3249
3250 if (assocparams.sasoc_asocmaxrxt != 0)
3251 sp->assocparams.sasoc_asocmaxrxt =
3252 assocparams.sasoc_asocmaxrxt;
3253 if (assocparams.sasoc_cookie_life != 0)
3254 sp->assocparams.sasoc_cookie_life =
3255 assocparams.sasoc_cookie_life;
3256 }
3257 return 0;
3258}
3259
3260/*
3261 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3262 *
3263 * This socket option is a boolean flag which turns on or off mapped V4
3264 * addresses. If this option is turned on and the socket is type
3265 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3266 * If this option is turned off, then no mapping will be done of V4
3267 * addresses and a user will receive both PF_INET6 and PF_INET type
3268 * addresses on the socket.
3269 */
3270static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
3271{
3272 int val;
3273 struct sctp_sock *sp = sctp_sk(sk);
3274
3275 if (optlen < sizeof(int))
3276 return -EINVAL;
3277 if (get_user(val, (int __user *)optval))
3278 return -EFAULT;
3279 if (val)
3280 sp->v4mapped = 1;
3281 else
3282 sp->v4mapped = 0;
3283
3284 return 0;
3285}
3286
3287/*
3288 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3289 * This option will get or set the maximum size to put in any outgoing
3290 * SCTP DATA chunk. If a message is larger than this size it will be
3291 * fragmented by SCTP into the specified size. Note that the underlying
3292 * SCTP implementation may fragment into smaller sized chunks when the
3293 * PMTU of the underlying association is smaller than the value set by
3294 * the user. The default value for this option is '0' which indicates
3295 * the user is NOT limiting fragmentation and only the PMTU will effect
3296 * SCTP's choice of DATA chunk size. Note also that values set larger
3297 * than the maximum size of an IP datagram will effectively let SCTP
3298 * control fragmentation (i.e. the same as setting this option to 0).
3299 *
3300 * The following structure is used to access and modify this parameter:
3301 *
3302 * struct sctp_assoc_value {
3303 * sctp_assoc_t assoc_id;
3304 * uint32_t assoc_value;
3305 * };
3306 *
3307 * assoc_id: This parameter is ignored for one-to-one style sockets.
3308 * For one-to-many style sockets this parameter indicates which
3309 * association the user is performing an action upon. Note that if
3310 * this field's value is zero then the endpoints default value is
3311 * changed (effecting future associations only).
3312 * assoc_value: This parameter specifies the maximum size in bytes.
3313 */
3314static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
3315{
3316 struct sctp_sock *sp = sctp_sk(sk);
3317 struct sctp_assoc_value params;
3318 struct sctp_association *asoc;
3319 int val;
3320
3321 if (optlen == sizeof(int)) {
3322 pr_warn_ratelimited(DEPRECATED
3323 "%s (pid %d) "
3324 "Use of int in maxseg socket option.\n"
3325 "Use struct sctp_assoc_value instead\n",
3326 current->comm, task_pid_nr(current));
3327 if (copy_from_user(&val, optval, optlen))
3328 return -EFAULT;
3329 params.assoc_id = 0;
3330 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3331 if (copy_from_user(&params, optval, optlen))
3332 return -EFAULT;
3333 val = params.assoc_value;
3334 } else {
3335 return -EINVAL;
3336 }
3337
3338 asoc = sctp_id2assoc(sk, params.assoc_id);
3339
3340 if (val) {
3341 int min_len, max_len;
3342 __u16 datasize = asoc ? sctp_datachk_len(&asoc->stream) :
3343 sizeof(struct sctp_data_chunk);
3344
3345 min_len = sctp_mtu_payload(sp, SCTP_DEFAULT_MINSEGMENT,
3346 datasize);
3347 max_len = SCTP_MAX_CHUNK_LEN - datasize;
3348
3349 if (val < min_len || val > max_len)
3350 return -EINVAL;
3351 }
3352
3353 if (asoc) {
3354 asoc->user_frag = val;
3355 sctp_assoc_update_frag_point(asoc);
3356 } else {
3357 if (params.assoc_id && sctp_style(sk, UDP))
3358 return -EINVAL;
3359 sp->user_frag = val;
3360 }
3361
3362 return 0;
3363}
3364
3365
3366/*
3367 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3368 *
3369 * Requests that the peer mark the enclosed address as the association
3370 * primary. The enclosed address must be one of the association's
3371 * locally bound addresses. The following structure is used to make a
3372 * set primary request:
3373 */
3374static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
3375 unsigned int optlen)
3376{
3377 struct net *net = sock_net(sk);
3378 struct sctp_sock *sp;
3379 struct sctp_association *asoc = NULL;
3380 struct sctp_setpeerprim prim;
3381 struct sctp_chunk *chunk;
3382 struct sctp_af *af;
3383 int err;
3384
3385 sp = sctp_sk(sk);
3386
3387 if (!net->sctp.addip_enable)
3388 return -EPERM;
3389
3390 if (optlen != sizeof(struct sctp_setpeerprim))
3391 return -EINVAL;
3392
3393 if (copy_from_user(&prim, optval, optlen))
3394 return -EFAULT;
3395
3396 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
3397 if (!asoc)
3398 return -EINVAL;
3399
3400 if (!asoc->peer.asconf_capable)
3401 return -EPERM;
3402
3403 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3404 return -EPERM;
3405
3406 if (!sctp_state(asoc, ESTABLISHED))
3407 return -ENOTCONN;
3408
3409 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3410 if (!af)
3411 return -EINVAL;
3412
3413 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3414 return -EADDRNOTAVAIL;
3415
3416 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3417 return -EADDRNOTAVAIL;
3418
3419 /* Allow security module to validate address. */
3420 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3421 (struct sockaddr *)&prim.sspp_addr,
3422 af->sockaddr_len);
3423 if (err)
3424 return err;
3425
3426 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3427 chunk = sctp_make_asconf_set_prim(asoc,
3428 (union sctp_addr *)&prim.sspp_addr);
3429 if (!chunk)
3430 return -ENOMEM;
3431
3432 err = sctp_send_asconf(asoc, chunk);
3433
3434 pr_debug("%s: we set peer primary addr primitively\n", __func__);
3435
3436 return err;
3437}
3438
3439static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
3440 unsigned int optlen)
3441{
3442 struct sctp_setadaptation adaptation;
3443
3444 if (optlen != sizeof(struct sctp_setadaptation))
3445 return -EINVAL;
3446 if (copy_from_user(&adaptation, optval, optlen))
3447 return -EFAULT;
3448
3449 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
3450
3451 return 0;
3452}
3453
3454/*
3455 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3456 *
3457 * The context field in the sctp_sndrcvinfo structure is normally only
3458 * used when a failed message is retrieved holding the value that was
3459 * sent down on the actual send call. This option allows the setting of
3460 * a default context on an association basis that will be received on
3461 * reading messages from the peer. This is especially helpful in the
3462 * one-2-many model for an application to keep some reference to an
3463 * internal state machine that is processing messages on the
3464 * association. Note that the setting of this value only effects
3465 * received messages from the peer and does not effect the value that is
3466 * saved with outbound messages.
3467 */
3468static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
3469 unsigned int optlen)
3470{
3471 struct sctp_assoc_value params;
3472 struct sctp_sock *sp;
3473 struct sctp_association *asoc;
3474
3475 if (optlen != sizeof(struct sctp_assoc_value))
3476 return -EINVAL;
3477 if (copy_from_user(&params, optval, optlen))
3478 return -EFAULT;
3479
3480 sp = sctp_sk(sk);
3481
3482 if (params.assoc_id != 0) {
3483 asoc = sctp_id2assoc(sk, params.assoc_id);
3484 if (!asoc)
3485 return -EINVAL;
3486 asoc->default_rcv_context = params.assoc_value;
3487 } else {
3488 sp->default_rcv_context = params.assoc_value;
3489 }
3490
3491 return 0;
3492}
3493
3494/*
3495 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3496 *
3497 * This options will at a minimum specify if the implementation is doing
3498 * fragmented interleave. Fragmented interleave, for a one to many
3499 * socket, is when subsequent calls to receive a message may return
3500 * parts of messages from different associations. Some implementations
3501 * may allow you to turn this value on or off. If so, when turned off,
3502 * no fragment interleave will occur (which will cause a head of line
3503 * blocking amongst multiple associations sharing the same one to many
3504 * socket). When this option is turned on, then each receive call may
3505 * come from a different association (thus the user must receive data
3506 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3507 * association each receive belongs to.
3508 *
3509 * This option takes a boolean value. A non-zero value indicates that
3510 * fragmented interleave is on. A value of zero indicates that
3511 * fragmented interleave is off.
3512 *
3513 * Note that it is important that an implementation that allows this
3514 * option to be turned on, have it off by default. Otherwise an unaware
3515 * application using the one to many model may become confused and act
3516 * incorrectly.
3517 */
3518static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3519 char __user *optval,
3520 unsigned int optlen)
3521{
3522 int val;
3523
3524 if (optlen != sizeof(int))
3525 return -EINVAL;
3526 if (get_user(val, (int __user *)optval))
3527 return -EFAULT;
3528
3529 sctp_sk(sk)->frag_interleave = !!val;
3530
3531 if (!sctp_sk(sk)->frag_interleave)
3532 sctp_sk(sk)->strm_interleave = 0;
3533
3534 return 0;
3535}
3536
3537/*
3538 * 8.1.21. Set or Get the SCTP Partial Delivery Point
3539 * (SCTP_PARTIAL_DELIVERY_POINT)
3540 *
3541 * This option will set or get the SCTP partial delivery point. This
3542 * point is the size of a message where the partial delivery API will be
3543 * invoked to help free up rwnd space for the peer. Setting this to a
3544 * lower value will cause partial deliveries to happen more often. The
3545 * calls argument is an integer that sets or gets the partial delivery
3546 * point. Note also that the call will fail if the user attempts to set
3547 * this value larger than the socket receive buffer size.
3548 *
3549 * Note that any single message having a length smaller than or equal to
3550 * the SCTP partial delivery point will be delivered in one single read
3551 * call as long as the user provided buffer is large enough to hold the
3552 * message.
3553 */
3554static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3555 char __user *optval,
3556 unsigned int optlen)
3557{
3558 u32 val;
3559
3560 if (optlen != sizeof(u32))
3561 return -EINVAL;
3562 if (get_user(val, (int __user *)optval))
3563 return -EFAULT;
3564
3565 /* Note: We double the receive buffer from what the user sets
3566 * it to be, also initial rwnd is based on rcvbuf/2.
3567 */
3568 if (val > (sk->sk_rcvbuf >> 1))
3569 return -EINVAL;
3570
3571 sctp_sk(sk)->pd_point = val;
3572
3573 return 0; /* is this the right error code? */
3574}
3575
3576/*
3577 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3578 *
3579 * This option will allow a user to change the maximum burst of packets
3580 * that can be emitted by this association. Note that the default value
3581 * is 4, and some implementations may restrict this setting so that it
3582 * can only be lowered.
3583 *
3584 * NOTE: This text doesn't seem right. Do this on a socket basis with
3585 * future associations inheriting the socket value.
3586 */
3587static int sctp_setsockopt_maxburst(struct sock *sk,
3588 char __user *optval,
3589 unsigned int optlen)
3590{
3591 struct sctp_assoc_value params;
3592 struct sctp_sock *sp;
3593 struct sctp_association *asoc;
3594 int val;
3595 int assoc_id = 0;
3596
3597 if (optlen == sizeof(int)) {
3598 pr_warn_ratelimited(DEPRECATED
3599 "%s (pid %d) "
3600 "Use of int in max_burst socket option deprecated.\n"
3601 "Use struct sctp_assoc_value instead\n",
3602 current->comm, task_pid_nr(current));
3603 if (copy_from_user(&val, optval, optlen))
3604 return -EFAULT;
3605 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3606 if (copy_from_user(&params, optval, optlen))
3607 return -EFAULT;
3608 val = params.assoc_value;
3609 assoc_id = params.assoc_id;
3610 } else
3611 return -EINVAL;
3612
3613 sp = sctp_sk(sk);
3614
3615 if (assoc_id != 0) {
3616 asoc = sctp_id2assoc(sk, assoc_id);
3617 if (!asoc)
3618 return -EINVAL;
3619 asoc->max_burst = val;
3620 } else
3621 sp->max_burst = val;
3622
3623 return 0;
3624}
3625
3626/*
3627 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3628 *
3629 * This set option adds a chunk type that the user is requesting to be
3630 * received only in an authenticated way. Changes to the list of chunks
3631 * will only effect future associations on the socket.
3632 */
3633static int sctp_setsockopt_auth_chunk(struct sock *sk,
3634 char __user *optval,
3635 unsigned int optlen)
3636{
3637 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3638 struct sctp_authchunk val;
3639
3640 if (!ep->auth_enable)
3641 return -EACCES;
3642
3643 if (optlen != sizeof(struct sctp_authchunk))
3644 return -EINVAL;
3645 if (copy_from_user(&val, optval, optlen))
3646 return -EFAULT;
3647
3648 switch (val.sauth_chunk) {
3649 case SCTP_CID_INIT:
3650 case SCTP_CID_INIT_ACK:
3651 case SCTP_CID_SHUTDOWN_COMPLETE:
3652 case SCTP_CID_AUTH:
3653 return -EINVAL;
3654 }
3655
3656 /* add this chunk id to the endpoint */
3657 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
3658}
3659
3660/*
3661 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3662 *
3663 * This option gets or sets the list of HMAC algorithms that the local
3664 * endpoint requires the peer to use.
3665 */
3666static int sctp_setsockopt_hmac_ident(struct sock *sk,
3667 char __user *optval,
3668 unsigned int optlen)
3669{
3670 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3671 struct sctp_hmacalgo *hmacs;
3672 u32 idents;
3673 int err;
3674
3675 if (!ep->auth_enable)
3676 return -EACCES;
3677
3678 if (optlen < sizeof(struct sctp_hmacalgo))
3679 return -EINVAL;
3680 optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3681 SCTP_AUTH_NUM_HMACS * sizeof(u16));
3682
3683 hmacs = memdup_user(optval, optlen);
3684 if (IS_ERR(hmacs))
3685 return PTR_ERR(hmacs);
3686
3687 idents = hmacs->shmac_num_idents;
3688 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3689 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
3690 err = -EINVAL;
3691 goto out;
3692 }
3693
3694 err = sctp_auth_ep_set_hmacs(ep, hmacs);
3695out:
3696 kfree(hmacs);
3697 return err;
3698}
3699
3700/*
3701 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3702 *
3703 * This option will set a shared secret key which is used to build an
3704 * association shared key.
3705 */
3706static int sctp_setsockopt_auth_key(struct sock *sk,
3707 char __user *optval,
3708 unsigned int optlen)
3709{
3710 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3711 struct sctp_authkey *authkey;
3712 struct sctp_association *asoc;
3713 int ret;
3714
3715 if (!ep->auth_enable)
3716 return -EACCES;
3717
3718 if (optlen <= sizeof(struct sctp_authkey))
3719 return -EINVAL;
3720 /* authkey->sca_keylength is u16, so optlen can't be bigger than
3721 * this.
3722 */
3723 optlen = min_t(unsigned int, optlen, USHRT_MAX +
3724 sizeof(struct sctp_authkey));
3725
3726 authkey = memdup_user(optval, optlen);
3727 if (IS_ERR(authkey))
3728 return PTR_ERR(authkey);
3729
3730 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
3731 ret = -EINVAL;
3732 goto out;
3733 }
3734
3735 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3736 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3737 ret = -EINVAL;
3738 goto out;
3739 }
3740
3741 ret = sctp_auth_set_key(ep, asoc, authkey);
3742out:
3743 kzfree(authkey);
3744 return ret;
3745}
3746
3747/*
3748 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3749 *
3750 * This option will get or set the active shared key to be used to build
3751 * the association shared key.
3752 */
3753static int sctp_setsockopt_active_key(struct sock *sk,
3754 char __user *optval,
3755 unsigned int optlen)
3756{
3757 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3758 struct sctp_authkeyid val;
3759 struct sctp_association *asoc;
3760
3761 if (!ep->auth_enable)
3762 return -EACCES;
3763
3764 if (optlen != sizeof(struct sctp_authkeyid))
3765 return -EINVAL;
3766 if (copy_from_user(&val, optval, optlen))
3767 return -EFAULT;
3768
3769 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3770 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3771 return -EINVAL;
3772
3773 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
3774}
3775
3776/*
3777 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3778 *
3779 * This set option will delete a shared secret key from use.
3780 */
3781static int sctp_setsockopt_del_key(struct sock *sk,
3782 char __user *optval,
3783 unsigned int optlen)
3784{
3785 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3786 struct sctp_authkeyid val;
3787 struct sctp_association *asoc;
3788
3789 if (!ep->auth_enable)
3790 return -EACCES;
3791
3792 if (optlen != sizeof(struct sctp_authkeyid))
3793 return -EINVAL;
3794 if (copy_from_user(&val, optval, optlen))
3795 return -EFAULT;
3796
3797 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3798 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3799 return -EINVAL;
3800
3801 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
3802
3803}
3804
3805/*
3806 * 8.3.4 Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3807 *
3808 * This set option will deactivate a shared secret key.
3809 */
3810static int sctp_setsockopt_deactivate_key(struct sock *sk, char __user *optval,
3811 unsigned int optlen)
3812{
3813 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3814 struct sctp_authkeyid val;
3815 struct sctp_association *asoc;
3816
3817 if (!ep->auth_enable)
3818 return -EACCES;
3819
3820 if (optlen != sizeof(struct sctp_authkeyid))
3821 return -EINVAL;
3822 if (copy_from_user(&val, optval, optlen))
3823 return -EFAULT;
3824
3825 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3826 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3827 return -EINVAL;
3828
3829 return sctp_auth_deact_key_id(ep, asoc, val.scact_keynumber);
3830}
3831
3832/*
3833 * 8.1.23 SCTP_AUTO_ASCONF
3834 *
3835 * This option will enable or disable the use of the automatic generation of
3836 * ASCONF chunks to add and delete addresses to an existing association. Note
3837 * that this option has two caveats namely: a) it only affects sockets that
3838 * are bound to all addresses available to the SCTP stack, and b) the system
3839 * administrator may have an overriding control that turns the ASCONF feature
3840 * off no matter what setting the socket option may have.
3841 * This option expects an integer boolean flag, where a non-zero value turns on
3842 * the option, and a zero value turns off the option.
3843 * Note. In this implementation, socket operation overrides default parameter
3844 * being set by sysctl as well as FreeBSD implementation
3845 */
3846static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3847 unsigned int optlen)
3848{
3849 int val;
3850 struct sctp_sock *sp = sctp_sk(sk);
3851
3852 if (optlen < sizeof(int))
3853 return -EINVAL;
3854 if (get_user(val, (int __user *)optval))
3855 return -EFAULT;
3856 if (!sctp_is_ep_boundall(sk) && val)
3857 return -EINVAL;
3858 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3859 return 0;
3860
3861 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
3862 if (val == 0 && sp->do_auto_asconf) {
3863 list_del(&sp->auto_asconf_list);
3864 sp->do_auto_asconf = 0;
3865 } else if (val && !sp->do_auto_asconf) {
3866 list_add_tail(&sp->auto_asconf_list,
3867 &sock_net(sk)->sctp.auto_asconf_splist);
3868 sp->do_auto_asconf = 1;
3869 }
3870 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
3871 return 0;
3872}
3873
3874/*
3875 * SCTP_PEER_ADDR_THLDS
3876 *
3877 * This option allows us to alter the partially failed threshold for one or all
3878 * transports in an association. See Section 6.1 of:
3879 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3880 */
3881static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3882 char __user *optval,
3883 unsigned int optlen)
3884{
3885 struct sctp_paddrthlds val;
3886 struct sctp_transport *trans;
3887 struct sctp_association *asoc;
3888
3889 if (optlen < sizeof(struct sctp_paddrthlds))
3890 return -EINVAL;
3891 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3892 sizeof(struct sctp_paddrthlds)))
3893 return -EFAULT;
3894
3895
3896 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3897 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3898 if (!asoc)
3899 return -ENOENT;
3900 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3901 transports) {
3902 if (val.spt_pathmaxrxt)
3903 trans->pathmaxrxt = val.spt_pathmaxrxt;
3904 trans->pf_retrans = val.spt_pathpfthld;
3905 }
3906
3907 if (val.spt_pathmaxrxt)
3908 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3909 asoc->pf_retrans = val.spt_pathpfthld;
3910 } else {
3911 trans = sctp_addr_id2transport(sk, &val.spt_address,
3912 val.spt_assoc_id);
3913 if (!trans)
3914 return -ENOENT;
3915
3916 if (val.spt_pathmaxrxt)
3917 trans->pathmaxrxt = val.spt_pathmaxrxt;
3918 trans->pf_retrans = val.spt_pathpfthld;
3919 }
3920
3921 return 0;
3922}
3923
3924static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3925 char __user *optval,
3926 unsigned int optlen)
3927{
3928 int val;
3929
3930 if (optlen < sizeof(int))
3931 return -EINVAL;
3932 if (get_user(val, (int __user *) optval))
3933 return -EFAULT;
3934
3935 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3936
3937 return 0;
3938}
3939
3940static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3941 char __user *optval,
3942 unsigned int optlen)
3943{
3944 int val;
3945
3946 if (optlen < sizeof(int))
3947 return -EINVAL;
3948 if (get_user(val, (int __user *) optval))
3949 return -EFAULT;
3950
3951 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3952
3953 return 0;
3954}
3955
3956static int sctp_setsockopt_pr_supported(struct sock *sk,
3957 char __user *optval,
3958 unsigned int optlen)
3959{
3960 struct sctp_assoc_value params;
3961
3962 if (optlen != sizeof(params))
3963 return -EINVAL;
3964
3965 if (copy_from_user(&params, optval, optlen))
3966 return -EFAULT;
3967
3968 sctp_sk(sk)->ep->prsctp_enable = !!params.assoc_value;
3969
3970 return 0;
3971}
3972
3973static int sctp_setsockopt_default_prinfo(struct sock *sk,
3974 char __user *optval,
3975 unsigned int optlen)
3976{
3977 struct sctp_default_prinfo info;
3978 struct sctp_association *asoc;
3979 int retval = -EINVAL;
3980
3981 if (optlen != sizeof(info))
3982 goto out;
3983
3984 if (copy_from_user(&info, optval, sizeof(info))) {
3985 retval = -EFAULT;
3986 goto out;
3987 }
3988
3989 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
3990 goto out;
3991
3992 if (info.pr_policy == SCTP_PR_SCTP_NONE)
3993 info.pr_value = 0;
3994
3995 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
3996 if (asoc) {
3997 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
3998 asoc->default_timetolive = info.pr_value;
3999 } else if (!info.pr_assoc_id) {
4000 struct sctp_sock *sp = sctp_sk(sk);
4001
4002 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
4003 sp->default_timetolive = info.pr_value;
4004 } else {
4005 goto out;
4006 }
4007
4008 retval = 0;
4009
4010out:
4011 return retval;
4012}
4013
4014static int sctp_setsockopt_reconfig_supported(struct sock *sk,
4015 char __user *optval,
4016 unsigned int optlen)
4017{
4018 struct sctp_assoc_value params;
4019 struct sctp_association *asoc;
4020 int retval = -EINVAL;
4021
4022 if (optlen != sizeof(params))
4023 goto out;
4024
4025 if (copy_from_user(&params, optval, optlen)) {
4026 retval = -EFAULT;
4027 goto out;
4028 }
4029
4030 asoc = sctp_id2assoc(sk, params.assoc_id);
4031 if (asoc) {
4032 asoc->reconf_enable = !!params.assoc_value;
4033 } else if (!params.assoc_id) {
4034 struct sctp_sock *sp = sctp_sk(sk);
4035
4036 sp->ep->reconf_enable = !!params.assoc_value;
4037 } else {
4038 goto out;
4039 }
4040
4041 retval = 0;
4042
4043out:
4044 return retval;
4045}
4046
4047static int sctp_setsockopt_enable_strreset(struct sock *sk,
4048 char __user *optval,
4049 unsigned int optlen)
4050{
4051 struct sctp_assoc_value params;
4052 struct sctp_association *asoc;
4053 int retval = -EINVAL;
4054
4055 if (optlen != sizeof(params))
4056 goto out;
4057
4058 if (copy_from_user(&params, optval, optlen)) {
4059 retval = -EFAULT;
4060 goto out;
4061 }
4062
4063 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
4064 goto out;
4065
4066 asoc = sctp_id2assoc(sk, params.assoc_id);
4067 if (asoc) {
4068 asoc->strreset_enable = params.assoc_value;
4069 } else if (!params.assoc_id) {
4070 struct sctp_sock *sp = sctp_sk(sk);
4071
4072 sp->ep->strreset_enable = params.assoc_value;
4073 } else {
4074 goto out;
4075 }
4076
4077 retval = 0;
4078
4079out:
4080 return retval;
4081}
4082
4083static int sctp_setsockopt_reset_streams(struct sock *sk,
4084 char __user *optval,
4085 unsigned int optlen)
4086{
4087 struct sctp_reset_streams *params;
4088 struct sctp_association *asoc;
4089 int retval = -EINVAL;
4090
4091 if (optlen < sizeof(*params))
4092 return -EINVAL;
4093 /* srs_number_streams is u16, so optlen can't be bigger than this. */
4094 optlen = min_t(unsigned int, optlen, USHRT_MAX +
4095 sizeof(__u16) * sizeof(*params));
4096
4097 params = memdup_user(optval, optlen);
4098 if (IS_ERR(params))
4099 return PTR_ERR(params);
4100
4101 if (params->srs_number_streams * sizeof(__u16) >
4102 optlen - sizeof(*params))
4103 goto out;
4104
4105 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4106 if (!asoc)
4107 goto out;
4108
4109 retval = sctp_send_reset_streams(asoc, params);
4110
4111out:
4112 kfree(params);
4113 return retval;
4114}
4115
4116static int sctp_setsockopt_reset_assoc(struct sock *sk,
4117 char __user *optval,
4118 unsigned int optlen)
4119{
4120 struct sctp_association *asoc;
4121 sctp_assoc_t associd;
4122 int retval = -EINVAL;
4123
4124 if (optlen != sizeof(associd))
4125 goto out;
4126
4127 if (copy_from_user(&associd, optval, optlen)) {
4128 retval = -EFAULT;
4129 goto out;
4130 }
4131
4132 asoc = sctp_id2assoc(sk, associd);
4133 if (!asoc)
4134 goto out;
4135
4136 retval = sctp_send_reset_assoc(asoc);
4137
4138out:
4139 return retval;
4140}
4141
4142static int sctp_setsockopt_add_streams(struct sock *sk,
4143 char __user *optval,
4144 unsigned int optlen)
4145{
4146 struct sctp_association *asoc;
4147 struct sctp_add_streams params;
4148 int retval = -EINVAL;
4149
4150 if (optlen != sizeof(params))
4151 goto out;
4152
4153 if (copy_from_user(&params, optval, optlen)) {
4154 retval = -EFAULT;
4155 goto out;
4156 }
4157
4158 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
4159 if (!asoc)
4160 goto out;
4161
4162 retval = sctp_send_add_streams(asoc, &params);
4163
4164out:
4165 return retval;
4166}
4167
4168static int sctp_setsockopt_scheduler(struct sock *sk,
4169 char __user *optval,
4170 unsigned int optlen)
4171{
4172 struct sctp_association *asoc;
4173 struct sctp_assoc_value params;
4174 int retval = -EINVAL;
4175
4176 if (optlen < sizeof(params))
4177 goto out;
4178
4179 optlen = sizeof(params);
4180 if (copy_from_user(&params, optval, optlen)) {
4181 retval = -EFAULT;
4182 goto out;
4183 }
4184
4185 if (params.assoc_value > SCTP_SS_MAX)
4186 goto out;
4187
4188 asoc = sctp_id2assoc(sk, params.assoc_id);
4189 if (!asoc)
4190 goto out;
4191
4192 retval = sctp_sched_set_sched(asoc, params.assoc_value);
4193
4194out:
4195 return retval;
4196}
4197
4198static int sctp_setsockopt_scheduler_value(struct sock *sk,
4199 char __user *optval,
4200 unsigned int optlen)
4201{
4202 struct sctp_association *asoc;
4203 struct sctp_stream_value params;
4204 int retval = -EINVAL;
4205
4206 if (optlen < sizeof(params))
4207 goto out;
4208
4209 optlen = sizeof(params);
4210 if (copy_from_user(&params, optval, optlen)) {
4211 retval = -EFAULT;
4212 goto out;
4213 }
4214
4215 asoc = sctp_id2assoc(sk, params.assoc_id);
4216 if (!asoc)
4217 goto out;
4218
4219 retval = sctp_sched_set_value(asoc, params.stream_id,
4220 params.stream_value, GFP_KERNEL);
4221
4222out:
4223 return retval;
4224}
4225
4226static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4227 char __user *optval,
4228 unsigned int optlen)
4229{
4230 struct sctp_sock *sp = sctp_sk(sk);
4231 struct net *net = sock_net(sk);
4232 struct sctp_assoc_value params;
4233 int retval = -EINVAL;
4234
4235 if (optlen < sizeof(params))
4236 goto out;
4237
4238 optlen = sizeof(params);
4239 if (copy_from_user(&params, optval, optlen)) {
4240 retval = -EFAULT;
4241 goto out;
4242 }
4243
4244 if (params.assoc_id)
4245 goto out;
4246
4247 if (!net->sctp.intl_enable || !sp->frag_interleave) {
4248 retval = -EPERM;
4249 goto out;
4250 }
4251
4252 sp->strm_interleave = !!params.assoc_value;
4253
4254 retval = 0;
4255
4256out:
4257 return retval;
4258}
4259
4260static int sctp_setsockopt_reuse_port(struct sock *sk, char __user *optval,
4261 unsigned int optlen)
4262{
4263 int val;
4264
4265 if (!sctp_style(sk, TCP))
4266 return -EOPNOTSUPP;
4267
4268 if (sctp_sk(sk)->ep->base.bind_addr.port)
4269 return -EFAULT;
4270
4271 if (optlen < sizeof(int))
4272 return -EINVAL;
4273
4274 if (get_user(val, (int __user *)optval))
4275 return -EFAULT;
4276
4277 sctp_sk(sk)->reuse = !!val;
4278
4279 return 0;
4280}
4281
4282/* API 6.2 setsockopt(), getsockopt()
4283 *
4284 * Applications use setsockopt() and getsockopt() to set or retrieve
4285 * socket options. Socket options are used to change the default
4286 * behavior of sockets calls. They are described in Section 7.
4287 *
4288 * The syntax is:
4289 *
4290 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
4291 * int __user *optlen);
4292 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4293 * int optlen);
4294 *
4295 * sd - the socket descript.
4296 * level - set to IPPROTO_SCTP for all SCTP options.
4297 * optname - the option name.
4298 * optval - the buffer to store the value of the option.
4299 * optlen - the size of the buffer.
4300 */
4301static int sctp_setsockopt(struct sock *sk, int level, int optname,
4302 char __user *optval, unsigned int optlen)
4303{
4304 int retval = 0;
4305
4306 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
4307
4308 /* I can hardly begin to describe how wrong this is. This is
4309 * so broken as to be worse than useless. The API draft
4310 * REALLY is NOT helpful here... I am not convinced that the
4311 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4312 * are at all well-founded.
4313 */
4314 if (level != SOL_SCTP) {
4315 struct sctp_af *af = sctp_sk(sk)->pf->af;
4316 retval = af->setsockopt(sk, level, optname, optval, optlen);
4317 goto out_nounlock;
4318 }
4319
4320 lock_sock(sk);
4321
4322 switch (optname) {
4323 case SCTP_SOCKOPT_BINDX_ADD:
4324 /* 'optlen' is the size of the addresses buffer. */
4325 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4326 optlen, SCTP_BINDX_ADD_ADDR);
4327 break;
4328
4329 case SCTP_SOCKOPT_BINDX_REM:
4330 /* 'optlen' is the size of the addresses buffer. */
4331 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4332 optlen, SCTP_BINDX_REM_ADDR);
4333 break;
4334
4335 case SCTP_SOCKOPT_CONNECTX_OLD:
4336 /* 'optlen' is the size of the addresses buffer. */
4337 retval = sctp_setsockopt_connectx_old(sk,
4338 (struct sockaddr __user *)optval,
4339 optlen);
4340 break;
4341
4342 case SCTP_SOCKOPT_CONNECTX:
4343 /* 'optlen' is the size of the addresses buffer. */
4344 retval = sctp_setsockopt_connectx(sk,
4345 (struct sockaddr __user *)optval,
4346 optlen);
4347 break;
4348
4349 case SCTP_DISABLE_FRAGMENTS:
4350 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
4351 break;
4352
4353 case SCTP_EVENTS:
4354 retval = sctp_setsockopt_events(sk, optval, optlen);
4355 break;
4356
4357 case SCTP_AUTOCLOSE:
4358 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
4359 break;
4360
4361 case SCTP_PEER_ADDR_PARAMS:
4362 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
4363 break;
4364
4365 case SCTP_DELAYED_SACK:
4366 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
4367 break;
4368 case SCTP_PARTIAL_DELIVERY_POINT:
4369 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
4370 break;
4371
4372 case SCTP_INITMSG:
4373 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4374 break;
4375 case SCTP_DEFAULT_SEND_PARAM:
4376 retval = sctp_setsockopt_default_send_param(sk, optval,
4377 optlen);
4378 break;
4379 case SCTP_DEFAULT_SNDINFO:
4380 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4381 break;
4382 case SCTP_PRIMARY_ADDR:
4383 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4384 break;
4385 case SCTP_SET_PEER_PRIMARY_ADDR:
4386 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4387 break;
4388 case SCTP_NODELAY:
4389 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4390 break;
4391 case SCTP_RTOINFO:
4392 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4393 break;
4394 case SCTP_ASSOCINFO:
4395 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4396 break;
4397 case SCTP_I_WANT_MAPPED_V4_ADDR:
4398 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4399 break;
4400 case SCTP_MAXSEG:
4401 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4402 break;
4403 case SCTP_ADAPTATION_LAYER:
4404 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
4405 break;
4406 case SCTP_CONTEXT:
4407 retval = sctp_setsockopt_context(sk, optval, optlen);
4408 break;
4409 case SCTP_FRAGMENT_INTERLEAVE:
4410 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4411 break;
4412 case SCTP_MAX_BURST:
4413 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4414 break;
4415 case SCTP_AUTH_CHUNK:
4416 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4417 break;
4418 case SCTP_HMAC_IDENT:
4419 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4420 break;
4421 case SCTP_AUTH_KEY:
4422 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4423 break;
4424 case SCTP_AUTH_ACTIVE_KEY:
4425 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4426 break;
4427 case SCTP_AUTH_DELETE_KEY:
4428 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4429 break;
4430 case SCTP_AUTH_DEACTIVATE_KEY:
4431 retval = sctp_setsockopt_deactivate_key(sk, optval, optlen);
4432 break;
4433 case SCTP_AUTO_ASCONF:
4434 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4435 break;
4436 case SCTP_PEER_ADDR_THLDS:
4437 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4438 break;
4439 case SCTP_RECVRCVINFO:
4440 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4441 break;
4442 case SCTP_RECVNXTINFO:
4443 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4444 break;
4445 case SCTP_PR_SUPPORTED:
4446 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4447 break;
4448 case SCTP_DEFAULT_PRINFO:
4449 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4450 break;
4451 case SCTP_RECONFIG_SUPPORTED:
4452 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4453 break;
4454 case SCTP_ENABLE_STREAM_RESET:
4455 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4456 break;
4457 case SCTP_RESET_STREAMS:
4458 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4459 break;
4460 case SCTP_RESET_ASSOC:
4461 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4462 break;
4463 case SCTP_ADD_STREAMS:
4464 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4465 break;
4466 case SCTP_STREAM_SCHEDULER:
4467 retval = sctp_setsockopt_scheduler(sk, optval, optlen);
4468 break;
4469 case SCTP_STREAM_SCHEDULER_VALUE:
4470 retval = sctp_setsockopt_scheduler_value(sk, optval, optlen);
4471 break;
4472 case SCTP_INTERLEAVING_SUPPORTED:
4473 retval = sctp_setsockopt_interleaving_supported(sk, optval,
4474 optlen);
4475 break;
4476 case SCTP_REUSE_PORT:
4477 retval = sctp_setsockopt_reuse_port(sk, optval, optlen);
4478 break;
4479 default:
4480 retval = -ENOPROTOOPT;
4481 break;
4482 }
4483
4484 release_sock(sk);
4485
4486out_nounlock:
4487 return retval;
4488}
4489
4490/* API 3.1.6 connect() - UDP Style Syntax
4491 *
4492 * An application may use the connect() call in the UDP model to initiate an
4493 * association without sending data.
4494 *
4495 * The syntax is:
4496 *
4497 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4498 *
4499 * sd: the socket descriptor to have a new association added to.
4500 *
4501 * nam: the address structure (either struct sockaddr_in or struct
4502 * sockaddr_in6 defined in RFC2553 [7]).
4503 *
4504 * len: the size of the address.
4505 */
4506static int sctp_connect(struct sock *sk, struct sockaddr *addr,
4507 int addr_len, int flags)
4508{
4509 struct inet_sock *inet = inet_sk(sk);
4510 struct sctp_af *af;
4511 int err = 0;
4512
4513 lock_sock(sk);
4514
4515 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4516 addr, addr_len);
4517
4518 /* We may need to bind the socket. */
4519 if (!inet->inet_num) {
4520 if (sk->sk_prot->get_port(sk, 0)) {
4521 release_sock(sk);
4522 return -EAGAIN;
4523 }
4524 inet->inet_sport = htons(inet->inet_num);
4525 }
4526
4527 /* Validate addr_len before calling common connect/connectx routine. */
4528 af = sctp_get_af_specific(addr->sa_family);
4529 if (!af || addr_len < af->sockaddr_len) {
4530 err = -EINVAL;
4531 } else {
4532 /* Pass correct addr len to common routine (so it knows there
4533 * is only one address being passed.
4534 */
4535 err = __sctp_connect(sk, addr, af->sockaddr_len, flags, NULL);
4536 }
4537
4538 release_sock(sk);
4539 return err;
4540}
4541
4542int sctp_inet_connect(struct socket *sock, struct sockaddr *uaddr,
4543 int addr_len, int flags)
4544{
4545 if (addr_len < sizeof(uaddr->sa_family))
4546 return -EINVAL;
4547
4548 if (uaddr->sa_family == AF_UNSPEC)
4549 return -EOPNOTSUPP;
4550
4551 return sctp_connect(sock->sk, uaddr, addr_len, flags);
4552}
4553
4554/* FIXME: Write comments. */
4555static int sctp_disconnect(struct sock *sk, int flags)
4556{
4557 return -EOPNOTSUPP; /* STUB */
4558}
4559
4560/* 4.1.4 accept() - TCP Style Syntax
4561 *
4562 * Applications use accept() call to remove an established SCTP
4563 * association from the accept queue of the endpoint. A new socket
4564 * descriptor will be returned from accept() to represent the newly
4565 * formed association.
4566 */
4567static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
4568{
4569 struct sctp_sock *sp;
4570 struct sctp_endpoint *ep;
4571 struct sock *newsk = NULL;
4572 struct sctp_association *asoc;
4573 long timeo;
4574 int error = 0;
4575
4576 lock_sock(sk);
4577
4578 sp = sctp_sk(sk);
4579 ep = sp->ep;
4580
4581 if (!sctp_style(sk, TCP)) {
4582 error = -EOPNOTSUPP;
4583 goto out;
4584 }
4585
4586 if (!sctp_sstate(sk, LISTENING)) {
4587 error = -EINVAL;
4588 goto out;
4589 }
4590
4591 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
4592
4593 error = sctp_wait_for_accept(sk, timeo);
4594 if (error)
4595 goto out;
4596
4597 /* We treat the list of associations on the endpoint as the accept
4598 * queue and pick the first association on the list.
4599 */
4600 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4601
4602 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
4603 if (!newsk) {
4604 error = -ENOMEM;
4605 goto out;
4606 }
4607
4608 /* Populate the fields of the newsk from the oldsk and migrate the
4609 * asoc to the newsk.
4610 */
4611 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4612
4613out:
4614 release_sock(sk);
4615 *err = error;
4616 return newsk;
4617}
4618
4619/* The SCTP ioctl handler. */
4620static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
4621{
4622 int rc = -ENOTCONN;
4623
4624 lock_sock(sk);
4625
4626 /*
4627 * SEQPACKET-style sockets in LISTENING state are valid, for
4628 * SCTP, so only discard TCP-style sockets in LISTENING state.
4629 */
4630 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4631 goto out;
4632
4633 switch (cmd) {
4634 case SIOCINQ: {
4635 struct sk_buff *skb;
4636 unsigned int amount = 0;
4637
4638 skb = skb_peek(&sk->sk_receive_queue);
4639 if (skb != NULL) {
4640 /*
4641 * We will only return the amount of this packet since
4642 * that is all that will be read.
4643 */
4644 amount = skb->len;
4645 }
4646 rc = put_user(amount, (int __user *)arg);
4647 break;
4648 }
4649 default:
4650 rc = -ENOIOCTLCMD;
4651 break;
4652 }
4653out:
4654 release_sock(sk);
4655 return rc;
4656}
4657
4658/* This is the function which gets called during socket creation to
4659 * initialized the SCTP-specific portion of the sock.
4660 * The sock structure should already be zero-filled memory.
4661 */
4662static int sctp_init_sock(struct sock *sk)
4663{
4664 struct net *net = sock_net(sk);
4665 struct sctp_sock *sp;
4666
4667 pr_debug("%s: sk:%p\n", __func__, sk);
4668
4669 sp = sctp_sk(sk);
4670
4671 /* Initialize the SCTP per socket area. */
4672 switch (sk->sk_type) {
4673 case SOCK_SEQPACKET:
4674 sp->type = SCTP_SOCKET_UDP;
4675 break;
4676 case SOCK_STREAM:
4677 sp->type = SCTP_SOCKET_TCP;
4678 break;
4679 default:
4680 return -ESOCKTNOSUPPORT;
4681 }
4682
4683 sk->sk_gso_type = SKB_GSO_SCTP;
4684
4685 /* Initialize default send parameters. These parameters can be
4686 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4687 */
4688 sp->default_stream = 0;
4689 sp->default_ppid = 0;
4690 sp->default_flags = 0;
4691 sp->default_context = 0;
4692 sp->default_timetolive = 0;
4693
4694 sp->default_rcv_context = 0;
4695 sp->max_burst = net->sctp.max_burst;
4696
4697 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4698
4699 /* Initialize default setup parameters. These parameters
4700 * can be modified with the SCTP_INITMSG socket option or
4701 * overridden by the SCTP_INIT CMSG.
4702 */
4703 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4704 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
4705 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4706 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
4707
4708 /* Initialize default RTO related parameters. These parameters can
4709 * be modified for with the SCTP_RTOINFO socket option.
4710 */
4711 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4712 sp->rtoinfo.srto_max = net->sctp.rto_max;
4713 sp->rtoinfo.srto_min = net->sctp.rto_min;
4714
4715 /* Initialize default association related parameters. These parameters
4716 * can be modified with the SCTP_ASSOCINFO socket option.
4717 */
4718 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
4719 sp->assocparams.sasoc_number_peer_destinations = 0;
4720 sp->assocparams.sasoc_peer_rwnd = 0;
4721 sp->assocparams.sasoc_local_rwnd = 0;
4722 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
4723
4724 /* Initialize default event subscriptions. By default, all the
4725 * options are off.
4726 */
4727 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
4728
4729 /* Default Peer Address Parameters. These defaults can
4730 * be modified via SCTP_PEER_ADDR_PARAMS
4731 */
4732 sp->hbinterval = net->sctp.hb_interval;
4733 sp->pathmaxrxt = net->sctp.max_retrans_path;
4734 sp->pathmtu = 0; /* allow default discovery */
4735 sp->sackdelay = net->sctp.sack_timeout;
4736 sp->sackfreq = 2;
4737 sp->param_flags = SPP_HB_ENABLE |
4738 SPP_PMTUD_ENABLE |
4739 SPP_SACKDELAY_ENABLE;
4740
4741 /* If enabled no SCTP message fragmentation will be performed.
4742 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4743 */
4744 sp->disable_fragments = 0;
4745
4746 /* Enable Nagle algorithm by default. */
4747 sp->nodelay = 0;
4748
4749 sp->recvrcvinfo = 0;
4750 sp->recvnxtinfo = 0;
4751
4752 /* Enable by default. */
4753 sp->v4mapped = 1;
4754
4755 /* Auto-close idle associations after the configured
4756 * number of seconds. A value of 0 disables this
4757 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4758 * for UDP-style sockets only.
4759 */
4760 sp->autoclose = 0;
4761
4762 /* User specified fragmentation limit. */
4763 sp->user_frag = 0;
4764
4765 sp->adaptation_ind = 0;
4766
4767 sp->pf = sctp_get_pf_specific(sk->sk_family);
4768
4769 /* Control variables for partial data delivery. */
4770 atomic_set(&sp->pd_mode, 0);
4771 skb_queue_head_init(&sp->pd_lobby);
4772 sp->frag_interleave = 0;
4773
4774 /* Create a per socket endpoint structure. Even if we
4775 * change the data structure relationships, this may still
4776 * be useful for storing pre-connect address information.
4777 */
4778 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4779 if (!sp->ep)
4780 return -ENOMEM;
4781
4782 sp->hmac = NULL;
4783
4784 sk->sk_destruct = sctp_destruct_sock;
4785
4786 SCTP_DBG_OBJCNT_INC(sock);
4787
4788 local_bh_disable();
4789 sk_sockets_allocated_inc(sk);
4790 sock_prot_inuse_add(net, sk->sk_prot, 1);
4791
4792 /* Nothing can fail after this block, otherwise
4793 * sctp_destroy_sock() will be called without addr_wq_lock held
4794 */
4795 if (net->sctp.default_auto_asconf) {
4796 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
4797 list_add_tail(&sp->auto_asconf_list,
4798 &net->sctp.auto_asconf_splist);
4799 sp->do_auto_asconf = 1;
4800 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4801 } else {
4802 sp->do_auto_asconf = 0;
4803 }
4804
4805 local_bh_enable();
4806
4807 return 0;
4808}
4809
4810/* Cleanup any SCTP per socket resources. Must be called with
4811 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4812 */
4813static void sctp_destroy_sock(struct sock *sk)
4814{
4815 struct sctp_sock *sp;
4816
4817 pr_debug("%s: sk:%p\n", __func__, sk);
4818
4819 /* Release our hold on the endpoint. */
4820 sp = sctp_sk(sk);
4821 /* This could happen during socket init, thus we bail out
4822 * early, since the rest of the below is not setup either.
4823 */
4824 if (sp->ep == NULL)
4825 return;
4826
4827 if (sp->do_auto_asconf) {
4828 sp->do_auto_asconf = 0;
4829 list_del(&sp->auto_asconf_list);
4830 }
4831 sctp_endpoint_free(sp->ep);
4832 local_bh_disable();
4833 sk_sockets_allocated_dec(sk);
4834 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
4835 local_bh_enable();
4836}
4837
4838/* Triggered when there are no references on the socket anymore */
4839static void sctp_destruct_sock(struct sock *sk)
4840{
4841 struct sctp_sock *sp = sctp_sk(sk);
4842
4843 /* Free up the HMAC transform. */
4844 crypto_free_shash(sp->hmac);
4845
4846 inet_sock_destruct(sk);
4847}
4848
4849/* API 4.1.7 shutdown() - TCP Style Syntax
4850 * int shutdown(int socket, int how);
4851 *
4852 * sd - the socket descriptor of the association to be closed.
4853 * how - Specifies the type of shutdown. The values are
4854 * as follows:
4855 * SHUT_RD
4856 * Disables further receive operations. No SCTP
4857 * protocol action is taken.
4858 * SHUT_WR
4859 * Disables further send operations, and initiates
4860 * the SCTP shutdown sequence.
4861 * SHUT_RDWR
4862 * Disables further send and receive operations
4863 * and initiates the SCTP shutdown sequence.
4864 */
4865static void sctp_shutdown(struct sock *sk, int how)
4866{
4867 struct net *net = sock_net(sk);
4868 struct sctp_endpoint *ep;
4869
4870 if (!sctp_style(sk, TCP))
4871 return;
4872
4873 ep = sctp_sk(sk)->ep;
4874 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4875 struct sctp_association *asoc;
4876
4877 inet_sk_set_state(sk, SCTP_SS_CLOSING);
4878 asoc = list_entry(ep->asocs.next,
4879 struct sctp_association, asocs);
4880 sctp_primitive_SHUTDOWN(net, asoc, NULL);
4881 }
4882}
4883
4884int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4885 struct sctp_info *info)
4886{
4887 struct sctp_transport *prim;
4888 struct list_head *pos;
4889 int mask;
4890
4891 memset(info, 0, sizeof(*info));
4892 if (!asoc) {
4893 struct sctp_sock *sp = sctp_sk(sk);
4894
4895 info->sctpi_s_autoclose = sp->autoclose;
4896 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4897 info->sctpi_s_pd_point = sp->pd_point;
4898 info->sctpi_s_nodelay = sp->nodelay;
4899 info->sctpi_s_disable_fragments = sp->disable_fragments;
4900 info->sctpi_s_v4mapped = sp->v4mapped;
4901 info->sctpi_s_frag_interleave = sp->frag_interleave;
4902 info->sctpi_s_type = sp->type;
4903
4904 return 0;
4905 }
4906
4907 info->sctpi_tag = asoc->c.my_vtag;
4908 info->sctpi_state = asoc->state;
4909 info->sctpi_rwnd = asoc->a_rwnd;
4910 info->sctpi_unackdata = asoc->unack_data;
4911 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
4912 info->sctpi_instrms = asoc->stream.incnt;
4913 info->sctpi_outstrms = asoc->stream.outcnt;
4914 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4915 info->sctpi_inqueue++;
4916 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4917 info->sctpi_outqueue++;
4918 info->sctpi_overall_error = asoc->overall_error_count;
4919 info->sctpi_max_burst = asoc->max_burst;
4920 info->sctpi_maxseg = asoc->frag_point;
4921 info->sctpi_peer_rwnd = asoc->peer.rwnd;
4922 info->sctpi_peer_tag = asoc->c.peer_vtag;
4923
4924 mask = asoc->peer.ecn_capable << 1;
4925 mask = (mask | asoc->peer.ipv4_address) << 1;
4926 mask = (mask | asoc->peer.ipv6_address) << 1;
4927 mask = (mask | asoc->peer.hostname_address) << 1;
4928 mask = (mask | asoc->peer.asconf_capable) << 1;
4929 mask = (mask | asoc->peer.prsctp_capable) << 1;
4930 mask = (mask | asoc->peer.auth_capable);
4931 info->sctpi_peer_capable = mask;
4932 mask = asoc->peer.sack_needed << 1;
4933 mask = (mask | asoc->peer.sack_generation) << 1;
4934 mask = (mask | asoc->peer.zero_window_announced);
4935 info->sctpi_peer_sack = mask;
4936
4937 info->sctpi_isacks = asoc->stats.isacks;
4938 info->sctpi_osacks = asoc->stats.osacks;
4939 info->sctpi_opackets = asoc->stats.opackets;
4940 info->sctpi_ipackets = asoc->stats.ipackets;
4941 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
4942 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
4943 info->sctpi_idupchunks = asoc->stats.idupchunks;
4944 info->sctpi_gapcnt = asoc->stats.gapcnt;
4945 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
4946 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
4947 info->sctpi_oodchunks = asoc->stats.oodchunks;
4948 info->sctpi_iodchunks = asoc->stats.iodchunks;
4949 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
4950 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
4951
4952 prim = asoc->peer.primary_path;
4953 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
4954 info->sctpi_p_state = prim->state;
4955 info->sctpi_p_cwnd = prim->cwnd;
4956 info->sctpi_p_srtt = prim->srtt;
4957 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
4958 info->sctpi_p_hbinterval = prim->hbinterval;
4959 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
4960 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
4961 info->sctpi_p_ssthresh = prim->ssthresh;
4962 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
4963 info->sctpi_p_flight_size = prim->flight_size;
4964 info->sctpi_p_error = prim->error_count;
4965
4966 return 0;
4967}
4968EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
4969
4970/* use callback to avoid exporting the core structure */
4971void sctp_transport_walk_start(struct rhashtable_iter *iter)
4972{
4973 rhltable_walk_enter(&sctp_transport_hashtable, iter);
4974
4975 rhashtable_walk_start(iter);
4976}
4977
4978void sctp_transport_walk_stop(struct rhashtable_iter *iter)
4979{
4980 rhashtable_walk_stop(iter);
4981 rhashtable_walk_exit(iter);
4982}
4983
4984struct sctp_transport *sctp_transport_get_next(struct net *net,
4985 struct rhashtable_iter *iter)
4986{
4987 struct sctp_transport *t;
4988
4989 t = rhashtable_walk_next(iter);
4990 for (; t; t = rhashtable_walk_next(iter)) {
4991 if (IS_ERR(t)) {
4992 if (PTR_ERR(t) == -EAGAIN)
4993 continue;
4994 break;
4995 }
4996
4997 if (!sctp_transport_hold(t))
4998 continue;
4999
5000 if (net_eq(sock_net(t->asoc->base.sk), net) &&
5001 t->asoc->peer.primary_path == t)
5002 break;
5003
5004 sctp_transport_put(t);
5005 }
5006
5007 return t;
5008}
5009
5010struct sctp_transport *sctp_transport_get_idx(struct net *net,
5011 struct rhashtable_iter *iter,
5012 int pos)
5013{
5014 struct sctp_transport *t;
5015
5016 if (!pos)
5017 return SEQ_START_TOKEN;
5018
5019 while ((t = sctp_transport_get_next(net, iter)) && !IS_ERR(t)) {
5020 if (!--pos)
5021 break;
5022 sctp_transport_put(t);
5023 }
5024
5025 return t;
5026}
5027
5028int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
5029 void *p) {
5030 int err = 0;
5031 int hash = 0;
5032 struct sctp_ep_common *epb;
5033 struct sctp_hashbucket *head;
5034
5035 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
5036 hash++, head++) {
5037 read_lock_bh(&head->lock);
5038 sctp_for_each_hentry(epb, &head->chain) {
5039 err = cb(sctp_ep(epb), p);
5040 if (err)
5041 break;
5042 }
5043 read_unlock_bh(&head->lock);
5044 }
5045
5046 return err;
5047}
5048EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
5049
5050int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
5051 struct net *net,
5052 const union sctp_addr *laddr,
5053 const union sctp_addr *paddr, void *p)
5054{
5055 struct sctp_transport *transport;
5056 int err;
5057
5058 rcu_read_lock();
5059 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
5060 rcu_read_unlock();
5061 if (!transport)
5062 return -ENOENT;
5063
5064 err = cb(transport, p);
5065 sctp_transport_put(transport);
5066
5067 return err;
5068}
5069EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
5070
5071int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
5072 int (*cb_done)(struct sctp_transport *, void *),
5073 struct net *net, int *pos, void *p) {
5074 struct rhashtable_iter hti;
5075 struct sctp_transport *tsp;
5076 int ret;
5077
5078again:
5079 ret = 0;
5080 sctp_transport_walk_start(&hti);
5081
5082 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
5083 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
5084 ret = cb(tsp, p);
5085 if (ret)
5086 break;
5087 (*pos)++;
5088 sctp_transport_put(tsp);
5089 }
5090 sctp_transport_walk_stop(&hti);
5091
5092 if (ret) {
5093 if (cb_done && !cb_done(tsp, p)) {
5094 (*pos)++;
5095 sctp_transport_put(tsp);
5096 goto again;
5097 }
5098 sctp_transport_put(tsp);
5099 }
5100
5101 return ret;
5102}
5103EXPORT_SYMBOL_GPL(sctp_for_each_transport);
5104
5105/* 7.2.1 Association Status (SCTP_STATUS)
5106
5107 * Applications can retrieve current status information about an
5108 * association, including association state, peer receiver window size,
5109 * number of unacked data chunks, and number of data chunks pending
5110 * receipt. This information is read-only.
5111 */
5112static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
5113 char __user *optval,
5114 int __user *optlen)
5115{
5116 struct sctp_status status;
5117 struct sctp_association *asoc = NULL;
5118 struct sctp_transport *transport;
5119 sctp_assoc_t associd;
5120 int retval = 0;
5121
5122 if (len < sizeof(status)) {
5123 retval = -EINVAL;
5124 goto out;
5125 }
5126
5127 len = sizeof(status);
5128 if (copy_from_user(&status, optval, len)) {
5129 retval = -EFAULT;
5130 goto out;
5131 }
5132
5133 associd = status.sstat_assoc_id;
5134 asoc = sctp_id2assoc(sk, associd);
5135 if (!asoc) {
5136 retval = -EINVAL;
5137 goto out;
5138 }
5139
5140 transport = asoc->peer.primary_path;
5141
5142 status.sstat_assoc_id = sctp_assoc2id(asoc);
5143 status.sstat_state = sctp_assoc_to_state(asoc);
5144 status.sstat_rwnd = asoc->peer.rwnd;
5145 status.sstat_unackdata = asoc->unack_data;
5146
5147 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
5148 status.sstat_instrms = asoc->stream.incnt;
5149 status.sstat_outstrms = asoc->stream.outcnt;
5150 status.sstat_fragmentation_point = asoc->frag_point;
5151 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
5152 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5153 transport->af_specific->sockaddr_len);
5154 /* Map ipv4 address into v4-mapped-on-v6 address. */
5155 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
5156 (union sctp_addr *)&status.sstat_primary.spinfo_address);
5157 status.sstat_primary.spinfo_state = transport->state;
5158 status.sstat_primary.spinfo_cwnd = transport->cwnd;
5159 status.sstat_primary.spinfo_srtt = transport->srtt;
5160 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
5161 status.sstat_primary.spinfo_mtu = transport->pathmtu;
5162
5163 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5164 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5165
5166 if (put_user(len, optlen)) {
5167 retval = -EFAULT;
5168 goto out;
5169 }
5170
5171 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5172 __func__, len, status.sstat_state, status.sstat_rwnd,
5173 status.sstat_assoc_id);
5174
5175 if (copy_to_user(optval, &status, len)) {
5176 retval = -EFAULT;
5177 goto out;
5178 }
5179
5180out:
5181 return retval;
5182}
5183
5184
5185/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5186 *
5187 * Applications can retrieve information about a specific peer address
5188 * of an association, including its reachability state, congestion
5189 * window, and retransmission timer values. This information is
5190 * read-only.
5191 */
5192static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5193 char __user *optval,
5194 int __user *optlen)
5195{
5196 struct sctp_paddrinfo pinfo;
5197 struct sctp_transport *transport;
5198 int retval = 0;
5199
5200 if (len < sizeof(pinfo)) {
5201 retval = -EINVAL;
5202 goto out;
5203 }
5204
5205 len = sizeof(pinfo);
5206 if (copy_from_user(&pinfo, optval, len)) {
5207 retval = -EFAULT;
5208 goto out;
5209 }
5210
5211 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5212 pinfo.spinfo_assoc_id);
5213 if (!transport)
5214 return -EINVAL;
5215
5216 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
5217 pinfo.spinfo_state = transport->state;
5218 pinfo.spinfo_cwnd = transport->cwnd;
5219 pinfo.spinfo_srtt = transport->srtt;
5220 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
5221 pinfo.spinfo_mtu = transport->pathmtu;
5222
5223 if (pinfo.spinfo_state == SCTP_UNKNOWN)
5224 pinfo.spinfo_state = SCTP_ACTIVE;
5225
5226 if (put_user(len, optlen)) {
5227 retval = -EFAULT;
5228 goto out;
5229 }
5230
5231 if (copy_to_user(optval, &pinfo, len)) {
5232 retval = -EFAULT;
5233 goto out;
5234 }
5235
5236out:
5237 return retval;
5238}
5239
5240/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5241 *
5242 * This option is a on/off flag. If enabled no SCTP message
5243 * fragmentation will be performed. Instead if a message being sent
5244 * exceeds the current PMTU size, the message will NOT be sent and
5245 * instead a error will be indicated to the user.
5246 */
5247static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5248 char __user *optval, int __user *optlen)
5249{
5250 int val;
5251
5252 if (len < sizeof(int))
5253 return -EINVAL;
5254
5255 len = sizeof(int);
5256 val = (sctp_sk(sk)->disable_fragments == 1);
5257 if (put_user(len, optlen))
5258 return -EFAULT;
5259 if (copy_to_user(optval, &val, len))
5260 return -EFAULT;
5261 return 0;
5262}
5263
5264/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5265 *
5266 * This socket option is used to specify various notifications and
5267 * ancillary data the user wishes to receive.
5268 */
5269static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5270 int __user *optlen)
5271{
5272 if (len == 0)
5273 return -EINVAL;
5274 if (len > sizeof(struct sctp_event_subscribe))
5275 len = sizeof(struct sctp_event_subscribe);
5276 if (put_user(len, optlen))
5277 return -EFAULT;
5278 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
5279 return -EFAULT;
5280 return 0;
5281}
5282
5283/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5284 *
5285 * This socket option is applicable to the UDP-style socket only. When
5286 * set it will cause associations that are idle for more than the
5287 * specified number of seconds to automatically close. An association
5288 * being idle is defined an association that has NOT sent or received
5289 * user data. The special value of '0' indicates that no automatic
5290 * close of any associations should be performed. The option expects an
5291 * integer defining the number of seconds of idle time before an
5292 * association is closed.
5293 */
5294static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5295{
5296 /* Applicable to UDP-style socket only */
5297 if (sctp_style(sk, TCP))
5298 return -EOPNOTSUPP;
5299 if (len < sizeof(int))
5300 return -EINVAL;
5301 len = sizeof(int);
5302 if (put_user(len, optlen))
5303 return -EFAULT;
5304 if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
5305 return -EFAULT;
5306 return 0;
5307}
5308
5309/* Helper routine to branch off an association to a new socket. */
5310int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
5311{
5312 struct sctp_association *asoc = sctp_id2assoc(sk, id);
5313 struct sctp_sock *sp = sctp_sk(sk);
5314 struct socket *sock;
5315 int err = 0;
5316
5317 /* Do not peel off from one netns to another one. */
5318 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5319 return -EINVAL;
5320
5321 if (!asoc)
5322 return -EINVAL;
5323
5324 /* An association cannot be branched off from an already peeled-off
5325 * socket, nor is this supported for tcp style sockets.
5326 */
5327 if (!sctp_style(sk, UDP))
5328 return -EINVAL;
5329
5330 /* Create a new socket. */
5331 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5332 if (err < 0)
5333 return err;
5334
5335 sctp_copy_sock(sock->sk, sk, asoc);
5336
5337 /* Make peeled-off sockets more like 1-1 accepted sockets.
5338 * Set the daddr and initialize id to something more random and also
5339 * copy over any ip options.
5340 */
5341 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
5342 sp->pf->copy_ip_options(sk, sock->sk);
5343
5344 /* Populate the fields of the newsk from the oldsk and migrate the
5345 * asoc to the newsk.
5346 */
5347 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
5348
5349 *sockp = sock;
5350
5351 return err;
5352}
5353EXPORT_SYMBOL(sctp_do_peeloff);
5354
5355static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5356 struct file **newfile, unsigned flags)
5357{
5358 struct socket *newsock;
5359 int retval;
5360
5361 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5362 if (retval < 0)
5363 goto out;
5364
5365 /* Map the socket to an unused fd that can be returned to the user. */
5366 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5367 if (retval < 0) {
5368 sock_release(newsock);
5369 goto out;
5370 }
5371
5372 *newfile = sock_alloc_file(newsock, 0, NULL);
5373 if (IS_ERR(*newfile)) {
5374 put_unused_fd(retval);
5375 retval = PTR_ERR(*newfile);
5376 *newfile = NULL;
5377 return retval;
5378 }
5379
5380 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5381 retval);
5382
5383 peeloff->sd = retval;
5384
5385 if (flags & SOCK_NONBLOCK)
5386 (*newfile)->f_flags |= O_NONBLOCK;
5387out:
5388 return retval;
5389}
5390
5391static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5392{
5393 sctp_peeloff_arg_t peeloff;
5394 struct file *newfile = NULL;
5395 int retval = 0;
5396
5397 if (len < sizeof(sctp_peeloff_arg_t))
5398 return -EINVAL;
5399 len = sizeof(sctp_peeloff_arg_t);
5400 if (copy_from_user(&peeloff, optval, len))
5401 return -EFAULT;
5402
5403 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
5404 if (retval < 0)
5405 goto out;
5406
5407 /* Return the fd mapped to the new socket. */
5408 if (put_user(len, optlen)) {
5409 fput(newfile);
5410 put_unused_fd(retval);
5411 return -EFAULT;
5412 }
5413
5414 if (copy_to_user(optval, &peeloff, len)) {
5415 fput(newfile);
5416 put_unused_fd(retval);
5417 return -EFAULT;
5418 }
5419 fd_install(retval, newfile);
5420out:
5421 return retval;
5422}
5423
5424static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5425 char __user *optval, int __user *optlen)
5426{
5427 sctp_peeloff_flags_arg_t peeloff;
5428 struct file *newfile = NULL;
5429 int retval = 0;
5430
5431 if (len < sizeof(sctp_peeloff_flags_arg_t))
5432 return -EINVAL;
5433 len = sizeof(sctp_peeloff_flags_arg_t);
5434 if (copy_from_user(&peeloff, optval, len))
5435 return -EFAULT;
5436
5437 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5438 &newfile, peeloff.flags);
5439 if (retval < 0)
5440 goto out;
5441
5442 /* Return the fd mapped to the new socket. */
5443 if (put_user(len, optlen)) {
5444 fput(newfile);
5445 put_unused_fd(retval);
5446 return -EFAULT;
5447 }
5448
5449 if (copy_to_user(optval, &peeloff, len)) {
5450 fput(newfile);
5451 put_unused_fd(retval);
5452 return -EFAULT;
5453 }
5454 fd_install(retval, newfile);
5455out:
5456 return retval;
5457}
5458
5459/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5460 *
5461 * Applications can enable or disable heartbeats for any peer address of
5462 * an association, modify an address's heartbeat interval, force a
5463 * heartbeat to be sent immediately, and adjust the address's maximum
5464 * number of retransmissions sent before an address is considered
5465 * unreachable. The following structure is used to access and modify an
5466 * address's parameters:
5467 *
5468 * struct sctp_paddrparams {
5469 * sctp_assoc_t spp_assoc_id;
5470 * struct sockaddr_storage spp_address;
5471 * uint32_t spp_hbinterval;
5472 * uint16_t spp_pathmaxrxt;
5473 * uint32_t spp_pathmtu;
5474 * uint32_t spp_sackdelay;
5475 * uint32_t spp_flags;
5476 * };
5477 *
5478 * spp_assoc_id - (one-to-many style socket) This is filled in the
5479 * application, and identifies the association for
5480 * this query.
5481 * spp_address - This specifies which address is of interest.
5482 * spp_hbinterval - This contains the value of the heartbeat interval,
5483 * in milliseconds. If a value of zero
5484 * is present in this field then no changes are to
5485 * be made to this parameter.
5486 * spp_pathmaxrxt - This contains the maximum number of
5487 * retransmissions before this address shall be
5488 * considered unreachable. If a value of zero
5489 * is present in this field then no changes are to
5490 * be made to this parameter.
5491 * spp_pathmtu - When Path MTU discovery is disabled the value
5492 * specified here will be the "fixed" path mtu.
5493 * Note that if the spp_address field is empty
5494 * then all associations on this address will
5495 * have this fixed path mtu set upon them.
5496 *
5497 * spp_sackdelay - When delayed sack is enabled, this value specifies
5498 * the number of milliseconds that sacks will be delayed
5499 * for. This value will apply to all addresses of an
5500 * association if the spp_address field is empty. Note
5501 * also, that if delayed sack is enabled and this
5502 * value is set to 0, no change is made to the last
5503 * recorded delayed sack timer value.
5504 *
5505 * spp_flags - These flags are used to control various features
5506 * on an association. The flag field may contain
5507 * zero or more of the following options.
5508 *
5509 * SPP_HB_ENABLE - Enable heartbeats on the
5510 * specified address. Note that if the address
5511 * field is empty all addresses for the association
5512 * have heartbeats enabled upon them.
5513 *
5514 * SPP_HB_DISABLE - Disable heartbeats on the
5515 * speicifed address. Note that if the address
5516 * field is empty all addresses for the association
5517 * will have their heartbeats disabled. Note also
5518 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5519 * mutually exclusive, only one of these two should
5520 * be specified. Enabling both fields will have
5521 * undetermined results.
5522 *
5523 * SPP_HB_DEMAND - Request a user initiated heartbeat
5524 * to be made immediately.
5525 *
5526 * SPP_PMTUD_ENABLE - This field will enable PMTU
5527 * discovery upon the specified address. Note that
5528 * if the address feild is empty then all addresses
5529 * on the association are effected.
5530 *
5531 * SPP_PMTUD_DISABLE - This field will disable PMTU
5532 * discovery upon the specified address. Note that
5533 * if the address feild is empty then all addresses
5534 * on the association are effected. Not also that
5535 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5536 * exclusive. Enabling both will have undetermined
5537 * results.
5538 *
5539 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5540 * on delayed sack. The time specified in spp_sackdelay
5541 * is used to specify the sack delay for this address. Note
5542 * that if spp_address is empty then all addresses will
5543 * enable delayed sack and take on the sack delay
5544 * value specified in spp_sackdelay.
5545 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5546 * off delayed sack. If the spp_address field is blank then
5547 * delayed sack is disabled for the entire association. Note
5548 * also that this field is mutually exclusive to
5549 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5550 * results.
5551 *
5552 * SPP_IPV6_FLOWLABEL: Setting this flag enables the
5553 * setting of the IPV6 flow label value. The value is
5554 * contained in the spp_ipv6_flowlabel field.
5555 * Upon retrieval, this flag will be set to indicate that
5556 * the spp_ipv6_flowlabel field has a valid value returned.
5557 * If a specific destination address is set (in the
5558 * spp_address field), then the value returned is that of
5559 * the address. If just an association is specified (and
5560 * no address), then the association's default flow label
5561 * is returned. If neither an association nor a destination
5562 * is specified, then the socket's default flow label is
5563 * returned. For non-IPv6 sockets, this flag will be left
5564 * cleared.
5565 *
5566 * SPP_DSCP: Setting this flag enables the setting of the
5567 * Differentiated Services Code Point (DSCP) value
5568 * associated with either the association or a specific
5569 * address. The value is obtained in the spp_dscp field.
5570 * Upon retrieval, this flag will be set to indicate that
5571 * the spp_dscp field has a valid value returned. If a
5572 * specific destination address is set when called (in the
5573 * spp_address field), then that specific destination
5574 * address's DSCP value is returned. If just an association
5575 * is specified, then the association's default DSCP is
5576 * returned. If neither an association nor a destination is
5577 * specified, then the socket's default DSCP is returned.
5578 *
5579 * spp_ipv6_flowlabel
5580 * - This field is used in conjunction with the
5581 * SPP_IPV6_FLOWLABEL flag and contains the IPv6 flow label.
5582 * The 20 least significant bits are used for the flow
5583 * label. This setting has precedence over any IPv6-layer
5584 * setting.
5585 *
5586 * spp_dscp - This field is used in conjunction with the SPP_DSCP flag
5587 * and contains the DSCP. The 6 most significant bits are
5588 * used for the DSCP. This setting has precedence over any
5589 * IPv4- or IPv6- layer setting.
5590 */
5591static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
5592 char __user *optval, int __user *optlen)
5593{
5594 struct sctp_paddrparams params;
5595 struct sctp_transport *trans = NULL;
5596 struct sctp_association *asoc = NULL;
5597 struct sctp_sock *sp = sctp_sk(sk);
5598
5599 if (len >= sizeof(params))
5600 len = sizeof(params);
5601 else if (len >= ALIGN(offsetof(struct sctp_paddrparams,
5602 spp_ipv6_flowlabel), 4))
5603 len = ALIGN(offsetof(struct sctp_paddrparams,
5604 spp_ipv6_flowlabel), 4);
5605 else
5606 return -EINVAL;
5607
5608 if (copy_from_user(&params, optval, len))
5609 return -EFAULT;
5610
5611 /* If an address other than INADDR_ANY is specified, and
5612 * no transport is found, then the request is invalid.
5613 */
5614 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
5615 trans = sctp_addr_id2transport(sk, &params.spp_address,
5616 params.spp_assoc_id);
5617 if (!trans) {
5618 pr_debug("%s: failed no transport\n", __func__);
5619 return -EINVAL;
5620 }
5621 }
5622
5623 /* Get association, if assoc_id != 0 and the socket is a one
5624 * to many style socket, and an association was not found, then
5625 * the id was invalid.
5626 */
5627 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5628 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
5629 pr_debug("%s: failed no association\n", __func__);
5630 return -EINVAL;
5631 }
5632
5633 if (trans) {
5634 /* Fetch transport values. */
5635 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5636 params.spp_pathmtu = trans->pathmtu;
5637 params.spp_pathmaxrxt = trans->pathmaxrxt;
5638 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
5639
5640 /*draft-11 doesn't say what to return in spp_flags*/
5641 params.spp_flags = trans->param_flags;
5642 if (trans->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5643 params.spp_ipv6_flowlabel = trans->flowlabel &
5644 SCTP_FLOWLABEL_VAL_MASK;
5645 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5646 }
5647 if (trans->dscp & SCTP_DSCP_SET_MASK) {
5648 params.spp_dscp = trans->dscp & SCTP_DSCP_VAL_MASK;
5649 params.spp_flags |= SPP_DSCP;
5650 }
5651 } else if (asoc) {
5652 /* Fetch association values. */
5653 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5654 params.spp_pathmtu = asoc->pathmtu;
5655 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5656 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
5657
5658 /*draft-11 doesn't say what to return in spp_flags*/
5659 params.spp_flags = asoc->param_flags;
5660 if (asoc->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5661 params.spp_ipv6_flowlabel = asoc->flowlabel &
5662 SCTP_FLOWLABEL_VAL_MASK;
5663 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5664 }
5665 if (asoc->dscp & SCTP_DSCP_SET_MASK) {
5666 params.spp_dscp = asoc->dscp & SCTP_DSCP_VAL_MASK;
5667 params.spp_flags |= SPP_DSCP;
5668 }
5669 } else {
5670 /* Fetch socket values. */
5671 params.spp_hbinterval = sp->hbinterval;
5672 params.spp_pathmtu = sp->pathmtu;
5673 params.spp_sackdelay = sp->sackdelay;
5674 params.spp_pathmaxrxt = sp->pathmaxrxt;
5675
5676 /*draft-11 doesn't say what to return in spp_flags*/
5677 params.spp_flags = sp->param_flags;
5678 if (sp->flowlabel & SCTP_FLOWLABEL_SET_MASK) {
5679 params.spp_ipv6_flowlabel = sp->flowlabel &
5680 SCTP_FLOWLABEL_VAL_MASK;
5681 params.spp_flags |= SPP_IPV6_FLOWLABEL;
5682 }
5683 if (sp->dscp & SCTP_DSCP_SET_MASK) {
5684 params.spp_dscp = sp->dscp & SCTP_DSCP_VAL_MASK;
5685 params.spp_flags |= SPP_DSCP;
5686 }
5687 }
5688
5689 if (copy_to_user(optval, &params, len))
5690 return -EFAULT;
5691
5692 if (put_user(len, optlen))
5693 return -EFAULT;
5694
5695 return 0;
5696}
5697
5698/*
5699 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
5700 *
5701 * This option will effect the way delayed acks are performed. This
5702 * option allows you to get or set the delayed ack time, in
5703 * milliseconds. It also allows changing the delayed ack frequency.
5704 * Changing the frequency to 1 disables the delayed sack algorithm. If
5705 * the assoc_id is 0, then this sets or gets the endpoints default
5706 * values. If the assoc_id field is non-zero, then the set or get
5707 * effects the specified association for the one to many model (the
5708 * assoc_id field is ignored by the one to one model). Note that if
5709 * sack_delay or sack_freq are 0 when setting this option, then the
5710 * current values will remain unchanged.
5711 *
5712 * struct sctp_sack_info {
5713 * sctp_assoc_t sack_assoc_id;
5714 * uint32_t sack_delay;
5715 * uint32_t sack_freq;
5716 * };
5717 *
5718 * sack_assoc_id - This parameter, indicates which association the user
5719 * is performing an action upon. Note that if this field's value is
5720 * zero then the endpoints default value is changed (effecting future
5721 * associations only).
5722 *
5723 * sack_delay - This parameter contains the number of milliseconds that
5724 * the user is requesting the delayed ACK timer be set to. Note that
5725 * this value is defined in the standard to be between 200 and 500
5726 * milliseconds.
5727 *
5728 * sack_freq - This parameter contains the number of packets that must
5729 * be received before a sack is sent without waiting for the delay
5730 * timer to expire. The default value for this is 2, setting this
5731 * value to 1 will disable the delayed sack algorithm.
5732 */
5733static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
5734 char __user *optval,
5735 int __user *optlen)
5736{
5737 struct sctp_sack_info params;
5738 struct sctp_association *asoc = NULL;
5739 struct sctp_sock *sp = sctp_sk(sk);
5740
5741 if (len >= sizeof(struct sctp_sack_info)) {
5742 len = sizeof(struct sctp_sack_info);
5743
5744 if (copy_from_user(&params, optval, len))
5745 return -EFAULT;
5746 } else if (len == sizeof(struct sctp_assoc_value)) {
5747 pr_warn_ratelimited(DEPRECATED
5748 "%s (pid %d) "
5749 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
5750 "Use struct sctp_sack_info instead\n",
5751 current->comm, task_pid_nr(current));
5752 if (copy_from_user(&params, optval, len))
5753 return -EFAULT;
5754 } else
5755 return -EINVAL;
5756
5757 /* Get association, if sack_assoc_id != 0 and the socket is a one
5758 * to many style socket, and an association was not found, then
5759 * the id was invalid.
5760 */
5761 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5762 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
5763 return -EINVAL;
5764
5765 if (asoc) {
5766 /* Fetch association values. */
5767 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5768 params.sack_delay = jiffies_to_msecs(
5769 asoc->sackdelay);
5770 params.sack_freq = asoc->sackfreq;
5771
5772 } else {
5773 params.sack_delay = 0;
5774 params.sack_freq = 1;
5775 }
5776 } else {
5777 /* Fetch socket values. */
5778 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5779 params.sack_delay = sp->sackdelay;
5780 params.sack_freq = sp->sackfreq;
5781 } else {
5782 params.sack_delay = 0;
5783 params.sack_freq = 1;
5784 }
5785 }
5786
5787 if (copy_to_user(optval, &params, len))
5788 return -EFAULT;
5789
5790 if (put_user(len, optlen))
5791 return -EFAULT;
5792
5793 return 0;
5794}
5795
5796/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5797 *
5798 * Applications can specify protocol parameters for the default association
5799 * initialization. The option name argument to setsockopt() and getsockopt()
5800 * is SCTP_INITMSG.
5801 *
5802 * Setting initialization parameters is effective only on an unconnected
5803 * socket (for UDP-style sockets only future associations are effected
5804 * by the change). With TCP-style sockets, this option is inherited by
5805 * sockets derived from a listener socket.
5806 */
5807static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5808{
5809 if (len < sizeof(struct sctp_initmsg))
5810 return -EINVAL;
5811 len = sizeof(struct sctp_initmsg);
5812 if (put_user(len, optlen))
5813 return -EFAULT;
5814 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5815 return -EFAULT;
5816 return 0;
5817}
5818
5819
5820static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
5821 char __user *optval, int __user *optlen)
5822{
5823 struct sctp_association *asoc;
5824 int cnt = 0;
5825 struct sctp_getaddrs getaddrs;
5826 struct sctp_transport *from;
5827 void __user *to;
5828 union sctp_addr temp;
5829 struct sctp_sock *sp = sctp_sk(sk);
5830 int addrlen;
5831 size_t space_left;
5832 int bytes_copied;
5833
5834 if (len < sizeof(struct sctp_getaddrs))
5835 return -EINVAL;
5836
5837 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5838 return -EFAULT;
5839
5840 /* For UDP-style sockets, id specifies the association to query. */
5841 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5842 if (!asoc)
5843 return -EINVAL;
5844
5845 to = optval + offsetof(struct sctp_getaddrs, addrs);
5846 space_left = len - offsetof(struct sctp_getaddrs, addrs);
5847
5848 list_for_each_entry(from, &asoc->peer.transport_addr_list,
5849 transports) {
5850 memcpy(&temp, &from->ipaddr, sizeof(temp));
5851 addrlen = sctp_get_pf_specific(sk->sk_family)
5852 ->addr_to_user(sp, &temp);
5853 if (space_left < addrlen)
5854 return -ENOMEM;
5855 if (copy_to_user(to, &temp, addrlen))
5856 return -EFAULT;
5857 to += addrlen;
5858 cnt++;
5859 space_left -= addrlen;
5860 }
5861
5862 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
5863 return -EFAULT;
5864 bytes_copied = ((char __user *)to) - optval;
5865 if (put_user(bytes_copied, optlen))
5866 return -EFAULT;
5867
5868 return 0;
5869}
5870
5871static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
5872 size_t space_left, int *bytes_copied)
5873{
5874 struct sctp_sockaddr_entry *addr;
5875 union sctp_addr temp;
5876 int cnt = 0;
5877 int addrlen;
5878 struct net *net = sock_net(sk);
5879
5880 rcu_read_lock();
5881 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
5882 if (!addr->valid)
5883 continue;
5884
5885 if ((PF_INET == sk->sk_family) &&
5886 (AF_INET6 == addr->a.sa.sa_family))
5887 continue;
5888 if ((PF_INET6 == sk->sk_family) &&
5889 inet_v6_ipv6only(sk) &&
5890 (AF_INET == addr->a.sa.sa_family))
5891 continue;
5892 memcpy(&temp, &addr->a, sizeof(temp));
5893 if (!temp.v4.sin_port)
5894 temp.v4.sin_port = htons(port);
5895
5896 addrlen = sctp_get_pf_specific(sk->sk_family)
5897 ->addr_to_user(sctp_sk(sk), &temp);
5898
5899 if (space_left < addrlen) {
5900 cnt = -ENOMEM;
5901 break;
5902 }
5903 memcpy(to, &temp, addrlen);
5904
5905 to += addrlen;
5906 cnt++;
5907 space_left -= addrlen;
5908 *bytes_copied += addrlen;
5909 }
5910 rcu_read_unlock();
5911
5912 return cnt;
5913}
5914
5915
5916static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
5917 char __user *optval, int __user *optlen)
5918{
5919 struct sctp_bind_addr *bp;
5920 struct sctp_association *asoc;
5921 int cnt = 0;
5922 struct sctp_getaddrs getaddrs;
5923 struct sctp_sockaddr_entry *addr;
5924 void __user *to;
5925 union sctp_addr temp;
5926 struct sctp_sock *sp = sctp_sk(sk);
5927 int addrlen;
5928 int err = 0;
5929 size_t space_left;
5930 int bytes_copied = 0;
5931 void *addrs;
5932 void *buf;
5933
5934 if (len < sizeof(struct sctp_getaddrs))
5935 return -EINVAL;
5936
5937 if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
5938 return -EFAULT;
5939
5940 /*
5941 * For UDP-style sockets, id specifies the association to query.
5942 * If the id field is set to the value '0' then the locally bound
5943 * addresses are returned without regard to any particular
5944 * association.
5945 */
5946 if (0 == getaddrs.assoc_id) {
5947 bp = &sctp_sk(sk)->ep->base.bind_addr;
5948 } else {
5949 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
5950 if (!asoc)
5951 return -EINVAL;
5952 bp = &asoc->base.bind_addr;
5953 }
5954
5955 to = optval + offsetof(struct sctp_getaddrs, addrs);
5956 space_left = len - offsetof(struct sctp_getaddrs, addrs);
5957
5958 addrs = kmalloc(space_left, GFP_USER | __GFP_NOWARN);
5959 if (!addrs)
5960 return -ENOMEM;
5961
5962 /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
5963 * addresses from the global local address list.
5964 */
5965 if (sctp_list_single_entry(&bp->address_list)) {
5966 addr = list_entry(bp->address_list.next,
5967 struct sctp_sockaddr_entry, list);
5968 if (sctp_is_any(sk, &addr->a)) {
5969 cnt = sctp_copy_laddrs(sk, bp->port, addrs,
5970 space_left, &bytes_copied);
5971 if (cnt < 0) {
5972 err = cnt;
5973 goto out;
5974 }
5975 goto copy_getaddrs;
5976 }
5977 }
5978
5979 buf = addrs;
5980 /* Protection on the bound address list is not needed since
5981 * in the socket option context we hold a socket lock and
5982 * thus the bound address list can't change.
5983 */
5984 list_for_each_entry(addr, &bp->address_list, list) {
5985 memcpy(&temp, &addr->a, sizeof(temp));
5986 addrlen = sctp_get_pf_specific(sk->sk_family)
5987 ->addr_to_user(sp, &temp);
5988 if (space_left < addrlen) {
5989 err = -ENOMEM; /*fixme: right error?*/
5990 goto out;
5991 }
5992 memcpy(buf, &temp, addrlen);
5993 buf += addrlen;
5994 bytes_copied += addrlen;
5995 cnt++;
5996 space_left -= addrlen;
5997 }
5998
5999copy_getaddrs:
6000 if (copy_to_user(to, addrs, bytes_copied)) {
6001 err = -EFAULT;
6002 goto out;
6003 }
6004 if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
6005 err = -EFAULT;
6006 goto out;
6007 }
6008 /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
6009 * but we can't change it anymore.
6010 */
6011 if (put_user(bytes_copied, optlen))
6012 err = -EFAULT;
6013out:
6014 kfree(addrs);
6015 return err;
6016}
6017
6018/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
6019 *
6020 * Requests that the local SCTP stack use the enclosed peer address as
6021 * the association primary. The enclosed address must be one of the
6022 * association peer's addresses.
6023 */
6024static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
6025 char __user *optval, int __user *optlen)
6026{
6027 struct sctp_prim prim;
6028 struct sctp_association *asoc;
6029 struct sctp_sock *sp = sctp_sk(sk);
6030
6031 if (len < sizeof(struct sctp_prim))
6032 return -EINVAL;
6033
6034 len = sizeof(struct sctp_prim);
6035
6036 if (copy_from_user(&prim, optval, len))
6037 return -EFAULT;
6038
6039 asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
6040 if (!asoc)
6041 return -EINVAL;
6042
6043 if (!asoc->peer.primary_path)
6044 return -ENOTCONN;
6045
6046 memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
6047 asoc->peer.primary_path->af_specific->sockaddr_len);
6048
6049 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
6050 (union sctp_addr *)&prim.ssp_addr);
6051
6052 if (put_user(len, optlen))
6053 return -EFAULT;
6054 if (copy_to_user(optval, &prim, len))
6055 return -EFAULT;
6056
6057 return 0;
6058}
6059
6060/*
6061 * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
6062 *
6063 * Requests that the local endpoint set the specified Adaptation Layer
6064 * Indication parameter for all future INIT and INIT-ACK exchanges.
6065 */
6066static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
6067 char __user *optval, int __user *optlen)
6068{
6069 struct sctp_setadaptation adaptation;
6070
6071 if (len < sizeof(struct sctp_setadaptation))
6072 return -EINVAL;
6073
6074 len = sizeof(struct sctp_setadaptation);
6075
6076 adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
6077
6078 if (put_user(len, optlen))
6079 return -EFAULT;
6080 if (copy_to_user(optval, &adaptation, len))
6081 return -EFAULT;
6082
6083 return 0;
6084}
6085
6086/*
6087 *
6088 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
6089 *
6090 * Applications that wish to use the sendto() system call may wish to
6091 * specify a default set of parameters that would normally be supplied
6092 * through the inclusion of ancillary data. This socket option allows
6093 * such an application to set the default sctp_sndrcvinfo structure.
6094
6095
6096 * The application that wishes to use this socket option simply passes
6097 * in to this call the sctp_sndrcvinfo structure defined in Section
6098 * 5.2.2) The input parameters accepted by this call include
6099 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
6100 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
6101 * to this call if the caller is using the UDP model.
6102 *
6103 * For getsockopt, it get the default sctp_sndrcvinfo structure.
6104 */
6105static int sctp_getsockopt_default_send_param(struct sock *sk,
6106 int len, char __user *optval,
6107 int __user *optlen)
6108{
6109 struct sctp_sock *sp = sctp_sk(sk);
6110 struct sctp_association *asoc;
6111 struct sctp_sndrcvinfo info;
6112
6113 if (len < sizeof(info))
6114 return -EINVAL;
6115
6116 len = sizeof(info);
6117
6118 if (copy_from_user(&info, optval, len))
6119 return -EFAULT;
6120
6121 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
6122 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
6123 return -EINVAL;
6124 if (asoc) {
6125 info.sinfo_stream = asoc->default_stream;
6126 info.sinfo_flags = asoc->default_flags;
6127 info.sinfo_ppid = asoc->default_ppid;
6128 info.sinfo_context = asoc->default_context;
6129 info.sinfo_timetolive = asoc->default_timetolive;
6130 } else {
6131 info.sinfo_stream = sp->default_stream;
6132 info.sinfo_flags = sp->default_flags;
6133 info.sinfo_ppid = sp->default_ppid;
6134 info.sinfo_context = sp->default_context;
6135 info.sinfo_timetolive = sp->default_timetolive;
6136 }
6137
6138 if (put_user(len, optlen))
6139 return -EFAULT;
6140 if (copy_to_user(optval, &info, len))
6141 return -EFAULT;
6142
6143 return 0;
6144}
6145
6146/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
6147 * (SCTP_DEFAULT_SNDINFO)
6148 */
6149static int sctp_getsockopt_default_sndinfo(struct sock *sk, int len,
6150 char __user *optval,
6151 int __user *optlen)
6152{
6153 struct sctp_sock *sp = sctp_sk(sk);
6154 struct sctp_association *asoc;
6155 struct sctp_sndinfo info;
6156
6157 if (len < sizeof(info))
6158 return -EINVAL;
6159
6160 len = sizeof(info);
6161
6162 if (copy_from_user(&info, optval, len))
6163 return -EFAULT;
6164
6165 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
6166 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
6167 return -EINVAL;
6168 if (asoc) {
6169 info.snd_sid = asoc->default_stream;
6170 info.snd_flags = asoc->default_flags;
6171 info.snd_ppid = asoc->default_ppid;
6172 info.snd_context = asoc->default_context;
6173 } else {
6174 info.snd_sid = sp->default_stream;
6175 info.snd_flags = sp->default_flags;
6176 info.snd_ppid = sp->default_ppid;
6177 info.snd_context = sp->default_context;
6178 }
6179
6180 if (put_user(len, optlen))
6181 return -EFAULT;
6182 if (copy_to_user(optval, &info, len))
6183 return -EFAULT;
6184
6185 return 0;
6186}
6187
6188/*
6189 *
6190 * 7.1.5 SCTP_NODELAY
6191 *
6192 * Turn on/off any Nagle-like algorithm. This means that packets are
6193 * generally sent as soon as possible and no unnecessary delays are
6194 * introduced, at the cost of more packets in the network. Expects an
6195 * integer boolean flag.
6196 */
6197
6198static int sctp_getsockopt_nodelay(struct sock *sk, int len,
6199 char __user *optval, int __user *optlen)
6200{
6201 int val;
6202
6203 if (len < sizeof(int))
6204 return -EINVAL;
6205
6206 len = sizeof(int);
6207 val = (sctp_sk(sk)->nodelay == 1);
6208 if (put_user(len, optlen))
6209 return -EFAULT;
6210 if (copy_to_user(optval, &val, len))
6211 return -EFAULT;
6212 return 0;
6213}
6214
6215/*
6216 *
6217 * 7.1.1 SCTP_RTOINFO
6218 *
6219 * The protocol parameters used to initialize and bound retransmission
6220 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
6221 * and modify these parameters.
6222 * All parameters are time values, in milliseconds. A value of 0, when
6223 * modifying the parameters, indicates that the current value should not
6224 * be changed.
6225 *
6226 */
6227static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
6228 char __user *optval,
6229 int __user *optlen) {
6230 struct sctp_rtoinfo rtoinfo;
6231 struct sctp_association *asoc;
6232
6233 if (len < sizeof (struct sctp_rtoinfo))
6234 return -EINVAL;
6235
6236 len = sizeof(struct sctp_rtoinfo);
6237
6238 if (copy_from_user(&rtoinfo, optval, len))
6239 return -EFAULT;
6240
6241 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
6242
6243 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
6244 return -EINVAL;
6245
6246 /* Values corresponding to the specific association. */
6247 if (asoc) {
6248 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
6249 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
6250 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
6251 } else {
6252 /* Values corresponding to the endpoint. */
6253 struct sctp_sock *sp = sctp_sk(sk);
6254
6255 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
6256 rtoinfo.srto_max = sp->rtoinfo.srto_max;
6257 rtoinfo.srto_min = sp->rtoinfo.srto_min;
6258 }
6259
6260 if (put_user(len, optlen))
6261 return -EFAULT;
6262
6263 if (copy_to_user(optval, &rtoinfo, len))
6264 return -EFAULT;
6265
6266 return 0;
6267}
6268
6269/*
6270 *
6271 * 7.1.2 SCTP_ASSOCINFO
6272 *
6273 * This option is used to tune the maximum retransmission attempts
6274 * of the association.
6275 * Returns an error if the new association retransmission value is
6276 * greater than the sum of the retransmission value of the peer.
6277 * See [SCTP] for more information.
6278 *
6279 */
6280static int sctp_getsockopt_associnfo(struct sock *sk, int len,
6281 char __user *optval,
6282 int __user *optlen)
6283{
6284
6285 struct sctp_assocparams assocparams;
6286 struct sctp_association *asoc;
6287 struct list_head *pos;
6288 int cnt = 0;
6289
6290 if (len < sizeof (struct sctp_assocparams))
6291 return -EINVAL;
6292
6293 len = sizeof(struct sctp_assocparams);
6294
6295 if (copy_from_user(&assocparams, optval, len))
6296 return -EFAULT;
6297
6298 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
6299
6300 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
6301 return -EINVAL;
6302
6303 /* Values correspoinding to the specific association */
6304 if (asoc) {
6305 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
6306 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
6307 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
6308 assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life);
6309
6310 list_for_each(pos, &asoc->peer.transport_addr_list) {
6311 cnt++;
6312 }
6313
6314 assocparams.sasoc_number_peer_destinations = cnt;
6315 } else {
6316 /* Values corresponding to the endpoint */
6317 struct sctp_sock *sp = sctp_sk(sk);
6318
6319 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
6320 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
6321 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
6322 assocparams.sasoc_cookie_life =
6323 sp->assocparams.sasoc_cookie_life;
6324 assocparams.sasoc_number_peer_destinations =
6325 sp->assocparams.
6326 sasoc_number_peer_destinations;
6327 }
6328
6329 if (put_user(len, optlen))
6330 return -EFAULT;
6331
6332 if (copy_to_user(optval, &assocparams, len))
6333 return -EFAULT;
6334
6335 return 0;
6336}
6337
6338/*
6339 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
6340 *
6341 * This socket option is a boolean flag which turns on or off mapped V4
6342 * addresses. If this option is turned on and the socket is type
6343 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
6344 * If this option is turned off, then no mapping will be done of V4
6345 * addresses and a user will receive both PF_INET6 and PF_INET type
6346 * addresses on the socket.
6347 */
6348static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
6349 char __user *optval, int __user *optlen)
6350{
6351 int val;
6352 struct sctp_sock *sp = sctp_sk(sk);
6353
6354 if (len < sizeof(int))
6355 return -EINVAL;
6356
6357 len = sizeof(int);
6358 val = sp->v4mapped;
6359 if (put_user(len, optlen))
6360 return -EFAULT;
6361 if (copy_to_user(optval, &val, len))
6362 return -EFAULT;
6363
6364 return 0;
6365}
6366
6367/*
6368 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
6369 * (chapter and verse is quoted at sctp_setsockopt_context())
6370 */
6371static int sctp_getsockopt_context(struct sock *sk, int len,
6372 char __user *optval, int __user *optlen)
6373{
6374 struct sctp_assoc_value params;
6375 struct sctp_sock *sp;
6376 struct sctp_association *asoc;
6377
6378 if (len < sizeof(struct sctp_assoc_value))
6379 return -EINVAL;
6380
6381 len = sizeof(struct sctp_assoc_value);
6382
6383 if (copy_from_user(&params, optval, len))
6384 return -EFAULT;
6385
6386 sp = sctp_sk(sk);
6387
6388 if (params.assoc_id != 0) {
6389 asoc = sctp_id2assoc(sk, params.assoc_id);
6390 if (!asoc)
6391 return -EINVAL;
6392 params.assoc_value = asoc->default_rcv_context;
6393 } else {
6394 params.assoc_value = sp->default_rcv_context;
6395 }
6396
6397 if (put_user(len, optlen))
6398 return -EFAULT;
6399 if (copy_to_user(optval, &params, len))
6400 return -EFAULT;
6401
6402 return 0;
6403}
6404
6405/*
6406 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
6407 * This option will get or set the maximum size to put in any outgoing
6408 * SCTP DATA chunk. If a message is larger than this size it will be
6409 * fragmented by SCTP into the specified size. Note that the underlying
6410 * SCTP implementation may fragment into smaller sized chunks when the
6411 * PMTU of the underlying association is smaller than the value set by
6412 * the user. The default value for this option is '0' which indicates
6413 * the user is NOT limiting fragmentation and only the PMTU will effect
6414 * SCTP's choice of DATA chunk size. Note also that values set larger
6415 * than the maximum size of an IP datagram will effectively let SCTP
6416 * control fragmentation (i.e. the same as setting this option to 0).
6417 *
6418 * The following structure is used to access and modify this parameter:
6419 *
6420 * struct sctp_assoc_value {
6421 * sctp_assoc_t assoc_id;
6422 * uint32_t assoc_value;
6423 * };
6424 *
6425 * assoc_id: This parameter is ignored for one-to-one style sockets.
6426 * For one-to-many style sockets this parameter indicates which
6427 * association the user is performing an action upon. Note that if
6428 * this field's value is zero then the endpoints default value is
6429 * changed (effecting future associations only).
6430 * assoc_value: This parameter specifies the maximum size in bytes.
6431 */
6432static int sctp_getsockopt_maxseg(struct sock *sk, int len,
6433 char __user *optval, int __user *optlen)
6434{
6435 struct sctp_assoc_value params;
6436 struct sctp_association *asoc;
6437
6438 if (len == sizeof(int)) {
6439 pr_warn_ratelimited(DEPRECATED
6440 "%s (pid %d) "
6441 "Use of int in maxseg socket option.\n"
6442 "Use struct sctp_assoc_value instead\n",
6443 current->comm, task_pid_nr(current));
6444 params.assoc_id = 0;
6445 } else if (len >= sizeof(struct sctp_assoc_value)) {
6446 len = sizeof(struct sctp_assoc_value);
6447 if (copy_from_user(&params, optval, len))
6448 return -EFAULT;
6449 } else
6450 return -EINVAL;
6451
6452 asoc = sctp_id2assoc(sk, params.assoc_id);
6453 if (!asoc && params.assoc_id && sctp_style(sk, UDP))
6454 return -EINVAL;
6455
6456 if (asoc)
6457 params.assoc_value = asoc->frag_point;
6458 else
6459 params.assoc_value = sctp_sk(sk)->user_frag;
6460
6461 if (put_user(len, optlen))
6462 return -EFAULT;
6463 if (len == sizeof(int)) {
6464 if (copy_to_user(optval, &params.assoc_value, len))
6465 return -EFAULT;
6466 } else {
6467 if (copy_to_user(optval, &params, len))
6468 return -EFAULT;
6469 }
6470
6471 return 0;
6472}
6473
6474/*
6475 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
6476 * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
6477 */
6478static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
6479 char __user *optval, int __user *optlen)
6480{
6481 int val;
6482
6483 if (len < sizeof(int))
6484 return -EINVAL;
6485
6486 len = sizeof(int);
6487
6488 val = sctp_sk(sk)->frag_interleave;
6489 if (put_user(len, optlen))
6490 return -EFAULT;
6491 if (copy_to_user(optval, &val, len))
6492 return -EFAULT;
6493
6494 return 0;
6495}
6496
6497/*
6498 * 7.1.25. Set or Get the sctp partial delivery point
6499 * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
6500 */
6501static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
6502 char __user *optval,
6503 int __user *optlen)
6504{
6505 u32 val;
6506
6507 if (len < sizeof(u32))
6508 return -EINVAL;
6509
6510 len = sizeof(u32);
6511
6512 val = sctp_sk(sk)->pd_point;
6513 if (put_user(len, optlen))
6514 return -EFAULT;
6515 if (copy_to_user(optval, &val, len))
6516 return -EFAULT;
6517
6518 return 0;
6519}
6520
6521/*
6522 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
6523 * (chapter and verse is quoted at sctp_setsockopt_maxburst())
6524 */
6525static int sctp_getsockopt_maxburst(struct sock *sk, int len,
6526 char __user *optval,
6527 int __user *optlen)
6528{
6529 struct sctp_assoc_value params;
6530 struct sctp_sock *sp;
6531 struct sctp_association *asoc;
6532
6533 if (len == sizeof(int)) {
6534 pr_warn_ratelimited(DEPRECATED
6535 "%s (pid %d) "
6536 "Use of int in max_burst socket option.\n"
6537 "Use struct sctp_assoc_value instead\n",
6538 current->comm, task_pid_nr(current));
6539 params.assoc_id = 0;
6540 } else if (len >= sizeof(struct sctp_assoc_value)) {
6541 len = sizeof(struct sctp_assoc_value);
6542 if (copy_from_user(&params, optval, len))
6543 return -EFAULT;
6544 } else
6545 return -EINVAL;
6546
6547 sp = sctp_sk(sk);
6548
6549 if (params.assoc_id != 0) {
6550 asoc = sctp_id2assoc(sk, params.assoc_id);
6551 if (!asoc)
6552 return -EINVAL;
6553 params.assoc_value = asoc->max_burst;
6554 } else
6555 params.assoc_value = sp->max_burst;
6556
6557 if (len == sizeof(int)) {
6558 if (copy_to_user(optval, &params.assoc_value, len))
6559 return -EFAULT;
6560 } else {
6561 if (copy_to_user(optval, &params, len))
6562 return -EFAULT;
6563 }
6564
6565 return 0;
6566
6567}
6568
6569static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
6570 char __user *optval, int __user *optlen)
6571{
6572 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6573 struct sctp_hmacalgo __user *p = (void __user *)optval;
6574 struct sctp_hmac_algo_param *hmacs;
6575 __u16 data_len = 0;
6576 u32 num_idents;
6577 int i;
6578
6579 if (!ep->auth_enable)
6580 return -EACCES;
6581
6582 hmacs = ep->auth_hmacs_list;
6583 data_len = ntohs(hmacs->param_hdr.length) -
6584 sizeof(struct sctp_paramhdr);
6585
6586 if (len < sizeof(struct sctp_hmacalgo) + data_len)
6587 return -EINVAL;
6588
6589 len = sizeof(struct sctp_hmacalgo) + data_len;
6590 num_idents = data_len / sizeof(u16);
6591
6592 if (put_user(len, optlen))
6593 return -EFAULT;
6594 if (put_user(num_idents, &p->shmac_num_idents))
6595 return -EFAULT;
6596 for (i = 0; i < num_idents; i++) {
6597 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
6598
6599 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
6600 return -EFAULT;
6601 }
6602 return 0;
6603}
6604
6605static int sctp_getsockopt_active_key(struct sock *sk, int len,
6606 char __user *optval, int __user *optlen)
6607{
6608 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6609 struct sctp_authkeyid val;
6610 struct sctp_association *asoc;
6611
6612 if (!ep->auth_enable)
6613 return -EACCES;
6614
6615 if (len < sizeof(struct sctp_authkeyid))
6616 return -EINVAL;
6617
6618 len = sizeof(struct sctp_authkeyid);
6619 if (copy_from_user(&val, optval, len))
6620 return -EFAULT;
6621
6622 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
6623 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
6624 return -EINVAL;
6625
6626 if (asoc)
6627 val.scact_keynumber = asoc->active_key_id;
6628 else
6629 val.scact_keynumber = ep->active_key_id;
6630
6631 if (put_user(len, optlen))
6632 return -EFAULT;
6633 if (copy_to_user(optval, &val, len))
6634 return -EFAULT;
6635
6636 return 0;
6637}
6638
6639static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
6640 char __user *optval, int __user *optlen)
6641{
6642 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6643 struct sctp_authchunks __user *p = (void __user *)optval;
6644 struct sctp_authchunks val;
6645 struct sctp_association *asoc;
6646 struct sctp_chunks_param *ch;
6647 u32 num_chunks = 0;
6648 char __user *to;
6649
6650 if (!ep->auth_enable)
6651 return -EACCES;
6652
6653 if (len < sizeof(struct sctp_authchunks))
6654 return -EINVAL;
6655
6656 if (copy_from_user(&val, optval, sizeof(val)))
6657 return -EFAULT;
6658
6659 to = p->gauth_chunks;
6660 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6661 if (!asoc)
6662 return -EINVAL;
6663
6664 ch = asoc->peer.peer_chunks;
6665 if (!ch)
6666 goto num;
6667
6668 /* See if the user provided enough room for all the data */
6669 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
6670 if (len < num_chunks)
6671 return -EINVAL;
6672
6673 if (copy_to_user(to, ch->chunks, num_chunks))
6674 return -EFAULT;
6675num:
6676 len = sizeof(struct sctp_authchunks) + num_chunks;
6677 if (put_user(len, optlen))
6678 return -EFAULT;
6679 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6680 return -EFAULT;
6681 return 0;
6682}
6683
6684static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
6685 char __user *optval, int __user *optlen)
6686{
6687 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
6688 struct sctp_authchunks __user *p = (void __user *)optval;
6689 struct sctp_authchunks val;
6690 struct sctp_association *asoc;
6691 struct sctp_chunks_param *ch;
6692 u32 num_chunks = 0;
6693 char __user *to;
6694
6695 if (!ep->auth_enable)
6696 return -EACCES;
6697
6698 if (len < sizeof(struct sctp_authchunks))
6699 return -EINVAL;
6700
6701 if (copy_from_user(&val, optval, sizeof(val)))
6702 return -EFAULT;
6703
6704 to = p->gauth_chunks;
6705 asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
6706 if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
6707 return -EINVAL;
6708
6709 if (asoc)
6710 ch = (struct sctp_chunks_param *)asoc->c.auth_chunks;
6711 else
6712 ch = ep->auth_chunk_list;
6713
6714 if (!ch)
6715 goto num;
6716
6717 num_chunks = ntohs(ch->param_hdr.length) - sizeof(struct sctp_paramhdr);
6718 if (len < sizeof(struct sctp_authchunks) + num_chunks)
6719 return -EINVAL;
6720
6721 if (copy_to_user(to, ch->chunks, num_chunks))
6722 return -EFAULT;
6723num:
6724 len = sizeof(struct sctp_authchunks) + num_chunks;
6725 if (put_user(len, optlen))
6726 return -EFAULT;
6727 if (put_user(num_chunks, &p->gauth_number_of_chunks))
6728 return -EFAULT;
6729
6730 return 0;
6731}
6732
6733/*
6734 * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
6735 * This option gets the current number of associations that are attached
6736 * to a one-to-many style socket. The option value is an uint32_t.
6737 */
6738static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
6739 char __user *optval, int __user *optlen)
6740{
6741 struct sctp_sock *sp = sctp_sk(sk);
6742 struct sctp_association *asoc;
6743 u32 val = 0;
6744
6745 if (sctp_style(sk, TCP))
6746 return -EOPNOTSUPP;
6747
6748 if (len < sizeof(u32))
6749 return -EINVAL;
6750
6751 len = sizeof(u32);
6752
6753 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6754 val++;
6755 }
6756
6757 if (put_user(len, optlen))
6758 return -EFAULT;
6759 if (copy_to_user(optval, &val, len))
6760 return -EFAULT;
6761
6762 return 0;
6763}
6764
6765/*
6766 * 8.1.23 SCTP_AUTO_ASCONF
6767 * See the corresponding setsockopt entry as description
6768 */
6769static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
6770 char __user *optval, int __user *optlen)
6771{
6772 int val = 0;
6773
6774 if (len < sizeof(int))
6775 return -EINVAL;
6776
6777 len = sizeof(int);
6778 if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
6779 val = 1;
6780 if (put_user(len, optlen))
6781 return -EFAULT;
6782 if (copy_to_user(optval, &val, len))
6783 return -EFAULT;
6784 return 0;
6785}
6786
6787/*
6788 * 8.2.6. Get the Current Identifiers of Associations
6789 * (SCTP_GET_ASSOC_ID_LIST)
6790 *
6791 * This option gets the current list of SCTP association identifiers of
6792 * the SCTP associations handled by a one-to-many style socket.
6793 */
6794static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
6795 char __user *optval, int __user *optlen)
6796{
6797 struct sctp_sock *sp = sctp_sk(sk);
6798 struct sctp_association *asoc;
6799 struct sctp_assoc_ids *ids;
6800 u32 num = 0;
6801
6802 if (sctp_style(sk, TCP))
6803 return -EOPNOTSUPP;
6804
6805 if (len < sizeof(struct sctp_assoc_ids))
6806 return -EINVAL;
6807
6808 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6809 num++;
6810 }
6811
6812 if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
6813 return -EINVAL;
6814
6815 len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
6816
6817 ids = kmalloc(len, GFP_USER | __GFP_NOWARN);
6818 if (unlikely(!ids))
6819 return -ENOMEM;
6820
6821 ids->gaids_number_of_ids = num;
6822 num = 0;
6823 list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
6824 ids->gaids_assoc_id[num++] = asoc->assoc_id;
6825 }
6826
6827 if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
6828 kfree(ids);
6829 return -EFAULT;
6830 }
6831
6832 kfree(ids);
6833 return 0;
6834}
6835
6836/*
6837 * SCTP_PEER_ADDR_THLDS
6838 *
6839 * This option allows us to fetch the partially failed threshold for one or all
6840 * transports in an association. See Section 6.1 of:
6841 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
6842 */
6843static int sctp_getsockopt_paddr_thresholds(struct sock *sk,
6844 char __user *optval,
6845 int len,
6846 int __user *optlen)
6847{
6848 struct sctp_paddrthlds val;
6849 struct sctp_transport *trans;
6850 struct sctp_association *asoc;
6851
6852 if (len < sizeof(struct sctp_paddrthlds))
6853 return -EINVAL;
6854 len = sizeof(struct sctp_paddrthlds);
6855 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len))
6856 return -EFAULT;
6857
6858 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
6859 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
6860 if (!asoc)
6861 return -ENOENT;
6862
6863 val.spt_pathpfthld = asoc->pf_retrans;
6864 val.spt_pathmaxrxt = asoc->pathmaxrxt;
6865 } else {
6866 trans = sctp_addr_id2transport(sk, &val.spt_address,
6867 val.spt_assoc_id);
6868 if (!trans)
6869 return -ENOENT;
6870
6871 val.spt_pathmaxrxt = trans->pathmaxrxt;
6872 val.spt_pathpfthld = trans->pf_retrans;
6873 }
6874
6875 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
6876 return -EFAULT;
6877
6878 return 0;
6879}
6880
6881/*
6882 * SCTP_GET_ASSOC_STATS
6883 *
6884 * This option retrieves local per endpoint statistics. It is modeled
6885 * after OpenSolaris' implementation
6886 */
6887static int sctp_getsockopt_assoc_stats(struct sock *sk, int len,
6888 char __user *optval,
6889 int __user *optlen)
6890{
6891 struct sctp_assoc_stats sas;
6892 struct sctp_association *asoc = NULL;
6893
6894 /* User must provide at least the assoc id */
6895 if (len < sizeof(sctp_assoc_t))
6896 return -EINVAL;
6897
6898 /* Allow the struct to grow and fill in as much as possible */
6899 len = min_t(size_t, len, sizeof(sas));
6900
6901 if (copy_from_user(&sas, optval, len))
6902 return -EFAULT;
6903
6904 asoc = sctp_id2assoc(sk, sas.sas_assoc_id);
6905 if (!asoc)
6906 return -EINVAL;
6907
6908 sas.sas_rtxchunks = asoc->stats.rtxchunks;
6909 sas.sas_gapcnt = asoc->stats.gapcnt;
6910 sas.sas_outofseqtsns = asoc->stats.outofseqtsns;
6911 sas.sas_osacks = asoc->stats.osacks;
6912 sas.sas_isacks = asoc->stats.isacks;
6913 sas.sas_octrlchunks = asoc->stats.octrlchunks;
6914 sas.sas_ictrlchunks = asoc->stats.ictrlchunks;
6915 sas.sas_oodchunks = asoc->stats.oodchunks;
6916 sas.sas_iodchunks = asoc->stats.iodchunks;
6917 sas.sas_ouodchunks = asoc->stats.ouodchunks;
6918 sas.sas_iuodchunks = asoc->stats.iuodchunks;
6919 sas.sas_idupchunks = asoc->stats.idupchunks;
6920 sas.sas_opackets = asoc->stats.opackets;
6921 sas.sas_ipackets = asoc->stats.ipackets;
6922
6923 /* New high max rto observed, will return 0 if not a single
6924 * RTO update took place. obs_rto_ipaddr will be bogus
6925 * in such a case
6926 */
6927 sas.sas_maxrto = asoc->stats.max_obs_rto;
6928 memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr,
6929 sizeof(struct sockaddr_storage));
6930
6931 /* Mark beginning of a new observation period */
6932 asoc->stats.max_obs_rto = asoc->rto_min;
6933
6934 if (put_user(len, optlen))
6935 return -EFAULT;
6936
6937 pr_debug("%s: len:%d, assoc_id:%d\n", __func__, len, sas.sas_assoc_id);
6938
6939 if (copy_to_user(optval, &sas, len))
6940 return -EFAULT;
6941
6942 return 0;
6943}
6944
6945static int sctp_getsockopt_recvrcvinfo(struct sock *sk, int len,
6946 char __user *optval,
6947 int __user *optlen)
6948{
6949 int val = 0;
6950
6951 if (len < sizeof(int))
6952 return -EINVAL;
6953
6954 len = sizeof(int);
6955 if (sctp_sk(sk)->recvrcvinfo)
6956 val = 1;
6957 if (put_user(len, optlen))
6958 return -EFAULT;
6959 if (copy_to_user(optval, &val, len))
6960 return -EFAULT;
6961
6962 return 0;
6963}
6964
6965static int sctp_getsockopt_recvnxtinfo(struct sock *sk, int len,
6966 char __user *optval,
6967 int __user *optlen)
6968{
6969 int val = 0;
6970
6971 if (len < sizeof(int))
6972 return -EINVAL;
6973
6974 len = sizeof(int);
6975 if (sctp_sk(sk)->recvnxtinfo)
6976 val = 1;
6977 if (put_user(len, optlen))
6978 return -EFAULT;
6979 if (copy_to_user(optval, &val, len))
6980 return -EFAULT;
6981
6982 return 0;
6983}
6984
6985static int sctp_getsockopt_pr_supported(struct sock *sk, int len,
6986 char __user *optval,
6987 int __user *optlen)
6988{
6989 struct sctp_assoc_value params;
6990 struct sctp_association *asoc;
6991 int retval = -EFAULT;
6992
6993 if (len < sizeof(params)) {
6994 retval = -EINVAL;
6995 goto out;
6996 }
6997
6998 len = sizeof(params);
6999 if (copy_from_user(&params, optval, len))
7000 goto out;
7001
7002 asoc = sctp_id2assoc(sk, params.assoc_id);
7003 if (asoc) {
7004 params.assoc_value = asoc->prsctp_enable;
7005 } else if (!params.assoc_id) {
7006 struct sctp_sock *sp = sctp_sk(sk);
7007
7008 params.assoc_value = sp->ep->prsctp_enable;
7009 } else {
7010 retval = -EINVAL;
7011 goto out;
7012 }
7013
7014 if (put_user(len, optlen))
7015 goto out;
7016
7017 if (copy_to_user(optval, &params, len))
7018 goto out;
7019
7020 retval = 0;
7021
7022out:
7023 return retval;
7024}
7025
7026static int sctp_getsockopt_default_prinfo(struct sock *sk, int len,
7027 char __user *optval,
7028 int __user *optlen)
7029{
7030 struct sctp_default_prinfo info;
7031 struct sctp_association *asoc;
7032 int retval = -EFAULT;
7033
7034 if (len < sizeof(info)) {
7035 retval = -EINVAL;
7036 goto out;
7037 }
7038
7039 len = sizeof(info);
7040 if (copy_from_user(&info, optval, len))
7041 goto out;
7042
7043 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
7044 if (asoc) {
7045 info.pr_policy = SCTP_PR_POLICY(asoc->default_flags);
7046 info.pr_value = asoc->default_timetolive;
7047 } else if (!info.pr_assoc_id) {
7048 struct sctp_sock *sp = sctp_sk(sk);
7049
7050 info.pr_policy = SCTP_PR_POLICY(sp->default_flags);
7051 info.pr_value = sp->default_timetolive;
7052 } else {
7053 retval = -EINVAL;
7054 goto out;
7055 }
7056
7057 if (put_user(len, optlen))
7058 goto out;
7059
7060 if (copy_to_user(optval, &info, len))
7061 goto out;
7062
7063 retval = 0;
7064
7065out:
7066 return retval;
7067}
7068
7069static int sctp_getsockopt_pr_assocstatus(struct sock *sk, int len,
7070 char __user *optval,
7071 int __user *optlen)
7072{
7073 struct sctp_prstatus params;
7074 struct sctp_association *asoc;
7075 int policy;
7076 int retval = -EINVAL;
7077
7078 if (len < sizeof(params))
7079 goto out;
7080
7081 len = sizeof(params);
7082 if (copy_from_user(&params, optval, len)) {
7083 retval = -EFAULT;
7084 goto out;
7085 }
7086
7087 policy = params.sprstat_policy;
7088 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7089 ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
7090 goto out;
7091
7092 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7093 if (!asoc)
7094 goto out;
7095
7096 if (policy == SCTP_PR_SCTP_ALL) {
7097 params.sprstat_abandoned_unsent = 0;
7098 params.sprstat_abandoned_sent = 0;
7099 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7100 params.sprstat_abandoned_unsent +=
7101 asoc->abandoned_unsent[policy];
7102 params.sprstat_abandoned_sent +=
7103 asoc->abandoned_sent[policy];
7104 }
7105 } else {
7106 params.sprstat_abandoned_unsent =
7107 asoc->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7108 params.sprstat_abandoned_sent =
7109 asoc->abandoned_sent[__SCTP_PR_INDEX(policy)];
7110 }
7111
7112 if (put_user(len, optlen)) {
7113 retval = -EFAULT;
7114 goto out;
7115 }
7116
7117 if (copy_to_user(optval, &params, len)) {
7118 retval = -EFAULT;
7119 goto out;
7120 }
7121
7122 retval = 0;
7123
7124out:
7125 return retval;
7126}
7127
7128static int sctp_getsockopt_pr_streamstatus(struct sock *sk, int len,
7129 char __user *optval,
7130 int __user *optlen)
7131{
7132 struct sctp_stream_out_ext *streamoute;
7133 struct sctp_association *asoc;
7134 struct sctp_prstatus params;
7135 int retval = -EINVAL;
7136 int policy;
7137
7138 if (len < sizeof(params))
7139 goto out;
7140
7141 len = sizeof(params);
7142 if (copy_from_user(&params, optval, len)) {
7143 retval = -EFAULT;
7144 goto out;
7145 }
7146
7147 policy = params.sprstat_policy;
7148 if (!policy || (policy & ~(SCTP_PR_SCTP_MASK | SCTP_PR_SCTP_ALL)) ||
7149 ((policy & SCTP_PR_SCTP_ALL) && (policy & SCTP_PR_SCTP_MASK)))
7150 goto out;
7151
7152 asoc = sctp_id2assoc(sk, params.sprstat_assoc_id);
7153 if (!asoc || params.sprstat_sid >= asoc->stream.outcnt)
7154 goto out;
7155
7156 streamoute = SCTP_SO(&asoc->stream, params.sprstat_sid)->ext;
7157 if (!streamoute) {
7158 /* Not allocated yet, means all stats are 0 */
7159 params.sprstat_abandoned_unsent = 0;
7160 params.sprstat_abandoned_sent = 0;
7161 retval = 0;
7162 goto out;
7163 }
7164
7165 if (policy == SCTP_PR_SCTP_ALL) {
7166 params.sprstat_abandoned_unsent = 0;
7167 params.sprstat_abandoned_sent = 0;
7168 for (policy = 0; policy <= SCTP_PR_INDEX(MAX); policy++) {
7169 params.sprstat_abandoned_unsent +=
7170 streamoute->abandoned_unsent[policy];
7171 params.sprstat_abandoned_sent +=
7172 streamoute->abandoned_sent[policy];
7173 }
7174 } else {
7175 params.sprstat_abandoned_unsent =
7176 streamoute->abandoned_unsent[__SCTP_PR_INDEX(policy)];
7177 params.sprstat_abandoned_sent =
7178 streamoute->abandoned_sent[__SCTP_PR_INDEX(policy)];
7179 }
7180
7181 if (put_user(len, optlen) || copy_to_user(optval, &params, len)) {
7182 retval = -EFAULT;
7183 goto out;
7184 }
7185
7186 retval = 0;
7187
7188out:
7189 return retval;
7190}
7191
7192static int sctp_getsockopt_reconfig_supported(struct sock *sk, int len,
7193 char __user *optval,
7194 int __user *optlen)
7195{
7196 struct sctp_assoc_value params;
7197 struct sctp_association *asoc;
7198 int retval = -EFAULT;
7199
7200 if (len < sizeof(params)) {
7201 retval = -EINVAL;
7202 goto out;
7203 }
7204
7205 len = sizeof(params);
7206 if (copy_from_user(&params, optval, len))
7207 goto out;
7208
7209 asoc = sctp_id2assoc(sk, params.assoc_id);
7210 if (asoc) {
7211 params.assoc_value = asoc->reconf_enable;
7212 } else if (!params.assoc_id) {
7213 struct sctp_sock *sp = sctp_sk(sk);
7214
7215 params.assoc_value = sp->ep->reconf_enable;
7216 } else {
7217 retval = -EINVAL;
7218 goto out;
7219 }
7220
7221 if (put_user(len, optlen))
7222 goto out;
7223
7224 if (copy_to_user(optval, &params, len))
7225 goto out;
7226
7227 retval = 0;
7228
7229out:
7230 return retval;
7231}
7232
7233static int sctp_getsockopt_enable_strreset(struct sock *sk, int len,
7234 char __user *optval,
7235 int __user *optlen)
7236{
7237 struct sctp_assoc_value params;
7238 struct sctp_association *asoc;
7239 int retval = -EFAULT;
7240
7241 if (len < sizeof(params)) {
7242 retval = -EINVAL;
7243 goto out;
7244 }
7245
7246 len = sizeof(params);
7247 if (copy_from_user(&params, optval, len))
7248 goto out;
7249
7250 asoc = sctp_id2assoc(sk, params.assoc_id);
7251 if (asoc) {
7252 params.assoc_value = asoc->strreset_enable;
7253 } else if (!params.assoc_id) {
7254 struct sctp_sock *sp = sctp_sk(sk);
7255
7256 params.assoc_value = sp->ep->strreset_enable;
7257 } else {
7258 retval = -EINVAL;
7259 goto out;
7260 }
7261
7262 if (put_user(len, optlen))
7263 goto out;
7264
7265 if (copy_to_user(optval, &params, len))
7266 goto out;
7267
7268 retval = 0;
7269
7270out:
7271 return retval;
7272}
7273
7274static int sctp_getsockopt_scheduler(struct sock *sk, int len,
7275 char __user *optval,
7276 int __user *optlen)
7277{
7278 struct sctp_assoc_value params;
7279 struct sctp_association *asoc;
7280 int retval = -EFAULT;
7281
7282 if (len < sizeof(params)) {
7283 retval = -EINVAL;
7284 goto out;
7285 }
7286
7287 len = sizeof(params);
7288 if (copy_from_user(&params, optval, len))
7289 goto out;
7290
7291 asoc = sctp_id2assoc(sk, params.assoc_id);
7292 if (!asoc) {
7293 retval = -EINVAL;
7294 goto out;
7295 }
7296
7297 params.assoc_value = sctp_sched_get_sched(asoc);
7298
7299 if (put_user(len, optlen))
7300 goto out;
7301
7302 if (copy_to_user(optval, &params, len))
7303 goto out;
7304
7305 retval = 0;
7306
7307out:
7308 return retval;
7309}
7310
7311static int sctp_getsockopt_scheduler_value(struct sock *sk, int len,
7312 char __user *optval,
7313 int __user *optlen)
7314{
7315 struct sctp_stream_value params;
7316 struct sctp_association *asoc;
7317 int retval = -EFAULT;
7318
7319 if (len < sizeof(params)) {
7320 retval = -EINVAL;
7321 goto out;
7322 }
7323
7324 len = sizeof(params);
7325 if (copy_from_user(&params, optval, len))
7326 goto out;
7327
7328 asoc = sctp_id2assoc(sk, params.assoc_id);
7329 if (!asoc) {
7330 retval = -EINVAL;
7331 goto out;
7332 }
7333
7334 retval = sctp_sched_get_value(asoc, params.stream_id,
7335 &params.stream_value);
7336 if (retval)
7337 goto out;
7338
7339 if (put_user(len, optlen)) {
7340 retval = -EFAULT;
7341 goto out;
7342 }
7343
7344 if (copy_to_user(optval, &params, len)) {
7345 retval = -EFAULT;
7346 goto out;
7347 }
7348
7349out:
7350 return retval;
7351}
7352
7353static int sctp_getsockopt_interleaving_supported(struct sock *sk, int len,
7354 char __user *optval,
7355 int __user *optlen)
7356{
7357 struct sctp_assoc_value params;
7358 struct sctp_association *asoc;
7359 int retval = -EFAULT;
7360
7361 if (len < sizeof(params)) {
7362 retval = -EINVAL;
7363 goto out;
7364 }
7365
7366 len = sizeof(params);
7367 if (copy_from_user(&params, optval, len))
7368 goto out;
7369
7370 asoc = sctp_id2assoc(sk, params.assoc_id);
7371 if (asoc) {
7372 params.assoc_value = asoc->intl_enable;
7373 } else if (!params.assoc_id) {
7374 struct sctp_sock *sp = sctp_sk(sk);
7375
7376 params.assoc_value = sp->strm_interleave;
7377 } else {
7378 retval = -EINVAL;
7379 goto out;
7380 }
7381
7382 if (put_user(len, optlen))
7383 goto out;
7384
7385 if (copy_to_user(optval, &params, len))
7386 goto out;
7387
7388 retval = 0;
7389
7390out:
7391 return retval;
7392}
7393
7394static int sctp_getsockopt_reuse_port(struct sock *sk, int len,
7395 char __user *optval,
7396 int __user *optlen)
7397{
7398 int val;
7399
7400 if (len < sizeof(int))
7401 return -EINVAL;
7402
7403 len = sizeof(int);
7404 val = sctp_sk(sk)->reuse;
7405 if (put_user(len, optlen))
7406 return -EFAULT;
7407
7408 if (copy_to_user(optval, &val, len))
7409 return -EFAULT;
7410
7411 return 0;
7412}
7413
7414static int sctp_getsockopt(struct sock *sk, int level, int optname,
7415 char __user *optval, int __user *optlen)
7416{
7417 int retval = 0;
7418 int len;
7419
7420 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
7421
7422 /* I can hardly begin to describe how wrong this is. This is
7423 * so broken as to be worse than useless. The API draft
7424 * REALLY is NOT helpful here... I am not convinced that the
7425 * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
7426 * are at all well-founded.
7427 */
7428 if (level != SOL_SCTP) {
7429 struct sctp_af *af = sctp_sk(sk)->pf->af;
7430
7431 retval = af->getsockopt(sk, level, optname, optval, optlen);
7432 return retval;
7433 }
7434
7435 if (get_user(len, optlen))
7436 return -EFAULT;
7437
7438 if (len < 0)
7439 return -EINVAL;
7440
7441 lock_sock(sk);
7442
7443 switch (optname) {
7444 case SCTP_STATUS:
7445 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
7446 break;
7447 case SCTP_DISABLE_FRAGMENTS:
7448 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
7449 optlen);
7450 break;
7451 case SCTP_EVENTS:
7452 retval = sctp_getsockopt_events(sk, len, optval, optlen);
7453 break;
7454 case SCTP_AUTOCLOSE:
7455 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
7456 break;
7457 case SCTP_SOCKOPT_PEELOFF:
7458 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
7459 break;
7460 case SCTP_SOCKOPT_PEELOFF_FLAGS:
7461 retval = sctp_getsockopt_peeloff_flags(sk, len, optval, optlen);
7462 break;
7463 case SCTP_PEER_ADDR_PARAMS:
7464 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
7465 optlen);
7466 break;
7467 case SCTP_DELAYED_SACK:
7468 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
7469 optlen);
7470 break;
7471 case SCTP_INITMSG:
7472 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
7473 break;
7474 case SCTP_GET_PEER_ADDRS:
7475 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
7476 optlen);
7477 break;
7478 case SCTP_GET_LOCAL_ADDRS:
7479 retval = sctp_getsockopt_local_addrs(sk, len, optval,
7480 optlen);
7481 break;
7482 case SCTP_SOCKOPT_CONNECTX3:
7483 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
7484 break;
7485 case SCTP_DEFAULT_SEND_PARAM:
7486 retval = sctp_getsockopt_default_send_param(sk, len,
7487 optval, optlen);
7488 break;
7489 case SCTP_DEFAULT_SNDINFO:
7490 retval = sctp_getsockopt_default_sndinfo(sk, len,
7491 optval, optlen);
7492 break;
7493 case SCTP_PRIMARY_ADDR:
7494 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
7495 break;
7496 case SCTP_NODELAY:
7497 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
7498 break;
7499 case SCTP_RTOINFO:
7500 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
7501 break;
7502 case SCTP_ASSOCINFO:
7503 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
7504 break;
7505 case SCTP_I_WANT_MAPPED_V4_ADDR:
7506 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
7507 break;
7508 case SCTP_MAXSEG:
7509 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
7510 break;
7511 case SCTP_GET_PEER_ADDR_INFO:
7512 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
7513 optlen);
7514 break;
7515 case SCTP_ADAPTATION_LAYER:
7516 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
7517 optlen);
7518 break;
7519 case SCTP_CONTEXT:
7520 retval = sctp_getsockopt_context(sk, len, optval, optlen);
7521 break;
7522 case SCTP_FRAGMENT_INTERLEAVE:
7523 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
7524 optlen);
7525 break;
7526 case SCTP_PARTIAL_DELIVERY_POINT:
7527 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
7528 optlen);
7529 break;
7530 case SCTP_MAX_BURST:
7531 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
7532 break;
7533 case SCTP_AUTH_KEY:
7534 case SCTP_AUTH_CHUNK:
7535 case SCTP_AUTH_DELETE_KEY:
7536 case SCTP_AUTH_DEACTIVATE_KEY:
7537 retval = -EOPNOTSUPP;
7538 break;
7539 case SCTP_HMAC_IDENT:
7540 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
7541 break;
7542 case SCTP_AUTH_ACTIVE_KEY:
7543 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
7544 break;
7545 case SCTP_PEER_AUTH_CHUNKS:
7546 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
7547 optlen);
7548 break;
7549 case SCTP_LOCAL_AUTH_CHUNKS:
7550 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
7551 optlen);
7552 break;
7553 case SCTP_GET_ASSOC_NUMBER:
7554 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
7555 break;
7556 case SCTP_GET_ASSOC_ID_LIST:
7557 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
7558 break;
7559 case SCTP_AUTO_ASCONF:
7560 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
7561 break;
7562 case SCTP_PEER_ADDR_THLDS:
7563 retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen);
7564 break;
7565 case SCTP_GET_ASSOC_STATS:
7566 retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen);
7567 break;
7568 case SCTP_RECVRCVINFO:
7569 retval = sctp_getsockopt_recvrcvinfo(sk, len, optval, optlen);
7570 break;
7571 case SCTP_RECVNXTINFO:
7572 retval = sctp_getsockopt_recvnxtinfo(sk, len, optval, optlen);
7573 break;
7574 case SCTP_PR_SUPPORTED:
7575 retval = sctp_getsockopt_pr_supported(sk, len, optval, optlen);
7576 break;
7577 case SCTP_DEFAULT_PRINFO:
7578 retval = sctp_getsockopt_default_prinfo(sk, len, optval,
7579 optlen);
7580 break;
7581 case SCTP_PR_ASSOC_STATUS:
7582 retval = sctp_getsockopt_pr_assocstatus(sk, len, optval,
7583 optlen);
7584 break;
7585 case SCTP_PR_STREAM_STATUS:
7586 retval = sctp_getsockopt_pr_streamstatus(sk, len, optval,
7587 optlen);
7588 break;
7589 case SCTP_RECONFIG_SUPPORTED:
7590 retval = sctp_getsockopt_reconfig_supported(sk, len, optval,
7591 optlen);
7592 break;
7593 case SCTP_ENABLE_STREAM_RESET:
7594 retval = sctp_getsockopt_enable_strreset(sk, len, optval,
7595 optlen);
7596 break;
7597 case SCTP_STREAM_SCHEDULER:
7598 retval = sctp_getsockopt_scheduler(sk, len, optval,
7599 optlen);
7600 break;
7601 case SCTP_STREAM_SCHEDULER_VALUE:
7602 retval = sctp_getsockopt_scheduler_value(sk, len, optval,
7603 optlen);
7604 break;
7605 case SCTP_INTERLEAVING_SUPPORTED:
7606 retval = sctp_getsockopt_interleaving_supported(sk, len, optval,
7607 optlen);
7608 break;
7609 case SCTP_REUSE_PORT:
7610 retval = sctp_getsockopt_reuse_port(sk, len, optval, optlen);
7611 break;
7612 default:
7613 retval = -ENOPROTOOPT;
7614 break;
7615 }
7616
7617 release_sock(sk);
7618 return retval;
7619}
7620
7621static int sctp_hash(struct sock *sk)
7622{
7623 /* STUB */
7624 return 0;
7625}
7626
7627static void sctp_unhash(struct sock *sk)
7628{
7629 /* STUB */
7630}
7631
7632/* Check if port is acceptable. Possibly find first available port.
7633 *
7634 * The port hash table (contained in the 'global' SCTP protocol storage
7635 * returned by struct sctp_protocol *sctp_get_protocol()). The hash
7636 * table is an array of 4096 lists (sctp_bind_hashbucket). Each
7637 * list (the list number is the port number hashed out, so as you
7638 * would expect from a hash function, all the ports in a given list have
7639 * such a number that hashes out to the same list number; you were
7640 * expecting that, right?); so each list has a set of ports, with a
7641 * link to the socket (struct sock) that uses it, the port number and
7642 * a fastreuse flag (FIXME: NPI ipg).
7643 */
7644static struct sctp_bind_bucket *sctp_bucket_create(
7645 struct sctp_bind_hashbucket *head, struct net *, unsigned short snum);
7646
7647static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
7648{
7649 bool reuse = (sk->sk_reuse || sctp_sk(sk)->reuse);
7650 struct sctp_bind_hashbucket *head; /* hash list */
7651 struct sctp_bind_bucket *pp;
7652 unsigned short snum;
7653 int ret;
7654
7655 snum = ntohs(addr->v4.sin_port);
7656
7657 pr_debug("%s: begins, snum:%d\n", __func__, snum);
7658
7659 local_bh_disable();
7660
7661 if (snum == 0) {
7662 /* Search for an available port. */
7663 int low, high, remaining, index;
7664 unsigned int rover;
7665 struct net *net = sock_net(sk);
7666
7667 inet_get_local_port_range(net, &low, &high);
7668 remaining = (high - low) + 1;
7669 rover = prandom_u32() % remaining + low;
7670
7671 do {
7672 rover++;
7673 if ((rover < low) || (rover > high))
7674 rover = low;
7675 if (inet_is_local_reserved_port(net, rover))
7676 continue;
7677 index = sctp_phashfn(sock_net(sk), rover);
7678 head = &sctp_port_hashtable[index];
7679 spin_lock(&head->lock);
7680 sctp_for_each_hentry(pp, &head->chain)
7681 if ((pp->port == rover) &&
7682 net_eq(sock_net(sk), pp->net))
7683 goto next;
7684 break;
7685 next:
7686 spin_unlock(&head->lock);
7687 } while (--remaining > 0);
7688
7689 /* Exhausted local port range during search? */
7690 ret = 1;
7691 if (remaining <= 0)
7692 goto fail;
7693
7694 /* OK, here is the one we will use. HEAD (the port
7695 * hash table list entry) is non-NULL and we hold it's
7696 * mutex.
7697 */
7698 snum = rover;
7699 } else {
7700 /* We are given an specific port number; we verify
7701 * that it is not being used. If it is used, we will
7702 * exahust the search in the hash list corresponding
7703 * to the port number (snum) - we detect that with the
7704 * port iterator, pp being NULL.
7705 */
7706 head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)];
7707 spin_lock(&head->lock);
7708 sctp_for_each_hentry(pp, &head->chain) {
7709 if ((pp->port == snum) && net_eq(pp->net, sock_net(sk)))
7710 goto pp_found;
7711 }
7712 }
7713 pp = NULL;
7714 goto pp_not_found;
7715pp_found:
7716 if (!hlist_empty(&pp->owner)) {
7717 /* We had a port hash table hit - there is an
7718 * available port (pp != NULL) and it is being
7719 * used by other socket (pp->owner not empty); that other
7720 * socket is going to be sk2.
7721 */
7722 struct sock *sk2;
7723
7724 pr_debug("%s: found a possible match\n", __func__);
7725
7726 if (pp->fastreuse && reuse && sk->sk_state != SCTP_SS_LISTENING)
7727 goto success;
7728
7729 /* Run through the list of sockets bound to the port
7730 * (pp->port) [via the pointers bind_next and
7731 * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
7732 * we get the endpoint they describe and run through
7733 * the endpoint's list of IP (v4 or v6) addresses,
7734 * comparing each of the addresses with the address of
7735 * the socket sk. If we find a match, then that means
7736 * that this port/socket (sk) combination are already
7737 * in an endpoint.
7738 */
7739 sk_for_each_bound(sk2, &pp->owner) {
7740 struct sctp_endpoint *ep2;
7741 ep2 = sctp_sk(sk2)->ep;
7742
7743 if (sk == sk2 ||
7744 (reuse && (sk2->sk_reuse || sctp_sk(sk2)->reuse) &&
7745 sk2->sk_state != SCTP_SS_LISTENING))
7746 continue;
7747
7748 if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
7749 sctp_sk(sk2), sctp_sk(sk))) {
7750 ret = (long)sk2;
7751 goto fail_unlock;
7752 }
7753 }
7754
7755 pr_debug("%s: found a match\n", __func__);
7756 }
7757pp_not_found:
7758 /* If there was a hash table miss, create a new port. */
7759 ret = 1;
7760 if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum)))
7761 goto fail_unlock;
7762
7763 /* In either case (hit or miss), make sure fastreuse is 1 only
7764 * if sk->sk_reuse is too (that is, if the caller requested
7765 * SO_REUSEADDR on this socket -sk-).
7766 */
7767 if (hlist_empty(&pp->owner)) {
7768 if (reuse && sk->sk_state != SCTP_SS_LISTENING)
7769 pp->fastreuse = 1;
7770 else
7771 pp->fastreuse = 0;
7772 } else if (pp->fastreuse &&
7773 (!reuse || sk->sk_state == SCTP_SS_LISTENING))
7774 pp->fastreuse = 0;
7775
7776 /* We are set, so fill up all the data in the hash table
7777 * entry, tie the socket list information with the rest of the
7778 * sockets FIXME: Blurry, NPI (ipg).
7779 */
7780success:
7781 if (!sctp_sk(sk)->bind_hash) {
7782 inet_sk(sk)->inet_num = snum;
7783 sk_add_bind_node(sk, &pp->owner);
7784 sctp_sk(sk)->bind_hash = pp;
7785 }
7786 ret = 0;
7787
7788fail_unlock:
7789 spin_unlock(&head->lock);
7790
7791fail:
7792 local_bh_enable();
7793 return ret;
7794}
7795
7796/* Assign a 'snum' port to the socket. If snum == 0, an ephemeral
7797 * port is requested.
7798 */
7799static int sctp_get_port(struct sock *sk, unsigned short snum)
7800{
7801 union sctp_addr addr;
7802 struct sctp_af *af = sctp_sk(sk)->pf->af;
7803
7804 /* Set up a dummy address struct from the sk. */
7805 af->from_sk(&addr, sk);
7806 addr.v4.sin_port = htons(snum);
7807
7808 /* Note: sk->sk_num gets filled in if ephemeral port request. */
7809 return !!sctp_get_port_local(sk, &addr);
7810}
7811
7812/*
7813 * Move a socket to LISTENING state.
7814 */
7815static int sctp_listen_start(struct sock *sk, int backlog)
7816{
7817 struct sctp_sock *sp = sctp_sk(sk);
7818 struct sctp_endpoint *ep = sp->ep;
7819 struct crypto_shash *tfm = NULL;
7820 char alg[32];
7821
7822 /* Allocate HMAC for generating cookie. */
7823 if (!sp->hmac && sp->sctp_hmac_alg) {
7824 sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg);
7825 tfm = crypto_alloc_shash(alg, 0, 0);
7826 if (IS_ERR(tfm)) {
7827 net_info_ratelimited("failed to load transform for %s: %ld\n",
7828 sp->sctp_hmac_alg, PTR_ERR(tfm));
7829 return -ENOSYS;
7830 }
7831 sctp_sk(sk)->hmac = tfm;
7832 }
7833
7834 /*
7835 * If a bind() or sctp_bindx() is not called prior to a listen()
7836 * call that allows new associations to be accepted, the system
7837 * picks an ephemeral port and will choose an address set equivalent
7838 * to binding with a wildcard address.
7839 *
7840 * This is not currently spelled out in the SCTP sockets
7841 * extensions draft, but follows the practice as seen in TCP
7842 * sockets.
7843 *
7844 */
7845 inet_sk_set_state(sk, SCTP_SS_LISTENING);
7846 if (!ep->base.bind_addr.port) {
7847 if (sctp_autobind(sk))
7848 return -EAGAIN;
7849 } else {
7850 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
7851 inet_sk_set_state(sk, SCTP_SS_CLOSED);
7852 return -EADDRINUSE;
7853 }
7854 }
7855
7856 sk->sk_max_ack_backlog = backlog;
7857 sctp_hash_endpoint(ep);
7858 return 0;
7859}
7860
7861/*
7862 * 4.1.3 / 5.1.3 listen()
7863 *
7864 * By default, new associations are not accepted for UDP style sockets.
7865 * An application uses listen() to mark a socket as being able to
7866 * accept new associations.
7867 *
7868 * On TCP style sockets, applications use listen() to ready the SCTP
7869 * endpoint for accepting inbound associations.
7870 *
7871 * On both types of endpoints a backlog of '0' disables listening.
7872 *
7873 * Move a socket to LISTENING state.
7874 */
7875int sctp_inet_listen(struct socket *sock, int backlog)
7876{
7877 struct sock *sk = sock->sk;
7878 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
7879 int err = -EINVAL;
7880
7881 if (unlikely(backlog < 0))
7882 return err;
7883
7884 lock_sock(sk);
7885
7886 /* Peeled-off sockets are not allowed to listen(). */
7887 if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
7888 goto out;
7889
7890 if (sock->state != SS_UNCONNECTED)
7891 goto out;
7892
7893 if (!sctp_sstate(sk, LISTENING) && !sctp_sstate(sk, CLOSED))
7894 goto out;
7895
7896 /* If backlog is zero, disable listening. */
7897 if (!backlog) {
7898 if (sctp_sstate(sk, CLOSED))
7899 goto out;
7900
7901 err = 0;
7902 sctp_unhash_endpoint(ep);
7903 sk->sk_state = SCTP_SS_CLOSED;
7904 if (sk->sk_reuse || sctp_sk(sk)->reuse)
7905 sctp_sk(sk)->bind_hash->fastreuse = 1;
7906 goto out;
7907 }
7908
7909 /* If we are already listening, just update the backlog */
7910 if (sctp_sstate(sk, LISTENING))
7911 sk->sk_max_ack_backlog = backlog;
7912 else {
7913 err = sctp_listen_start(sk, backlog);
7914 if (err)
7915 goto out;
7916 }
7917
7918 err = 0;
7919out:
7920 release_sock(sk);
7921 return err;
7922}
7923
7924/*
7925 * This function is done by modeling the current datagram_poll() and the
7926 * tcp_poll(). Note that, based on these implementations, we don't
7927 * lock the socket in this function, even though it seems that,
7928 * ideally, locking or some other mechanisms can be used to ensure
7929 * the integrity of the counters (sndbuf and wmem_alloc) used
7930 * in this place. We assume that we don't need locks either until proven
7931 * otherwise.
7932 *
7933 * Another thing to note is that we include the Async I/O support
7934 * here, again, by modeling the current TCP/UDP code. We don't have
7935 * a good way to test with it yet.
7936 */
7937__poll_t sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
7938{
7939 struct sock *sk = sock->sk;
7940 struct sctp_sock *sp = sctp_sk(sk);
7941 __poll_t mask;
7942
7943 poll_wait(file, sk_sleep(sk), wait);
7944
7945 sock_rps_record_flow(sk);
7946
7947 /* A TCP-style listening socket becomes readable when the accept queue
7948 * is not empty.
7949 */
7950 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
7951 return (!list_empty(&sp->ep->asocs)) ?
7952 (EPOLLIN | EPOLLRDNORM) : 0;
7953
7954 mask = 0;
7955
7956 /* Is there any exceptional events? */
7957 if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
7958 mask |= EPOLLERR |
7959 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0);
7960 if (sk->sk_shutdown & RCV_SHUTDOWN)
7961 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM;
7962 if (sk->sk_shutdown == SHUTDOWN_MASK)
7963 mask |= EPOLLHUP;
7964
7965 /* Is it readable? Reconsider this code with TCP-style support. */
7966 if (!skb_queue_empty(&sk->sk_receive_queue))
7967 mask |= EPOLLIN | EPOLLRDNORM;
7968
7969 /* The association is either gone or not ready. */
7970 if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
7971 return mask;
7972
7973 /* Is it writable? */
7974 if (sctp_writeable(sk)) {
7975 mask |= EPOLLOUT | EPOLLWRNORM;
7976 } else {
7977 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
7978 /*
7979 * Since the socket is not locked, the buffer
7980 * might be made available after the writeable check and
7981 * before the bit is set. This could cause a lost I/O
7982 * signal. tcp_poll() has a race breaker for this race
7983 * condition. Based on their implementation, we put
7984 * in the following code to cover it as well.
7985 */
7986 if (sctp_writeable(sk))
7987 mask |= EPOLLOUT | EPOLLWRNORM;
7988 }
7989 return mask;
7990}
7991
7992/********************************************************************
7993 * 2nd Level Abstractions
7994 ********************************************************************/
7995
7996static struct sctp_bind_bucket *sctp_bucket_create(
7997 struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum)
7998{
7999 struct sctp_bind_bucket *pp;
8000
8001 pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
8002 if (pp) {
8003 SCTP_DBG_OBJCNT_INC(bind_bucket);
8004 pp->port = snum;
8005 pp->fastreuse = 0;
8006 INIT_HLIST_HEAD(&pp->owner);
8007 pp->net = net;
8008 hlist_add_head(&pp->node, &head->chain);
8009 }
8010 return pp;
8011}
8012
8013/* Caller must hold hashbucket lock for this tb with local BH disabled */
8014static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
8015{
8016 if (pp && hlist_empty(&pp->owner)) {
8017 __hlist_del(&pp->node);
8018 kmem_cache_free(sctp_bucket_cachep, pp);
8019 SCTP_DBG_OBJCNT_DEC(bind_bucket);
8020 }
8021}
8022
8023/* Release this socket's reference to a local port. */
8024static inline void __sctp_put_port(struct sock *sk)
8025{
8026 struct sctp_bind_hashbucket *head =
8027 &sctp_port_hashtable[sctp_phashfn(sock_net(sk),
8028 inet_sk(sk)->inet_num)];
8029 struct sctp_bind_bucket *pp;
8030
8031 spin_lock(&head->lock);
8032 pp = sctp_sk(sk)->bind_hash;
8033 __sk_del_bind_node(sk);
8034 sctp_sk(sk)->bind_hash = NULL;
8035 inet_sk(sk)->inet_num = 0;
8036 sctp_bucket_destroy(pp);
8037 spin_unlock(&head->lock);
8038}
8039
8040void sctp_put_port(struct sock *sk)
8041{
8042 local_bh_disable();
8043 __sctp_put_port(sk);
8044 local_bh_enable();
8045}
8046
8047/*
8048 * The system picks an ephemeral port and choose an address set equivalent
8049 * to binding with a wildcard address.
8050 * One of those addresses will be the primary address for the association.
8051 * This automatically enables the multihoming capability of SCTP.
8052 */
8053static int sctp_autobind(struct sock *sk)
8054{
8055 union sctp_addr autoaddr;
8056 struct sctp_af *af;
8057 __be16 port;
8058
8059 /* Initialize a local sockaddr structure to INADDR_ANY. */
8060 af = sctp_sk(sk)->pf->af;
8061
8062 port = htons(inet_sk(sk)->inet_num);
8063 af->inaddr_any(&autoaddr, port);
8064
8065 return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
8066}
8067
8068/* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation.
8069 *
8070 * From RFC 2292
8071 * 4.2 The cmsghdr Structure *
8072 *
8073 * When ancillary data is sent or received, any number of ancillary data
8074 * objects can be specified by the msg_control and msg_controllen members of
8075 * the msghdr structure, because each object is preceded by
8076 * a cmsghdr structure defining the object's length (the cmsg_len member).
8077 * Historically Berkeley-derived implementations have passed only one object
8078 * at a time, but this API allows multiple objects to be
8079 * passed in a single call to sendmsg() or recvmsg(). The following example
8080 * shows two ancillary data objects in a control buffer.
8081 *
8082 * |<--------------------------- msg_controllen -------------------------->|
8083 * | |
8084 *
8085 * |<----- ancillary data object ----->|<----- ancillary data object ----->|
8086 *
8087 * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
8088 * | | |
8089 *
8090 * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| |
8091 *
8092 * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| |
8093 * | | | | |
8094 *
8095 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8096 * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX|
8097 *
8098 * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX|
8099 *
8100 * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
8101 * ^
8102 * |
8103 *
8104 * msg_control
8105 * points here
8106 */
8107static int sctp_msghdr_parse(const struct msghdr *msg, struct sctp_cmsgs *cmsgs)
8108{
8109 struct msghdr *my_msg = (struct msghdr *)msg;
8110 struct cmsghdr *cmsg;
8111
8112 for_each_cmsghdr(cmsg, my_msg) {
8113 if (!CMSG_OK(my_msg, cmsg))
8114 return -EINVAL;
8115
8116 /* Should we parse this header or ignore? */
8117 if (cmsg->cmsg_level != IPPROTO_SCTP)
8118 continue;
8119
8120 /* Strictly check lengths following example in SCM code. */
8121 switch (cmsg->cmsg_type) {
8122 case SCTP_INIT:
8123 /* SCTP Socket API Extension
8124 * 5.3.1 SCTP Initiation Structure (SCTP_INIT)
8125 *
8126 * This cmsghdr structure provides information for
8127 * initializing new SCTP associations with sendmsg().
8128 * The SCTP_INITMSG socket option uses this same data
8129 * structure. This structure is not used for
8130 * recvmsg().
8131 *
8132 * cmsg_level cmsg_type cmsg_data[]
8133 * ------------ ------------ ----------------------
8134 * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg
8135 */
8136 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_initmsg)))
8137 return -EINVAL;
8138
8139 cmsgs->init = CMSG_DATA(cmsg);
8140 break;
8141
8142 case SCTP_SNDRCV:
8143 /* SCTP Socket API Extension
8144 * 5.3.2 SCTP Header Information Structure(SCTP_SNDRCV)
8145 *
8146 * This cmsghdr structure specifies SCTP options for
8147 * sendmsg() and describes SCTP header information
8148 * about a received message through recvmsg().
8149 *
8150 * cmsg_level cmsg_type cmsg_data[]
8151 * ------------ ------------ ----------------------
8152 * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo
8153 */
8154 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
8155 return -EINVAL;
8156
8157 cmsgs->srinfo = CMSG_DATA(cmsg);
8158
8159 if (cmsgs->srinfo->sinfo_flags &
8160 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
8161 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8162 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
8163 return -EINVAL;
8164 break;
8165
8166 case SCTP_SNDINFO:
8167 /* SCTP Socket API Extension
8168 * 5.3.4 SCTP Send Information Structure (SCTP_SNDINFO)
8169 *
8170 * This cmsghdr structure specifies SCTP options for
8171 * sendmsg(). This structure and SCTP_RCVINFO replaces
8172 * SCTP_SNDRCV which has been deprecated.
8173 *
8174 * cmsg_level cmsg_type cmsg_data[]
8175 * ------------ ------------ ---------------------
8176 * IPPROTO_SCTP SCTP_SNDINFO struct sctp_sndinfo
8177 */
8178 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_sndinfo)))
8179 return -EINVAL;
8180
8181 cmsgs->sinfo = CMSG_DATA(cmsg);
8182
8183 if (cmsgs->sinfo->snd_flags &
8184 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
8185 SCTP_SACK_IMMEDIATELY | SCTP_SENDALL |
8186 SCTP_PR_SCTP_MASK | SCTP_ABORT | SCTP_EOF))
8187 return -EINVAL;
8188 break;
8189 case SCTP_PRINFO:
8190 /* SCTP Socket API Extension
8191 * 5.3.7 SCTP PR-SCTP Information Structure (SCTP_PRINFO)
8192 *
8193 * This cmsghdr structure specifies SCTP options for sendmsg().
8194 *
8195 * cmsg_level cmsg_type cmsg_data[]
8196 * ------------ ------------ ---------------------
8197 * IPPROTO_SCTP SCTP_PRINFO struct sctp_prinfo
8198 */
8199 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_prinfo)))
8200 return -EINVAL;
8201
8202 cmsgs->prinfo = CMSG_DATA(cmsg);
8203 if (cmsgs->prinfo->pr_policy & ~SCTP_PR_SCTP_MASK)
8204 return -EINVAL;
8205
8206 if (cmsgs->prinfo->pr_policy == SCTP_PR_SCTP_NONE)
8207 cmsgs->prinfo->pr_value = 0;
8208 break;
8209 case SCTP_AUTHINFO:
8210 /* SCTP Socket API Extension
8211 * 5.3.8 SCTP AUTH Information Structure (SCTP_AUTHINFO)
8212 *
8213 * This cmsghdr structure specifies SCTP options for sendmsg().
8214 *
8215 * cmsg_level cmsg_type cmsg_data[]
8216 * ------------ ------------ ---------------------
8217 * IPPROTO_SCTP SCTP_AUTHINFO struct sctp_authinfo
8218 */
8219 if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct sctp_authinfo)))
8220 return -EINVAL;
8221
8222 cmsgs->authinfo = CMSG_DATA(cmsg);
8223 break;
8224 case SCTP_DSTADDRV4:
8225 case SCTP_DSTADDRV6:
8226 /* SCTP Socket API Extension
8227 * 5.3.9/10 SCTP Destination IPv4/6 Address Structure (SCTP_DSTADDRV4/6)
8228 *
8229 * This cmsghdr structure specifies SCTP options for sendmsg().
8230 *
8231 * cmsg_level cmsg_type cmsg_data[]
8232 * ------------ ------------ ---------------------
8233 * IPPROTO_SCTP SCTP_DSTADDRV4 struct in_addr
8234 * ------------ ------------ ---------------------
8235 * IPPROTO_SCTP SCTP_DSTADDRV6 struct in6_addr
8236 */
8237 cmsgs->addrs_msg = my_msg;
8238 break;
8239 default:
8240 return -EINVAL;
8241 }
8242 }
8243
8244 return 0;
8245}
8246
8247/*
8248 * Wait for a packet..
8249 * Note: This function is the same function as in core/datagram.c
8250 * with a few modifications to make lksctp work.
8251 */
8252static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p)
8253{
8254 int error;
8255 DEFINE_WAIT(wait);
8256
8257 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
8258
8259 /* Socket errors? */
8260 error = sock_error(sk);
8261 if (error)
8262 goto out;
8263
8264 if (!skb_queue_empty(&sk->sk_receive_queue))
8265 goto ready;
8266
8267 /* Socket shut down? */
8268 if (sk->sk_shutdown & RCV_SHUTDOWN)
8269 goto out;
8270
8271 /* Sequenced packets can come disconnected. If so we report the
8272 * problem.
8273 */
8274 error = -ENOTCONN;
8275
8276 /* Is there a good reason to think that we may receive some data? */
8277 if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
8278 goto out;
8279
8280 /* Handle signals. */
8281 if (signal_pending(current))
8282 goto interrupted;
8283
8284 /* Let another process have a go. Since we are going to sleep
8285 * anyway. Note: This may cause odd behaviors if the message
8286 * does not fit in the user's buffer, but this seems to be the
8287 * only way to honor MSG_DONTWAIT realistically.
8288 */
8289 release_sock(sk);
8290 *timeo_p = schedule_timeout(*timeo_p);
8291 lock_sock(sk);
8292
8293ready:
8294 finish_wait(sk_sleep(sk), &wait);
8295 return 0;
8296
8297interrupted:
8298 error = sock_intr_errno(*timeo_p);
8299
8300out:
8301 finish_wait(sk_sleep(sk), &wait);
8302 *err = error;
8303 return error;
8304}
8305
8306/* Receive a datagram.
8307 * Note: This is pretty much the same routine as in core/datagram.c
8308 * with a few changes to make lksctp work.
8309 */
8310struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
8311 int noblock, int *err)
8312{
8313 int error;
8314 struct sk_buff *skb;
8315 long timeo;
8316
8317 timeo = sock_rcvtimeo(sk, noblock);
8318
8319 pr_debug("%s: timeo:%ld, max:%ld\n", __func__, timeo,
8320 MAX_SCHEDULE_TIMEOUT);
8321
8322 do {
8323 /* Again only user level code calls this function,
8324 * so nothing interrupt level
8325 * will suddenly eat the receive_queue.
8326 *
8327 * Look at current nfs client by the way...
8328 * However, this function was correct in any case. 8)
8329 */
8330 if (flags & MSG_PEEK) {
8331 skb = skb_peek(&sk->sk_receive_queue);
8332 if (skb)
8333 refcount_inc(&skb->users);
8334 } else {
8335 skb = __skb_dequeue(&sk->sk_receive_queue);
8336 }
8337
8338 if (skb)
8339 return skb;
8340
8341 /* Caller is allowed not to check sk->sk_err before calling. */
8342 error = sock_error(sk);
8343 if (error)
8344 goto no_packet;
8345
8346 if (sk->sk_shutdown & RCV_SHUTDOWN)
8347 break;
8348
8349 if (sk_can_busy_loop(sk)) {
8350 sk_busy_loop(sk, noblock);
8351
8352 if (!skb_queue_empty(&sk->sk_receive_queue))
8353 continue;
8354 }
8355
8356 /* User doesn't want to wait. */
8357 error = -EAGAIN;
8358 if (!timeo)
8359 goto no_packet;
8360 } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
8361
8362 return NULL;
8363
8364no_packet:
8365 *err = error;
8366 return NULL;
8367}
8368
8369/* If sndbuf has changed, wake up per association sndbuf waiters. */
8370static void __sctp_write_space(struct sctp_association *asoc)
8371{
8372 struct sock *sk = asoc->base.sk;
8373
8374 if (sctp_wspace(asoc) <= 0)
8375 return;
8376
8377 if (waitqueue_active(&asoc->wait))
8378 wake_up_interruptible(&asoc->wait);
8379
8380 if (sctp_writeable(sk)) {
8381 struct socket_wq *wq;
8382
8383 rcu_read_lock();
8384 wq = rcu_dereference(sk->sk_wq);
8385 if (wq) {
8386 if (waitqueue_active(&wq->wait))
8387 wake_up_interruptible(&wq->wait);
8388
8389 /* Note that we try to include the Async I/O support
8390 * here by modeling from the current TCP/UDP code.
8391 * We have not tested with it yet.
8392 */
8393 if (!(sk->sk_shutdown & SEND_SHUTDOWN))
8394 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
8395 }
8396 rcu_read_unlock();
8397 }
8398}
8399
8400static void sctp_wake_up_waiters(struct sock *sk,
8401 struct sctp_association *asoc)
8402{
8403 struct sctp_association *tmp = asoc;
8404
8405 /* We do accounting for the sndbuf space per association,
8406 * so we only need to wake our own association.
8407 */
8408 if (asoc->ep->sndbuf_policy)
8409 return __sctp_write_space(asoc);
8410
8411 /* If association goes down and is just flushing its
8412 * outq, then just normally notify others.
8413 */
8414 if (asoc->base.dead)
8415 return sctp_write_space(sk);
8416
8417 /* Accounting for the sndbuf space is per socket, so we
8418 * need to wake up others, try to be fair and in case of
8419 * other associations, let them have a go first instead
8420 * of just doing a sctp_write_space() call.
8421 *
8422 * Note that we reach sctp_wake_up_waiters() only when
8423 * associations free up queued chunks, thus we are under
8424 * lock and the list of associations on a socket is
8425 * guaranteed not to change.
8426 */
8427 for (tmp = list_next_entry(tmp, asocs); 1;
8428 tmp = list_next_entry(tmp, asocs)) {
8429 /* Manually skip the head element. */
8430 if (&tmp->asocs == &((sctp_sk(sk))->ep->asocs))
8431 continue;
8432 /* Wake up association. */
8433 __sctp_write_space(tmp);
8434 /* We've reached the end. */
8435 if (tmp == asoc)
8436 break;
8437 }
8438}
8439
8440/* Do accounting for the sndbuf space.
8441 * Decrement the used sndbuf space of the corresponding association by the
8442 * data size which was just transmitted(freed).
8443 */
8444static void sctp_wfree(struct sk_buff *skb)
8445{
8446 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
8447 struct sctp_association *asoc = chunk->asoc;
8448 struct sock *sk = asoc->base.sk;
8449
8450 asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
8451 sizeof(struct sk_buff) +
8452 sizeof(struct sctp_chunk);
8453
8454 WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc));
8455
8456 /*
8457 * This undoes what is done via sctp_set_owner_w and sk_mem_charge
8458 */
8459 sk->sk_wmem_queued -= skb->truesize;
8460 sk_mem_uncharge(sk, skb->truesize);
8461
8462 if (chunk->shkey) {
8463 struct sctp_shared_key *shkey = chunk->shkey;
8464
8465 /* refcnt == 2 and !list_empty mean after this release, it's
8466 * not being used anywhere, and it's time to notify userland
8467 * that this shkey can be freed if it's been deactivated.
8468 */
8469 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
8470 refcount_read(&shkey->refcnt) == 2) {
8471 struct sctp_ulpevent *ev;
8472
8473 ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
8474 SCTP_AUTH_FREE_KEY,
8475 GFP_KERNEL);
8476 if (ev)
8477 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
8478 }
8479 sctp_auth_shkey_release(chunk->shkey);
8480 }
8481
8482 sock_wfree(skb);
8483 sctp_wake_up_waiters(sk, asoc);
8484
8485 sctp_association_put(asoc);
8486}
8487
8488/* Do accounting for the receive space on the socket.
8489 * Accounting for the association is done in ulpevent.c
8490 * We set this as a destructor for the cloned data skbs so that
8491 * accounting is done at the correct time.
8492 */
8493void sctp_sock_rfree(struct sk_buff *skb)
8494{
8495 struct sock *sk = skb->sk;
8496 struct sctp_ulpevent *event = sctp_skb2event(skb);
8497
8498 atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
8499
8500 /*
8501 * Mimic the behavior of sock_rfree
8502 */
8503 sk_mem_uncharge(sk, event->rmem_len);
8504}
8505
8506
8507/* Helper function to wait for space in the sndbuf. */
8508static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
8509 size_t msg_len)
8510{
8511 struct sock *sk = asoc->base.sk;
8512 long current_timeo = *timeo_p;
8513 DEFINE_WAIT(wait);
8514 int err = 0;
8515
8516 pr_debug("%s: asoc:%p, timeo:%ld, msg_len:%zu\n", __func__, asoc,
8517 *timeo_p, msg_len);
8518
8519 /* Increment the association's refcnt. */
8520 sctp_association_hold(asoc);
8521
8522 /* Wait on the association specific sndbuf space. */
8523 for (;;) {
8524 prepare_to_wait_exclusive(&asoc->wait, &wait,
8525 TASK_INTERRUPTIBLE);
8526 if (asoc->base.dead)
8527 goto do_dead;
8528 if (!*timeo_p)
8529 goto do_nonblock;
8530 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
8531 goto do_error;
8532 if (signal_pending(current))
8533 goto do_interrupted;
8534 if (msg_len <= sctp_wspace(asoc))
8535 break;
8536
8537 /* Let another process have a go. Since we are going
8538 * to sleep anyway.
8539 */
8540 release_sock(sk);
8541 current_timeo = schedule_timeout(current_timeo);
8542 lock_sock(sk);
8543 if (sk != asoc->base.sk)
8544 goto do_error;
8545
8546 *timeo_p = current_timeo;
8547 }
8548
8549out:
8550 finish_wait(&asoc->wait, &wait);
8551
8552 /* Release the association's refcnt. */
8553 sctp_association_put(asoc);
8554
8555 return err;
8556
8557do_dead:
8558 err = -ESRCH;
8559 goto out;
8560
8561do_error:
8562 err = -EPIPE;
8563 goto out;
8564
8565do_interrupted:
8566 err = sock_intr_errno(*timeo_p);
8567 goto out;
8568
8569do_nonblock:
8570 err = -EAGAIN;
8571 goto out;
8572}
8573
8574void sctp_data_ready(struct sock *sk)
8575{
8576 struct socket_wq *wq;
8577
8578 rcu_read_lock();
8579 wq = rcu_dereference(sk->sk_wq);
8580 if (skwq_has_sleeper(wq))
8581 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
8582 EPOLLRDNORM | EPOLLRDBAND);
8583 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
8584 rcu_read_unlock();
8585}
8586
8587/* If socket sndbuf has changed, wake up all per association waiters. */
8588void sctp_write_space(struct sock *sk)
8589{
8590 struct sctp_association *asoc;
8591
8592 /* Wake up the tasks in each wait queue. */
8593 list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
8594 __sctp_write_space(asoc);
8595 }
8596}
8597
8598/* Is there any sndbuf space available on the socket?
8599 *
8600 * Note that sk_wmem_alloc is the sum of the send buffers on all of the
8601 * associations on the same socket. For a UDP-style socket with
8602 * multiple associations, it is possible for it to be "unwriteable"
8603 * prematurely. I assume that this is acceptable because
8604 * a premature "unwriteable" is better than an accidental "writeable" which
8605 * would cause an unwanted block under certain circumstances. For the 1-1
8606 * UDP-style sockets or TCP-style sockets, this code should work.
8607 * - Daisy
8608 */
8609static int sctp_writeable(struct sock *sk)
8610{
8611 int amt = 0;
8612
8613 amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
8614 if (amt < 0)
8615 amt = 0;
8616 return amt;
8617}
8618
8619/* Wait for an association to go into ESTABLISHED state. If timeout is 0,
8620 * returns immediately with EINPROGRESS.
8621 */
8622static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
8623{
8624 struct sock *sk = asoc->base.sk;
8625 int err = 0;
8626 long current_timeo = *timeo_p;
8627 DEFINE_WAIT(wait);
8628
8629 pr_debug("%s: asoc:%p, timeo:%ld\n", __func__, asoc, *timeo_p);
8630
8631 /* Increment the association's refcnt. */
8632 sctp_association_hold(asoc);
8633
8634 for (;;) {
8635 prepare_to_wait_exclusive(&asoc->wait, &wait,
8636 TASK_INTERRUPTIBLE);
8637 if (!*timeo_p)
8638 goto do_nonblock;
8639 if (sk->sk_shutdown & RCV_SHUTDOWN)
8640 break;
8641 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
8642 asoc->base.dead)
8643 goto do_error;
8644 if (signal_pending(current))
8645 goto do_interrupted;
8646
8647 if (sctp_state(asoc, ESTABLISHED))
8648 break;
8649
8650 /* Let another process have a go. Since we are going
8651 * to sleep anyway.
8652 */
8653 release_sock(sk);
8654 current_timeo = schedule_timeout(current_timeo);
8655 lock_sock(sk);
8656
8657 *timeo_p = current_timeo;
8658 }
8659
8660out:
8661 finish_wait(&asoc->wait, &wait);
8662
8663 /* Release the association's refcnt. */
8664 sctp_association_put(asoc);
8665
8666 return err;
8667
8668do_error:
8669 if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
8670 err = -ETIMEDOUT;
8671 else
8672 err = -ECONNREFUSED;
8673 goto out;
8674
8675do_interrupted:
8676 err = sock_intr_errno(*timeo_p);
8677 goto out;
8678
8679do_nonblock:
8680 err = -EINPROGRESS;
8681 goto out;
8682}
8683
8684static int sctp_wait_for_accept(struct sock *sk, long timeo)
8685{
8686 struct sctp_endpoint *ep;
8687 int err = 0;
8688 DEFINE_WAIT(wait);
8689
8690 ep = sctp_sk(sk)->ep;
8691
8692
8693 for (;;) {
8694 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
8695 TASK_INTERRUPTIBLE);
8696
8697 if (list_empty(&ep->asocs)) {
8698 release_sock(sk);
8699 timeo = schedule_timeout(timeo);
8700 lock_sock(sk);
8701 }
8702
8703 err = -EINVAL;
8704 if (!sctp_sstate(sk, LISTENING))
8705 break;
8706
8707 err = 0;
8708 if (!list_empty(&ep->asocs))
8709 break;
8710
8711 err = sock_intr_errno(timeo);
8712 if (signal_pending(current))
8713 break;
8714
8715 err = -EAGAIN;
8716 if (!timeo)
8717 break;
8718 }
8719
8720 finish_wait(sk_sleep(sk), &wait);
8721
8722 return err;
8723}
8724
8725static void sctp_wait_for_close(struct sock *sk, long timeout)
8726{
8727 DEFINE_WAIT(wait);
8728
8729 do {
8730 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
8731 if (list_empty(&sctp_sk(sk)->ep->asocs))
8732 break;
8733 release_sock(sk);
8734 timeout = schedule_timeout(timeout);
8735 lock_sock(sk);
8736 } while (!signal_pending(current) && timeout);
8737
8738 finish_wait(sk_sleep(sk), &wait);
8739}
8740
8741static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
8742{
8743 struct sk_buff *frag;
8744
8745 if (!skb->data_len)
8746 goto done;
8747
8748 /* Don't forget the fragments. */
8749 skb_walk_frags(skb, frag)
8750 sctp_skb_set_owner_r_frag(frag, sk);
8751
8752done:
8753 sctp_skb_set_owner_r(skb, sk);
8754}
8755
8756void sctp_copy_sock(struct sock *newsk, struct sock *sk,
8757 struct sctp_association *asoc)
8758{
8759 struct inet_sock *inet = inet_sk(sk);
8760 struct inet_sock *newinet;
8761 struct sctp_sock *sp = sctp_sk(sk);
8762 struct sctp_endpoint *ep = sp->ep;
8763
8764 newsk->sk_type = sk->sk_type;
8765 newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
8766 newsk->sk_flags = sk->sk_flags;
8767 newsk->sk_tsflags = sk->sk_tsflags;
8768 newsk->sk_no_check_tx = sk->sk_no_check_tx;
8769 newsk->sk_no_check_rx = sk->sk_no_check_rx;
8770 newsk->sk_reuse = sk->sk_reuse;
8771 sctp_sk(newsk)->reuse = sp->reuse;
8772
8773 newsk->sk_shutdown = sk->sk_shutdown;
8774 newsk->sk_destruct = sctp_destruct_sock;
8775 newsk->sk_family = sk->sk_family;
8776 newsk->sk_protocol = IPPROTO_SCTP;
8777 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
8778 newsk->sk_sndbuf = sk->sk_sndbuf;
8779 newsk->sk_rcvbuf = sk->sk_rcvbuf;
8780 newsk->sk_lingertime = sk->sk_lingertime;
8781 newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
8782 newsk->sk_sndtimeo = sk->sk_sndtimeo;
8783 newsk->sk_rxhash = sk->sk_rxhash;
8784
8785 newinet = inet_sk(newsk);
8786
8787 /* Initialize sk's sport, dport, rcv_saddr and daddr for
8788 * getsockname() and getpeername()
8789 */
8790 newinet->inet_sport = inet->inet_sport;
8791 newinet->inet_saddr = inet->inet_saddr;
8792 newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
8793 newinet->inet_dport = htons(asoc->peer.port);
8794 newinet->pmtudisc = inet->pmtudisc;
8795 newinet->inet_id = asoc->next_tsn ^ jiffies;
8796
8797 newinet->uc_ttl = inet->uc_ttl;
8798 newinet->mc_loop = 1;
8799 newinet->mc_ttl = 1;
8800 newinet->mc_index = 0;
8801 newinet->mc_list = NULL;
8802
8803 if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
8804 net_enable_timestamp();
8805
8806 /* Set newsk security attributes from orginal sk and connection
8807 * security attribute from ep.
8808 */
8809 security_sctp_sk_clone(ep, sk, newsk);
8810}
8811
8812static inline void sctp_copy_descendant(struct sock *sk_to,
8813 const struct sock *sk_from)
8814{
8815 int ancestor_size = sizeof(struct inet_sock) +
8816 sizeof(struct sctp_sock) -
8817 offsetof(struct sctp_sock, auto_asconf_list);
8818
8819 if (sk_from->sk_family == PF_INET6)
8820 ancestor_size += sizeof(struct ipv6_pinfo);
8821
8822 __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
8823}
8824
8825/* Populate the fields of the newsk from the oldsk and migrate the assoc
8826 * and its messages to the newsk.
8827 */
8828static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
8829 struct sctp_association *assoc,
8830 enum sctp_socket_type type)
8831{
8832 struct sctp_sock *oldsp = sctp_sk(oldsk);
8833 struct sctp_sock *newsp = sctp_sk(newsk);
8834 struct sctp_bind_bucket *pp; /* hash list port iterator */
8835 struct sctp_endpoint *newep = newsp->ep;
8836 struct sk_buff *skb, *tmp;
8837 struct sctp_ulpevent *event;
8838 struct sctp_bind_hashbucket *head;
8839
8840 /* Migrate socket buffer sizes and all the socket level options to the
8841 * new socket.
8842 */
8843 newsk->sk_sndbuf = oldsk->sk_sndbuf;
8844 newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
8845 /* Brute force copy old sctp opt. */
8846 sctp_copy_descendant(newsk, oldsk);
8847
8848 /* Restore the ep value that was overwritten with the above structure
8849 * copy.
8850 */
8851 newsp->ep = newep;
8852 newsp->hmac = NULL;
8853
8854 /* Hook this new socket in to the bind_hash list. */
8855 head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk),
8856 inet_sk(oldsk)->inet_num)];
8857 spin_lock_bh(&head->lock);
8858 pp = sctp_sk(oldsk)->bind_hash;
8859 sk_add_bind_node(newsk, &pp->owner);
8860 sctp_sk(newsk)->bind_hash = pp;
8861 inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
8862 spin_unlock_bh(&head->lock);
8863
8864 /* Copy the bind_addr list from the original endpoint to the new
8865 * endpoint so that we can handle restarts properly
8866 */
8867 sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
8868 &oldsp->ep->base.bind_addr, GFP_KERNEL);
8869
8870 /* Move any messages in the old socket's receive queue that are for the
8871 * peeled off association to the new socket's receive queue.
8872 */
8873 sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
8874 event = sctp_skb2event(skb);
8875 if (event->asoc == assoc) {
8876 __skb_unlink(skb, &oldsk->sk_receive_queue);
8877 __skb_queue_tail(&newsk->sk_receive_queue, skb);
8878 sctp_skb_set_owner_r_frag(skb, newsk);
8879 }
8880 }
8881
8882 /* Clean up any messages pending delivery due to partial
8883 * delivery. Three cases:
8884 * 1) No partial deliver; no work.
8885 * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
8886 * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
8887 */
8888 skb_queue_head_init(&newsp->pd_lobby);
8889 atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
8890
8891 if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
8892 struct sk_buff_head *queue;
8893
8894 /* Decide which queue to move pd_lobby skbs to. */
8895 if (assoc->ulpq.pd_mode) {
8896 queue = &newsp->pd_lobby;
8897 } else
8898 queue = &newsk->sk_receive_queue;
8899
8900 /* Walk through the pd_lobby, looking for skbs that
8901 * need moved to the new socket.
8902 */
8903 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
8904 event = sctp_skb2event(skb);
8905 if (event->asoc == assoc) {
8906 __skb_unlink(skb, &oldsp->pd_lobby);
8907 __skb_queue_tail(queue, skb);
8908 sctp_skb_set_owner_r_frag(skb, newsk);
8909 }
8910 }
8911
8912 /* Clear up any skbs waiting for the partial
8913 * delivery to finish.
8914 */
8915 if (assoc->ulpq.pd_mode)
8916 sctp_clear_pd(oldsk, NULL);
8917
8918 }
8919
8920 sctp_for_each_rx_skb(assoc, newsk, sctp_skb_set_owner_r_frag);
8921
8922 /* Set the type of socket to indicate that it is peeled off from the
8923 * original UDP-style socket or created with the accept() call on a
8924 * TCP-style socket..
8925 */
8926 newsp->type = type;
8927
8928 /* Mark the new socket "in-use" by the user so that any packets
8929 * that may arrive on the association after we've moved it are
8930 * queued to the backlog. This prevents a potential race between
8931 * backlog processing on the old socket and new-packet processing
8932 * on the new socket.
8933 *
8934 * The caller has just allocated newsk so we can guarantee that other
8935 * paths won't try to lock it and then oldsk.
8936 */
8937 lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
8938 sctp_for_each_tx_datachunk(assoc, sctp_clear_owner_w);
8939 sctp_assoc_migrate(assoc, newsk);
8940 sctp_for_each_tx_datachunk(assoc, sctp_set_owner_w);
8941
8942 /* If the association on the newsk is already closed before accept()
8943 * is called, set RCV_SHUTDOWN flag.
8944 */
8945 if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) {
8946 inet_sk_set_state(newsk, SCTP_SS_CLOSED);
8947 newsk->sk_shutdown |= RCV_SHUTDOWN;
8948 } else {
8949 inet_sk_set_state(newsk, SCTP_SS_ESTABLISHED);
8950 }
8951
8952 release_sock(newsk);
8953}
8954
8955
8956/* This proto struct describes the ULP interface for SCTP. */
8957struct proto sctp_prot = {
8958 .name = "SCTP",
8959 .owner = THIS_MODULE,
8960 .close = sctp_close,
8961 .disconnect = sctp_disconnect,
8962 .accept = sctp_accept,
8963 .ioctl = sctp_ioctl,
8964 .init = sctp_init_sock,
8965 .destroy = sctp_destroy_sock,
8966 .shutdown = sctp_shutdown,
8967 .setsockopt = sctp_setsockopt,
8968 .getsockopt = sctp_getsockopt,
8969 .sendmsg = sctp_sendmsg,
8970 .recvmsg = sctp_recvmsg,
8971 .bind = sctp_bind,
8972 .backlog_rcv = sctp_backlog_rcv,
8973 .hash = sctp_hash,
8974 .unhash = sctp_unhash,
8975 .get_port = sctp_get_port,
8976 .obj_size = sizeof(struct sctp_sock),
8977 .useroffset = offsetof(struct sctp_sock, subscribe),
8978 .usersize = offsetof(struct sctp_sock, initmsg) -
8979 offsetof(struct sctp_sock, subscribe) +
8980 sizeof_field(struct sctp_sock, initmsg),
8981 .sysctl_mem = sysctl_sctp_mem,
8982 .sysctl_rmem = sysctl_sctp_rmem,
8983 .sysctl_wmem = sysctl_sctp_wmem,
8984 .memory_pressure = &sctp_memory_pressure,
8985 .enter_memory_pressure = sctp_enter_memory_pressure,
8986 .memory_allocated = &sctp_memory_allocated,
8987 .sockets_allocated = &sctp_sockets_allocated,
8988};
8989
8990#if IS_ENABLED(CONFIG_IPV6)
8991
8992#include <net/transp_v6.h>
8993static void sctp_v6_destroy_sock(struct sock *sk)
8994{
8995 sctp_destroy_sock(sk);
8996 inet6_destroy_sock(sk);
8997}
8998
8999struct proto sctpv6_prot = {
9000 .name = "SCTPv6",
9001 .owner = THIS_MODULE,
9002 .close = sctp_close,
9003 .disconnect = sctp_disconnect,
9004 .accept = sctp_accept,
9005 .ioctl = sctp_ioctl,
9006 .init = sctp_init_sock,
9007 .destroy = sctp_v6_destroy_sock,
9008 .shutdown = sctp_shutdown,
9009 .setsockopt = sctp_setsockopt,
9010 .getsockopt = sctp_getsockopt,
9011 .sendmsg = sctp_sendmsg,
9012 .recvmsg = sctp_recvmsg,
9013 .bind = sctp_bind,
9014 .backlog_rcv = sctp_backlog_rcv,
9015 .hash = sctp_hash,
9016 .unhash = sctp_unhash,
9017 .get_port = sctp_get_port,
9018 .obj_size = sizeof(struct sctp6_sock),
9019 .useroffset = offsetof(struct sctp6_sock, sctp.subscribe),
9020 .usersize = offsetof(struct sctp6_sock, sctp.initmsg) -
9021 offsetof(struct sctp6_sock, sctp.subscribe) +
9022 sizeof_field(struct sctp6_sock, sctp.initmsg),
9023 .sysctl_mem = sysctl_sctp_mem,
9024 .sysctl_rmem = sysctl_sctp_rmem,
9025 .sysctl_wmem = sysctl_sctp_wmem,
9026 .memory_pressure = &sctp_memory_pressure,
9027 .enter_memory_pressure = sctp_enter_memory_pressure,
9028 .memory_allocated = &sctp_memory_allocated,
9029 .sockets_allocated = &sctp_sockets_allocated,
9030};
9031#endif /* IS_ENABLED(CONFIG_IPV6) */