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