]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - net/sctp/socket.c
sctp: honor PMTU_DISABLED when handling icmp
[thirdparty/kernel/stable.git] / net / sctp / socket.c
CommitLineData
60c778b2 1/* SCTP kernel implementation
1da177e4
LT
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 *
60c778b2 9 * This file is part of the SCTP kernel implementation
1da177e4
LT
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 *
60c778b2 18 * This SCTP implementation is free software;
1da177e4
LT
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 *
60c778b2 24 * This SCTP implementation is distributed in the hope that it
1da177e4
LT
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
4b2f13a2
JK
31 * along with GNU CC; see the file COPYING. If not, see
32 * <http://www.gnu.org/licenses/>.
1da177e4
LT
33 *
34 * Please send any bug reports or fixes you make to the
35 * email address(es):
91705c61 36 * lksctp developers <linux-sctp@vger.kernel.org>
1da177e4 37 *
1da177e4
LT
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>
1da177e4
LT
51 */
52
145ce502
JP
53#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
5821c769 55#include <crypto/hash.h>
1da177e4
LT
56#include <linux/types.h>
57#include <linux/kernel.h>
58#include <linux/wait.h>
59#include <linux/time.h>
3f07c014 60#include <linux/sched/signal.h>
1da177e4 61#include <linux/ip.h>
4fc268d2 62#include <linux/capability.h>
1da177e4
LT
63#include <linux/fcntl.h>
64#include <linux/poll.h>
65#include <linux/init.h>
5a0e3ad6 66#include <linux/slab.h>
56b31d1c 67#include <linux/file.h>
ffd59393 68#include <linux/compat.h>
1da177e4
LT
69
70#include <net/ip.h>
71#include <net/icmp.h>
72#include <net/route.h>
73#include <net/ipv6.h>
74#include <net/inet_common.h>
8465a5fc 75#include <net/busy_poll.h>
1da177e4
LT
76
77#include <linux/socket.h> /* for sa_family_t */
bc3b2d7f 78#include <linux/export.h>
1da177e4
LT
79#include <net/sock.h>
80#include <net/sctp/sctp.h>
81#include <net/sctp/sm.h>
13aa8770 82#include <net/sctp/stream_sched.h>
1da177e4 83
1da177e4
LT
84/* Forward declarations for internal helper functions. */
85static int sctp_writeable(struct sock *sk);
86static void sctp_wfree(struct sk_buff *skb);
cea0cc80 87static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
a0ff6600 88 size_t msg_len);
26ac8e5f 89static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
1da177e4
LT
90static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
91static int sctp_wait_for_accept(struct sock *sk, long timeo);
92static void sctp_wait_for_close(struct sock *sk, long timeo);
0a2fbac1 93static void sctp_destruct_sock(struct sock *sk);
1da177e4
LT
94static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt,
95 union sctp_addr *addr, int len);
96static int sctp_bindx_add(struct sock *, struct sockaddr *, int);
97static int sctp_bindx_rem(struct sock *, struct sockaddr *, int);
98static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int);
99static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int);
100static int sctp_send_asconf(struct sctp_association *asoc,
101 struct sctp_chunk *chunk);
102static int sctp_do_bind(struct sock *, union sctp_addr *, int);
103static int sctp_autobind(struct sock *sk);
b7ef2618
XL
104static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
105 struct sctp_association *assoc,
106 enum sctp_socket_type type);
1da177e4 107
06044751 108static unsigned long sctp_memory_pressure;
8d987e5c 109static atomic_long_t sctp_memory_allocated;
1748376b 110struct percpu_counter sctp_sockets_allocated;
4d93df0a 111
5c52ba17 112static void sctp_enter_memory_pressure(struct sock *sk)
4d93df0a
NH
113{
114 sctp_memory_pressure = 1;
115}
116
117
1da177e4
LT
118/* Get the sndbuf space available at the time on the association. */
119static inline int sctp_wspace(struct sctp_association *asoc)
120{
4d93df0a 121 int amt;
1da177e4 122
4d93df0a
NH
123 if (asoc->ep->sndbuf_policy)
124 amt = asoc->sndbuf_used;
125 else
31e6d363 126 amt = sk_wmem_alloc_get(asoc->base.sk);
4d93df0a
NH
127
128 if (amt >= asoc->base.sk->sk_sndbuf) {
129 if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK)
130 amt = 0;
131 else {
132 amt = sk_stream_wspace(asoc->base.sk);
133 if (amt < 0)
134 amt = 0;
135 }
4eb701df 136 } else {
4d93df0a 137 amt = asoc->base.sk->sk_sndbuf - amt;
4eb701df 138 }
1da177e4
LT
139 return amt;
140}
141
142/* Increment the used sndbuf space count of the corresponding association by
143 * the size of the outgoing data chunk.
144 * Also, set the skb destructor for sndbuf accounting later.
145 *
146 * Since it is always 1-1 between chunk and skb, and also a new skb is always
147 * allocated for chunk bundling in sctp_packet_transmit(), we can use the
148 * destructor in the data chunk skb for the purpose of the sndbuf space
149 * tracking.
150 */
151static inline void sctp_set_owner_w(struct sctp_chunk *chunk)
152{
153 struct sctp_association *asoc = chunk->asoc;
154 struct sock *sk = asoc->base.sk;
155
156 /* The sndbuf space is tracked per association. */
157 sctp_association_hold(asoc);
158
1b1e0bc9
XL
159 if (chunk->shkey)
160 sctp_auth_shkey_hold(chunk->shkey);
161
4eb701df
NH
162 skb_set_owner_w(chunk->skb, sk);
163
1da177e4
LT
164 chunk->skb->destructor = sctp_wfree;
165 /* Save the chunk pointer in skb for sctp_wfree to use later. */
f869c912 166 skb_shinfo(chunk->skb)->destructor_arg = chunk;
1da177e4 167
4eb701df
NH
168 asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) +
169 sizeof(struct sk_buff) +
170 sizeof(struct sctp_chunk);
171
14afee4b 172 refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
3ab224be
HA
173 sk->sk_wmem_queued += chunk->skb->truesize;
174 sk_mem_charge(sk, chunk->skb->truesize);
1da177e4
LT
175}
176
d04adf1b
XL
177static void sctp_clear_owner_w(struct sctp_chunk *chunk)
178{
179 skb_orphan(chunk->skb);
180}
181
182static void sctp_for_each_tx_datachunk(struct sctp_association *asoc,
183 void (*cb)(struct sctp_chunk *))
184
185{
186 struct sctp_outq *q = &asoc->outqueue;
187 struct sctp_transport *t;
188 struct sctp_chunk *chunk;
189
190 list_for_each_entry(t, &asoc->peer.transport_addr_list, transports)
191 list_for_each_entry(chunk, &t->transmitted, transmitted_list)
192 cb(chunk);
193
a8dd3979 194 list_for_each_entry(chunk, &q->retransmit, transmitted_list)
d04adf1b
XL
195 cb(chunk);
196
a8dd3979 197 list_for_each_entry(chunk, &q->sacked, transmitted_list)
d04adf1b
XL
198 cb(chunk);
199
a8dd3979 200 list_for_each_entry(chunk, &q->abandoned, transmitted_list)
d04adf1b
XL
201 cb(chunk);
202
203 list_for_each_entry(chunk, &q->out_chunk_list, list)
204 cb(chunk);
205}
206
13228238
XL
207static void sctp_for_each_rx_skb(struct sctp_association *asoc, struct sock *sk,
208 void (*cb)(struct sk_buff *, struct sock *))
209
210{
211 struct sk_buff *skb, *tmp;
212
213 sctp_skb_for_each(skb, &asoc->ulpq.lobby, tmp)
214 cb(skb, sk);
215
216 sctp_skb_for_each(skb, &asoc->ulpq.reasm, tmp)
217 cb(skb, sk);
218
219 sctp_skb_for_each(skb, &asoc->ulpq.reasm_uo, tmp)
220 cb(skb, sk);
221}
222
1da177e4
LT
223/* Verify that this is a valid address. */
224static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr,
225 int len)
226{
227 struct sctp_af *af;
228
229 /* Verify basic sockaddr. */
230 af = sctp_sockaddr_af(sctp_sk(sk), addr, len);
231 if (!af)
232 return -EINVAL;
233
234 /* Is this a valid SCTP address? */
5636bef7 235 if (!af->addr_valid(addr, sctp_sk(sk), NULL))
1da177e4
LT
236 return -EINVAL;
237
238 if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr)))
239 return -EINVAL;
240
241 return 0;
242}
243
244/* Look up the association by its id. If this is not a UDP-style
245 * socket, the ID field is always ignored.
246 */
247struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
248{
249 struct sctp_association *asoc = NULL;
250
251 /* If this is not a UDP-style socket, assoc id should be ignored. */
252 if (!sctp_style(sk, UDP)) {
253 /* Return NULL if the socket state is not ESTABLISHED. It
254 * could be a TCP-style listening socket or a socket which
255 * hasn't yet called connect() to establish an association.
256 */
e5b13f34 257 if (!sctp_sstate(sk, ESTABLISHED) && !sctp_sstate(sk, CLOSING))
1da177e4
LT
258 return NULL;
259
260 /* Get the first and the only association from the list. */
261 if (!list_empty(&sctp_sk(sk)->ep->asocs))
262 asoc = list_entry(sctp_sk(sk)->ep->asocs.next,
263 struct sctp_association, asocs);
264 return asoc;
265 }
266
267 /* Otherwise this is a UDP-style socket. */
268 if (!id || (id == (sctp_assoc_t)-1))
269 return NULL;
270
271 spin_lock_bh(&sctp_assocs_id_lock);
272 asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id);
273 spin_unlock_bh(&sctp_assocs_id_lock);
274
275 if (!asoc || (asoc->base.sk != sk) || asoc->base.dead)
276 return NULL;
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;
6f29a130 290 struct sctp_af *af = sctp_get_af_specific(addr->ss_family);
1da177e4 291 union sctp_addr *laddr = (union sctp_addr *)addr;
6f29a130
XL
292 struct sctp_transport *transport;
293
912964ea 294 if (!af || sctp_verify_addr(sk, laddr, af->sockaddr_len))
6f29a130 295 return NULL;
1da177e4 296
1da177e4 297 addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep,
cd4ff034 298 laddr,
1da177e4 299 &transport);
1da177e4
LT
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
299ee123 308 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
1da177e4
LT
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 */
dda91928 324static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len)
1da177e4
LT
325{
326 int retval = 0;
327
048ed4b6 328 lock_sock(sk);
1da177e4 329
bb33381d
DB
330 pr_debug("%s: sk:%p, addr:%p, addr_len:%d\n", __func__, sk,
331 addr, addr_len);
1da177e4
LT
332
333 /* Disallow binding twice. */
334 if (!sctp_sk(sk)->ep->base.bind_addr.port)
3f7a87d2 335 retval = sctp_do_bind(sk, (union sctp_addr *)addr,
1da177e4
LT
336 addr_len);
337 else
338 retval = -EINVAL;
339
048ed4b6 340 release_sock(sk);
1da177e4
LT
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
c5006b8a
XL
357 if (!opt->pf->af_supported(addr->sa.sa_family, opt))
358 return NULL;
359
81e98370
ED
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 }
1da177e4
LT
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. */
dda91928 379static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
1da177e4 380{
3594698a 381 struct net *net = sock_net(sk);
1da177e4
LT
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
1da177e4
LT
389 /* Common sockaddr verification. */
390 af = sctp_sockaddr_af(sp, addr, len);
3f7a87d2 391 if (!af) {
bb33381d
DB
392 pr_debug("%s: sk:%p, newaddr:%p, len:%d EINVAL\n",
393 __func__, sk, addr, len);
1da177e4 394 return -EINVAL;
3f7a87d2
FF
395 }
396
397 snum = ntohs(addr->v4.sin_port);
398
bb33381d
DB
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);
1da177e4
LT
401
402 /* PF specific bind() address verification. */
403 if (!sp->pf->bind_verify(sp, addr))
404 return -EADDRNOTAVAIL;
405
8b358056
VY
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) {
bb33381d
DB
414 pr_debug("%s: new port %d doesn't match existing port "
415 "%d\n", __func__, snum, bp->port);
8b358056
VY
416 return -EINVAL;
417 }
1da177e4
LT
418 }
419
4548b683 420 if (snum && snum < inet_prot_sock(net) &&
3594698a 421 !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE))
1da177e4
LT
422 return -EACCES;
423
4e54064e
VY
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
1da177e4
LT
430 /* Make sure we are allowed to bind here.
431 * The function sctp_get_port_local() does duplicate address
432 * detection.
433 */
2772b495 434 addr->v4.sin_port = htons(snum);
1da177e4 435 if ((ret = sctp_get_port_local(sk, addr))) {
4e54064e 436 return -EADDRINUSE;
1da177e4
LT
437 }
438
439 /* Refresh ephemeral port. */
440 if (!bp->port)
c720c7e8 441 bp->port = inet_sk(sk)->inet_num;
1da177e4 442
559cf710
VY
443 /* Add the address to the bind address list.
444 * Use GFP_ATOMIC since BHs will be disabled.
445 */
133800d1
MRL
446 ret = sctp_add_bind_addr(bp, addr, af->sockaddr_len,
447 SCTP_ADDR_SRC, GFP_ATOMIC);
1da177e4
LT
448
449 /* Copy back into socket for getsockname() use. */
450 if (!ret) {
c720c7e8 451 inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num);
299ee123 452 sp->pf->to_sk_saddr(addr, sk);
1da177e4
LT
453 }
454
455 return ret;
456}
457
458 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
459 *
d808ad9a 460 * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged
1da177e4 461 * at any one time. If a sender, after sending an ASCONF chunk, decides
d808ad9a 462 * it needs to transfer another ASCONF Chunk, it MUST wait until the
1da177e4 463 * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a
d808ad9a
YH
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
1da177e4
LT
466 * from each endpoint).
467 */
468static int sctp_send_asconf(struct sctp_association *asoc,
469 struct sctp_chunk *chunk)
470{
55e26eb9 471 struct net *net = sock_net(asoc->base.sk);
1da177e4
LT
472 int retval = 0;
473
474 /* If there is an outstanding ASCONF chunk, queue it for later
475 * transmission.
d808ad9a 476 */
1da177e4 477 if (asoc->addip_last_asconf) {
79af02c2 478 list_add_tail(&chunk->list, &asoc->addip_chunk_list);
d808ad9a 479 goto out;
1da177e4
LT
480 }
481
482 /* Hold the chunk until an ASCONF_ACK is received. */
483 sctp_chunk_hold(chunk);
55e26eb9 484 retval = sctp_primitive_ASCONF(net, asoc, chunk);
1da177e4
LT
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 */
04675210 506static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt)
1da177e4
LT
507{
508 int cnt;
509 int retval = 0;
510 void *addr_buf;
511 struct sockaddr *sa_addr;
512 struct sctp_af *af;
513
bb33381d
DB
514 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n", __func__, sk,
515 addrs, addrcnt);
1da177e4
LT
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 */
ea110733 522 sa_addr = addr_buf;
1da177e4
LT
523 af = sctp_get_af_specific(sa_addr->sa_family);
524 if (!af) {
525 retval = -EINVAL;
526 goto err_bindx_add;
527 }
528
d808ad9a 529 retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr,
1da177e4
LT
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 *
d808ad9a 550 * If any of the addresses is already in the bind address list of the
1da177e4
LT
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 */
d808ad9a 556static int sctp_send_asconf_add_ip(struct sock *sk,
1da177e4
LT
557 struct sockaddr *addrs,
558 int addrcnt)
559{
e1fc3b14 560 struct net *net = sock_net(sk);
1da177e4
LT
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;
dc022a98 568 union sctp_addr saveaddr;
1da177e4
LT
569 void *addr_buf;
570 struct sctp_af *af;
1da177e4
LT
571 struct list_head *p;
572 int i;
573 int retval = 0;
574
e1fc3b14 575 if (!net->sctp.addip_enable)
1da177e4
LT
576 return retval;
577
578 sp = sctp_sk(sk);
579 ep = sp->ep;
580
bb33381d
DB
581 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
582 __func__, sk, addrs, addrcnt);
1da177e4 583
9dbc15f0 584 list_for_each_entry(asoc, &ep->asocs, asocs) {
1da177e4
LT
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
d808ad9a
YH
595 * in the bind address list of the association. If so,
596 * do not send the asconf chunk to its peer, but continue with
1da177e4
LT
597 * other associations.
598 */
599 addr_buf = addrs;
600 for (i = 0; i < addrcnt; i++) {
ea110733 601 addr = addr_buf;
1da177e4
LT
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
559cf710
VY
616 /* Use the first valid address in bind addr list of
617 * association as Address Parameter of ASCONF CHUNK.
1da177e4 618 */
1da177e4
LT
619 bp = &asoc->base.bind_addr;
620 p = bp->address_list.next;
621 laddr = list_entry(p, struct sctp_sockaddr_entry, list);
5ae955cf 622 chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs,
1da177e4
LT
623 addrcnt, SCTP_PARAM_ADD_IP);
624 if (!chunk) {
625 retval = -ENOMEM;
626 goto out;
627 }
628
dc022a98
SS
629 /* Add the new addresses to the bind address list with
630 * use_as_src set to 0.
1da177e4 631 */
dc022a98
SS
632 addr_buf = addrs;
633 for (i = 0; i < addrcnt; i++) {
ea110733 634 addr = addr_buf;
dc022a98
SS
635 af = sctp_get_af_specific(addr->v4.sin_family);
636 memcpy(&saveaddr, addr, af->sockaddr_len);
f57d96b2 637 retval = sctp_add_bind_addr(bp, &saveaddr,
133800d1 638 sizeof(saveaddr),
f57d96b2 639 SCTP_ADDR_NEW, GFP_ATOMIC);
dc022a98
SS
640 addr_buf += af->sockaddr_len;
641 }
8a07eb0a
MH
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) {
8a07eb0a
MH
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;
196d6759 651 sctp_max_rto(asoc, trans);
8a07eb0a 652 trans->rtt = trans->srtt = trans->rttvar = 0;
6e91b578 653 /* Clear the source and route cache */
8a07eb0a 654 sctp_transport_route(trans, NULL,
6e91b578 655 sctp_sk(asoc->base.sk));
8a07eb0a
MH
656 }
657 }
658 retval = sctp_send_asconf(asoc, chunk);
1da177e4
LT
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 */
04675210 680static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt)
1da177e4
LT
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;
1da177e4 687 void *addr_buf;
c9a08505 688 union sctp_addr *sa_addr;
1da177e4
LT
689 struct sctp_af *af;
690
bb33381d
DB
691 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
692 __func__, sk, addrs, addrcnt);
1da177e4
LT
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
ea110733 706 sa_addr = addr_buf;
c9a08505 707 af = sctp_get_af_specific(sa_addr->sa.sa_family);
1da177e4
LT
708 if (!af) {
709 retval = -EINVAL;
710 goto err_bindx_rem;
711 }
0304ff8a
PG
712
713 if (!af->addr_valid(sa_addr, sp, NULL)) {
714 retval = -EADDRNOTAVAIL;
715 goto err_bindx_rem;
716 }
717
ee9cbaca
VY
718 if (sa_addr->v4.sin_port &&
719 sa_addr->v4.sin_port != htons(bp->port)) {
1da177e4
LT
720 retval = -EINVAL;
721 goto err_bindx_rem;
722 }
723
ee9cbaca
VY
724 if (!sa_addr->v4.sin_port)
725 sa_addr->v4.sin_port = htons(bp->port);
726
1da177e4
LT
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 */
0ed90fb0 734 retval = sctp_del_bind_addr(bp, sa_addr);
1da177e4
LT
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 *
d808ad9a 753 * If any of the addresses is already in the bind address list of the
1da177e4
LT
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{
e1fc3b14 763 struct net *net = sock_net(sk);
1da177e4
LT
764 struct sctp_sock *sp;
765 struct sctp_endpoint *ep;
766 struct sctp_association *asoc;
dc022a98 767 struct sctp_transport *transport;
1da177e4
LT
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;
dc022a98 773 struct sctp_sockaddr_entry *saddr;
1da177e4
LT
774 int i;
775 int retval = 0;
8a07eb0a 776 int stored = 0;
1da177e4 777
8a07eb0a 778 chunk = NULL;
e1fc3b14 779 if (!net->sctp.addip_enable)
1da177e4
LT
780 return retval;
781
782 sp = sctp_sk(sk);
783 ep = sp->ep;
784
bb33381d
DB
785 pr_debug("%s: sk:%p, addrs:%p, addrcnt:%d\n",
786 __func__, sk, addrs, addrcnt);
1da177e4 787
9dbc15f0 788 list_for_each_entry(asoc, &ep->asocs, asocs) {
1da177e4
LT
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
d808ad9a 800 * not present in the bind address list of the association.
1da177e4
LT
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++) {
ea110733 806 laddr = addr_buf;
1da177e4
LT
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 */
1da177e4
LT
826 bp = &asoc->base.bind_addr;
827 laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs,
828 addrcnt, sp);
8a07eb0a
MH
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);
6d65e5ee
MH
834 if (asoc->asconf_addr_del_pending == NULL) {
835 retval = -ENOMEM;
836 goto out;
837 }
8a07eb0a
MH
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;
4e3fd7a0 851 asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr;
8a07eb0a 852 }
bb33381d
DB
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
8a07eb0a
MH
858 asoc->src_out_of_asoc_ok = 1;
859 stored = 1;
860 goto skip_mkasconf;
861 }
1da177e4 862
88362ad8
DB
863 if (laddr == NULL)
864 return -EINVAL;
865
559cf710
VY
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 */
1da177e4
LT
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
8a07eb0a 877skip_mkasconf:
dc022a98
SS
878 /* Reset use_as_src flag for the addresses in the bind address
879 * list that are to be deleted.
880 */
dc022a98
SS
881 addr_buf = addrs;
882 for (i = 0; i < addrcnt; i++) {
ea110733 883 laddr = addr_buf;
dc022a98 884 af = sctp_get_af_specific(laddr->v4.sin_family);
559cf710 885 list_for_each_entry(saddr, &bp->address_list, list) {
5f242a13 886 if (sctp_cmp_addr_exact(&saddr->a, laddr))
f57d96b2 887 saddr->state = SCTP_ADDR_DEL;
dc022a98
SS
888 }
889 addr_buf += af->sockaddr_len;
890 }
1da177e4 891
dc022a98
SS
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.
1da177e4 895 */
9dbc15f0
RD
896 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
897 transports) {
dc022a98
SS
898 sctp_transport_route(transport, NULL,
899 sctp_sk(asoc->base.sk));
900 }
901
8a07eb0a
MH
902 if (stored)
903 /* We don't need to transmit ASCONF */
904 continue;
dc022a98 905 retval = sctp_send_asconf(asoc, chunk);
1da177e4
LT
906 }
907out:
908 return retval;
909}
910
9f7d653b
MH
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
1da177e4
LT
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
23c435f7 949 * must be used to distinguish the address length (note that this
1da177e4
LT
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.
3f7a87d2
FF
988 * This is used for tunneling the sctp_bindx() request through sctp_setsockopt()
989 * from userspace.
1da177e4 990 *
1da177e4
LT
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 */
26ac8e5f 1002static int sctp_setsockopt_bindx(struct sock *sk,
dda91928
DB
1003 struct sockaddr __user *addrs,
1004 int addrs_size, int op)
1da177e4
LT
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
bb33381d
DB
1014 pr_debug("%s: sk:%p addrs:%p addrs_size:%d opt:%d\n",
1015 __func__, sk, addrs, addrs_size, op);
1da177e4
LT
1016
1017 if (unlikely(addrs_size <= 0))
1018 return -EINVAL;
1019
c981f254
AV
1020 kaddrs = vmemdup_user(addrs, addrs_size);
1021 if (unlikely(IS_ERR(kaddrs)))
1022 return PTR_ERR(kaddrs);
1da177e4 1023
d808ad9a 1024 /* Walk through the addrs buffer and count the number of addresses. */
1da177e4
LT
1025 addr_buf = kaddrs;
1026 while (walk_size < addrs_size) {
d7e0d19a 1027 if (walk_size + sizeof(sa_family_t) > addrs_size) {
c981f254 1028 kvfree(kaddrs);
d7e0d19a
DR
1029 return -EINVAL;
1030 }
1031
ea110733 1032 sa_addr = addr_buf;
1da177e4
LT
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.
d808ad9a 1037 */
1da177e4 1038 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
c981f254 1039 kvfree(kaddrs);
1da177e4
LT
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:
2277c7cd
RH
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;
1da177e4
LT
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;
3ff50b79 1072 }
1da177e4
LT
1073
1074out:
c981f254 1075 kvfree(kaddrs);
1da177e4
LT
1076
1077 return err;
1078}
1079
3f7a87d2
FF
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 */
26ac8e5f 1085static int __sctp_connect(struct sock *sk,
3f7a87d2 1086 struct sockaddr *kaddrs,
88a0a948
VY
1087 int addrs_size,
1088 sctp_assoc_t *assoc_id)
3f7a87d2 1089{
55e26eb9 1090 struct net *net = sock_net(sk);
3f7a87d2
FF
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;
1c662018 1097 enum sctp_scope scope;
3f7a87d2
FF
1098 long timeo;
1099 int err = 0;
1100 int addrcnt = 0;
1101 int walk_size = 0;
e4d1feab 1102 union sctp_addr *sa_addr = NULL;
3f7a87d2 1103 void *addr_buf;
16d00fb7 1104 unsigned short port;
f50f95ca 1105 unsigned int f_flags = 0;
3f7a87d2
FF
1106
1107 sp = sctp_sk(sk);
1108 ep = sp->ep;
1109
1110 /* connect() cannot be done on a socket that is already in ESTABLISHED
1111 * state - UDP-style peeled off socket or a TCP-style socket that
1112 * is already connected.
1113 * It cannot be done even on a TCP-style listening socket.
1114 */
e5b13f34 1115 if (sctp_sstate(sk, ESTABLISHED) || sctp_sstate(sk, CLOSING) ||
3f7a87d2
FF
1116 (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) {
1117 err = -EISCONN;
1118 goto out_free;
1119 }
1120
1121 /* Walk through the addrs buffer and count the number of addresses. */
1122 addr_buf = kaddrs;
1123 while (walk_size < addrs_size) {
299ee123
JG
1124 struct sctp_af *af;
1125
d7e0d19a
DR
1126 if (walk_size + sizeof(sa_family_t) > addrs_size) {
1127 err = -EINVAL;
1128 goto out_free;
1129 }
1130
ea110733 1131 sa_addr = addr_buf;
4bdf4b5f 1132 af = sctp_get_af_specific(sa_addr->sa.sa_family);
3f7a87d2
FF
1133
1134 /* If the address family is not supported or if this address
1135 * causes the address buffer to overflow return EINVAL.
1136 */
1137 if (!af || (walk_size + af->sockaddr_len) > addrs_size) {
1138 err = -EINVAL;
1139 goto out_free;
1140 }
1141
d7e0d19a
DR
1142 port = ntohs(sa_addr->v4.sin_port);
1143
e4d1feab
VY
1144 /* Save current address so we can work with it */
1145 memcpy(&to, sa_addr, af->sockaddr_len);
1146
1147 err = sctp_verify_addr(sk, &to, af->sockaddr_len);
3f7a87d2
FF
1148 if (err)
1149 goto out_free;
1150
16d00fb7
VY
1151 /* Make sure the destination port is correctly set
1152 * in all addresses.
1153 */
524fba6c
WY
1154 if (asoc && asoc->peer.port && asoc->peer.port != port) {
1155 err = -EINVAL;
16d00fb7 1156 goto out_free;
524fba6c 1157 }
3f7a87d2
FF
1158
1159 /* Check if there already is a matching association on the
1160 * endpoint (other than the one created here).
1161 */
e4d1feab 1162 asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport);
3f7a87d2
FF
1163 if (asoc2 && asoc2 != asoc) {
1164 if (asoc2->state >= SCTP_STATE_ESTABLISHED)
1165 err = -EISCONN;
1166 else
1167 err = -EALREADY;
1168 goto out_free;
1169 }
1170
1171 /* If we could not find a matching association on the endpoint,
1172 * make sure that there is no peeled-off association matching
1173 * the peer address even on another socket.
1174 */
e4d1feab 1175 if (sctp_endpoint_is_peeled_off(ep, &to)) {
3f7a87d2
FF
1176 err = -EADDRNOTAVAIL;
1177 goto out_free;
1178 }
1179
1180 if (!asoc) {
1181 /* If a bind() or sctp_bindx() is not called prior to
1182 * an sctp_connectx() call, the system picks an
1183 * ephemeral port and will choose an address set
1184 * equivalent to binding with a wildcard address.
1185 */
1186 if (!ep->base.bind_addr.port) {
1187 if (sctp_autobind(sk)) {
1188 err = -EAGAIN;
1189 goto out_free;
1190 }
64a0c1c8
ISJ
1191 } else {
1192 /*
d808ad9a
YH
1193 * If an unprivileged user inherits a 1-many
1194 * style socket with open associations on a
1195 * privileged port, it MAY be permitted to
1196 * accept new associations, but it SHOULD NOT
64a0c1c8
ISJ
1197 * be permitted to open new associations.
1198 */
4548b683
KJ
1199 if (ep->base.bind_addr.port <
1200 inet_prot_sock(net) &&
1201 !ns_capable(net->user_ns,
1202 CAP_NET_BIND_SERVICE)) {
64a0c1c8
ISJ
1203 err = -EACCES;
1204 goto out_free;
1205 }
3f7a87d2
FF
1206 }
1207
e4d1feab 1208 scope = sctp_scope(&to);
3f7a87d2
FF
1209 asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL);
1210 if (!asoc) {
1211 err = -ENOMEM;
1212 goto out_free;
1213 }
409b95af
VY
1214
1215 err = sctp_assoc_set_bind_addr_from_ep(asoc, scope,
1216 GFP_KERNEL);
1217 if (err < 0) {
1218 goto out_free;
1219 }
1220
3f7a87d2
FF
1221 }
1222
1223 /* Prime the peer's transport structures. */
e4d1feab 1224 transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL,
3f7a87d2
FF
1225 SCTP_UNKNOWN);
1226 if (!transport) {
1227 err = -ENOMEM;
1228 goto out_free;
1229 }
1230
1231 addrcnt++;
1232 addr_buf += af->sockaddr_len;
1233 walk_size += af->sockaddr_len;
1234 }
1235
c6ba68a2
VY
1236 /* In case the user of sctp_connectx() wants an association
1237 * id back, assign one now.
1238 */
1239 if (assoc_id) {
1240 err = sctp_assoc_set_id(asoc, GFP_KERNEL);
1241 if (err < 0)
1242 goto out_free;
1243 }
1244
55e26eb9 1245 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
3f7a87d2
FF
1246 if (err < 0) {
1247 goto out_free;
1248 }
1249
1250 /* Initialize sk's dport and daddr for getpeername() */
c720c7e8 1251 inet_sk(sk)->inet_dport = htons(asoc->peer.port);
299ee123 1252 sp->pf->to_sk_daddr(sa_addr, sk);
8de8c873 1253 sk->sk_err = 0;
3f7a87d2 1254
f50f95ca
VY
1255 /* in-kernel sockets don't generally have a file allocated to them
1256 * if all they do is call sock_create_kern().
1257 */
1258 if (sk->sk_socket->file)
1259 f_flags = sk->sk_socket->file->f_flags;
1260
1261 timeo = sock_sndtimeo(sk, f_flags & O_NONBLOCK);
1262
7233bc84 1263 if (assoc_id)
88a0a948 1264 *assoc_id = asoc->assoc_id;
2277c7cd 1265
7233bc84
MRL
1266 err = sctp_wait_for_connect(asoc, &timeo);
1267 /* Note: the asoc may be freed after the return of
1268 * sctp_wait_for_connect.
1269 */
3f7a87d2
FF
1270
1271 /* Don't free association on exit. */
1272 asoc = NULL;
1273
1274out_free:
bb33381d
DB
1275 pr_debug("%s: took out_free path with asoc:%p kaddrs:%p err:%d\n",
1276 __func__, asoc, kaddrs, err);
3f7a87d2 1277
2eebc1e1
NH
1278 if (asoc) {
1279 /* sctp_primitive_ASSOCIATE may have added this association
1280 * To the hash table, try to unhash it, just in case, its a noop
1281 * if it wasn't hashed so we're safe
1282 */
3f7a87d2 1283 sctp_association_free(asoc);
2eebc1e1 1284 }
3f7a87d2
FF
1285 return err;
1286}
1287
1288/* Helper for tunneling sctp_connectx() requests through sctp_setsockopt()
1289 *
1290 * API 8.9
88a0a948
VY
1291 * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt,
1292 * sctp_assoc_t *asoc);
3f7a87d2
FF
1293 *
1294 * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses.
1295 * If the sd is an IPv6 socket, the addresses passed can either be IPv4
1296 * or IPv6 addresses.
1297 *
1298 * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see
1299 * Section 3.1.2 for this usage.
1300 *
1301 * addrs is a pointer to an array of one or more socket addresses. Each
1302 * address is contained in its appropriate structure (i.e. struct
1303 * sockaddr_in or struct sockaddr_in6) the family of the address type
1304 * must be used to distengish the address length (note that this
1305 * representation is termed a "packed array" of addresses). The caller
1306 * specifies the number of addresses in the array with addrcnt.
1307 *
88a0a948
VY
1308 * On success, sctp_connectx() returns 0. It also sets the assoc_id to
1309 * the association id of the new association. On failure, sctp_connectx()
1310 * returns -1, and sets errno to the appropriate error code. The assoc_id
1311 * is not touched by the kernel.
3f7a87d2
FF
1312 *
1313 * For SCTP, the port given in each socket address must be the same, or
1314 * sctp_connectx() will fail, setting errno to EINVAL.
1315 *
1316 * An application can use sctp_connectx to initiate an association with
1317 * an endpoint that is multi-homed. Much like sctp_bindx() this call
1318 * allows a caller to specify multiple addresses at which a peer can be
1319 * reached. The way the SCTP stack uses the list of addresses to set up
25985edc 1320 * the association is implementation dependent. This function only
3f7a87d2
FF
1321 * specifies that the stack will try to make use of all the addresses in
1322 * the list when needed.
1323 *
1324 * Note that the list of addresses passed in is only used for setting up
1325 * the association. It does not necessarily equal the set of addresses
1326 * the peer uses for the resulting association. If the caller wants to
1327 * find out the set of peer addresses, it must use sctp_getpaddrs() to
1328 * retrieve them after the association has been set up.
1329 *
1330 * Basically do nothing but copying the addresses from user to kernel
1331 * land and invoking either sctp_connectx(). This is used for tunneling
1332 * the sctp_connectx() request through sctp_setsockopt() from userspace.
1333 *
3f7a87d2
FF
1334 * On exit there is no need to do sockfd_put(), sys_setsockopt() does
1335 * it.
1336 *
1337 * sk The sk of the socket
1338 * addrs The pointer to the addresses in user land
1339 * addrssize Size of the addrs buffer
1340 *
88a0a948 1341 * Returns >=0 if ok, <0 errno code on error.
3f7a87d2 1342 */
26ac8e5f 1343static int __sctp_setsockopt_connectx(struct sock *sk,
3f7a87d2 1344 struct sockaddr __user *addrs,
88a0a948
VY
1345 int addrs_size,
1346 sctp_assoc_t *assoc_id)
3f7a87d2 1347{
3f7a87d2 1348 struct sockaddr *kaddrs;
9ba0b963 1349 int err = 0;
3f7a87d2 1350
bb33381d
DB
1351 pr_debug("%s: sk:%p addrs:%p addrs_size:%d\n",
1352 __func__, sk, addrs, addrs_size);
3f7a87d2
FF
1353
1354 if (unlikely(addrs_size <= 0))
1355 return -EINVAL;
1356
c981f254
AV
1357 kaddrs = vmemdup_user(addrs, addrs_size);
1358 if (unlikely(IS_ERR(kaddrs)))
1359 return PTR_ERR(kaddrs);
3f7a87d2 1360
2277c7cd
RH
1361 /* Allow security module to validate connectx addresses. */
1362 err = security_sctp_bind_connect(sk, SCTP_SOCKOPT_CONNECTX,
1363 (struct sockaddr *)kaddrs,
1364 addrs_size);
1365 if (err)
1366 goto out_free;
1367
c981f254 1368 err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id);
2277c7cd
RH
1369
1370out_free:
c981f254 1371 kvfree(kaddrs);
88a0a948 1372
3f7a87d2
FF
1373 return err;
1374}
1375
88a0a948
VY
1376/*
1377 * This is an older interface. It's kept for backward compatibility
1378 * to the option that doesn't provide association id.
1379 */
26ac8e5f 1380static int sctp_setsockopt_connectx_old(struct sock *sk,
dda91928
DB
1381 struct sockaddr __user *addrs,
1382 int addrs_size)
88a0a948
VY
1383{
1384 return __sctp_setsockopt_connectx(sk, addrs, addrs_size, NULL);
1385}
1386
1387/*
1388 * New interface for the API. The since the API is done with a socket
1389 * option, to make it simple we feed back the association id is as a return
1390 * indication to the call. Error is always negative and association id is
1391 * always positive.
1392 */
26ac8e5f 1393static int sctp_setsockopt_connectx(struct sock *sk,
dda91928
DB
1394 struct sockaddr __user *addrs,
1395 int addrs_size)
88a0a948
VY
1396{
1397 sctp_assoc_t assoc_id = 0;
1398 int err = 0;
1399
1400 err = __sctp_setsockopt_connectx(sk, addrs, addrs_size, &assoc_id);
1401
1402 if (err)
1403 return err;
1404 else
1405 return assoc_id;
1406}
1407
c6ba68a2 1408/*
f9c67811
VY
1409 * New (hopefully final) interface for the API.
1410 * We use the sctp_getaddrs_old structure so that use-space library
ffd59393 1411 * can avoid any unnecessary allocations. The only different part
f9c67811 1412 * is that we store the actual length of the address buffer into the
ffd59393 1413 * addrs_num structure member. That way we can re-use the existing
f9c67811 1414 * code.
c6ba68a2 1415 */
ffd59393
DB
1416#ifdef CONFIG_COMPAT
1417struct compat_sctp_getaddrs_old {
1418 sctp_assoc_t assoc_id;
1419 s32 addr_num;
1420 compat_uptr_t addrs; /* struct sockaddr * */
1421};
1422#endif
1423
26ac8e5f 1424static int sctp_getsockopt_connectx3(struct sock *sk, int len,
dda91928
DB
1425 char __user *optval,
1426 int __user *optlen)
c6ba68a2 1427{
f9c67811 1428 struct sctp_getaddrs_old param;
c6ba68a2
VY
1429 sctp_assoc_t assoc_id = 0;
1430 int err = 0;
1431
ffd59393 1432#ifdef CONFIG_COMPAT
96c0e0a9 1433 if (in_compat_syscall()) {
ffd59393 1434 struct compat_sctp_getaddrs_old param32;
c6ba68a2 1435
ffd59393
DB
1436 if (len < sizeof(param32))
1437 return -EINVAL;
1438 if (copy_from_user(&param32, optval, sizeof(param32)))
1439 return -EFAULT;
f9c67811 1440
ffd59393
DB
1441 param.assoc_id = param32.assoc_id;
1442 param.addr_num = param32.addr_num;
1443 param.addrs = compat_ptr(param32.addrs);
1444 } else
1445#endif
1446 {
1447 if (len < sizeof(param))
1448 return -EINVAL;
1449 if (copy_from_user(&param, optval, sizeof(param)))
1450 return -EFAULT;
1451 }
c6ba68a2 1452
ffd59393
DB
1453 err = __sctp_setsockopt_connectx(sk, (struct sockaddr __user *)
1454 param.addrs, param.addr_num,
1455 &assoc_id);
c6ba68a2
VY
1456 if (err == 0 || err == -EINPROGRESS) {
1457 if (copy_to_user(optval, &assoc_id, sizeof(assoc_id)))
1458 return -EFAULT;
1459 if (put_user(sizeof(assoc_id), optlen))
1460 return -EFAULT;
1461 }
1462
1463 return err;
1464}
1465
1da177e4
LT
1466/* API 3.1.4 close() - UDP Style Syntax
1467 * Applications use close() to perform graceful shutdown (as described in
1468 * Section 10.1 of [SCTP]) on ALL the associations currently represented
1469 * by a UDP-style socket.
1470 *
1471 * The syntax is
1472 *
1473 * ret = close(int sd);
1474 *
1475 * sd - the socket descriptor of the associations to be closed.
1476 *
1477 * To gracefully shutdown a specific association represented by the
1478 * UDP-style socket, an application should use the sendmsg() call,
1479 * passing no user data, but including the appropriate flag in the
1480 * ancillary data (see Section xxxx).
1481 *
1482 * If sd in the close() call is a branched-off socket representing only
1483 * one association, the shutdown is performed on that association only.
1484 *
1485 * 4.1.6 close() - TCP Style Syntax
1486 *
1487 * Applications use close() to gracefully close down an association.
1488 *
1489 * The syntax is:
1490 *
1491 * int close(int sd);
1492 *
1493 * sd - the socket descriptor of the association to be closed.
1494 *
1495 * After an application calls close() on a socket descriptor, no further
1496 * socket operations will succeed on that descriptor.
1497 *
1498 * API 7.1.4 SO_LINGER
1499 *
1500 * An application using the TCP-style socket can use this option to
1501 * perform the SCTP ABORT primitive. The linger option structure is:
1502 *
1503 * struct linger {
1504 * int l_onoff; // option on/off
1505 * int l_linger; // linger time
1506 * };
1507 *
1508 * To enable the option, set l_onoff to 1. If the l_linger value is set
1509 * to 0, calling close() is the same as the ABORT primitive. If the
1510 * value is set to a negative value, the setsockopt() call will return
1511 * an error. If the value is set to a positive value linger_time, the
1512 * close() can be blocked for at most linger_time ms. If the graceful
1513 * shutdown phase does not finish during this period, close() will
1514 * return but the graceful shutdown phase continues in the system.
1515 */
dda91928 1516static void sctp_close(struct sock *sk, long timeout)
1da177e4 1517{
55e26eb9 1518 struct net *net = sock_net(sk);
1da177e4
LT
1519 struct sctp_endpoint *ep;
1520 struct sctp_association *asoc;
1521 struct list_head *pos, *temp;
cd4fcc70 1522 unsigned int data_was_unread;
1da177e4 1523
bb33381d 1524 pr_debug("%s: sk:%p, timeout:%ld\n", __func__, sk, timeout);
1da177e4 1525
6dfe4b97 1526 lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
1da177e4 1527 sk->sk_shutdown = SHUTDOWN_MASK;
cbabf463 1528 inet_sk_set_state(sk, SCTP_SS_CLOSING);
1da177e4
LT
1529
1530 ep = sctp_sk(sk)->ep;
1531
cd4fcc70
TG
1532 /* Clean up any skbs sitting on the receive queue. */
1533 data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue);
1534 data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby);
1535
61c9fed4 1536 /* Walk all associations on an endpoint. */
1da177e4
LT
1537 list_for_each_safe(pos, temp, &ep->asocs) {
1538 asoc = list_entry(pos, struct sctp_association, asocs);
1539
1540 if (sctp_style(sk, TCP)) {
1541 /* A closed association can still be in the list if
1542 * it belongs to a TCP-style listening socket that is
1543 * not yet accepted. If so, free it. If not, send an
1544 * ABORT or SHUTDOWN based on the linger options.
1545 */
1546 if (sctp_state(asoc, CLOSED)) {
1da177e4 1547 sctp_association_free(asoc);
b89498a1
VY
1548 continue;
1549 }
1550 }
1da177e4 1551
cd4fcc70
TG
1552 if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) ||
1553 !skb_queue_empty(&asoc->ulpq.reasm) ||
13228238 1554 !skb_queue_empty(&asoc->ulpq.reasm_uo) ||
cd4fcc70 1555 (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) {
b9ac8672
SS
1556 struct sctp_chunk *chunk;
1557
1558 chunk = sctp_make_abort_user(asoc, NULL, 0);
068d8bd3 1559 sctp_primitive_ABORT(net, asoc, chunk);
b9ac8672 1560 } else
55e26eb9 1561 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1da177e4
LT
1562 }
1563
1da177e4
LT
1564 /* On a TCP-style socket, block for at most linger_time if set. */
1565 if (sctp_style(sk, TCP) && timeout)
1566 sctp_wait_for_close(sk, timeout);
1567
1568 /* This will run the backlog queue. */
048ed4b6 1569 release_sock(sk);
1da177e4
LT
1570
1571 /* Supposedly, no process has access to the socket, but
1572 * the net layers still may.
2d45a02d
MRL
1573 * Also, sctp_destroy_sock() needs to be called with addr_wq_lock
1574 * held and that should be grabbed before socket lock.
1da177e4 1575 */
2d45a02d 1576 spin_lock_bh(&net->sctp.addr_wq_lock);
6dfe4b97 1577 bh_lock_sock_nested(sk);
1da177e4
LT
1578
1579 /* Hold the sock, since sk_common_release() will put sock_put()
1580 * and we have just a little more cleanup.
1581 */
1582 sock_hold(sk);
1583 sk_common_release(sk);
1584
5bc1d1b4 1585 bh_unlock_sock(sk);
2d45a02d 1586 spin_unlock_bh(&net->sctp.addr_wq_lock);
1da177e4
LT
1587
1588 sock_put(sk);
1589
1590 SCTP_DBG_OBJCNT_DEC(sock);
1591}
1592
1593/* Handle EPIPE error. */
1594static int sctp_error(struct sock *sk, int flags, int err)
1595{
1596 if (err == -EPIPE)
1597 err = sock_error(sk) ? : -EPIPE;
1598 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1599 send_sig(SIGPIPE, current, 0);
1600 return err;
1601}
1602
1603/* API 3.1.3 sendmsg() - UDP Style Syntax
1604 *
1605 * An application uses sendmsg() and recvmsg() calls to transmit data to
1606 * and receive data from its peer.
1607 *
1608 * ssize_t sendmsg(int socket, const struct msghdr *message,
1609 * int flags);
1610 *
1611 * socket - the socket descriptor of the endpoint.
1612 * message - pointer to the msghdr structure which contains a single
1613 * user message and possibly some ancillary data.
1614 *
1615 * See Section 5 for complete description of the data
1616 * structures.
1617 *
1618 * flags - flags sent or received with the user message, see Section
1619 * 5 for complete description of the flags.
1620 *
1621 * Note: This function could use a rewrite especially when explicit
1622 * connect support comes in.
1623 */
1624/* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */
1625
a05437ac
XL
1626static int sctp_msghdr_parse(const struct msghdr *msg,
1627 struct sctp_cmsgs *cmsgs);
1da177e4 1628
204f817f
XL
1629static int sctp_sendmsg_parse(struct sock *sk, struct sctp_cmsgs *cmsgs,
1630 struct sctp_sndrcvinfo *srinfo,
1631 const struct msghdr *msg, size_t msg_len)
1632{
1633 __u16 sflags;
1634 int err;
1635
1636 if (sctp_sstate(sk, LISTENING) && sctp_style(sk, TCP))
1637 return -EPIPE;
1638
1639 if (msg_len > sk->sk_sndbuf)
1640 return -EMSGSIZE;
1641
1642 memset(cmsgs, 0, sizeof(*cmsgs));
1643 err = sctp_msghdr_parse(msg, cmsgs);
1644 if (err) {
1645 pr_debug("%s: msghdr parse err:%x\n", __func__, err);
1646 return err;
1647 }
1648
1649 memset(srinfo, 0, sizeof(*srinfo));
1650 if (cmsgs->srinfo) {
1651 srinfo->sinfo_stream = cmsgs->srinfo->sinfo_stream;
1652 srinfo->sinfo_flags = cmsgs->srinfo->sinfo_flags;
1653 srinfo->sinfo_ppid = cmsgs->srinfo->sinfo_ppid;
1654 srinfo->sinfo_context = cmsgs->srinfo->sinfo_context;
1655 srinfo->sinfo_assoc_id = cmsgs->srinfo->sinfo_assoc_id;
1656 srinfo->sinfo_timetolive = cmsgs->srinfo->sinfo_timetolive;
1657 }
1658
1659 if (cmsgs->sinfo) {
1660 srinfo->sinfo_stream = cmsgs->sinfo->snd_sid;
1661 srinfo->sinfo_flags = cmsgs->sinfo->snd_flags;
1662 srinfo->sinfo_ppid = cmsgs->sinfo->snd_ppid;
1663 srinfo->sinfo_context = cmsgs->sinfo->snd_context;
1664 srinfo->sinfo_assoc_id = cmsgs->sinfo->snd_assoc_id;
1665 }
1666
ed63afb8
XL
1667 if (cmsgs->prinfo) {
1668 srinfo->sinfo_timetolive = cmsgs->prinfo->pr_value;
1669 SCTP_PR_SET_POLICY(srinfo->sinfo_flags,
1670 cmsgs->prinfo->pr_policy);
1671 }
1672
204f817f
XL
1673 sflags = srinfo->sinfo_flags;
1674 if (!sflags && msg_len)
1675 return 0;
1676
1677 if (sctp_style(sk, TCP) && (sflags & (SCTP_EOF | SCTP_ABORT)))
1678 return -EINVAL;
1679
1680 if (((sflags & SCTP_EOF) && msg_len > 0) ||
1681 (!(sflags & (SCTP_EOF | SCTP_ABORT)) && msg_len == 0))
1682 return -EINVAL;
1683
1684 if ((sflags & SCTP_ADDR_OVER) && !msg->msg_name)
1685 return -EINVAL;
1686
1687 return 0;
1688}
1689
2bfd80f9
XL
1690static int sctp_sendmsg_new_asoc(struct sock *sk, __u16 sflags,
1691 struct sctp_cmsgs *cmsgs,
1692 union sctp_addr *daddr,
1693 struct sctp_transport **tp)
1694{
1695 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
1696 struct net *net = sock_net(sk);
1697 struct sctp_association *asoc;
1698 enum sctp_scope scope;
2c0dbaa0 1699 struct cmsghdr *cmsg;
9eda2d2d 1700 struct sctp_af *af;
d98985dd 1701 int err;
2bfd80f9
XL
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
9eda2d2d
LT
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;
1da177e4 1740
2bfd80f9
XL
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
2c0dbaa0
XL
1781 if (!cmsgs->addrs_msg)
1782 return 0;
1783
1784 /* sendv addr list parse */
1785 for_each_cmsghdr(cmsg, cmsgs->addrs_msg) {
1786 struct sctp_transport *transport;
1787 struct sctp_association *old;
1788 union sctp_addr _daddr;
1789 int dlen;
1790
1791 if (cmsg->cmsg_level != IPPROTO_SCTP ||
1792 (cmsg->cmsg_type != SCTP_DSTADDRV4 &&
1793 cmsg->cmsg_type != SCTP_DSTADDRV6))
1794 continue;
1795
1796 daddr = &_daddr;
1797 memset(daddr, 0, sizeof(*daddr));
1798 dlen = cmsg->cmsg_len - sizeof(struct cmsghdr);
1799 if (cmsg->cmsg_type == SCTP_DSTADDRV4) {
d98985dd
WY
1800 if (dlen < sizeof(struct in_addr)) {
1801 err = -EINVAL;
2c0dbaa0 1802 goto free;
d98985dd 1803 }
2c0dbaa0
XL
1804
1805 dlen = sizeof(struct in_addr);
1806 daddr->v4.sin_family = AF_INET;
1807 daddr->v4.sin_port = htons(asoc->peer.port);
1808 memcpy(&daddr->v4.sin_addr, CMSG_DATA(cmsg), dlen);
1809 } else {
d98985dd
WY
1810 if (dlen < sizeof(struct in6_addr)) {
1811 err = -EINVAL;
2c0dbaa0 1812 goto free;
d98985dd 1813 }
2c0dbaa0
XL
1814
1815 dlen = sizeof(struct in6_addr);
1816 daddr->v6.sin6_family = AF_INET6;
1817 daddr->v6.sin6_port = htons(asoc->peer.port);
1818 memcpy(&daddr->v6.sin6_addr, CMSG_DATA(cmsg), dlen);
1819 }
1820 err = sctp_verify_addr(sk, daddr, sizeof(*daddr));
1821 if (err)
1822 goto free;
1823
1824 old = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
1825 if (old && old != asoc) {
1826 if (old->state >= SCTP_STATE_ESTABLISHED)
1827 err = -EISCONN;
1828 else
1829 err = -EALREADY;
1830 goto free;
1831 }
1832
1833 if (sctp_endpoint_is_peeled_off(ep, daddr)) {
1834 err = -EADDRNOTAVAIL;
1835 goto free;
1836 }
1837
1838 transport = sctp_assoc_add_peer(asoc, daddr, GFP_KERNEL,
1839 SCTP_UNKNOWN);
1840 if (!transport) {
1841 err = -ENOMEM;
1842 goto free;
1843 }
1844 }
1845
2bfd80f9
XL
1846 return 0;
1847
1848free:
1849 sctp_association_free(asoc);
1850 return err;
1851}
1852
c2666de1
XL
1853static int sctp_sendmsg_check_sflags(struct sctp_association *asoc,
1854 __u16 sflags, struct msghdr *msg,
1855 size_t msg_len)
1856{
1857 struct sock *sk = asoc->base.sk;
1858 struct net *net = sock_net(sk);
1859
1860 if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP))
1861 return -EPIPE;
1862
49102805
XL
1863 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP) &&
1864 !sctp_state(asoc, ESTABLISHED))
1865 return 0;
1866
c2666de1
XL
1867 if (sflags & SCTP_EOF) {
1868 pr_debug("%s: shutting down association:%p\n", __func__, asoc);
1869 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1870
1871 return 0;
1872 }
1873
1874 if (sflags & SCTP_ABORT) {
1875 struct sctp_chunk *chunk;
1876
1877 chunk = sctp_make_abort_user(asoc, msg, msg_len);
1878 if (!chunk)
1879 return -ENOMEM;
1880
1881 pr_debug("%s: aborting association:%p\n", __func__, asoc);
1882 sctp_primitive_ABORT(net, asoc, chunk);
1883
1884 return 0;
1885 }
1886
1887 return 1;
1888}
1889
f84af331
XL
1890static int sctp_sendmsg_to_asoc(struct sctp_association *asoc,
1891 struct msghdr *msg, size_t msg_len,
1892 struct sctp_transport *transport,
1893 struct sctp_sndrcvinfo *sinfo)
1894{
1895 struct sock *sk = asoc->base.sk;
63d01330 1896 struct sctp_sock *sp = sctp_sk(sk);
f84af331
XL
1897 struct net *net = sock_net(sk);
1898 struct sctp_datamsg *datamsg;
1899 bool wait_connect = false;
1900 struct sctp_chunk *chunk;
1901 long timeo;
1902 int err;
1903
1904 if (sinfo->sinfo_stream >= asoc->stream.outcnt) {
1905 err = -EINVAL;
1906 goto err;
1907 }
1908
1909 if (unlikely(!asoc->stream.out[sinfo->sinfo_stream].ext)) {
1910 err = sctp_stream_init_ext(&asoc->stream, sinfo->sinfo_stream);
1911 if (err)
1912 goto err;
1913 }
1914
63d01330 1915 if (sp->disable_fragments && msg_len > asoc->frag_point) {
f84af331
XL
1916 err = -EMSGSIZE;
1917 goto err;
1918 }
1919
2521680e 1920 if (asoc->pmtu_pending) {
63d01330
MRL
1921 if (sp->param_flags & SPP_PMTUD_ENABLE)
1922 sctp_assoc_sync_pmtu(asoc);
2521680e
MRL
1923 asoc->pmtu_pending = 0;
1924 }
0aee4c25
NH
1925
1926 if (sctp_wspace(asoc) < msg_len)
1927 sctp_prsctp_prune(asoc, sinfo, msg_len - sctp_wspace(asoc));
1928
1929 if (!sctp_wspace(asoc)) {
1930 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1931 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1932 if (err)
1933 goto err;
1934 }
1935
f84af331
XL
1936 if (sctp_state(asoc, CLOSED)) {
1937 err = sctp_primitive_ASSOCIATE(net, asoc, NULL);
1938 if (err)
1939 goto err;
1940
63d01330 1941 if (sp->strm_interleave) {
f84af331
XL
1942 timeo = sock_sndtimeo(sk, 0);
1943 err = sctp_wait_for_connect(asoc, &timeo);
1944 if (err)
1945 goto err;
1946 } else {
1947 wait_connect = true;
1948 }
1949
1950 pr_debug("%s: we associated primitively\n", __func__);
1951 }
1952
f84af331
XL
1953 datamsg = sctp_datamsg_from_user(asoc, sinfo, &msg->msg_iter);
1954 if (IS_ERR(datamsg)) {
1955 err = PTR_ERR(datamsg);
1956 goto err;
1957 }
1958
1959 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
1960
1961 list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1962 sctp_chunk_hold(chunk);
1963 sctp_set_owner_w(chunk);
1964 chunk->transport = transport;
1965 }
1966
1967 err = sctp_primitive_SEND(net, asoc, datamsg);
1968 if (err) {
1969 sctp_datamsg_free(datamsg);
1970 goto err;
1971 }
1972
1973 pr_debug("%s: we sent primitively\n", __func__);
1974
1975 sctp_datamsg_put(datamsg);
1976
1977 if (unlikely(wait_connect)) {
1978 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
1979 sctp_wait_for_connect(asoc, &timeo);
1980 }
1981
1982 err = msg_len;
1983
1984err:
1985 return err;
1986}
1987
becef9b1
XL
1988static union sctp_addr *sctp_sendmsg_get_daddr(struct sock *sk,
1989 const struct msghdr *msg,
1990 struct sctp_cmsgs *cmsgs)
1991{
1992 union sctp_addr *daddr = NULL;
1993 int err;
1994
1995 if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) {
1996 int len = msg->msg_namelen;
1997
1998 if (len > sizeof(*daddr))
1999 len = sizeof(*daddr);
2000
2001 daddr = (union sctp_addr *)msg->msg_name;
2002
2003 err = sctp_verify_addr(sk, daddr, len);
2004 if (err)
2005 return ERR_PTR(err);
2006 }
2007
2008 return daddr;
2009}
2010
d42cb06e
XL
2011static void sctp_sendmsg_update_sinfo(struct sctp_association *asoc,
2012 struct sctp_sndrcvinfo *sinfo,
2013 struct sctp_cmsgs *cmsgs)
2014{
2015 if (!cmsgs->srinfo && !cmsgs->sinfo) {
2016 sinfo->sinfo_stream = asoc->default_stream;
2017 sinfo->sinfo_ppid = asoc->default_ppid;
2018 sinfo->sinfo_context = asoc->default_context;
2019 sinfo->sinfo_assoc_id = sctp_assoc2id(asoc);
ed63afb8
XL
2020
2021 if (!cmsgs->prinfo)
2022 sinfo->sinfo_flags = asoc->default_flags;
d42cb06e
XL
2023 }
2024
ed63afb8 2025 if (!cmsgs->srinfo && !cmsgs->prinfo)
d42cb06e 2026 sinfo->sinfo_timetolive = asoc->default_timetolive;
3ff547c0
XL
2027
2028 if (cmsgs->authinfo) {
2029 /* Reuse sinfo_tsn to indicate that authinfo was set and
2030 * sinfo_ssn to save the keyid on tx path.
2031 */
2032 sinfo->sinfo_tsn = 1;
2033 sinfo->sinfo_ssn = cmsgs->authinfo->auth_keynumber;
2034 }
d42cb06e
XL
2035}
2036
1b784140 2037static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
1da177e4 2038{
204f817f 2039 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
8e87c6eb 2040 struct sctp_transport *transport = NULL;
204f817f 2041 struct sctp_sndrcvinfo _sinfo, *sinfo;
007b7e18
XL
2042 struct sctp_association *asoc;
2043 struct sctp_cmsgs cmsgs;
becef9b1 2044 union sctp_addr *daddr;
007b7e18
XL
2045 bool new = false;
2046 __u16 sflags;
63b94938 2047 int err;
1da177e4 2048
204f817f
XL
2049 /* Parse and get snd_info */
2050 err = sctp_sendmsg_parse(sk, &cmsgs, &_sinfo, msg, msg_len);
2051 if (err)
007b7e18 2052 goto out;
1da177e4 2053
204f817f 2054 sinfo = &_sinfo;
007b7e18 2055 sflags = sinfo->sinfo_flags;
1da177e4 2056
becef9b1
XL
2057 /* Get daddr from msg */
2058 daddr = sctp_sendmsg_get_daddr(sk, msg, &cmsgs);
2059 if (IS_ERR(daddr)) {
2060 err = PTR_ERR(daddr);
007b7e18 2061 goto out;
1da177e4
LT
2062 }
2063
048ed4b6 2064 lock_sock(sk);
1da177e4 2065
49102805
XL
2066 /* SCTP_SENDALL process */
2067 if ((sflags & SCTP_SENDALL) && sctp_style(sk, UDP)) {
2068 list_for_each_entry(asoc, &ep->asocs, asocs) {
2069 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2070 msg_len);
2071 if (err == 0)
2072 continue;
2073 if (err < 0)
2074 goto out_unlock;
2075
2076 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
2077
2078 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len,
2079 NULL, sinfo);
2080 if (err < 0)
2081 goto out_unlock;
2082
2083 iov_iter_revert(&msg->msg_iter, err);
2084 }
2085
2086 goto out_unlock;
2087 }
2088
0a3920d2 2089 /* Get and check or create asoc */
becef9b1 2090 if (daddr) {
becef9b1 2091 asoc = sctp_endpoint_lookup_assoc(ep, daddr, &transport);
0a3920d2
XL
2092 if (asoc) {
2093 err = sctp_sendmsg_check_sflags(asoc, sflags, msg,
2094 msg_len);
2095 if (err <= 0)
2096 goto out_unlock;
2097 } else {
2098 err = sctp_sendmsg_new_asoc(sk, sflags, &cmsgs, daddr,
2099 &transport);
2100 if (err)
2101 goto out_unlock;
2102
2103 asoc = transport->asoc;
2104 new = true;
2105 }
2106
2107 if (!sctp_style(sk, TCP) && !(sflags & SCTP_ADDR_OVER))
2108 transport = NULL;
1da177e4 2109 } else {
007b7e18 2110 asoc = sctp_id2assoc(sk, sinfo->sinfo_assoc_id);
1da177e4
LT
2111 if (!asoc) {
2112 err = -EPIPE;
2113 goto out_unlock;
2114 }
1da177e4 2115
007b7e18 2116 err = sctp_sendmsg_check_sflags(asoc, sflags, msg, msg_len);
c2666de1 2117 if (err <= 0)
1da177e4 2118 goto out_unlock;
1da177e4
LT
2119 }
2120
d42cb06e
XL
2121 /* Update snd_info with the asoc */
2122 sctp_sendmsg_update_sinfo(asoc, sinfo, &cmsgs);
1da177e4 2123
f84af331 2124 /* Send msg to the asoc */
8e87c6eb 2125 err = sctp_sendmsg_to_asoc(asoc, msg, msg_len, transport, sinfo);
007b7e18 2126 if (err < 0 && err != -ESRCH && new)
1da177e4 2127 sctp_association_free(asoc);
8e87c6eb 2128
1da177e4 2129out_unlock:
048ed4b6 2130 release_sock(sk);
007b7e18 2131out:
f84af331 2132 return sctp_error(sk, msg->msg_flags, err);
1da177e4
LT
2133}
2134
2135/* This is an extended version of skb_pull() that removes the data from the
2136 * start of a skb even when data is spread across the list of skb's in the
2137 * frag_list. len specifies the total amount of data that needs to be removed.
2138 * when 'len' bytes could be removed from the skb, it returns 0.
2139 * If 'len' exceeds the total skb length, it returns the no. of bytes that
2140 * could not be removed.
2141 */
2142static int sctp_skb_pull(struct sk_buff *skb, int len)
2143{
2144 struct sk_buff *list;
2145 int skb_len = skb_headlen(skb);
2146 int rlen;
2147
2148 if (len <= skb_len) {
2149 __skb_pull(skb, len);
2150 return 0;
2151 }
2152 len -= skb_len;
2153 __skb_pull(skb, skb_len);
2154
1b003be3 2155 skb_walk_frags(skb, list) {
1da177e4
LT
2156 rlen = sctp_skb_pull(list, len);
2157 skb->len -= (len-rlen);
2158 skb->data_len -= (len-rlen);
2159
2160 if (!rlen)
2161 return 0;
2162
2163 len = rlen;
2164 }
2165
2166 return len;
2167}
2168
2169/* API 3.1.3 recvmsg() - UDP Style Syntax
2170 *
2171 * ssize_t recvmsg(int socket, struct msghdr *message,
2172 * int flags);
2173 *
2174 * socket - the socket descriptor of the endpoint.
2175 * message - pointer to the msghdr structure which contains a single
2176 * user message and possibly some ancillary data.
2177 *
2178 * See Section 5 for complete description of the data
2179 * structures.
2180 *
2181 * flags - flags sent or received with the user message, see Section
2182 * 5 for complete description of the flags.
2183 */
1b784140
YX
2184static int sctp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
2185 int noblock, int flags, int *addr_len)
1da177e4
LT
2186{
2187 struct sctp_ulpevent *event = NULL;
2188 struct sctp_sock *sp = sctp_sk(sk);
1f45f78f 2189 struct sk_buff *skb, *head_skb;
1da177e4
LT
2190 int copied;
2191 int err = 0;
2192 int skb_len;
2193
bb33381d
DB
2194 pr_debug("%s: sk:%p, msghdr:%p, len:%zd, noblock:%d, flags:0x%x, "
2195 "addr_len:%p)\n", __func__, sk, msg, len, noblock, flags,
2196 addr_len);
1da177e4 2197
048ed4b6 2198 lock_sock(sk);
1da177e4 2199
e5b13f34 2200 if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED) &&
e0878694 2201 !sctp_sstate(sk, CLOSING) && !sctp_sstate(sk, CLOSED)) {
1da177e4
LT
2202 err = -ENOTCONN;
2203 goto out;
2204 }
2205
2206 skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2207 if (!skb)
2208 goto out;
2209
2210 /* Get the total length of the skb including any skb's in the
2211 * frag_list.
2212 */
2213 skb_len = skb->len;
2214
2215 copied = skb_len;
2216 if (copied > len)
2217 copied = len;
2218
51f3d02b 2219 err = skb_copy_datagram_msg(skb, 0, msg, copied);
1da177e4
LT
2220
2221 event = sctp_skb2event(skb);
2222
2223 if (err)
2224 goto out_free;
2225
1f45f78f
MRL
2226 if (event->chunk && event->chunk->head_skb)
2227 head_skb = event->chunk->head_skb;
2228 else
2229 head_skb = skb;
2230 sock_recv_ts_and_drops(msg, sk, head_skb);
1da177e4
LT
2231 if (sctp_ulpevent_is_notification(event)) {
2232 msg->msg_flags |= MSG_NOTIFICATION;
2233 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2234 } else {
1f45f78f 2235 sp->pf->skb_msgname(head_skb, msg->msg_name, addr_len);
1da177e4
LT
2236 }
2237
2347c80f
GOV
2238 /* Check if we allow SCTP_NXTINFO. */
2239 if (sp->recvnxtinfo)
2240 sctp_ulpevent_read_nxtinfo(event, msg, sk);
0d3a421d
GOV
2241 /* Check if we allow SCTP_RCVINFO. */
2242 if (sp->recvrcvinfo)
2243 sctp_ulpevent_read_rcvinfo(event, msg);
1da177e4
LT
2244 /* Check if we allow SCTP_SNDRCVINFO. */
2245 if (sp->subscribe.sctp_data_io_event)
2246 sctp_ulpevent_read_sndrcvinfo(event, msg);
0d3a421d 2247
1da177e4
LT
2248 err = copied;
2249
2250 /* If skb's length exceeds the user's buffer, update the skb and
2251 * push it back to the receive_queue so that the next call to
2252 * recvmsg() will return the remaining data. Don't set MSG_EOR.
2253 */
2254 if (skb_len > copied) {
2255 msg->msg_flags &= ~MSG_EOR;
2256 if (flags & MSG_PEEK)
2257 goto out_free;
2258 sctp_skb_pull(skb, copied);
2259 skb_queue_head(&sk->sk_receive_queue, skb);
2260
362d5204
DB
2261 /* When only partial message is copied to the user, increase
2262 * rwnd by that amount. If all the data in the skb is read,
2263 * rwnd is updated when the event is freed.
2264 */
2265 if (!sctp_ulpevent_is_notification(event))
2266 sctp_assoc_rwnd_increase(event->asoc, copied);
1da177e4
LT
2267 goto out;
2268 } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2269 (event->msg_flags & MSG_EOR))
2270 msg->msg_flags |= MSG_EOR;
2271 else
2272 msg->msg_flags &= ~MSG_EOR;
2273
2274out_free:
2275 if (flags & MSG_PEEK) {
2276 /* Release the skb reference acquired after peeking the skb in
2277 * sctp_skb_recv_datagram().
2278 */
2279 kfree_skb(skb);
2280 } else {
2281 /* Free the event which includes releasing the reference to
2282 * the owner of the skb, freeing the skb and updating the
2283 * rwnd.
2284 */
2285 sctp_ulpevent_free(event);
2286 }
2287out:
048ed4b6 2288 release_sock(sk);
1da177e4
LT
2289 return err;
2290}
2291
2292/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2293 *
2294 * This option is a on/off flag. If enabled no SCTP message
2295 * fragmentation will be performed. Instead if a message being sent
2296 * exceeds the current PMTU size, the message will NOT be sent and
2297 * instead a error will be indicated to the user.
2298 */
2299static int sctp_setsockopt_disable_fragments(struct sock *sk,
b7058842
DM
2300 char __user *optval,
2301 unsigned int optlen)
1da177e4
LT
2302{
2303 int val;
2304
2305 if (optlen < sizeof(int))
2306 return -EINVAL;
2307
2308 if (get_user(val, (int __user *)optval))
2309 return -EFAULT;
2310
2311 sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2312
2313 return 0;
2314}
2315
2316static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
b7058842 2317 unsigned int optlen)
1da177e4 2318{
94912301
WY
2319 struct sctp_association *asoc;
2320 struct sctp_ulpevent *event;
2321
7e8616d8 2322 if (optlen > sizeof(struct sctp_event_subscribe))
1da177e4
LT
2323 return -EINVAL;
2324 if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2325 return -EFAULT;
94912301 2326
bbbea41d 2327 /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
94912301
WY
2328 * if there is no data to be sent or retransmit, the stack will
2329 * immediately send up this notification.
2330 */
2331 if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2332 &sctp_sk(sk)->subscribe)) {
2333 asoc = sctp_id2assoc(sk, 0);
2334
2335 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2336 event = sctp_ulpevent_make_sender_dry_event(asoc,
2e83acb9 2337 GFP_USER | __GFP_NOWARN);
94912301
WY
2338 if (!event)
2339 return -ENOMEM;
2340
9162e0ed 2341 asoc->stream.si->enqueue_event(&asoc->ulpq, event);
94912301
WY
2342 }
2343 }
2344
1da177e4
LT
2345 return 0;
2346}
2347
2348/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2349 *
2350 * This socket option is applicable to the UDP-style socket only. When
2351 * set it will cause associations that are idle for more than the
2352 * specified number of seconds to automatically close. An association
2353 * being idle is defined an association that has NOT sent or received
2354 * user data. The special value of '0' indicates that no automatic
2355 * close of any associations should be performed. The option expects an
2356 * integer defining the number of seconds of idle time before an
2357 * association is closed.
2358 */
2359static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
b7058842 2360 unsigned int optlen)
1da177e4
LT
2361{
2362 struct sctp_sock *sp = sctp_sk(sk);
9f70f46b 2363 struct net *net = sock_net(sk);
1da177e4
LT
2364
2365 /* Applicable to UDP-style socket only */
2366 if (sctp_style(sk, TCP))
2367 return -EOPNOTSUPP;
2368 if (optlen != sizeof(int))
2369 return -EINVAL;
2370 if (copy_from_user(&sp->autoclose, optval, optlen))
2371 return -EFAULT;
2372
9f70f46b
NH
2373 if (sp->autoclose > net->sctp.max_autoclose)
2374 sp->autoclose = net->sctp.max_autoclose;
2375
1da177e4
LT
2376 return 0;
2377}
2378
2379/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2380 *
2381 * Applications can enable or disable heartbeats for any peer address of
2382 * an association, modify an address's heartbeat interval, force a
2383 * heartbeat to be sent immediately, and adjust the address's maximum
2384 * number of retransmissions sent before an address is considered
2385 * unreachable. The following structure is used to access and modify an
2386 * address's parameters:
2387 *
2388 * struct sctp_paddrparams {
52ccb8e9
FF
2389 * sctp_assoc_t spp_assoc_id;
2390 * struct sockaddr_storage spp_address;
2391 * uint32_t spp_hbinterval;
2392 * uint16_t spp_pathmaxrxt;
2393 * uint32_t spp_pathmtu;
2394 * uint32_t spp_sackdelay;
2395 * uint32_t spp_flags;
2396 * };
2397 *
2398 * spp_assoc_id - (one-to-many style socket) This is filled in the
2399 * application, and identifies the association for
2400 * this query.
1da177e4
LT
2401 * spp_address - This specifies which address is of interest.
2402 * spp_hbinterval - This contains the value of the heartbeat interval,
52ccb8e9
FF
2403 * in milliseconds. If a value of zero
2404 * is present in this field then no changes are to
2405 * be made to this parameter.
1da177e4
LT
2406 * spp_pathmaxrxt - This contains the maximum number of
2407 * retransmissions before this address shall be
52ccb8e9
FF
2408 * considered unreachable. If a value of zero
2409 * is present in this field then no changes are to
2410 * be made to this parameter.
2411 * spp_pathmtu - When Path MTU discovery is disabled the value
2412 * specified here will be the "fixed" path mtu.
2413 * Note that if the spp_address field is empty
2414 * then all associations on this address will
2415 * have this fixed path mtu set upon them.
2416 *
2417 * spp_sackdelay - When delayed sack is enabled, this value specifies
2418 * the number of milliseconds that sacks will be delayed
2419 * for. This value will apply to all addresses of an
2420 * association if the spp_address field is empty. Note
2421 * also, that if delayed sack is enabled and this
2422 * value is set to 0, no change is made to the last
2423 * recorded delayed sack timer value.
2424 *
2425 * spp_flags - These flags are used to control various features
2426 * on an association. The flag field may contain
2427 * zero or more of the following options.
2428 *
2429 * SPP_HB_ENABLE - Enable heartbeats on the
2430 * specified address. Note that if the address
2431 * field is empty all addresses for the association
2432 * have heartbeats enabled upon them.
2433 *
2434 * SPP_HB_DISABLE - Disable heartbeats on the
2435 * speicifed address. Note that if the address
2436 * field is empty all addresses for the association
2437 * will have their heartbeats disabled. Note also
2438 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
2439 * mutually exclusive, only one of these two should
2440 * be specified. Enabling both fields will have
2441 * undetermined results.
2442 *
2443 * SPP_HB_DEMAND - Request a user initiated heartbeat
2444 * to be made immediately.
2445 *
bdf3092a
VY
2446 * SPP_HB_TIME_IS_ZERO - Specify's that the time for
2447 * heartbeat delayis to be set to the value of 0
2448 * milliseconds.
2449 *
52ccb8e9
FF
2450 * SPP_PMTUD_ENABLE - This field will enable PMTU
2451 * discovery upon the specified address. Note that
2452 * if the address feild is empty then all addresses
2453 * on the association are effected.
2454 *
2455 * SPP_PMTUD_DISABLE - This field will disable PMTU
2456 * discovery upon the specified address. Note that
2457 * if the address feild is empty then all addresses
2458 * on the association are effected. Not also that
2459 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2460 * exclusive. Enabling both will have undetermined
2461 * results.
2462 *
2463 * SPP_SACKDELAY_ENABLE - Setting this flag turns
2464 * on delayed sack. The time specified in spp_sackdelay
2465 * is used to specify the sack delay for this address. Note
2466 * that if spp_address is empty then all addresses will
2467 * enable delayed sack and take on the sack delay
2468 * value specified in spp_sackdelay.
2469 * SPP_SACKDELAY_DISABLE - Setting this flag turns
2470 * off delayed sack. If the spp_address field is blank then
2471 * delayed sack is disabled for the entire association. Note
2472 * also that this field is mutually exclusive to
2473 * SPP_SACKDELAY_ENABLE, setting both will have undefined
2474 * results.
1da177e4 2475 */
16164366
AB
2476static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2477 struct sctp_transport *trans,
2478 struct sctp_association *asoc,
2479 struct sctp_sock *sp,
2480 int hb_change,
2481 int pmtud_change,
2482 int sackdelay_change)
52ccb8e9
FF
2483{
2484 int error;
2485
2486 if (params->spp_flags & SPP_HB_DEMAND && trans) {
55e26eb9
EB
2487 struct net *net = sock_net(trans->asoc->base.sk);
2488
2489 error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans);
52ccb8e9
FF
2490 if (error)
2491 return error;
2492 }
2493
bdf3092a
VY
2494 /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2495 * this field is ignored. Note also that a value of zero indicates
2496 * the current setting should be left unchanged.
2497 */
2498 if (params->spp_flags & SPP_HB_ENABLE) {
2499
2500 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2501 * set. This lets us use 0 value when this flag
2502 * is set.
2503 */
2504 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2505 params->spp_hbinterval = 0;
2506
2507 if (params->spp_hbinterval ||
2508 (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2509 if (trans) {
2510 trans->hbinterval =
2511 msecs_to_jiffies(params->spp_hbinterval);
2512 } else if (asoc) {
2513 asoc->hbinterval =
2514 msecs_to_jiffies(params->spp_hbinterval);
2515 } else {
2516 sp->hbinterval = params->spp_hbinterval;
2517 }
52ccb8e9
FF
2518 }
2519 }
2520
2521 if (hb_change) {
2522 if (trans) {
2523 trans->param_flags =
2524 (trans->param_flags & ~SPP_HB) | hb_change;
2525 } else if (asoc) {
2526 asoc->param_flags =
2527 (asoc->param_flags & ~SPP_HB) | hb_change;
2528 } else {
2529 sp->param_flags =
2530 (sp->param_flags & ~SPP_HB) | hb_change;
2531 }
2532 }
2533
bdf3092a
VY
2534 /* When Path MTU discovery is disabled the value specified here will
2535 * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2536 * include the flag SPP_PMTUD_DISABLE for this field to have any
2537 * effect).
2538 */
2539 if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
52ccb8e9
FF
2540 if (trans) {
2541 trans->pathmtu = params->spp_pathmtu;
3ebfdf08 2542 sctp_assoc_sync_pmtu(asoc);
52ccb8e9 2543 } else if (asoc) {
c4b2893d 2544 sctp_assoc_set_pmtu(asoc, params->spp_pathmtu);
52ccb8e9
FF
2545 } else {
2546 sp->pathmtu = params->spp_pathmtu;
2547 }
2548 }
2549
2550 if (pmtud_change) {
2551 if (trans) {
2552 int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2553 (params->spp_flags & SPP_PMTUD_ENABLE);
2554 trans->param_flags =
2555 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2556 if (update) {
9914ae3c 2557 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
3ebfdf08 2558 sctp_assoc_sync_pmtu(asoc);
52ccb8e9
FF
2559 }
2560 } else if (asoc) {
2561 asoc->param_flags =
2562 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2563 } else {
2564 sp->param_flags =
2565 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2566 }
2567 }
2568
bdf3092a
VY
2569 /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2570 * value of this field is ignored. Note also that a value of zero
2571 * indicates the current setting should be left unchanged.
2572 */
2573 if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
52ccb8e9
FF
2574 if (trans) {
2575 trans->sackdelay =
2576 msecs_to_jiffies(params->spp_sackdelay);
2577 } else if (asoc) {
2578 asoc->sackdelay =
2579 msecs_to_jiffies(params->spp_sackdelay);
2580 } else {
2581 sp->sackdelay = params->spp_sackdelay;
2582 }
2583 }
2584
2585 if (sackdelay_change) {
2586 if (trans) {
2587 trans->param_flags =
2588 (trans->param_flags & ~SPP_SACKDELAY) |
2589 sackdelay_change;
2590 } else if (asoc) {
2591 asoc->param_flags =
2592 (asoc->param_flags & ~SPP_SACKDELAY) |
2593 sackdelay_change;
2594 } else {
2595 sp->param_flags =
2596 (sp->param_flags & ~SPP_SACKDELAY) |
2597 sackdelay_change;
2598 }
2599 }
2600
37051f73
APO
2601 /* Note that a value of zero indicates the current setting should be
2602 left unchanged.
bdf3092a 2603 */
37051f73 2604 if (params->spp_pathmaxrxt) {
52ccb8e9
FF
2605 if (trans) {
2606 trans->pathmaxrxt = params->spp_pathmaxrxt;
2607 } else if (asoc) {
2608 asoc->pathmaxrxt = params->spp_pathmaxrxt;
2609 } else {
2610 sp->pathmaxrxt = params->spp_pathmaxrxt;
2611 }
2612 }
2613
2614 return 0;
2615}
2616
1da177e4 2617static int sctp_setsockopt_peer_addr_params(struct sock *sk,
b7058842
DM
2618 char __user *optval,
2619 unsigned int optlen)
1da177e4 2620{
52ccb8e9
FF
2621 struct sctp_paddrparams params;
2622 struct sctp_transport *trans = NULL;
2623 struct sctp_association *asoc = NULL;
2624 struct sctp_sock *sp = sctp_sk(sk);
1da177e4 2625 int error;
52ccb8e9 2626 int hb_change, pmtud_change, sackdelay_change;
1da177e4
LT
2627
2628 if (optlen != sizeof(struct sctp_paddrparams))
cb3f837b 2629 return -EINVAL;
52ccb8e9 2630
1da177e4
LT
2631 if (copy_from_user(&params, optval, optlen))
2632 return -EFAULT;
2633
52ccb8e9
FF
2634 /* Validate flags and value parameters. */
2635 hb_change = params.spp_flags & SPP_HB;
2636 pmtud_change = params.spp_flags & SPP_PMTUD;
2637 sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2638
2639 if (hb_change == SPP_HB ||
2640 pmtud_change == SPP_PMTUD ||
2641 sackdelay_change == SPP_SACKDELAY ||
2642 params.spp_sackdelay > 500 ||
f64f9e71
JP
2643 (params.spp_pathmtu &&
2644 params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
52ccb8e9 2645 return -EINVAL;
1da177e4 2646
52ccb8e9
FF
2647 /* If an address other than INADDR_ANY is specified, and
2648 * no transport is found, then the request is invalid.
2649 */
cb3f837b 2650 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
52ccb8e9
FF
2651 trans = sctp_addr_id2transport(sk, &params.spp_address,
2652 params.spp_assoc_id);
2653 if (!trans)
1da177e4 2654 return -EINVAL;
1da177e4
LT
2655 }
2656
52ccb8e9
FF
2657 /* Get association, if assoc_id != 0 and the socket is a one
2658 * to many style socket, and an association was not found, then
2659 * the id was invalid.
2660 */
2661 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2662 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
1da177e4
LT
2663 return -EINVAL;
2664
52ccb8e9
FF
2665 /* Heartbeat demand can only be sent on a transport or
2666 * association, but not a socket.
1da177e4 2667 */
52ccb8e9
FF
2668 if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2669 return -EINVAL;
2670
2671 /* Process parameters. */
2672 error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2673 hb_change, pmtud_change,
2674 sackdelay_change);
1da177e4 2675
52ccb8e9
FF
2676 if (error)
2677 return error;
2678
2679 /* If changes are for association, also apply parameters to each
2680 * transport.
1da177e4 2681 */
52ccb8e9 2682 if (!trans && asoc) {
9dbc15f0
RD
2683 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2684 transports) {
52ccb8e9
FF
2685 sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2686 hb_change, pmtud_change,
2687 sackdelay_change);
2688 }
2689 }
1da177e4
LT
2690
2691 return 0;
2692}
2693
0ea5e4df 2694static inline __u32 sctp_spp_sackdelay_enable(__u32 param_flags)
2695{
2696 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_ENABLE;
2697}
2698
2699static inline __u32 sctp_spp_sackdelay_disable(__u32 param_flags)
2700{
2701 return (param_flags & ~SPP_SACKDELAY) | SPP_SACKDELAY_DISABLE;
2702}
2703
d364d927
WY
2704/*
2705 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
2706 *
2707 * This option will effect the way delayed acks are performed. This
2708 * option allows you to get or set the delayed ack time, in
2709 * milliseconds. It also allows changing the delayed ack frequency.
2710 * Changing the frequency to 1 disables the delayed sack algorithm. If
2711 * the assoc_id is 0, then this sets or gets the endpoints default
2712 * values. If the assoc_id field is non-zero, then the set or get
2713 * effects the specified association for the one to many model (the
2714 * assoc_id field is ignored by the one to one model). Note that if
2715 * sack_delay or sack_freq are 0 when setting this option, then the
2716 * current values will remain unchanged.
2717 *
2718 * struct sctp_sack_info {
2719 * sctp_assoc_t sack_assoc_id;
2720 * uint32_t sack_delay;
2721 * uint32_t sack_freq;
2722 * };
2723 *
2724 * sack_assoc_id - This parameter, indicates which association the user
2725 * is performing an action upon. Note that if this field's value is
2726 * zero then the endpoints default value is changed (effecting future
2727 * associations only).
2728 *
2729 * sack_delay - This parameter contains the number of milliseconds that
2730 * the user is requesting the delayed ACK timer be set to. Note that
2731 * this value is defined in the standard to be between 200 and 500
2732 * milliseconds.
2733 *
2734 * sack_freq - This parameter contains the number of packets that must
2735 * be received before a sack is sent without waiting for the delay
2736 * timer to expire. The default value for this is 2, setting this
2737 * value to 1 will disable the delayed sack algorithm.
7708610b
FF
2738 */
2739
d364d927 2740static int sctp_setsockopt_delayed_ack(struct sock *sk,
b7058842 2741 char __user *optval, unsigned int optlen)
7708610b 2742{
d364d927 2743 struct sctp_sack_info params;
7708610b
FF
2744 struct sctp_transport *trans = NULL;
2745 struct sctp_association *asoc = NULL;
2746 struct sctp_sock *sp = sctp_sk(sk);
2747
d364d927
WY
2748 if (optlen == sizeof(struct sctp_sack_info)) {
2749 if (copy_from_user(&params, optval, optlen))
2750 return -EFAULT;
7708610b 2751
d364d927
WY
2752 if (params.sack_delay == 0 && params.sack_freq == 0)
2753 return 0;
2754 } else if (optlen == sizeof(struct sctp_assoc_value)) {
94f65193 2755 pr_warn_ratelimited(DEPRECATED
f916ec96 2756 "%s (pid %d) "
94f65193 2757 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
f916ec96
NH
2758 "Use struct sctp_sack_info instead\n",
2759 current->comm, task_pid_nr(current));
d364d927
WY
2760 if (copy_from_user(&params, optval, optlen))
2761 return -EFAULT;
2762
2763 if (params.sack_delay == 0)
2764 params.sack_freq = 1;
2765 else
2766 params.sack_freq = 0;
2767 } else
cb3f837b 2768 return -EINVAL;
7708610b
FF
2769
2770 /* Validate value parameter. */
d364d927 2771 if (params.sack_delay > 500)
7708610b
FF
2772 return -EINVAL;
2773
d364d927 2774 /* Get association, if sack_assoc_id != 0 and the socket is a one
7708610b
FF
2775 * to many style socket, and an association was not found, then
2776 * the id was invalid.
d808ad9a 2777 */
d364d927
WY
2778 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2779 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
7708610b
FF
2780 return -EINVAL;
2781
d364d927 2782 if (params.sack_delay) {
7708610b
FF
2783 if (asoc) {
2784 asoc->sackdelay =
d364d927 2785 msecs_to_jiffies(params.sack_delay);
d808ad9a 2786 asoc->param_flags =
0ea5e4df 2787 sctp_spp_sackdelay_enable(asoc->param_flags);
7708610b 2788 } else {
d364d927 2789 sp->sackdelay = params.sack_delay;
d808ad9a 2790 sp->param_flags =
0ea5e4df 2791 sctp_spp_sackdelay_enable(sp->param_flags);
7708610b 2792 }
d364d927
WY
2793 }
2794
2795 if (params.sack_freq == 1) {
7708610b 2796 if (asoc) {
d808ad9a 2797 asoc->param_flags =
0ea5e4df 2798 sctp_spp_sackdelay_disable(asoc->param_flags);
7708610b 2799 } else {
d808ad9a 2800 sp->param_flags =
0ea5e4df 2801 sctp_spp_sackdelay_disable(sp->param_flags);
7708610b 2802 }
d364d927
WY
2803 } else if (params.sack_freq > 1) {
2804 if (asoc) {
2805 asoc->sackfreq = params.sack_freq;
2806 asoc->param_flags =
0ea5e4df 2807 sctp_spp_sackdelay_enable(asoc->param_flags);
d364d927
WY
2808 } else {
2809 sp->sackfreq = params.sack_freq;
2810 sp->param_flags =
0ea5e4df 2811 sctp_spp_sackdelay_enable(sp->param_flags);
d364d927 2812 }
7708610b
FF
2813 }
2814
2815 /* If change is for association, also apply to each transport. */
2816 if (asoc) {
9dbc15f0
RD
2817 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2818 transports) {
d364d927 2819 if (params.sack_delay) {
7708610b 2820 trans->sackdelay =
d364d927 2821 msecs_to_jiffies(params.sack_delay);
d808ad9a 2822 trans->param_flags =
0ea5e4df 2823 sctp_spp_sackdelay_enable(trans->param_flags);
d364d927 2824 }
7bfe8bdb 2825 if (params.sack_freq == 1) {
d808ad9a 2826 trans->param_flags =
0ea5e4df 2827 sctp_spp_sackdelay_disable(trans->param_flags);
d364d927
WY
2828 } else if (params.sack_freq > 1) {
2829 trans->sackfreq = params.sack_freq;
2830 trans->param_flags =
0ea5e4df 2831 sctp_spp_sackdelay_enable(trans->param_flags);
7708610b
FF
2832 }
2833 }
2834 }
d808ad9a 2835
7708610b
FF
2836 return 0;
2837}
2838
1da177e4
LT
2839/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2840 *
2841 * Applications can specify protocol parameters for the default association
2842 * initialization. The option name argument to setsockopt() and getsockopt()
2843 * is SCTP_INITMSG.
2844 *
2845 * Setting initialization parameters is effective only on an unconnected
2846 * socket (for UDP-style sockets only future associations are effected
2847 * by the change). With TCP-style sockets, this option is inherited by
2848 * sockets derived from a listener socket.
2849 */
b7058842 2850static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
1da177e4
LT
2851{
2852 struct sctp_initmsg sinit;
2853 struct sctp_sock *sp = sctp_sk(sk);
2854
2855 if (optlen != sizeof(struct sctp_initmsg))
2856 return -EINVAL;
2857 if (copy_from_user(&sinit, optval, optlen))
2858 return -EFAULT;
2859
2860 if (sinit.sinit_num_ostreams)
d808ad9a 2861 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
1da177e4 2862 if (sinit.sinit_max_instreams)
d808ad9a 2863 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
1da177e4 2864 if (sinit.sinit_max_attempts)
d808ad9a 2865 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
1da177e4 2866 if (sinit.sinit_max_init_timeo)
d808ad9a 2867 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
1da177e4
LT
2868
2869 return 0;
2870}
2871
2872/*
2873 * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2874 *
2875 * Applications that wish to use the sendto() system call may wish to
2876 * specify a default set of parameters that would normally be supplied
2877 * through the inclusion of ancillary data. This socket option allows
2878 * such an application to set the default sctp_sndrcvinfo structure.
2879 * The application that wishes to use this socket option simply passes
2880 * in to this call the sctp_sndrcvinfo structure defined in Section
2881 * 5.2.2) The input parameters accepted by this call include
2882 * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2883 * sinfo_timetolive. The user must provide the sinfo_assoc_id field in
2884 * to this call if the caller is using the UDP model.
2885 */
2886static int sctp_setsockopt_default_send_param(struct sock *sk,
b7058842
DM
2887 char __user *optval,
2888 unsigned int optlen)
1da177e4 2889{
1da177e4 2890 struct sctp_sock *sp = sctp_sk(sk);
6b3fd5f3
GOV
2891 struct sctp_association *asoc;
2892 struct sctp_sndrcvinfo info;
1da177e4 2893
6b3fd5f3 2894 if (optlen != sizeof(info))
1da177e4
LT
2895 return -EINVAL;
2896 if (copy_from_user(&info, optval, optlen))
2897 return -EFAULT;
6b3fd5f3
GOV
2898 if (info.sinfo_flags &
2899 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2900 SCTP_ABORT | SCTP_EOF))
2901 return -EINVAL;
1da177e4
LT
2902
2903 asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2904 if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2905 return -EINVAL;
1da177e4
LT
2906 if (asoc) {
2907 asoc->default_stream = info.sinfo_stream;
2908 asoc->default_flags = info.sinfo_flags;
2909 asoc->default_ppid = info.sinfo_ppid;
2910 asoc->default_context = info.sinfo_context;
2911 asoc->default_timetolive = info.sinfo_timetolive;
2912 } else {
2913 sp->default_stream = info.sinfo_stream;
2914 sp->default_flags = info.sinfo_flags;
2915 sp->default_ppid = info.sinfo_ppid;
2916 sp->default_context = info.sinfo_context;
2917 sp->default_timetolive = info.sinfo_timetolive;
2918 }
2919
2920 return 0;
2921}
2922
6b3fd5f3
GOV
2923/* RFC6458, Section 8.1.31. Set/get Default Send Parameters
2924 * (SCTP_DEFAULT_SNDINFO)
2925 */
2926static int sctp_setsockopt_default_sndinfo(struct sock *sk,
2927 char __user *optval,
2928 unsigned int optlen)
2929{
2930 struct sctp_sock *sp = sctp_sk(sk);
2931 struct sctp_association *asoc;
2932 struct sctp_sndinfo info;
2933
2934 if (optlen != sizeof(info))
2935 return -EINVAL;
2936 if (copy_from_user(&info, optval, optlen))
2937 return -EFAULT;
2938 if (info.snd_flags &
2939 ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
2940 SCTP_ABORT | SCTP_EOF))
2941 return -EINVAL;
2942
2943 asoc = sctp_id2assoc(sk, info.snd_assoc_id);
2944 if (!asoc && info.snd_assoc_id && sctp_style(sk, UDP))
2945 return -EINVAL;
2946 if (asoc) {
2947 asoc->default_stream = info.snd_sid;
2948 asoc->default_flags = info.snd_flags;
2949 asoc->default_ppid = info.snd_ppid;
2950 asoc->default_context = info.snd_context;
2951 } else {
2952 sp->default_stream = info.snd_sid;
2953 sp->default_flags = info.snd_flags;
2954 sp->default_ppid = info.snd_ppid;
2955 sp->default_context = info.snd_context;
2956 }
2957
2958 return 0;
2959}
2960
1da177e4
LT
2961/* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2962 *
2963 * Requests that the local SCTP stack use the enclosed peer address as
2964 * the association primary. The enclosed address must be one of the
2965 * association peer's addresses.
2966 */
2967static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
b7058842 2968 unsigned int optlen)
1da177e4
LT
2969{
2970 struct sctp_prim prim;
2971 struct sctp_transport *trans;
2277c7cd
RH
2972 struct sctp_af *af;
2973 int err;
1da177e4
LT
2974
2975 if (optlen != sizeof(struct sctp_prim))
2976 return -EINVAL;
2977
2978 if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2979 return -EFAULT;
2980
2277c7cd
RH
2981 /* Allow security module to validate address but need address len. */
2982 af = sctp_get_af_specific(prim.ssp_addr.ss_family);
2983 if (!af)
2984 return -EINVAL;
2985
2986 err = security_sctp_bind_connect(sk, SCTP_PRIMARY_ADDR,
2987 (struct sockaddr *)&prim.ssp_addr,
2988 af->sockaddr_len);
2989 if (err)
2990 return err;
2991
1da177e4
LT
2992 trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2993 if (!trans)
2994 return -EINVAL;
2995
2996 sctp_assoc_set_primary(trans->asoc, trans);
2997
2998 return 0;
2999}
3000
3001/*
3002 * 7.1.5 SCTP_NODELAY
3003 *
3004 * Turn on/off any Nagle-like algorithm. This means that packets are
3005 * generally sent as soon as possible and no unnecessary delays are
3006 * introduced, at the cost of more packets in the network. Expects an
3007 * integer boolean flag.
3008 */
3009static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
b7058842 3010 unsigned int optlen)
1da177e4
LT
3011{
3012 int val;
3013
3014 if (optlen < sizeof(int))
3015 return -EINVAL;
3016 if (get_user(val, (int __user *)optval))
3017 return -EFAULT;
3018
3019 sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
3020 return 0;
3021}
3022
3023/*
3024 *
3025 * 7.1.1 SCTP_RTOINFO
3026 *
3027 * The protocol parameters used to initialize and bound retransmission
3028 * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
3029 * and modify these parameters.
3030 * All parameters are time values, in milliseconds. A value of 0, when
3031 * modifying the parameters, indicates that the current value should not
3032 * be changed.
3033 *
3034 */
b7058842
DM
3035static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
3036{
1da177e4
LT
3037 struct sctp_rtoinfo rtoinfo;
3038 struct sctp_association *asoc;
85f935d4 3039 unsigned long rto_min, rto_max;
3040 struct sctp_sock *sp = sctp_sk(sk);
1da177e4
LT
3041
3042 if (optlen != sizeof (struct sctp_rtoinfo))
3043 return -EINVAL;
3044
3045 if (copy_from_user(&rtoinfo, optval, optlen))
3046 return -EFAULT;
3047
3048 asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
3049
3050 /* Set the values to the specific association */
3051 if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
3052 return -EINVAL;
3053
85f935d4 3054 rto_max = rtoinfo.srto_max;
3055 rto_min = rtoinfo.srto_min;
3056
3057 if (rto_max)
3058 rto_max = asoc ? msecs_to_jiffies(rto_max) : rto_max;
3059 else
3060 rto_max = asoc ? asoc->rto_max : sp->rtoinfo.srto_max;
3061
3062 if (rto_min)
3063 rto_min = asoc ? msecs_to_jiffies(rto_min) : rto_min;
3064 else
3065 rto_min = asoc ? asoc->rto_min : sp->rtoinfo.srto_min;
3066
3067 if (rto_min > rto_max)
3068 return -EINVAL;
3069
1da177e4
LT
3070 if (asoc) {
3071 if (rtoinfo.srto_initial != 0)
d808ad9a 3072 asoc->rto_initial =
1da177e4 3073 msecs_to_jiffies(rtoinfo.srto_initial);
85f935d4 3074 asoc->rto_max = rto_max;
3075 asoc->rto_min = rto_min;
1da177e4
LT
3076 } else {
3077 /* If there is no association or the association-id = 0
3078 * set the values to the endpoint.
3079 */
1da177e4
LT
3080 if (rtoinfo.srto_initial != 0)
3081 sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
85f935d4 3082 sp->rtoinfo.srto_max = rto_max;
3083 sp->rtoinfo.srto_min = rto_min;
1da177e4
LT
3084 }
3085
3086 return 0;
3087}
3088
3089/*
3090 *
3091 * 7.1.2 SCTP_ASSOCINFO
3092 *
59c51591 3093 * This option is used to tune the maximum retransmission attempts
1da177e4
LT
3094 * of the association.
3095 * Returns an error if the new association retransmission value is
3096 * greater than the sum of the retransmission value of the peer.
3097 * See [SCTP] for more information.
3098 *
3099 */
b7058842 3100static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
1da177e4
LT
3101{
3102
3103 struct sctp_assocparams assocparams;
3104 struct sctp_association *asoc;
3105
3106 if (optlen != sizeof(struct sctp_assocparams))
3107 return -EINVAL;
3108 if (copy_from_user(&assocparams, optval, optlen))
3109 return -EFAULT;
3110
3111 asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
3112
3113 if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
3114 return -EINVAL;
3115
3116 /* Set the values to the specific association */
3117 if (asoc) {
402d68c4
VY
3118 if (assocparams.sasoc_asocmaxrxt != 0) {
3119 __u32 path_sum = 0;
3120 int paths = 0;
402d68c4
VY
3121 struct sctp_transport *peer_addr;
3122
9dbc15f0
RD
3123 list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
3124 transports) {
402d68c4
VY
3125 path_sum += peer_addr->pathmaxrxt;
3126 paths++;
3127 }
3128
025dfdaf 3129 /* Only validate asocmaxrxt if we have more than
402d68c4
VY
3130 * one path/transport. We do this because path
3131 * retransmissions are only counted when we have more
3132 * then one path.
3133 */
3134 if (paths > 1 &&
3135 assocparams.sasoc_asocmaxrxt > path_sum)
3136 return -EINVAL;
3137
1da177e4 3138 asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
402d68c4
VY
3139 }
3140
52db882f
DB
3141 if (assocparams.sasoc_cookie_life != 0)
3142 asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life);
1da177e4
LT
3143 } else {
3144 /* Set the values to the endpoint */
3145 struct sctp_sock *sp = sctp_sk(sk);
3146
3147 if (assocparams.sasoc_asocmaxrxt != 0)
3148 sp->assocparams.sasoc_asocmaxrxt =
3149 assocparams.sasoc_asocmaxrxt;
3150 if (assocparams.sasoc_cookie_life != 0)
3151 sp->assocparams.sasoc_cookie_life =
3152 assocparams.sasoc_cookie_life;
3153 }
3154 return 0;
3155}
3156
3157/*
3158 * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
3159 *
3160 * This socket option is a boolean flag which turns on or off mapped V4
3161 * addresses. If this option is turned on and the socket is type
3162 * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
3163 * If this option is turned off, then no mapping will be done of V4
3164 * addresses and a user will receive both PF_INET6 and PF_INET type
3165 * addresses on the socket.
3166 */
b7058842 3167static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
1da177e4
LT
3168{
3169 int val;
3170 struct sctp_sock *sp = sctp_sk(sk);
3171
3172 if (optlen < sizeof(int))
3173 return -EINVAL;
3174 if (get_user(val, (int __user *)optval))
3175 return -EFAULT;
3176 if (val)
3177 sp->v4mapped = 1;
3178 else
3179 sp->v4mapped = 0;
3180
3181 return 0;
3182}
3183
3184/*
e89c2095
WY
3185 * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
3186 * This option will get or set the maximum size to put in any outgoing
3187 * SCTP DATA chunk. If a message is larger than this size it will be
1da177e4
LT
3188 * fragmented by SCTP into the specified size. Note that the underlying
3189 * SCTP implementation may fragment into smaller sized chunks when the
3190 * PMTU of the underlying association is smaller than the value set by
e89c2095
WY
3191 * the user. The default value for this option is '0' which indicates
3192 * the user is NOT limiting fragmentation and only the PMTU will effect
3193 * SCTP's choice of DATA chunk size. Note also that values set larger
3194 * than the maximum size of an IP datagram will effectively let SCTP
3195 * control fragmentation (i.e. the same as setting this option to 0).
3196 *
3197 * The following structure is used to access and modify this parameter:
3198 *
3199 * struct sctp_assoc_value {
3200 * sctp_assoc_t assoc_id;
3201 * uint32_t assoc_value;
3202 * };
3203 *
3204 * assoc_id: This parameter is ignored for one-to-one style sockets.
3205 * For one-to-many style sockets this parameter indicates which
3206 * association the user is performing an action upon. Note that if
3207 * this field's value is zero then the endpoints default value is
3208 * changed (effecting future associations only).
3209 * assoc_value: This parameter specifies the maximum size in bytes.
1da177e4 3210 */
b7058842 3211static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
1da177e4 3212{
ecca8f88 3213 struct sctp_sock *sp = sctp_sk(sk);
b7e10c25 3214 struct sctp_af *af = sp->pf->af;
e89c2095 3215 struct sctp_assoc_value params;
1da177e4 3216 struct sctp_association *asoc;
1da177e4
LT
3217 int val;
3218
e89c2095 3219 if (optlen == sizeof(int)) {
94f65193 3220 pr_warn_ratelimited(DEPRECATED
f916ec96 3221 "%s (pid %d) "
94f65193 3222 "Use of int in maxseg socket option.\n"
f916ec96
NH
3223 "Use struct sctp_assoc_value instead\n",
3224 current->comm, task_pid_nr(current));
e89c2095
WY
3225 if (copy_from_user(&val, optval, optlen))
3226 return -EFAULT;
3227 params.assoc_id = 0;
3228 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3229 if (copy_from_user(&params, optval, optlen))
3230 return -EFAULT;
3231 val = params.assoc_value;
ecca8f88 3232 } else {
1da177e4 3233 return -EINVAL;
ecca8f88 3234 }
e89c2095 3235
ecca8f88
XL
3236 if (val) {
3237 int min_len, max_len;
1da177e4 3238
feddd6c1
MRL
3239 min_len = sctp_mtu_payload(sp, SCTP_DEFAULT_MINSEGMENT,
3240 sizeof(struct sctp_data_chunk));
ecca8f88 3241 max_len = SCTP_MAX_CHUNK_LEN - sizeof(struct sctp_data_chunk);
e89c2095 3242
ecca8f88
XL
3243 if (val < min_len || val > max_len)
3244 return -EINVAL;
3245 }
3246
3247 asoc = sctp_id2assoc(sk, params.assoc_id);
e89c2095
WY
3248 if (asoc) {
3249 if (val == 0) {
b7e10c25
RH
3250 val = asoc->pathmtu - af->net_header_len;
3251 val -= af->ip_options_len(sk);
e89c2095 3252 val -= sizeof(struct sctphdr) +
668c9beb 3253 sctp_datachk_len(&asoc->stream);
e89c2095 3254 }
f68b2e05 3255 asoc->user_frag = val;
2f5e3c9d 3256 sctp_assoc_update_frag_point(asoc);
e89c2095 3257 } else {
ecca8f88
XL
3258 if (params.assoc_id && sctp_style(sk, UDP))
3259 return -EINVAL;
e89c2095 3260 sp->user_frag = val;
1da177e4
LT
3261 }
3262
3263 return 0;
3264}
3265
3266
3267/*
3268 * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3269 *
3270 * Requests that the peer mark the enclosed address as the association
3271 * primary. The enclosed address must be one of the association's
3272 * locally bound addresses. The following structure is used to make a
3273 * set primary request:
3274 */
3275static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
b7058842 3276 unsigned int optlen)
1da177e4 3277{
e1fc3b14 3278 struct net *net = sock_net(sk);
1da177e4 3279 struct sctp_sock *sp;
1da177e4
LT
3280 struct sctp_association *asoc = NULL;
3281 struct sctp_setpeerprim prim;
3282 struct sctp_chunk *chunk;
40a01039 3283 struct sctp_af *af;
1da177e4
LT
3284 int err;
3285
3286 sp = sctp_sk(sk);
1da177e4 3287
e1fc3b14 3288 if (!net->sctp.addip_enable)
1da177e4
LT
3289 return -EPERM;
3290
3291 if (optlen != sizeof(struct sctp_setpeerprim))
3292 return -EINVAL;
3293
3294 if (copy_from_user(&prim, optval, optlen))
3295 return -EFAULT;
3296
3297 asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
d808ad9a 3298 if (!asoc)
1da177e4
LT
3299 return -EINVAL;
3300
3301 if (!asoc->peer.asconf_capable)
3302 return -EPERM;
3303
3304 if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3305 return -EPERM;
3306
3307 if (!sctp_state(asoc, ESTABLISHED))
3308 return -ENOTCONN;
3309
40a01039
WY
3310 af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3311 if (!af)
3312 return -EINVAL;
3313
3314 if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3315 return -EADDRNOTAVAIL;
3316
1da177e4
LT
3317 if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3318 return -EADDRNOTAVAIL;
3319
2277c7cd
RH
3320 /* Allow security module to validate address. */
3321 err = security_sctp_bind_connect(sk, SCTP_SET_PEER_PRIMARY_ADDR,
3322 (struct sockaddr *)&prim.sspp_addr,
3323 af->sockaddr_len);
3324 if (err)
3325 return err;
3326
1da177e4
LT
3327 /* Create an ASCONF chunk with SET_PRIMARY parameter */
3328 chunk = sctp_make_asconf_set_prim(asoc,
3329 (union sctp_addr *)&prim.sspp_addr);
3330 if (!chunk)
3331 return -ENOMEM;
3332
3333 err = sctp_send_asconf(asoc, chunk);
3334
bb33381d 3335 pr_debug("%s: we set peer primary addr primitively\n", __func__);
1da177e4
LT
3336
3337 return err;
3338}
3339
0f3fffd8 3340static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
b7058842 3341 unsigned int optlen)
1da177e4 3342{
0f3fffd8 3343 struct sctp_setadaptation adaptation;
1da177e4 3344
0f3fffd8 3345 if (optlen != sizeof(struct sctp_setadaptation))
1da177e4 3346 return -EINVAL;
0f3fffd8 3347 if (copy_from_user(&adaptation, optval, optlen))
1da177e4
LT
3348 return -EFAULT;
3349
0f3fffd8 3350 sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
1da177e4
LT
3351
3352 return 0;
3353}
3354
6ab792f5
ISJ
3355/*
3356 * 7.1.29. Set or Get the default context (SCTP_CONTEXT)
3357 *
3358 * The context field in the sctp_sndrcvinfo structure is normally only
3359 * used when a failed message is retrieved holding the value that was
3360 * sent down on the actual send call. This option allows the setting of
3361 * a default context on an association basis that will be received on
3362 * reading messages from the peer. This is especially helpful in the
3363 * one-2-many model for an application to keep some reference to an
3364 * internal state machine that is processing messages on the
3365 * association. Note that the setting of this value only effects
3366 * received messages from the peer and does not effect the value that is
3367 * saved with outbound messages.
3368 */
3369static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
b7058842 3370 unsigned int optlen)
6ab792f5
ISJ
3371{
3372 struct sctp_assoc_value params;
3373 struct sctp_sock *sp;
3374 struct sctp_association *asoc;
3375
3376 if (optlen != sizeof(struct sctp_assoc_value))
3377 return -EINVAL;
3378 if (copy_from_user(&params, optval, optlen))
3379 return -EFAULT;
3380
3381 sp = sctp_sk(sk);
3382
3383 if (params.assoc_id != 0) {
3384 asoc = sctp_id2assoc(sk, params.assoc_id);
3385 if (!asoc)
3386 return -EINVAL;
3387 asoc->default_rcv_context = params.assoc_value;
3388 } else {
3389 sp->default_rcv_context = params.assoc_value;
3390 }
3391
3392 return 0;
3393}
3394
b6e1331f
VY
3395/*
3396 * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3397 *
3398 * This options will at a minimum specify if the implementation is doing
3399 * fragmented interleave. Fragmented interleave, for a one to many
3400 * socket, is when subsequent calls to receive a message may return
3401 * parts of messages from different associations. Some implementations
3402 * may allow you to turn this value on or off. If so, when turned off,
3403 * no fragment interleave will occur (which will cause a head of line
3404 * blocking amongst multiple associations sharing the same one to many
3405 * socket). When this option is turned on, then each receive call may
3406 * come from a different association (thus the user must receive data
3407 * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3408 * association each receive belongs to.
3409 *
3410 * This option takes a boolean value. A non-zero value indicates that
3411 * fragmented interleave is on. A value of zero indicates that
3412 * fragmented interleave is off.
3413 *
3414 * Note that it is important that an implementation that allows this
3415 * option to be turned on, have it off by default. Otherwise an unaware
3416 * application using the one to many model may become confused and act
3417 * incorrectly.
3418 */
3419static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3420 char __user *optval,
b7058842 3421 unsigned int optlen)
b6e1331f
VY
3422{
3423 int val;
3424
3425 if (optlen != sizeof(int))
3426 return -EINVAL;
3427 if (get_user(val, (int __user *)optval))
3428 return -EFAULT;
3429
772a5869
XL
3430 sctp_sk(sk)->frag_interleave = !!val;
3431
3432 if (!sctp_sk(sk)->frag_interleave)
3433 sctp_sk(sk)->strm_interleave = 0;
b6e1331f
VY
3434
3435 return 0;
3436}
3437
d49d91d7 3438/*
8510b937 3439 * 8.1.21. Set or Get the SCTP Partial Delivery Point
d49d91d7 3440 * (SCTP_PARTIAL_DELIVERY_POINT)
8510b937 3441 *
d49d91d7
VY
3442 * This option will set or get the SCTP partial delivery point. This
3443 * point is the size of a message where the partial delivery API will be
3444 * invoked to help free up rwnd space for the peer. Setting this to a
8510b937 3445 * lower value will cause partial deliveries to happen more often. The
d49d91d7 3446 * calls argument is an integer that sets or gets the partial delivery
8510b937
WY
3447 * point. Note also that the call will fail if the user attempts to set
3448 * this value larger than the socket receive buffer size.
3449 *
3450 * Note that any single message having a length smaller than or equal to
3451 * the SCTP partial delivery point will be delivered in one single read
3452 * call as long as the user provided buffer is large enough to hold the
3453 * message.
d49d91d7
VY
3454 */
3455static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3456 char __user *optval,
b7058842 3457 unsigned int optlen)
d49d91d7
VY
3458{
3459 u32 val;
3460
3461 if (optlen != sizeof(u32))
3462 return -EINVAL;
3463 if (get_user(val, (int __user *)optval))
3464 return -EFAULT;
3465
8510b937
WY
3466 /* Note: We double the receive buffer from what the user sets
3467 * it to be, also initial rwnd is based on rcvbuf/2.
3468 */
3469 if (val > (sk->sk_rcvbuf >> 1))
3470 return -EINVAL;
3471
d49d91d7
VY
3472 sctp_sk(sk)->pd_point = val;
3473
3474 return 0; /* is this the right error code? */
3475}
3476
70331571
VY
3477/*
3478 * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST)
3479 *
3480 * This option will allow a user to change the maximum burst of packets
3481 * that can be emitted by this association. Note that the default value
3482 * is 4, and some implementations may restrict this setting so that it
3483 * can only be lowered.
3484 *
3485 * NOTE: This text doesn't seem right. Do this on a socket basis with
3486 * future associations inheriting the socket value.
3487 */
3488static int sctp_setsockopt_maxburst(struct sock *sk,
3489 char __user *optval,
b7058842 3490 unsigned int optlen)
70331571 3491{
219b99a9
NH
3492 struct sctp_assoc_value params;
3493 struct sctp_sock *sp;
3494 struct sctp_association *asoc;
70331571 3495 int val;
219b99a9 3496 int assoc_id = 0;
70331571 3497
219b99a9 3498 if (optlen == sizeof(int)) {
94f65193 3499 pr_warn_ratelimited(DEPRECATED
f916ec96 3500 "%s (pid %d) "
94f65193 3501 "Use of int in max_burst socket option deprecated.\n"
f916ec96
NH
3502 "Use struct sctp_assoc_value instead\n",
3503 current->comm, task_pid_nr(current));
219b99a9
NH
3504 if (copy_from_user(&val, optval, optlen))
3505 return -EFAULT;
3506 } else if (optlen == sizeof(struct sctp_assoc_value)) {
3507 if (copy_from_user(&params, optval, optlen))
3508 return -EFAULT;
3509 val = params.assoc_value;
3510 assoc_id = params.assoc_id;
3511 } else
70331571
VY
3512 return -EINVAL;
3513
219b99a9
NH
3514 sp = sctp_sk(sk);
3515
3516 if (assoc_id != 0) {
3517 asoc = sctp_id2assoc(sk, assoc_id);
3518 if (!asoc)
3519 return -EINVAL;
3520 asoc->max_burst = val;
3521 } else
3522 sp->max_burst = val;
70331571
VY
3523
3524 return 0;
3525}
3526
65b07e5d
VY
3527/*
3528 * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3529 *
3530 * This set option adds a chunk type that the user is requesting to be
3531 * received only in an authenticated way. Changes to the list of chunks
3532 * will only effect future associations on the socket.
3533 */
3534static int sctp_setsockopt_auth_chunk(struct sock *sk,
b7058842
DM
3535 char __user *optval,
3536 unsigned int optlen)
65b07e5d 3537{
b14878cc 3538 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
65b07e5d
VY
3539 struct sctp_authchunk val;
3540
b14878cc 3541 if (!ep->auth_enable)
5e739d17
VY
3542 return -EACCES;
3543
65b07e5d
VY
3544 if (optlen != sizeof(struct sctp_authchunk))
3545 return -EINVAL;
3546 if (copy_from_user(&val, optval, optlen))
3547 return -EFAULT;
3548
3549 switch (val.sauth_chunk) {
7fd71b1e
JP
3550 case SCTP_CID_INIT:
3551 case SCTP_CID_INIT_ACK:
3552 case SCTP_CID_SHUTDOWN_COMPLETE:
3553 case SCTP_CID_AUTH:
3554 return -EINVAL;
65b07e5d
VY
3555 }
3556
3557 /* add this chunk id to the endpoint */
b14878cc 3558 return sctp_auth_ep_add_chunkid(ep, val.sauth_chunk);
65b07e5d
VY
3559}
3560
3561/*
3562 * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3563 *
3564 * This option gets or sets the list of HMAC algorithms that the local
3565 * endpoint requires the peer to use.
3566 */
3567static int sctp_setsockopt_hmac_ident(struct sock *sk,
b7058842
DM
3568 char __user *optval,
3569 unsigned int optlen)
65b07e5d 3570{
b14878cc 3571 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
65b07e5d 3572 struct sctp_hmacalgo *hmacs;
d9724055 3573 u32 idents;
65b07e5d
VY
3574 int err;
3575
b14878cc 3576 if (!ep->auth_enable)
5e739d17
VY
3577 return -EACCES;
3578
65b07e5d
VY
3579 if (optlen < sizeof(struct sctp_hmacalgo))
3580 return -EINVAL;
5960cefa
MRL
3581 optlen = min_t(unsigned int, optlen, sizeof(struct sctp_hmacalgo) +
3582 SCTP_AUTH_NUM_HMACS * sizeof(u16));
65b07e5d 3583
cb3f837b 3584 hmacs = memdup_user(optval, optlen);
934253a7
SW
3585 if (IS_ERR(hmacs))
3586 return PTR_ERR(hmacs);
65b07e5d 3587
d9724055
VY
3588 idents = hmacs->shmac_num_idents;
3589 if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3590 (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
65b07e5d
VY
3591 err = -EINVAL;
3592 goto out;
3593 }
3594
b14878cc 3595 err = sctp_auth_ep_set_hmacs(ep, hmacs);
65b07e5d
VY
3596out:
3597 kfree(hmacs);
3598 return err;
3599}
3600
3601/*
3602 * 7.1.20. Set a shared key (SCTP_AUTH_KEY)
3603 *
3604 * This option will set a shared secret key which is used to build an
3605 * association shared key.
3606 */
3607static int sctp_setsockopt_auth_key(struct sock *sk,
3608 char __user *optval,
b7058842 3609 unsigned int optlen)
65b07e5d 3610{
b14878cc 3611 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
65b07e5d
VY
3612 struct sctp_authkey *authkey;
3613 struct sctp_association *asoc;
3614 int ret;
3615
b14878cc 3616 if (!ep->auth_enable)
5e739d17
VY
3617 return -EACCES;
3618
65b07e5d
VY
3619 if (optlen <= sizeof(struct sctp_authkey))
3620 return -EINVAL;
5960cefa
MRL
3621 /* authkey->sca_keylength is u16, so optlen can't be bigger than
3622 * this.
3623 */
3624 optlen = min_t(unsigned int, optlen, USHRT_MAX +
3625 sizeof(struct sctp_authkey));
65b07e5d 3626
cb3f837b 3627 authkey = memdup_user(optval, optlen);
934253a7
SW
3628 if (IS_ERR(authkey))
3629 return PTR_ERR(authkey);
65b07e5d 3630
328fc47e 3631 if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
30c2235c
VY
3632 ret = -EINVAL;
3633 goto out;
3634 }
3635
65b07e5d
VY
3636 asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3637 if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3638 ret = -EINVAL;
3639 goto out;
3640 }
3641
b14878cc 3642 ret = sctp_auth_set_key(ep, asoc, authkey);
65b07e5d 3643out:
6ba542a2 3644 kzfree(authkey);
65b07e5d
VY
3645 return ret;
3646}
3647
3648/*
3649 * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3650 *
3651 * This option will get or set the active shared key to be used to build
3652 * the association shared key.
3653 */
3654static int sctp_setsockopt_active_key(struct sock *sk,
b7058842
DM
3655 char __user *optval,
3656 unsigned int optlen)
65b07e5d 3657{
b14878cc 3658 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
65b07e5d
VY
3659 struct sctp_authkeyid val;
3660 struct sctp_association *asoc;
3661
b14878cc 3662 if (!ep->auth_enable)
5e739d17
VY
3663 return -EACCES;
3664
65b07e5d
VY
3665 if (optlen != sizeof(struct sctp_authkeyid))
3666 return -EINVAL;
3667 if (copy_from_user(&val, optval, optlen))
3668 return -EFAULT;
3669
3670 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3671 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3672 return -EINVAL;
3673
b14878cc 3674 return sctp_auth_set_active_key(ep, asoc, val.scact_keynumber);
65b07e5d
VY
3675}
3676
3677/*
3678 * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY)
3679 *
3680 * This set option will delete a shared secret key from use.
3681 */
3682static int sctp_setsockopt_del_key(struct sock *sk,
b7058842
DM
3683 char __user *optval,
3684 unsigned int optlen)
65b07e5d 3685{
b14878cc 3686 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
65b07e5d
VY
3687 struct sctp_authkeyid val;
3688 struct sctp_association *asoc;
3689
b14878cc 3690 if (!ep->auth_enable)
5e739d17
VY
3691 return -EACCES;
3692
65b07e5d
VY
3693 if (optlen != sizeof(struct sctp_authkeyid))
3694 return -EINVAL;
3695 if (copy_from_user(&val, optval, optlen))
3696 return -EFAULT;
3697
3698 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3699 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3700 return -EINVAL;
3701
b14878cc 3702 return sctp_auth_del_key_id(ep, asoc, val.scact_keynumber);
65b07e5d
VY
3703
3704}
3705
601590ec
XL
3706/*
3707 * 8.3.4 Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY)
3708 *
3709 * This set option will deactivate a shared secret key.
3710 */
3711static int sctp_setsockopt_deactivate_key(struct sock *sk, char __user *optval,
3712 unsigned int optlen)
3713{
3714 struct sctp_endpoint *ep = sctp_sk(sk)->ep;
3715 struct sctp_authkeyid val;
3716 struct sctp_association *asoc;
3717
3718 if (!ep->auth_enable)
3719 return -EACCES;
3720
3721 if (optlen != sizeof(struct sctp_authkeyid))
3722 return -EINVAL;
3723 if (copy_from_user(&val, optval, optlen))
3724 return -EFAULT;
3725
3726 asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3727 if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3728 return -EINVAL;
3729
3730 return sctp_auth_deact_key_id(ep, asoc, val.scact_keynumber);
3731}
3732
7dc04d71
MH
3733/*
3734 * 8.1.23 SCTP_AUTO_ASCONF
3735 *
3736 * This option will enable or disable the use of the automatic generation of
3737 * ASCONF chunks to add and delete addresses to an existing association. Note
3738 * that this option has two caveats namely: a) it only affects sockets that
3739 * are bound to all addresses available to the SCTP stack, and b) the system
3740 * administrator may have an overriding control that turns the ASCONF feature
3741 * off no matter what setting the socket option may have.
3742 * This option expects an integer boolean flag, where a non-zero value turns on
3743 * the option, and a zero value turns off the option.
3744 * Note. In this implementation, socket operation overrides default parameter
3745 * being set by sysctl as well as FreeBSD implementation
3746 */
3747static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3748 unsigned int optlen)
3749{
3750 int val;
3751 struct sctp_sock *sp = sctp_sk(sk);
3752
3753 if (optlen < sizeof(int))
3754 return -EINVAL;
3755 if (get_user(val, (int __user *)optval))
3756 return -EFAULT;
3757 if (!sctp_is_ep_boundall(sk) && val)
3758 return -EINVAL;
3759 if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3760 return 0;
3761
2d45a02d 3762 spin_lock_bh(&sock_net(sk)->sctp.addr_wq_lock);
7dc04d71
MH
3763 if (val == 0 && sp->do_auto_asconf) {
3764 list_del(&sp->auto_asconf_list);
3765 sp->do_auto_asconf = 0;
3766 } else if (val && !sp->do_auto_asconf) {
3767 list_add_tail(&sp->auto_asconf_list,
4db67e80 3768 &sock_net(sk)->sctp.auto_asconf_splist);
7dc04d71
MH
3769 sp->do_auto_asconf = 1;
3770 }
2d45a02d 3771 spin_unlock_bh(&sock_net(sk)->sctp.addr_wq_lock);
7dc04d71
MH
3772 return 0;
3773}
3774
5aa93bcf
NH
3775/*
3776 * SCTP_PEER_ADDR_THLDS
3777 *
3778 * This option allows us to alter the partially failed threshold for one or all
3779 * transports in an association. See Section 6.1 of:
3780 * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3781 */
3782static int sctp_setsockopt_paddr_thresholds(struct sock *sk,
3783 char __user *optval,
3784 unsigned int optlen)
3785{
3786 struct sctp_paddrthlds val;
3787 struct sctp_transport *trans;
3788 struct sctp_association *asoc;
3789
3790 if (optlen < sizeof(struct sctp_paddrthlds))
3791 return -EINVAL;
3792 if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval,
3793 sizeof(struct sctp_paddrthlds)))
3794 return -EFAULT;
3795
3796
3797 if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) {
3798 asoc = sctp_id2assoc(sk, val.spt_assoc_id);
3799 if (!asoc)
3800 return -ENOENT;
3801 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
3802 transports) {
3803 if (val.spt_pathmaxrxt)
3804 trans->pathmaxrxt = val.spt_pathmaxrxt;
3805 trans->pf_retrans = val.spt_pathpfthld;
3806 }
3807
3808 if (val.spt_pathmaxrxt)
3809 asoc->pathmaxrxt = val.spt_pathmaxrxt;
3810 asoc->pf_retrans = val.spt_pathpfthld;
3811 } else {
3812 trans = sctp_addr_id2transport(sk, &val.spt_address,
3813 val.spt_assoc_id);
3814 if (!trans)
3815 return -ENOENT;
3816
3817 if (val.spt_pathmaxrxt)
3818 trans->pathmaxrxt = val.spt_pathmaxrxt;
3819 trans->pf_retrans = val.spt_pathpfthld;
3820 }
3821
3822 return 0;
3823}
3824
0d3a421d
GOV
3825static int sctp_setsockopt_recvrcvinfo(struct sock *sk,
3826 char __user *optval,
3827 unsigned int optlen)
3828{
3829 int val;
3830
3831 if (optlen < sizeof(int))
3832 return -EINVAL;
3833 if (get_user(val, (int __user *) optval))
3834 return -EFAULT;
3835
3836 sctp_sk(sk)->recvrcvinfo = (val == 0) ? 0 : 1;
3837
3838 return 0;
3839}
3840
2347c80f
GOV
3841static int sctp_setsockopt_recvnxtinfo(struct sock *sk,
3842 char __user *optval,
3843 unsigned int optlen)
3844{
3845 int val;
3846
3847 if (optlen < sizeof(int))
3848 return -EINVAL;
3849 if (get_user(val, (int __user *) optval))
3850 return -EFAULT;
3851
3852 sctp_sk(sk)->recvnxtinfo = (val == 0) ? 0 : 1;
3853
3854 return 0;
3855}
3856
28aa4c26
XL
3857static int sctp_setsockopt_pr_supported(struct sock *sk,
3858 char __user *optval,
3859 unsigned int optlen)
3860{
3861 struct sctp_assoc_value params;
3862 struct sctp_association *asoc;
3863 int retval = -EINVAL;
3864
3865 if (optlen != sizeof(params))
3866 goto out;
3867
3868 if (copy_from_user(&params, optval, optlen)) {
3869 retval = -EFAULT;
3870 goto out;
3871 }
3872
3873 asoc = sctp_id2assoc(sk, params.assoc_id);
3874 if (asoc) {
3875 asoc->prsctp_enable = !!params.assoc_value;
3876 } else if (!params.assoc_id) {
3877 struct sctp_sock *sp = sctp_sk(sk);
3878
3879 sp->ep->prsctp_enable = !!params.assoc_value;
3880 } else {
3881 goto out;
3882 }
3883
3884 retval = 0;
3885
3886out:
3887 return retval;
3888}
3889
f959fb44
XL
3890static int sctp_setsockopt_default_prinfo(struct sock *sk,
3891 char __user *optval,
3892 unsigned int optlen)
3893{
3894 struct sctp_default_prinfo info;
3895 struct sctp_association *asoc;
3896 int retval = -EINVAL;
3897
3898 if (optlen != sizeof(info))
3899 goto out;
3900
3901 if (copy_from_user(&info, optval, sizeof(info))) {
3902 retval = -EFAULT;
3903 goto out;
3904 }
3905
3906 if (info.pr_policy & ~SCTP_PR_SCTP_MASK)
3907 goto out;
3908
3909 if (info.pr_policy == SCTP_PR_SCTP_NONE)
3910 info.pr_value = 0;
3911
3912 asoc = sctp_id2assoc(sk, info.pr_assoc_id);
3913 if (asoc) {
3914 SCTP_PR_SET_POLICY(asoc->default_flags, info.pr_policy);
3915 asoc->default_timetolive = info.pr_value;
3916 } else if (!info.pr_assoc_id) {
3917 struct sctp_sock *sp = sctp_sk(sk);
3918
3919 SCTP_PR_SET_POLICY(sp->default_flags, info.pr_policy);
3920 sp->default_timetolive = info.pr_value;
3921 } else {
3922 goto out;
3923 }
3924
3925 retval = 0;
3926
3927out:
3928 return retval;
3929}
3930
c0d8bab6
XL
3931static int sctp_setsockopt_reconfig_supported(struct sock *sk,
3932 char __user *optval,
3933 unsigned int optlen)
3934{
3935 struct sctp_assoc_value params;
3936 struct sctp_association *asoc;
3937 int retval = -EINVAL;
3938
3939 if (optlen != sizeof(params))
3940 goto out;
3941
3942 if (copy_from_user(&params, optval, optlen)) {
3943 retval = -EFAULT;
3944 goto out;
3945 }
3946
3947 asoc = sctp_id2assoc(sk, params.assoc_id);
3948 if (asoc) {
3949 asoc->reconf_enable = !!params.assoc_value;
3950 } else if (!params.assoc_id) {
3951 struct sctp_sock *sp = sctp_sk(sk);
3952
3953 sp->ep->reconf_enable = !!params.assoc_value;
3954 } else {
3955 goto out;
3956 }
3957
3958 retval = 0;
3959
3960out:
3961 return retval;
3962}
3963
9fb657ae
XL
3964static int sctp_setsockopt_enable_strreset(struct sock *sk,
3965 char __user *optval,
3966 unsigned int optlen)
3967{
3968 struct sctp_assoc_value params;
3969 struct sctp_association *asoc;
3970 int retval = -EINVAL;
3971
3972 if (optlen != sizeof(params))
3973 goto out;
3974
3975 if (copy_from_user(&params, optval, optlen)) {
3976 retval = -EFAULT;
3977 goto out;
3978 }
3979
3980 if (params.assoc_value & (~SCTP_ENABLE_STRRESET_MASK))
3981 goto out;
3982
3983 asoc = sctp_id2assoc(sk, params.assoc_id);
3984 if (asoc) {
3985 asoc->strreset_enable = params.assoc_value;
3986 } else if (!params.assoc_id) {
3987 struct sctp_sock *sp = sctp_sk(sk);
3988
3989 sp->ep->strreset_enable = params.assoc_value;
3990 } else {
3991 goto out;
3992 }
3993
3994 retval = 0;
3995
3996out:
3997 return retval;
3998}
3999
7f9d68ac
XL
4000static int sctp_setsockopt_reset_streams(struct sock *sk,
4001 char __user *optval,
4002 unsigned int optlen)
4003{
4004 struct sctp_reset_streams *params;
4005 struct sctp_association *asoc;
4006 int retval = -EINVAL;
4007
2342b8d9 4008 if (optlen < sizeof(*params))
7f9d68ac 4009 return -EINVAL;
5960cefa
MRL
4010 /* srs_number_streams is u16, so optlen can't be bigger than this. */
4011 optlen = min_t(unsigned int, optlen, USHRT_MAX +
4012 sizeof(__u16) * sizeof(*params));
7f9d68ac
XL
4013
4014 params = memdup_user(optval, optlen);
4015 if (IS_ERR(params))
4016 return PTR_ERR(params);
4017
2342b8d9
XL
4018 if (params->srs_number_streams * sizeof(__u16) >
4019 optlen - sizeof(*params))
4020 goto out;
4021
7f9d68ac
XL
4022 asoc = sctp_id2assoc(sk, params->srs_assoc_id);
4023 if (!asoc)
4024 goto out;
4025
4026 retval = sctp_send_reset_streams(asoc, params);
4027
4028out:
4029 kfree(params);
4030 return retval;
4031}
4032
a92ce1a4
XL
4033static int sctp_setsockopt_reset_assoc(struct sock *sk,
4034 char __user *optval,
4035 unsigned int optlen)
4036{
4037 struct sctp_association *asoc;
4038 sctp_assoc_t associd;
4039 int retval = -EINVAL;
4040
4041 if (optlen != sizeof(associd))
4042 goto out;
4043
4044 if (copy_from_user(&associd, optval, optlen)) {
4045 retval = -EFAULT;
4046 goto out;
4047 }
4048
4049 asoc = sctp_id2assoc(sk, associd);
4050 if (!asoc)
4051 goto out;
4052
4053 retval = sctp_send_reset_assoc(asoc);
4054
4055out:
4056 return retval;
4057}
4058
242bd2d5
XL
4059static int sctp_setsockopt_add_streams(struct sock *sk,
4060 char __user *optval,
4061 unsigned int optlen)
4062{
4063 struct sctp_association *asoc;
4064 struct sctp_add_streams params;
4065 int retval = -EINVAL;
4066
4067 if (optlen != sizeof(params))
4068 goto out;
4069
4070 if (copy_from_user(&params, optval, optlen)) {
4071 retval = -EFAULT;
4072 goto out;
4073 }
4074
4075 asoc = sctp_id2assoc(sk, params.sas_assoc_id);
4076 if (!asoc)
4077 goto out;
4078
4079 retval = sctp_send_add_streams(asoc, &params);
4080
4081out:
4082 return retval;
4083}
4084
13aa8770
MRL
4085static int sctp_setsockopt_scheduler(struct sock *sk,
4086 char __user *optval,
4087 unsigned int optlen)
4088{
4089 struct sctp_association *asoc;
4090 struct sctp_assoc_value params;
4091 int retval = -EINVAL;
4092
4093 if (optlen < sizeof(params))
4094 goto out;
4095
4096 optlen = sizeof(params);
4097 if (copy_from_user(&params, optval, optlen)) {
4098 retval = -EFAULT;
4099 goto out;
4100 }
4101
4102 if (params.assoc_value > SCTP_SS_MAX)
4103 goto out;
4104
4105 asoc = sctp_id2assoc(sk, params.assoc_id);
4106 if (!asoc)
4107 goto out;
4108
4109 retval = sctp_sched_set_sched(asoc, params.assoc_value);
4110
4111out:
4112 return retval;
4113}
4114
0ccdf3c7
MRL
4115static int sctp_setsockopt_scheduler_value(struct sock *sk,
4116 char __user *optval,
4117 unsigned int optlen)
4118{
4119 struct sctp_association *asoc;
4120 struct sctp_stream_value params;
4121 int retval = -EINVAL;
4122
4123 if (optlen < sizeof(params))
4124 goto out;
4125
4126 optlen = sizeof(params);
4127 if (copy_from_user(&params, optval, optlen)) {
4128 retval = -EFAULT;
4129 goto out;
4130 }
4131
4132 asoc = sctp_id2assoc(sk, params.assoc_id);
4133 if (!asoc)
4134 goto out;
4135
4136 retval = sctp_sched_set_value(asoc, params.stream_id,
4137 params.stream_value, GFP_KERNEL);
4138
4139out:
4140 return retval;
4141}
4142
772a5869
XL
4143static int sctp_setsockopt_interleaving_supported(struct sock *sk,
4144 char __user *optval,
4145 unsigned int optlen)
4146{
4147 struct sctp_sock *sp = sctp_sk(sk);
4148 struct net *net = sock_net(sk);
4149 struct sctp_assoc_value params;
4150 int retval = -EINVAL;
4151
4152 if (optlen < sizeof(params))
4153 goto out;
4154
4155 optlen = sizeof(params);
4156 if (copy_from_user(&params, optval, optlen)) {
4157 retval = -EFAULT;
4158 goto out;
4159 }
4160
4161 if (params.assoc_id)
4162 goto out;
4163
4164 if (!net->sctp.intl_enable || !sp->frag_interleave) {
4165 retval = -EPERM;
4166 goto out;
4167 }
4168
4169 sp->strm_interleave = !!params.assoc_value;
4170
4171 retval = 0;
4172
4173out:
4174 return retval;
4175}
4176
1da177e4
LT
4177/* API 6.2 setsockopt(), getsockopt()
4178 *
4179 * Applications use setsockopt() and getsockopt() to set or retrieve
4180 * socket options. Socket options are used to change the default
4181 * behavior of sockets calls. They are described in Section 7.
4182 *
4183 * The syntax is:
4184 *
4185 * ret = getsockopt(int sd, int level, int optname, void __user *optval,
4186 * int __user *optlen);
4187 * ret = setsockopt(int sd, int level, int optname, const void __user *optval,
4188 * int optlen);
4189 *
4190 * sd - the socket descript.
4191 * level - set to IPPROTO_SCTP for all SCTP options.
4192 * optname - the option name.
4193 * optval - the buffer to store the value of the option.
4194 * optlen - the size of the buffer.
4195 */
dda91928
DB
4196static int sctp_setsockopt(struct sock *sk, int level, int optname,
4197 char __user *optval, unsigned int optlen)
1da177e4
LT
4198{
4199 int retval = 0;
4200
bb33381d 4201 pr_debug("%s: sk:%p, optname:%d\n", __func__, sk, optname);
1da177e4
LT
4202
4203 /* I can hardly begin to describe how wrong this is. This is
4204 * so broken as to be worse than useless. The API draft
4205 * REALLY is NOT helpful here... I am not convinced that the
4206 * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
4207 * are at all well-founded.
4208 */
4209 if (level != SOL_SCTP) {
4210 struct sctp_af *af = sctp_sk(sk)->pf->af;
4211 retval = af->setsockopt(sk, level, optname, optval, optlen);
4212 goto out_nounlock;
4213 }
4214
048ed4b6 4215 lock_sock(sk);
1da177e4
LT
4216
4217 switch (optname) {
4218 case SCTP_SOCKOPT_BINDX_ADD:
4219 /* 'optlen' is the size of the addresses buffer. */
4220 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4221 optlen, SCTP_BINDX_ADD_ADDR);
4222 break;
4223
4224 case SCTP_SOCKOPT_BINDX_REM:
4225 /* 'optlen' is the size of the addresses buffer. */
4226 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
4227 optlen, SCTP_BINDX_REM_ADDR);
4228 break;
4229
88a0a948
VY
4230 case SCTP_SOCKOPT_CONNECTX_OLD:
4231 /* 'optlen' is the size of the addresses buffer. */
4232 retval = sctp_setsockopt_connectx_old(sk,
4233 (struct sockaddr __user *)optval,
4234 optlen);
4235 break;
4236
3f7a87d2
FF
4237 case SCTP_SOCKOPT_CONNECTX:
4238 /* 'optlen' is the size of the addresses buffer. */
88a0a948
VY
4239 retval = sctp_setsockopt_connectx(sk,
4240 (struct sockaddr __user *)optval,
4241 optlen);
3f7a87d2
FF
4242 break;
4243
1da177e4
LT
4244 case SCTP_DISABLE_FRAGMENTS:
4245 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
4246 break;
4247
4248 case SCTP_EVENTS:
4249 retval = sctp_setsockopt_events(sk, optval, optlen);
4250 break;
4251
4252 case SCTP_AUTOCLOSE:
4253 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
4254 break;
4255
4256 case SCTP_PEER_ADDR_PARAMS:
4257 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
4258 break;
4259
4580ccc0 4260 case SCTP_DELAYED_SACK:
d364d927 4261 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
7708610b 4262 break;
d49d91d7
VY
4263 case SCTP_PARTIAL_DELIVERY_POINT:
4264 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
4265 break;
7708610b 4266
1da177e4
LT
4267 case SCTP_INITMSG:
4268 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
4269 break;
4270 case SCTP_DEFAULT_SEND_PARAM:
4271 retval = sctp_setsockopt_default_send_param(sk, optval,
4272 optlen);
4273 break;
6b3fd5f3
GOV
4274 case SCTP_DEFAULT_SNDINFO:
4275 retval = sctp_setsockopt_default_sndinfo(sk, optval, optlen);
4276 break;
1da177e4
LT
4277 case SCTP_PRIMARY_ADDR:
4278 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
4279 break;
4280 case SCTP_SET_PEER_PRIMARY_ADDR:
4281 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
4282 break;
4283 case SCTP_NODELAY:
4284 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
4285 break;
4286 case SCTP_RTOINFO:
4287 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
4288 break;
4289 case SCTP_ASSOCINFO:
4290 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
4291 break;
4292 case SCTP_I_WANT_MAPPED_V4_ADDR:
4293 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
4294 break;
4295 case SCTP_MAXSEG:
4296 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
4297 break;
0f3fffd8
ISJ
4298 case SCTP_ADAPTATION_LAYER:
4299 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
1da177e4 4300 break;
6ab792f5
ISJ
4301 case SCTP_CONTEXT:
4302 retval = sctp_setsockopt_context(sk, optval, optlen);
4303 break;
b6e1331f
VY
4304 case SCTP_FRAGMENT_INTERLEAVE:
4305 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
4306 break;
70331571
VY
4307 case SCTP_MAX_BURST:
4308 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
4309 break;
65b07e5d
VY
4310 case SCTP_AUTH_CHUNK:
4311 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
4312 break;
4313 case SCTP_HMAC_IDENT:
4314 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
4315 break;
4316 case SCTP_AUTH_KEY:
4317 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
4318 break;
4319 case SCTP_AUTH_ACTIVE_KEY:
4320 retval = sctp_setsockopt_active_key(sk, optval, optlen);
4321 break;
4322 case SCTP_AUTH_DELETE_KEY:
4323 retval = sctp_setsockopt_del_key(sk, optval, optlen);
4324 break;
601590ec
XL
4325 case SCTP_AUTH_DEACTIVATE_KEY:
4326 retval = sctp_setsockopt_deactivate_key(sk, optval, optlen);
4327 break;
7dc04d71
MH
4328 case SCTP_AUTO_ASCONF:
4329 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
4330 break;
5aa93bcf
NH
4331 case SCTP_PEER_ADDR_THLDS:
4332 retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen);
4333 break;
0d3a421d
GOV
4334 case SCTP_RECVRCVINFO:
4335 retval = sctp_setsockopt_recvrcvinfo(sk, optval, optlen);
4336 break;
2347c80f
GOV
4337 case SCTP_RECVNXTINFO:
4338 retval = sctp_setsockopt_recvnxtinfo(sk, optval, optlen);
4339 break;
28aa4c26
XL
4340 case SCTP_PR_SUPPORTED:
4341 retval = sctp_setsockopt_pr_supported(sk, optval, optlen);
4342 break;
f959fb44
XL
4343 case SCTP_DEFAULT_PRINFO:
4344 retval = sctp_setsockopt_default_prinfo(sk, optval, optlen);
4345 break;
c0d8bab6
XL
4346 case SCTP_RECONFIG_SUPPORTED:
4347 retval = sctp_setsockopt_reconfig_supported(sk, optval, optlen);
4348 break;
9fb657ae
XL
4349 case SCTP_ENABLE_STREAM_RESET:
4350 retval = sctp_setsockopt_enable_strreset(sk, optval, optlen);
4351 break;
7f9d68ac
XL
4352 case SCTP_RESET_STREAMS:
4353 retval = sctp_setsockopt_reset_streams(sk, optval, optlen);
4354 break;
a92ce1a4
XL
4355 case SCTP_RESET_ASSOC:
4356 retval = sctp_setsockopt_reset_assoc(sk, optval, optlen);
4357 break;
242bd2d5
XL
4358 case SCTP_ADD_STREAMS:
4359 retval = sctp_setsockopt_add_streams(sk, optval, optlen);
4360 break;
13aa8770
MRL
4361 case SCTP_STREAM_SCHEDULER:
4362 retval = sctp_setsockopt_scheduler(sk, optval, optlen);
4363 break;
0ccdf3c7
MRL
4364 case SCTP_STREAM_SCHEDULER_VALUE:
4365 retval = sctp_setsockopt_scheduler_value(sk, optval, optlen);
4366 break;
772a5869
XL
4367 case SCTP_INTERLEAVING_SUPPORTED:
4368 retval = sctp_setsockopt_interleaving_supported(sk, optval,
4369 optlen);
4370 break;
1da177e4
LT
4371 default:
4372 retval = -ENOPROTOOPT;
4373 break;
3ff50b79 4374 }
1da177e4 4375
048ed4b6 4376 release_sock(sk);
1da177e4
LT
4377
4378out_nounlock:
4379 return retval;
4380}
4381
4382/* API 3.1.6 connect() - UDP Style Syntax
4383 *
4384 * An application may use the connect() call in the UDP model to initiate an
4385 * association without sending data.
4386 *
4387 * The syntax is:
4388 *
4389 * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
4390 *
4391 * sd: the socket descriptor to have a new association added to.
4392 *
4393 * nam: the address structure (either struct sockaddr_in or struct
4394 * sockaddr_in6 defined in RFC2553 [7]).
4395 *
4396 * len: the size of the address.
4397 */
dda91928
DB
4398static int sctp_connect(struct sock *sk, struct sockaddr *addr,
4399 int addr_len)
1da177e4 4400{
1da177e4 4401 int err = 0;
3f7a87d2 4402 struct sctp_af *af;
1da177e4 4403
048ed4b6 4404 lock_sock(sk);
1da177e4 4405
bb33381d
DB
4406 pr_debug("%s: sk:%p, sockaddr:%p, addr_len:%d\n", __func__, sk,
4407 addr, addr_len);
1da177e4 4408
3f7a87d2
FF
4409 /* Validate addr_len before calling common connect/connectx routine. */
4410 af = sctp_get_af_specific(addr->sa_family);
4411 if (!af || addr_len < af->sockaddr_len) {
4412 err = -EINVAL;
4413 } else {
4414 /* Pass correct addr len to common routine (so it knows there
4415 * is only one address being passed.
4416 */
88a0a948 4417 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
1da177e4
LT
4418 }
4419
048ed4b6 4420 release_sock(sk);
1da177e4
LT
4421 return err;
4422}
4423
4424/* FIXME: Write comments. */
dda91928 4425static int sctp_disconnect(struct sock *sk, int flags)
1da177e4
LT
4426{
4427 return -EOPNOTSUPP; /* STUB */
4428}
4429
4430/* 4.1.4 accept() - TCP Style Syntax
4431 *
4432 * Applications use accept() call to remove an established SCTP
4433 * association from the accept queue of the endpoint. A new socket
4434 * descriptor will be returned from accept() to represent the newly
4435 * formed association.
4436 */
cdfbabfb 4437static struct sock *sctp_accept(struct sock *sk, int flags, int *err, bool kern)
1da177e4
LT
4438{
4439 struct sctp_sock *sp;
4440 struct sctp_endpoint *ep;
4441 struct sock *newsk = NULL;
4442 struct sctp_association *asoc;
4443 long timeo;
4444 int error = 0;
4445
048ed4b6 4446 lock_sock(sk);
1da177e4
LT
4447
4448 sp = sctp_sk(sk);
4449 ep = sp->ep;
4450
4451 if (!sctp_style(sk, TCP)) {
4452 error = -EOPNOTSUPP;
4453 goto out;
4454 }
4455
4456 if (!sctp_sstate(sk, LISTENING)) {
4457 error = -EINVAL;
4458 goto out;
4459 }
4460
8abfedd8 4461 timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
1da177e4
LT
4462
4463 error = sctp_wait_for_accept(sk, timeo);
4464 if (error)
4465 goto out;
4466
4467 /* We treat the list of associations on the endpoint as the accept
4468 * queue and pick the first association on the list.
4469 */
4470 asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
4471
cdfbabfb 4472 newsk = sp->pf->create_accept_sk(sk, asoc, kern);
1da177e4
LT
4473 if (!newsk) {
4474 error = -ENOMEM;
4475 goto out;
4476 }
4477
4478 /* Populate the fields of the newsk from the oldsk and migrate the
4479 * asoc to the newsk.
4480 */
4481 sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
4482
4483out:
048ed4b6 4484 release_sock(sk);
d808ad9a 4485 *err = error;
1da177e4
LT
4486 return newsk;
4487}
4488
4489/* The SCTP ioctl handler. */
dda91928 4490static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
1da177e4 4491{
65040c33
DEFP
4492 int rc = -ENOTCONN;
4493
048ed4b6 4494 lock_sock(sk);
65040c33
DEFP
4495
4496 /*
4497 * SEQPACKET-style sockets in LISTENING state are valid, for
4498 * SCTP, so only discard TCP-style sockets in LISTENING state.
4499 */
4500 if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
4501 goto out;
4502
4503 switch (cmd) {
4504 case SIOCINQ: {
4505 struct sk_buff *skb;
4506 unsigned int amount = 0;
4507
4508 skb = skb_peek(&sk->sk_receive_queue);
4509 if (skb != NULL) {
4510 /*
4511 * We will only return the amount of this packet since
4512 * that is all that will be read.
4513 */
4514 amount = skb->len;
4515 }
4516 rc = put_user(amount, (int __user *)arg);
65040c33 4517 break;
9a7241c2 4518 }
65040c33
DEFP
4519 default:
4520 rc = -ENOIOCTLCMD;
4521 break;
4522 }
4523out:
048ed4b6 4524 release_sock(sk);
65040c33 4525 return rc;
1da177e4
LT
4526}
4527
4528/* This is the function which gets called during socket creation to
4529 * initialized the SCTP-specific portion of the sock.
4530 * The sock structure should already be zero-filled memory.
4531 */
dda91928 4532static int sctp_init_sock(struct sock *sk)
1da177e4 4533{
e1fc3b14 4534 struct net *net = sock_net(sk);
1da177e4
LT
4535 struct sctp_sock *sp;
4536
bb33381d 4537 pr_debug("%s: sk:%p\n", __func__, sk);
1da177e4
LT
4538
4539 sp = sctp_sk(sk);
4540
4541 /* Initialize the SCTP per socket area. */
4542 switch (sk->sk_type) {
4543 case SOCK_SEQPACKET:
4544 sp->type = SCTP_SOCKET_UDP;
4545 break;
4546 case SOCK_STREAM:
4547 sp->type = SCTP_SOCKET_TCP;
4548 break;
4549 default:
4550 return -ESOCKTNOSUPPORT;
4551 }
4552
90017acc
MRL
4553 sk->sk_gso_type = SKB_GSO_SCTP;
4554
1da177e4
LT
4555 /* Initialize default send parameters. These parameters can be
4556 * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
4557 */
4558 sp->default_stream = 0;
4559 sp->default_ppid = 0;
4560 sp->default_flags = 0;
4561 sp->default_context = 0;
4562 sp->default_timetolive = 0;
4563
6ab792f5 4564 sp->default_rcv_context = 0;
e1fc3b14 4565 sp->max_burst = net->sctp.max_burst;
6ab792f5 4566
3c68198e
NH
4567 sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg;
4568
1da177e4
LT
4569 /* Initialize default setup parameters. These parameters
4570 * can be modified with the SCTP_INITMSG socket option or
4571 * overridden by the SCTP_INIT CMSG.
4572 */
4573 sp->initmsg.sinit_num_ostreams = sctp_max_outstreams;
4574 sp->initmsg.sinit_max_instreams = sctp_max_instreams;
e1fc3b14
EB
4575 sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init;
4576 sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max;
1da177e4
LT
4577
4578 /* Initialize default RTO related parameters. These parameters can
4579 * be modified for with the SCTP_RTOINFO socket option.
4580 */
e1fc3b14
EB
4581 sp->rtoinfo.srto_initial = net->sctp.rto_initial;
4582 sp->rtoinfo.srto_max = net->sctp.rto_max;
4583 sp->rtoinfo.srto_min = net->sctp.rto_min;
1da177e4
LT
4584
4585 /* Initialize default association related parameters. These parameters
4586 * can be modified with the SCTP_ASSOCINFO socket option.
4587 */
e1fc3b14 4588 sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association;
1da177e4
LT
4589 sp->assocparams.sasoc_number_peer_destinations = 0;
4590 sp->assocparams.sasoc_peer_rwnd = 0;
4591 sp->assocparams.sasoc_local_rwnd = 0;
e1fc3b14 4592 sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life;
1da177e4
LT
4593
4594 /* Initialize default event subscriptions. By default, all the
d808ad9a 4595 * options are off.
1da177e4
LT
4596 */
4597 memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
4598
4599 /* Default Peer Address Parameters. These defaults can
4600 * be modified via SCTP_PEER_ADDR_PARAMS
4601 */
e1fc3b14
EB
4602 sp->hbinterval = net->sctp.hb_interval;
4603 sp->pathmaxrxt = net->sctp.max_retrans_path;
4e2d52bf 4604 sp->pathmtu = 0; /* allow default discovery */
e1fc3b14 4605 sp->sackdelay = net->sctp.sack_timeout;
7bfe8bdb 4606 sp->sackfreq = 2;
52ccb8e9 4607 sp->param_flags = SPP_HB_ENABLE |
d808ad9a
YH
4608 SPP_PMTUD_ENABLE |
4609 SPP_SACKDELAY_ENABLE;
1da177e4
LT
4610
4611 /* If enabled no SCTP message fragmentation will be performed.
4612 * Configure through SCTP_DISABLE_FRAGMENTS socket option.
4613 */
4614 sp->disable_fragments = 0;
4615
208edef6
SS
4616 /* Enable Nagle algorithm by default. */
4617 sp->nodelay = 0;
1da177e4 4618
0d3a421d 4619 sp->recvrcvinfo = 0;
2347c80f 4620 sp->recvnxtinfo = 0;
0d3a421d 4621
1da177e4
LT
4622 /* Enable by default. */
4623 sp->v4mapped = 1;
4624
4625 /* Auto-close idle associations after the configured
4626 * number of seconds. A value of 0 disables this
4627 * feature. Configure through the SCTP_AUTOCLOSE socket option,
4628 * for UDP-style sockets only.
4629 */
4630 sp->autoclose = 0;
4631
4632 /* User specified fragmentation limit. */
4633 sp->user_frag = 0;
4634
0f3fffd8 4635 sp->adaptation_ind = 0;
1da177e4
LT
4636
4637 sp->pf = sctp_get_pf_specific(sk->sk_family);
4638
4639 /* Control variables for partial data delivery. */
b6e1331f 4640 atomic_set(&sp->pd_mode, 0);
1da177e4 4641 skb_queue_head_init(&sp->pd_lobby);
b6e1331f 4642 sp->frag_interleave = 0;
1da177e4
LT
4643
4644 /* Create a per socket endpoint structure. Even if we
4645 * change the data structure relationships, this may still
4646 * be useful for storing pre-connect address information.
4647 */
c164b838
DB
4648 sp->ep = sctp_endpoint_new(sk, GFP_KERNEL);
4649 if (!sp->ep)
1da177e4
LT
4650 return -ENOMEM;
4651
1da177e4
LT
4652 sp->hmac = NULL;
4653
0a2fbac1
DB
4654 sk->sk_destruct = sctp_destruct_sock;
4655
1da177e4 4656 SCTP_DBG_OBJCNT_INC(sock);
6f756a8c
DM
4657
4658 local_bh_disable();
8cb38a60 4659 sk_sockets_allocated_inc(sk);
e1fc3b14 4660 sock_prot_inuse_add(net, sk->sk_prot, 1);
2d45a02d
MRL
4661
4662 /* Nothing can fail after this block, otherwise
4663 * sctp_destroy_sock() will be called without addr_wq_lock held
4664 */
e1fc3b14 4665 if (net->sctp.default_auto_asconf) {
2d45a02d 4666 spin_lock(&sock_net(sk)->sctp.addr_wq_lock);
9f7d653b 4667 list_add_tail(&sp->auto_asconf_list,
e1fc3b14 4668 &net->sctp.auto_asconf_splist);
9f7d653b 4669 sp->do_auto_asconf = 1;
2d45a02d
MRL
4670 spin_unlock(&sock_net(sk)->sctp.addr_wq_lock);
4671 } else {
9f7d653b 4672 sp->do_auto_asconf = 0;
2d45a02d
MRL
4673 }
4674
6f756a8c
DM
4675 local_bh_enable();
4676
1da177e4
LT
4677 return 0;
4678}
4679
2d45a02d
MRL
4680/* Cleanup any SCTP per socket resources. Must be called with
4681 * sock_net(sk)->sctp.addr_wq_lock held if sp->do_auto_asconf is true
4682 */
dda91928 4683static void sctp_destroy_sock(struct sock *sk)
1da177e4 4684{
9f7d653b 4685 struct sctp_sock *sp;
1da177e4 4686
bb33381d 4687 pr_debug("%s: sk:%p\n", __func__, sk);
1da177e4
LT
4688
4689 /* Release our hold on the endpoint. */
9f7d653b 4690 sp = sctp_sk(sk);
1abd165e
DB
4691 /* This could happen during socket init, thus we bail out
4692 * early, since the rest of the below is not setup either.
4693 */
4694 if (sp->ep == NULL)
4695 return;
4696
9f7d653b
MH
4697 if (sp->do_auto_asconf) {
4698 sp->do_auto_asconf = 0;
4699 list_del(&sp->auto_asconf_list);
4700 }
4701 sctp_endpoint_free(sp->ep);
5bc0b3bf 4702 local_bh_disable();
8cb38a60 4703 sk_sockets_allocated_dec(sk);
9a57f7fa 4704 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
5bc0b3bf 4705 local_bh_enable();
1da177e4
LT
4706}
4707
0a2fbac1
DB
4708/* Triggered when there are no references on the socket anymore */
4709static void sctp_destruct_sock(struct sock *sk)
4710{
4711 struct sctp_sock *sp = sctp_sk(sk);
4712
4713 /* Free up the HMAC transform. */
5821c769 4714 crypto_free_shash(sp->hmac);
0a2fbac1
DB
4715
4716 inet_sock_destruct(sk);
4717}
4718
1da177e4
LT
4719/* API 4.1.7 shutdown() - TCP Style Syntax
4720 * int shutdown(int socket, int how);
4721 *
4722 * sd - the socket descriptor of the association to be closed.
4723 * how - Specifies the type of shutdown. The values are
4724 * as follows:
4725 * SHUT_RD
4726 * Disables further receive operations. No SCTP
4727 * protocol action is taken.
4728 * SHUT_WR
4729 * Disables further send operations, and initiates
4730 * the SCTP shutdown sequence.
4731 * SHUT_RDWR
4732 * Disables further send and receive operations
4733 * and initiates the SCTP shutdown sequence.
4734 */
dda91928 4735static void sctp_shutdown(struct sock *sk, int how)
1da177e4 4736{
55e26eb9 4737 struct net *net = sock_net(sk);
1da177e4 4738 struct sctp_endpoint *ep;
1da177e4
LT
4739
4740 if (!sctp_style(sk, TCP))
4741 return;
4742
5bf35ddf
XL
4743 ep = sctp_sk(sk)->ep;
4744 if (how & SEND_SHUTDOWN && !list_empty(&ep->asocs)) {
4745 struct sctp_association *asoc;
4746
cbabf463 4747 inet_sk_set_state(sk, SCTP_SS_CLOSING);
5bf35ddf
XL
4748 asoc = list_entry(ep->asocs.next,
4749 struct sctp_association, asocs);
4750 sctp_primitive_SHUTDOWN(net, asoc, NULL);
1da177e4
LT
4751 }
4752}
4753
52c52a61
XL
4754int sctp_get_sctp_info(struct sock *sk, struct sctp_association *asoc,
4755 struct sctp_info *info)
4756{
4757 struct sctp_transport *prim;
4758 struct list_head *pos;
4759 int mask;
4760
4761 memset(info, 0, sizeof(*info));
4762 if (!asoc) {
4763 struct sctp_sock *sp = sctp_sk(sk);
4764
4765 info->sctpi_s_autoclose = sp->autoclose;
4766 info->sctpi_s_adaptation_ind = sp->adaptation_ind;
4767 info->sctpi_s_pd_point = sp->pd_point;
4768 info->sctpi_s_nodelay = sp->nodelay;
4769 info->sctpi_s_disable_fragments = sp->disable_fragments;
4770 info->sctpi_s_v4mapped = sp->v4mapped;
4771 info->sctpi_s_frag_interleave = sp->frag_interleave;
40eb90e9 4772 info->sctpi_s_type = sp->type;
52c52a61
XL
4773
4774 return 0;
4775 }
4776
4777 info->sctpi_tag = asoc->c.my_vtag;
4778 info->sctpi_state = asoc->state;
4779 info->sctpi_rwnd = asoc->a_rwnd;
4780 info->sctpi_unackdata = asoc->unack_data;
4781 info->sctpi_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
cee360ab
XL
4782 info->sctpi_instrms = asoc->stream.incnt;
4783 info->sctpi_outstrms = asoc->stream.outcnt;
52c52a61
XL
4784 list_for_each(pos, &asoc->base.inqueue.in_chunk_list)
4785 info->sctpi_inqueue++;
4786 list_for_each(pos, &asoc->outqueue.out_chunk_list)
4787 info->sctpi_outqueue++;
4788 info->sctpi_overall_error = asoc->overall_error_count;
4789 info->sctpi_max_burst = asoc->max_burst;
4790 info->sctpi_maxseg = asoc->frag_point;
4791 info->sctpi_peer_rwnd = asoc->peer.rwnd;
4792 info->sctpi_peer_tag = asoc->c.peer_vtag;
4793
4794 mask = asoc->peer.ecn_capable << 1;
4795 mask = (mask | asoc->peer.ipv4_address) << 1;
4796 mask = (mask | asoc->peer.ipv6_address) << 1;
4797 mask = (mask | asoc->peer.hostname_address) << 1;
4798 mask = (mask | asoc->peer.asconf_capable) << 1;
4799 mask = (mask | asoc->peer.prsctp_capable) << 1;
4800 mask = (mask | asoc->peer.auth_capable);
4801 info->sctpi_peer_capable = mask;
4802 mask = asoc->peer.sack_needed << 1;
4803 mask = (mask | asoc->peer.sack_generation) << 1;
4804 mask = (mask | asoc->peer.zero_window_announced);
4805 info->sctpi_peer_sack = mask;
4806
4807 info->sctpi_isacks = asoc->stats.isacks;
4808 info->sctpi_osacks = asoc->stats.osacks;
4809 info->sctpi_opackets = asoc->stats.opackets;
4810 info->sctpi_ipackets = asoc->stats.ipackets;
4811 info->sctpi_rtxchunks = asoc->stats.rtxchunks;
4812 info->sctpi_outofseqtsns = asoc->stats.outofseqtsns;
4813 info->sctpi_idupchunks = asoc->stats.idupchunks;
4814 info->sctpi_gapcnt = asoc->stats.gapcnt;
4815 info->sctpi_ouodchunks = asoc->stats.ouodchunks;
4816 info->sctpi_iuodchunks = asoc->stats.iuodchunks;
4817 info->sctpi_oodchunks = asoc->stats.oodchunks;
4818 info->sctpi_iodchunks = asoc->stats.iodchunks;
4819 info->sctpi_octrlchunks = asoc->stats.octrlchunks;
4820 info->sctpi_ictrlchunks = asoc->stats.ictrlchunks;
4821
4822 prim = asoc->peer.primary_path;
ee6c88bb 4823 memcpy(&info->sctpi_p_address, &prim->ipaddr, sizeof(prim->ipaddr));
52c52a61
XL
4824 info->sctpi_p_state = prim->state;
4825 info->sctpi_p_cwnd = prim->cwnd;
4826 info->sctpi_p_srtt = prim->srtt;
4827 info->sctpi_p_rto = jiffies_to_msecs(prim->rto);
4828 info->sctpi_p_hbinterval = prim->hbinterval;
4829 info->sctpi_p_pathmaxrxt = prim->pathmaxrxt;
4830 info->sctpi_p_sackdelay = jiffies_to_msecs(prim->sackdelay);
4831 info->sctpi_p_ssthresh = prim->ssthresh;
4832 info->sctpi_p_partial_bytes_acked = prim->partial_bytes_acked;
4833 info->sctpi_p_flight_size = prim->flight_size;
4834 info->sctpi_p_error = prim->error_count;
4835
4836 return 0;
4837}
4838EXPORT_SYMBOL_GPL(sctp_get_sctp_info);
4839
626d16f5 4840/* use callback to avoid exporting the core structure */
97a6ec4a 4841void sctp_transport_walk_start(struct rhashtable_iter *iter)
626d16f5 4842{
7fda702f 4843 rhltable_walk_enter(&sctp_transport_hashtable, iter);
626d16f5 4844
97a6ec4a 4845 rhashtable_walk_start(iter);
626d16f5
XL
4846}
4847
4848void sctp_transport_walk_stop(struct rhashtable_iter *iter)
4849{
4850 rhashtable_walk_stop(iter);
4851 rhashtable_walk_exit(iter);
4852}
4853
4854struct sctp_transport *sctp_transport_get_next(struct net *net,
4855 struct rhashtable_iter *iter)
4856{
4857 struct sctp_transport *t;
4858
4859 t = rhashtable_walk_next(iter);
4860 for (; t; t = rhashtable_walk_next(iter)) {
4861 if (IS_ERR(t)) {
4862 if (PTR_ERR(t) == -EAGAIN)
4863 continue;
4864 break;
4865 }
4866
4867 if (net_eq(sock_net(t->asoc->base.sk), net) &&
4868 t->asoc->peer.primary_path == t)
4869 break;
4870 }
4871
4872 return t;
4873}
4874
4875struct sctp_transport *sctp_transport_get_idx(struct net *net,
4876 struct rhashtable_iter *iter,
4877 int pos)
4878{
4879 void *obj = SEQ_START_TOKEN;
4880
4881 while (pos && (obj = sctp_transport_get_next(net, iter)) &&
4882 !IS_ERR(obj))
4883 pos--;
4884
4885 return obj;
4886}
4887
4888int sctp_for_each_endpoint(int (*cb)(struct sctp_endpoint *, void *),
4889 void *p) {
4890 int err = 0;
4891 int hash = 0;
4892 struct sctp_ep_common *epb;
4893 struct sctp_hashbucket *head;
4894
4895 for (head = sctp_ep_hashtable; hash < sctp_ep_hashsize;
4896 hash++, head++) {
581409da 4897 read_lock_bh(&head->lock);
626d16f5
XL
4898 sctp_for_each_hentry(epb, &head->chain) {
4899 err = cb(sctp_ep(epb), p);
4900 if (err)
4901 break;
4902 }
581409da 4903 read_unlock_bh(&head->lock);
626d16f5
XL
4904 }
4905
4906 return err;
4907}
4908EXPORT_SYMBOL_GPL(sctp_for_each_endpoint);
4909
4910int sctp_transport_lookup_process(int (*cb)(struct sctp_transport *, void *),
4911 struct net *net,
4912 const union sctp_addr *laddr,
4913 const union sctp_addr *paddr, void *p)
4914{
4915 struct sctp_transport *transport;
08abb795 4916 int err;
626d16f5
XL
4917
4918 rcu_read_lock();
4919 transport = sctp_addrs_lookup_transport(net, laddr, paddr);
08abb795 4920 rcu_read_unlock();
7fda702f 4921 if (!transport)
08abb795 4922 return -ENOENT;
1cceda78 4923
1cceda78 4924 err = cb(transport, p);
cd26da4f 4925 sctp_transport_put(transport);
1cceda78 4926
626d16f5
XL
4927 return err;
4928}
4929EXPORT_SYMBOL_GPL(sctp_transport_lookup_process);
4930
4931int sctp_for_each_transport(int (*cb)(struct sctp_transport *, void *),
d25adbeb
XL
4932 int (*cb_done)(struct sctp_transport *, void *),
4933 struct net *net, int *pos, void *p) {
626d16f5 4934 struct rhashtable_iter hti;
d25adbeb
XL
4935 struct sctp_transport *tsp;
4936 int ret;
626d16f5 4937
d25adbeb 4938again:
f53d77e1 4939 ret = 0;
97a6ec4a 4940 sctp_transport_walk_start(&hti);
626d16f5 4941
d25adbeb
XL
4942 tsp = sctp_transport_get_idx(net, &hti, *pos + 1);
4943 for (; !IS_ERR_OR_NULL(tsp); tsp = sctp_transport_get_next(net, &hti)) {
4944 if (!sctp_transport_hold(tsp))
626d16f5 4945 continue;
d25adbeb
XL
4946 ret = cb(tsp, p);
4947 if (ret)
626d16f5 4948 break;
d25adbeb
XL
4949 (*pos)++;
4950 sctp_transport_put(tsp);
626d16f5 4951 }
626d16f5 4952 sctp_transport_walk_stop(&hti);
53fa1036 4953
d25adbeb
XL
4954 if (ret) {
4955 if (cb_done && !cb_done(tsp, p)) {
4956 (*pos)++;
4957 sctp_transport_put(tsp);
4958 goto again;
4959 }
4960 sctp_transport_put(tsp);
4961 }
4962
4963 return ret;
626d16f5
XL
4964}
4965EXPORT_SYMBOL_GPL(sctp_for_each_transport);
4966
1da177e4
LT
4967/* 7.2.1 Association Status (SCTP_STATUS)
4968
4969 * Applications can retrieve current status information about an
4970 * association, including association state, peer receiver window size,
4971 * number of unacked data chunks, and number of data chunks pending
4972 * receipt. This information is read-only.
4973 */
4974static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
4975 char __user *optval,
4976 int __user *optlen)
4977{
4978 struct sctp_status status;
4979 struct sctp_association *asoc = NULL;
4980 struct sctp_transport *transport;
4981 sctp_assoc_t associd;
4982 int retval = 0;
4983
408f22e8 4984 if (len < sizeof(status)) {
1da177e4
LT
4985 retval = -EINVAL;
4986 goto out;
4987 }
4988
408f22e8
NH
4989 len = sizeof(status);
4990 if (copy_from_user(&status, optval, len)) {
1da177e4
LT
4991 retval = -EFAULT;
4992 goto out;
4993 }
4994
4995 associd = status.sstat_assoc_id;
4996 asoc = sctp_id2assoc(sk, associd);
4997 if (!asoc) {
4998 retval = -EINVAL;
4999 goto out;
5000 }
5001
5002 transport = asoc->peer.primary_path;
5003
5004 status.sstat_assoc_id = sctp_assoc2id(asoc);
38ab1fa9 5005 status.sstat_state = sctp_assoc_to_state(asoc);
1da177e4
LT
5006 status.sstat_rwnd = asoc->peer.rwnd;
5007 status.sstat_unackdata = asoc->unack_data;
5008
5009 status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
cee360ab
XL
5010 status.sstat_instrms = asoc->stream.incnt;
5011 status.sstat_outstrms = asoc->stream.outcnt;
1da177e4
LT
5012 status.sstat_fragmentation_point = asoc->frag_point;
5013 status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
8cec6b80
AV
5014 memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
5015 transport->af_specific->sockaddr_len);
1da177e4 5016 /* Map ipv4 address into v4-mapped-on-v6 address. */
299ee123 5017 sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
1da177e4 5018 (union sctp_addr *)&status.sstat_primary.spinfo_address);
3f7a87d2 5019 status.sstat_primary.spinfo_state = transport->state;
1da177e4
LT
5020 status.sstat_primary.spinfo_cwnd = transport->cwnd;
5021 status.sstat_primary.spinfo_srtt = transport->srtt;
5022 status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
52ccb8e9 5023 status.sstat_primary.spinfo_mtu = transport->pathmtu;
1da177e4 5024
3f7a87d2
FF
5025 if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
5026 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
5027
1da177e4
LT
5028 if (put_user(len, optlen)) {
5029 retval = -EFAULT;
5030 goto out;
5031 }
5032
bb33381d
DB
5033 pr_debug("%s: len:%d, state:%d, rwnd:%d, assoc_id:%d\n",
5034 __func__, len, status.sstat_state, status.sstat_rwnd,
5035 status.sstat_assoc_id);
1da177e4
LT
5036
5037 if (copy_to_user(optval, &status, len)) {
5038 retval = -EFAULT;
5039 goto out;
5040 }
5041
5042out:
a02cec21 5043 return retval;
1da177e4
LT
5044}
5045
5046
5047/* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
5048 *
5049 * Applications can retrieve information about a specific peer address
5050 * of an association, including its reachability state, congestion
5051 * window, and retransmission timer values. This information is
5052 * read-only.
5053 */
5054static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
5055 char __user *optval,
5056 int __user *optlen)
5057{
5058 struct sctp_paddrinfo pinfo;
5059 struct sctp_transport *transport;
5060 int retval = 0;
5061
408f22e8 5062 if (len < sizeof(pinfo)) {
1da177e4
LT
5063 retval = -EINVAL;
5064 goto out;
5065 }
5066
408f22e8
NH
5067 len = sizeof(pinfo);
5068 if (copy_from_user(&pinfo, optval, len)) {
1da177e4
LT
5069 retval = -EFAULT;
5070 goto out;
5071 }
5072
5073 transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
5074 pinfo.spinfo_assoc_id);
5075 if (!transport)
5076 return -EINVAL;
5077
5078 pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
3f7a87d2 5079 pinfo.spinfo_state = transport->state;
1da177e4
LT
5080 pinfo.spinfo_cwnd = transport->cwnd;
5081 pinfo.spinfo_srtt = transport->srtt;
5082 pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
52ccb8e9 5083 pinfo.spinfo_mtu = transport->pathmtu;
1da177e4 5084
3f7a87d2
FF
5085 if (pinfo.spinfo_state == SCTP_UNKNOWN)
5086 pinfo.spinfo_state = SCTP_ACTIVE;
5087
1da177e4
LT
5088 if (put_user(len, optlen)) {
5089 retval = -EFAULT;
5090 goto out;
5091 }
5092
5093 if (copy_to_user(optval, &pinfo, len)) {
5094 retval = -EFAULT;
5095 goto out;
5096 }
5097
5098out:
a02cec21 5099 return retval;
1da177e4
LT
5100}
5101
5102/* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
5103 *
5104 * This option is a on/off flag. If enabled no SCTP message
5105 * fragmentation will be performed. Instead if a message being sent
5106 * exceeds the current PMTU size, the message will NOT be sent and
5107 * instead a error will be indicated to the user.
5108 */
5109static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
5110 char __user *optval, int __user *optlen)
5111{
5112 int val;
5113
5114 if (len < sizeof(int))
5115 return -EINVAL;
5116
5117 len = sizeof(int);
5118 val = (sctp_sk(sk)->disable_fragments == 1);
5119 if (put_user(len, optlen))
5120 return -EFAULT;
5121 if (copy_to_user(optval, &val, len))
5122 return -EFAULT;
5123 return 0;
5124}
5125
5126/* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
5127 *
5128 * This socket option is used to specify various notifications and
5129 * ancillary data the user wishes to receive.
5130 */
5131static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
5132 int __user *optlen)
5133{
a4b8e71b 5134 if (len == 0)
1da177e4 5135 return -EINVAL;
acdd5985
TG
5136 if (len > sizeof(struct sctp_event_subscribe))
5137 len = sizeof(struct sctp_event_subscribe);
408f22e8
NH
5138 if (put_user(len, optlen))
5139 return -EFAULT;
1da177e4
LT
5140 if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
5141 return -EFAULT;
5142 return 0;
5143}
5144
5145/* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
5146 *
5147 * This socket option is applicable to the UDP-style socket only. When
5148 * set it will cause associations that are idle for more than the
5149 * specified number of seconds to automatically close. An association
5150 * being idle is defined an association that has NOT sent or received
5151 * user data. The special value of '0' indicates that no automatic
5152 * close of any associations should be performed. The option expects an
5153 * integer defining the number of seconds of idle time before an
5154 * association is closed.
5155 */
5156static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
5157{
5158 /* Applicable to UDP-style socket only */
5159 if (sctp_style(sk, TCP))
5160 return -EOPNOTSUPP;
408f22e8 5161 if (len < sizeof(int))
1da177e4 5162 return -EINVAL;
408f22e8
NH
5163 len = sizeof(int);
5164 if (put_user(len, optlen))
5165 return -EFAULT;
b2ce04c2 5166 if (put_user(sctp_sk(sk)->autoclose, (int __user *)optval))
1da177e4
LT
5167 return -EFAULT;
5168 return 0;
5169}
5170
5171/* Helper routine to branch off an association to a new socket. */
0343c554 5172int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp)
1da177e4 5173{
0343c554 5174 struct sctp_association *asoc = sctp_id2assoc(sk, id);
299ee123 5175 struct sctp_sock *sp = sctp_sk(sk);
1da177e4
LT
5176 struct socket *sock;
5177 int err = 0;
5178
df80cd9b
XL
5179 /* Do not peel off from one netns to another one. */
5180 if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
5181 return -EINVAL;
5182
0343c554
BP
5183 if (!asoc)
5184 return -EINVAL;
5185
1da177e4
LT
5186 /* An association cannot be branched off from an already peeled-off
5187 * socket, nor is this supported for tcp style sockets.
5188 */
5189 if (!sctp_style(sk, UDP))
5190 return -EINVAL;
5191
5192 /* Create a new socket. */
5193 err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
5194 if (err < 0)
5195 return err;
5196
914e1c8b 5197 sctp_copy_sock(sock->sk, sk, asoc);
4f444308
VY
5198
5199 /* Make peeled-off sockets more like 1-1 accepted sockets.
b7e10c25
RH
5200 * Set the daddr and initialize id to something more random and also
5201 * copy over any ip options.
4f444308 5202 */
299ee123 5203 sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
b7e10c25 5204 sp->pf->copy_ip_options(sk, sock->sk);
914e1c8b
VY
5205
5206 /* Populate the fields of the newsk from the oldsk and migrate the
5207 * asoc to the newsk.
5208 */
5209 sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
4f444308 5210
1da177e4
LT
5211 *sockp = sock;
5212
5213 return err;
5214}
0343c554 5215EXPORT_SYMBOL(sctp_do_peeloff);
1da177e4 5216
2cb5c8e3
NH
5217static int sctp_getsockopt_peeloff_common(struct sock *sk, sctp_peeloff_arg_t *peeloff,
5218 struct file **newfile, unsigned flags)
5219{
5220 struct socket *newsock;
5221 int retval;
5222
5223 retval = sctp_do_peeloff(sk, peeloff->associd, &newsock);
5224 if (retval < 0)
5225 goto out;
5226
5227 /* Map the socket to an unused fd that can be returned to the user. */
5228 retval = get_unused_fd_flags(flags & SOCK_CLOEXEC);
5229 if (retval < 0) {
5230 sock_release(newsock);
5231 goto out;
5232 }
5233
5234 *newfile = sock_alloc_file(newsock, 0, NULL);
5235 if (IS_ERR(*newfile)) {
5236 put_unused_fd(retval);
2cb5c8e3
NH
5237 retval = PTR_ERR(*newfile);
5238 *newfile = NULL;
5239 return retval;
5240 }
5241
5242 pr_debug("%s: sk:%p, newsk:%p, sd:%d\n", __func__, sk, newsock->sk,
5243 retval);
5244
5245 peeloff->sd = retval;
5246
5247 if (flags & SOCK_NONBLOCK)
5248 (*newfile)->f_flags |= O_NONBLOCK;
5249out:
5250 return retval;
5251}
5252
1da177e4
LT
5253static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
5254{
5255 sctp_peeloff_arg_t peeloff;
2cb5c8e3 5256 struct file *newfile = NULL;
1da177e4 5257 int retval = 0;
1da177e4 5258
408f22e8 5259 if (len < sizeof(sctp_peeloff_arg_t))
1da177e4 5260 return -EINVAL;
408f22e8 5261 len = sizeof(sctp_peeloff_arg_t);
1da177e4
LT
5262 if (copy_from_user(&peeloff, optval, len))
5263 return -EFAULT;
5264
2cb5c8e3 5265 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0);
1da177e4
LT
5266 if (retval < 0)
5267 goto out;
5268
2cb5c8e3
NH
5269 /* Return the fd mapped to the new socket. */
5270 if (put_user(len, optlen)) {
5271 fput(newfile);
5272 put_unused_fd(retval);
5273 return -EFAULT;
1da177e4
LT
5274 }
5275
2cb5c8e3
NH
5276 if (copy_to_user(optval, &peeloff, len)) {
5277 fput(newfile);
56b31d1c 5278 put_unused_fd(retval);
2cb5c8e3 5279 return -EFAULT;
56b31d1c 5280 }
2cb5c8e3
NH
5281 fd_install(retval, newfile);
5282out:
5283 return retval;
5284}
56b31d1c 5285
2cb5c8e3
NH
5286static int sctp_getsockopt_peeloff_flags(struct sock *sk, int len,
5287 char __user *optval, int __user *optlen)
5288{
5289 sctp_peeloff_flags_arg_t peeloff;
5290 struct file *newfile = NULL;
5291 int retval = 0;
5292
5293 if (len < sizeof(sctp_peeloff_flags_arg_t))
5294 return -EINVAL;
5295 len = sizeof(sctp_peeloff_flags_arg_t);
5296 if (copy_from_user(&peeloff, optval, len))
5297 return -EFAULT;
5298
5299 retval = sctp_getsockopt_peeloff_common(sk, &peeloff.p_arg,
5300 &newfile, peeloff.flags);
5301 if (retval < 0)
5302 goto out;
1da177e4
LT
5303
5304 /* Return the fd mapped to the new socket. */
56b31d1c
AV
5305 if (put_user(len, optlen)) {
5306 fput(newfile);
5307 put_unused_fd(retval);
5308 return -EFAULT;
5309 }
2cb5c8e3 5310
56b31d1c
AV
5311 if (copy_to_user(optval, &peeloff, len)) {
5312 fput(newfile);
5313 put_unused_fd(retval);
408f22e8 5314 return -EFAULT;
56b31d1c
AV
5315 }
5316 fd_install(retval, newfile);
1da177e4
LT
5317out:
5318 return retval;
5319}
5320
5321/* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
5322 *
5323 * Applications can enable or disable heartbeats for any peer address of
5324 * an association, modify an address's heartbeat interval, force a
5325 * heartbeat to be sent immediately, and adjust the address's maximum
5326 * number of retransmissions sent before an address is considered
5327 * unreachable. The following structure is used to access and modify an
5328 * address's parameters:
5329 *
5330 * struct sctp_paddrparams {
52ccb8e9
FF
5331 * sctp_assoc_t spp_assoc_id;
5332 * struct sockaddr_storage spp_address;
5333 * uint32_t spp_hbinterval;
5334 * uint16_t spp_pathmaxrxt;
5335 * uint32_t spp_pathmtu;
5336 * uint32_t spp_sackdelay;
5337 * uint32_t spp_flags;
5338 * };
5339 *
5340 * spp_assoc_id - (one-to-many style socket) This is filled in the
5341 * application, and identifies the association for
5342 * this query.
1da177e4
LT
5343 * spp_address - This specifies which address is of interest.
5344 * spp_hbinterval - This contains the value of the heartbeat interval,
52ccb8e9
FF
5345 * in milliseconds. If a value of zero
5346 * is present in this field then no changes are to
5347 * be made to this parameter.
1da177e4
LT
5348 * spp_pathmaxrxt - This contains the maximum number of
5349 * retransmissions before this address shall be
52ccb8e9
FF
5350 * considered unreachable. If a value of zero
5351 * is present in this field then no changes are to
5352 * be made to this parameter.
5353 * spp_pathmtu - When Path MTU discovery is disabled the value
5354 * specified here will be the "fixed" path mtu.
5355 * Note that if the spp_address field is empty
5356 * then all associations on this address will
5357 * have this fixed path mtu set upon them.
5358 *
5359 * spp_sackdelay - When delayed sack is enabled, this value specifies
5360 * the number of milliseconds that sacks will be delayed
5361 * for. This value will apply to all addresses of an
5362 * association if the spp_address field is empty. Note
5363 * also, that if delayed sack is enabled and this
5364 * value is set to 0, no change is made to the last
5365 * recorded delayed sack timer value.
5366 *
5367 * spp_flags - These flags are used to control various features
5368 * on an association. The flag field may contain
5369 * zero or more of the following options.
5370 *
5371 * SPP_HB_ENABLE - Enable heartbeats on the
5372 * specified address. Note that if the address
5373 * field is empty all addresses for the association
5374 * have heartbeats enabled upon them.
5375 *
5376 * SPP_HB_DISABLE - Disable heartbeats on the
5377 * speicifed address. Note that if the address
5378 * field is empty all addresses for the association
5379 * will have their heartbeats disabled. Note also
5380 * that SPP_HB_ENABLE and SPP_HB_DISABLE are
5381 * mutually exclusive, only one of these two should
5382 * be specified. Enabling both fields will have
5383 * undetermined results.
5384 *
5385 * SPP_HB_DEMAND - Request a user initiated heartbeat
5386 * to be made immediately.
5387 *
5388 * SPP_PMTUD_ENABLE - This field will enable PMTU
5389 * discovery upon the specified address. Note that
5390 * if the address feild is empty then all addresses
5391 * on the association are effected.
5392 *
5393 * SPP_PMTUD_DISABLE - This field will disable PMTU
5394 * discovery upon the specified address. Note that
5395 * if the address feild is empty then all addresses
5396 * on the association are effected. Not also that
5397 * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
5398 * exclusive. Enabling both will have undetermined
5399 * results.
5400 *
5401 * SPP_SACKDELAY_ENABLE - Setting this flag turns
5402 * on delayed sack. The time specified in spp_sackdelay
5403 * is used to specify the sack delay for this address. Note
5404 * that if spp_address is empty then all addresses will
5405 * enable delayed sack and take on the sack delay
5406 * value specified in spp_sackdelay.
5407 * SPP_SACKDELAY_DISABLE - Setting this flag turns
5408 * off delayed sack. If the spp_address field is blank then
5409 * delayed sack is disabled for the entire association. Note
5410 * also that this field is mutually exclusive to
5411 * SPP_SACKDELAY_ENABLE, setting both will have undefined
5412 * results.
1da177e4
LT
5413 */
5414static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
52ccb8e9 5415 char __user *optval, int __user *optlen)
1da177e4 5416{
52ccb8e9
FF
5417 struct sctp_paddrparams params;
5418 struct sctp_transport *trans = NULL;
5419 struct sctp_association *asoc = NULL;
5420 struct sctp_sock *sp = sctp_sk(sk);
1da177e4 5421
408f22e8 5422 if (len < sizeof(struct sctp_paddrparams))
1da177e4 5423 return -EINVAL;
408f22e8 5424 len = sizeof(struct sctp_paddrparams);
1da177e4
LT
5425 if (copy_from_user(&params, optval, len))
5426 return -EFAULT;
5427
52ccb8e9
FF
5428 /* If an address other than INADDR_ANY is specified, and
5429 * no transport is found, then the request is invalid.
1da177e4 5430 */
cb3f837b 5431 if (!sctp_is_any(sk, (union sctp_addr *)&params.spp_address)) {
52ccb8e9
FF
5432 trans = sctp_addr_id2transport(sk, &params.spp_address,
5433 params.spp_assoc_id);
5434 if (!trans) {
bb33381d 5435 pr_debug("%s: failed no transport\n", __func__);
52ccb8e9
FF
5436 return -EINVAL;
5437 }
1da177e4
LT
5438 }
5439
52ccb8e9
FF
5440 /* Get association, if assoc_id != 0 and the socket is a one
5441 * to many style socket, and an association was not found, then
5442 * the id was invalid.
5443 */
5444 asoc = sctp_id2assoc(sk, params.spp_assoc_id);
5445 if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
bb33381d 5446 pr_debug("%s: failed no association\n", __func__);
1da177e4 5447 return -EINVAL;
52ccb8e9 5448 }
1da177e4 5449
52ccb8e9
FF
5450 if (trans) {
5451 /* Fetch transport values. */
5452 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
5453 params.spp_pathmtu = trans->pathmtu;
5454 params.spp_pathmaxrxt = trans->pathmaxrxt;
5455 params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay);
5456
5457 /*draft-11 doesn't say what to return in spp_flags*/
5458 params.spp_flags = trans->param_flags;
5459 } else if (asoc) {
5460 /* Fetch association values. */
5461 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
5462 params.spp_pathmtu = asoc->pathmtu;
5463 params.spp_pathmaxrxt = asoc->pathmaxrxt;
5464 params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay);
5465
5466 /*draft-11 doesn't say what to return in spp_flags*/
5467 params.spp_flags = asoc->param_flags;
5468 } else {
5469 /* Fetch socket values. */
5470 params.spp_hbinterval = sp->hbinterval;
5471 params.spp_pathmtu = sp->pathmtu;
5472 params.spp_sackdelay = sp->sackdelay;
5473 params.spp_pathmaxrxt = sp->pathmaxrxt;
1da177e4 5474
52ccb8e9
FF
5475 /*draft-11 doesn't say what to return in spp_flags*/
5476 params.spp_flags = sp->param_flags;
5477 }
1da177e4 5478
1da177e4
LT
5479 if (copy_to_user(optval, &params, len))
5480 return -EFAULT;
5481
5482 if (put_user(len, optlen))
5483 return -EFAULT;
5484
5485 return 0;
5486}
5487
d364d927
WY
5488/*
5489 * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK)
5490 *
5491 * This option will effect the way delayed acks are performed. This
5492 * option allows you to get or set the delayed ack time, in
5493 * milliseconds. It also allows changing the delayed ack frequency.
5494 * Changing the frequency to 1 disables the delayed sack algorithm. If
5495 * the assoc_id is 0, then this sets or gets the endpoints default
5496 * values. If the assoc_id field is non-zero, then the set or get
5497 * effects the specified association for the one to many model (the
5498 * assoc_id field is ignored by the one to one model). Note that if
5499 * sack_delay or sack_freq are 0 when setting this option, then the
5500 * current values will remain unchanged.
5501 *
5502 * struct sctp_sack_info {
5503 * sctp_assoc_t sack_assoc_id;
5504 * uint32_t sack_delay;
5505 * uint32_t sack_freq;
5506 * };
7708610b 5507 *
d364d927
WY
5508 * sack_assoc_id - This parameter, indicates which association the user
5509 * is performing an action upon. Note that if this field's value is
5510 * zero then the endpoints default value is changed (effecting future
5511 * associations only).
7708610b 5512 *
d364d927
WY
5513 * sack_delay - This parameter contains the number of milliseconds that
5514 * the user is requesting the delayed ACK timer be set to. Note that
5515 * this value is defined in the standard to be between 200 and 500
5516 * milliseconds.
7708610b 5517 *
d364d927
WY
5518 * sack_freq - This parameter contains the number of packets that must
5519 * be received before a sack is sent without waiting for the delay
5520 * timer to expire. The default value for this is 2, setting this
5521 * value to 1 will disable the delayed sack algorithm.
7708610b 5522 */
d364d927 5523static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
7708610b
FF
5524 char __user *optval,
5525 int __user *optlen)
5526{
d364d927 5527 struct sctp_sack_info params;
7708610b
FF
5528 struct sctp_association *asoc = NULL;
5529 struct sctp_sock *sp = sctp_sk(sk);
5530
d364d927
WY
5531 if (len >= sizeof(struct sctp_sack_info)) {
5532 len = sizeof(struct sctp_sack_info);
7708610b 5533
d364d927
WY
5534 if (copy_from_user(&params, optval, len))
5535 return -EFAULT;
5536 } else if (len == sizeof(struct sctp_assoc_value)) {
94f65193 5537 pr_warn_ratelimited(DEPRECATED
f916ec96 5538 "%s (pid %d) "
94f65193 5539 "Use of struct sctp_assoc_value in delayed_ack socket option.\n"
f916ec96
NH
5540 "Use struct sctp_sack_info instead\n",
5541 current->comm, task_pid_nr(current));
d364d927
WY
5542 if (copy_from_user(&params, optval, len))
5543 return -EFAULT;
5544 } else
cb3f837b 5545 return -EINVAL;
7708610b 5546
d364d927 5547 /* Get association, if sack_assoc_id != 0 and the socket is a one
7708610b
FF
5548 * to many style socket, and an association was not found, then
5549 * the id was invalid.
d808ad9a 5550 */
d364d927
WY
5551 asoc = sctp_id2assoc(sk, params.sack_assoc_id);
5552 if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
7708610b
FF
5553 return -EINVAL;
5554
5555 if (asoc) {
5556 /* Fetch association values. */
d364d927
WY
5557 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
5558 params.sack_delay = jiffies_to_msecs(
7708610b 5559 asoc->sackdelay);
d364d927
WY
5560 params.sack_freq = asoc->sackfreq;
5561
5562 } else {
5563 params.sack_delay = 0;
5564 params.sack_freq = 1;
5565 }
7708610b
FF
5566 } else {
5567 /* Fetch socket values. */
d364d927
WY
5568 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
5569 params.sack_delay = sp->sackdelay;
5570 params.sack_freq = sp->sackfreq;
5571 } else {
5572 params.sack_delay = 0;
5573 params.sack_freq = 1;
5574 }
7708610b
FF
5575 }
5576
5577 if (copy_to_user(optval, &params, len))
5578 return -EFAULT;
5579
5580 if (put_user(len, optlen))
5581 return -EFAULT;
5582
5583 return 0;
5584}
5585
1da177e4
LT
5586/* 7.1.3 Initialization Parameters (SCTP_INITMSG)
5587 *
5588 * Applications can specify protocol parameters for the default association
5589 * initialization. The option name argument to setsockopt() and getsockopt()
5590 * is SCTP_INITMSG.
5591 *
5592 * Setting initialization parameters is effective only on an unconnected
5593 * socket (for UDP-style sockets only future associations are effected
5594 * by the change). With TCP-style sockets, this option is inherited by
5595 * sockets derived from a listener socket.
5596 */
5597static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
5598{
408f22e8 5599 if (len < sizeof(struct sctp_initmsg))
1da177e4 5600 return -EINVAL;
408f22e8
NH
5601 len = sizeof(struct sctp_initmsg);
5602 if (put_user(len, optlen))
5603 return -EFAULT;
1da177e4
LT
5604 if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
5605 return -EFAULT;
5606 return 0;
5607}
5608